diff --git a/models/globalInit.go b/models/globalInit.go
index bcc6960..43225e1 100644
--- a/models/globalInit.go
+++ b/models/globalInit.go
@@ -1,8 +1,7 @@
package models
-import "fmt"
-
var Options = make(map[string]string)
+var TermsIds []uint64
func InitOptions() error {
ops, err := SimpleFind[WpOptions](SqlBuilder{{"autoload", "yes"}}, "option_name, option_value")
@@ -31,6 +30,8 @@ func InitTerms() (err error) {
}, {"t.name", "in", ""}}, "t.term_id", nil, SqlBuilder{{
"t", "inner join", "wp_term_taxonomy tt", "t.term_id = tt.term_id",
}}, 1, themes, name)
- fmt.Println(terms, err)
+ for _, wpTerms := range terms {
+ TermsIds = append(TermsIds, wpTerms.TermId)
+ }
return
}
diff --git a/route/route.go b/route/route.go
index 8a08770..c6b3f74 100644
--- a/route/route.go
+++ b/route/route.go
@@ -2,15 +2,38 @@ package route
import (
"github.com/gin-gonic/gin"
+ "github/fthvgb1/wp-go/helper"
+ "github/fthvgb1/wp-go/static"
+ "html/template"
+ "net/http"
+ "strings"
)
func SetupRouter() *gin.Engine {
// Disable Console Color
// gin.DisableConsoleColor()
r := gin.Default()
+ r.Use(setStaticFileCache)
+ r.SetFuncMap(template.FuncMap{"unescaped": func(s string) interface{} {
+ return template.HTML(s)
+ }})
+ f := static.Fs{FS: static.FsEx, Path: "wp-includes"}
+ r.StaticFS("/wp-includes", http.FS(f))
+ r.StaticFS("/wp-content", http.FS(static.Fs{
+ FS: static.FsEx,
+ Path: "wp-content",
+ }))
r.LoadHTMLGlob("templates/*")
+
// Ping test
r.GET("/", index)
return r
}
+
+func setStaticFileCache(c *gin.Context) {
+ f := strings.Split(strings.TrimLeft(c.FullPath(), "/"), "/")
+ if len(f) > 1 && helper.IsContainInArr(f[0], []string{"wp-includes", "wp-content"}) {
+ c.Header("Cache-Control", "private, max-age=86400")
+ }
+}
diff --git a/static/static.go b/static/static.go
new file mode 100644
index 0000000..fd93377
--- /dev/null
+++ b/static/static.go
@@ -0,0 +1,28 @@
+package static
+
+import (
+ "embed"
+ "errors"
+ "io/fs"
+ "path/filepath"
+ "strings"
+)
+
+//go:embed wp-content wp-includes
+var FsEx embed.FS
+
+type Fs struct {
+ embed.FS
+ Path string
+}
+
+func (f Fs) Open(path string) (fs.File, error) {
+ if filepath.Separator != '/' && strings.ContainsRune(path, filepath.Separator) {
+ return nil, errors.New("http: invalid character in file path")
+ }
+ fullName := strings.TrimLeft(path, "/")
+
+ fullName = f.Path + "/" + fullName
+ file, err := f.FS.Open(fullName)
+ return file, err
+}
diff --git a/static/wp-content/themes/twentyfifteen/assets/pier-seagull.jpg b/static/wp-content/themes/twentyfifteen/assets/pier-seagull.jpg
new file mode 100755
index 0000000..fad5646
Binary files /dev/null and b/static/wp-content/themes/twentyfifteen/assets/pier-seagull.jpg differ
diff --git a/static/wp-content/themes/twentyfifteen/assets/pier-seagulls.jpg b/static/wp-content/themes/twentyfifteen/assets/pier-seagulls.jpg
new file mode 100755
index 0000000..01d52f1
Binary files /dev/null and b/static/wp-content/themes/twentyfifteen/assets/pier-seagulls.jpg differ
diff --git a/static/wp-content/themes/twentyfifteen/assets/pier-sunset.jpg b/static/wp-content/themes/twentyfifteen/assets/pier-sunset.jpg
new file mode 100755
index 0000000..7543063
Binary files /dev/null and b/static/wp-content/themes/twentyfifteen/assets/pier-sunset.jpg differ
diff --git a/static/wp-content/themes/twentyfifteen/css/blocks.css b/static/wp-content/themes/twentyfifteen/css/blocks.css
new file mode 100755
index 0000000..e5b3af4
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/css/blocks.css
@@ -0,0 +1,710 @@
+/*
+Theme Name: Twenty Fifteen
+Description: Used to style blocks.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 General Block Styles
+2.0 Blocks - Common Blocks
+3.0 Blocks - Formatting
+4.0 Blocks - Layout Elements
+5.0 Blocks - Widgets
+6.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Captions */
+
+[class^="wp-block-"] figcaption {
+ color: #707070;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ line-height: 1.5;
+ margin-bottom: 0;
+ padding: 0.5em 0;
+}
+
+@media screen and (min-width: 46.25em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 16px;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 12px;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 16px;
+ }
+}
+
+/* Alignments */
+
+[class^="wp-block-"].alignleft,
+[class^="wp-block-"] .alignleft {
+ margin-right: 1em;
+}
+
+[class^="wp-block-"].alignright,
+[class^="wp-block-"] .alignright {
+ margin-left: 1em;
+}
+
+
+/*--------------------------------------------------------------
+2.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+ font-size: 5em;
+}
+
+/* Gallery */
+
+.wp-block-gallery {
+ margin-bottom: 1.6em;
+}
+
+/* Audio */
+
+.wp-block-audio audio {
+ display: block;
+ width: 100%;
+}
+
+/* Cover */
+
+.wp-block-cover-image .wp-block-cover-image-text,
+.wp-block-cover .wp-block-cover-text,
+.wp-block-cover-image h2,
+.wp-block-cover h2 {
+ font-size: 29px;
+ line-height: 1.2069;
+}
+
+/* Quote */
+
+.wp-block-quote,
+.wp-block-quote:not(.is-large):not(.is-style-large),
+[class^="wp-block-"] blockquote {
+ border-color: #707070;
+}
+
+.wp-block-quote cite,
+.wp-block-quote__citation {
+ color: #333;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 15px;
+ font-style: normal;
+ line-height: 1.6;
+ text-transform: none;
+}
+
+.wp-block-quote em,
+.wp-block-quote i {
+ font-style: normal;
+}
+
+.wp-block-quote strong,
+.wp-block-quote b {
+ font-weight: 400;
+}
+
+
+@media screen and (min-width: 46.25em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 20px;
+ line-height: 1.75;
+ }
+
+ .wp-block-quote cite,
+ .wp-block-quote__citation {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 22px;
+ line-height: 1.8182;
+ }
+
+ .wp-block-quote cite,
+ .wp-block-quote__citation {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 18px;
+ line-height: 1.6667;
+ }
+
+ .wp-block-quote cite,
+ .wp-block-quote__citation {
+ font-size: 15px;
+ line-height: 1.6;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 20px;
+ line-height: 1.75;
+ }
+
+ .wp-block-quote cite,
+ .wp-block-quote__citation {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 22px;
+ line-height: 1.8182;
+ }
+
+ .wp-block-quote cite,
+ .wp-block-quote__citation {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+/* Cover Image */
+
+.wp-block-cover-image.aligncenter,
+.wp-block-cover.aligncenter,
+.wp-block-cover-image.alignleft,
+.wp-block-cover.alignleft,
+.wp-block-cover-image.alignright,
+.wp-block-cover.alignright {
+ display: flex;
+}
+
+/* File */
+
+.wp-block-file a.wp-block-file__button {
+ background-color: #333;
+ border: 0;
+ border-radius: 0;
+ color: #fff;
+ cursor: pointer;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-weight: 700;
+ line-height: 1.5;
+ padding: 0.7917em 1.5em;
+ text-transform: uppercase;
+ vertical-align: baseline;
+}
+
+.wp-block-file a.wp-block-file__button:hover,
+.wp-block-file a.wp-block-file__button:focus {
+ background-color: #707070;
+ background-color: rgba(51, 51, 51, 0.7);
+ outline: 0;
+}
+
+.rtl .wp-block-file * + .wp-block-file__button {
+ margin-left: 0.75em;
+ margin-right: 0;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-file a.wp-block-file__button {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding: 0.8214em 1.6429em;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-file a.wp-block-file__button {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-file a.wp-block-file__button {
+ font-size: 12px;
+ font-size: 1.2rem;
+ padding: 0.7917em 1.5833em;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-file a.wp-block-file__button {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding: 0.8214em 1.5714em;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-file a.wp-block-file__button {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+/*--------------------------------------------------------------
+3.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.wp-block-code {
+ background-color: transparent;
+ border: 0;
+ padding: 0;
+}
+
+.wp-block-code code {
+ font-family: Inconsolata, monospace;
+ font-size: inherit;
+}
+
+/* Preformatted */
+
+.wp-block-preformatted {
+ background-color: rgba(0, 0, 0, 0.01);
+ border: 1px solid #eaeaea;
+ line-height: 1.2;
+ margin-bottom: 1.6em;
+ max-width: 100%;
+ overflow: auto;
+ padding: 0.8em;
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+/* Pullquote */
+
+.wp-block-pullquote {
+ border: 0;
+}
+
+.wp-block-pullquote blockquote {
+ border: 0;
+ margin-left: 0;
+ margin-right: 0;
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.wp-block-pullquote cite {
+ color: #333;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 15px;
+ font-style: normal;
+ line-height: 1.6;
+ text-transform: none;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-pullquote cite {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-pullquote cite {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-pullquote cite {
+ font-size: 15px;
+ line-height: 1.6;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-pullquote cite {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-pullquote cite {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+/* Table */
+
+.wp-block-table th,
+.wp-block-table td {
+ border-color: #eaeaea;
+ border-width: 0 1px 1px 0;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Layout Elements
+--------------------------------------------------------------*/
+
+/* Button */
+
+.wp-block-button .wp-block-button__link {
+ cursor: pointer;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: 700;
+ line-height: 1.5;
+ padding: 0.7917em 1.5em;
+ text-transform: uppercase;
+ vertical-align: baseline;
+}
+
+.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link {
+ border: 0;
+}
+
+.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
+ border-bottom: 2px solid;
+}
+
+.wp-block-button__link {
+ background-color: #333;
+ color: #fff;
+}
+
+.is-style-outline .wp-block-button__link:not(.has-text-color) {
+ color: #333;
+}
+
+.wp-block-button__link:hover,
+.wp-block-button__link:focus,
+.is-style-outline .wp-block-button__link:hover,
+.is-style-outline .wp-block-button__link:focus {
+ background-color: #707070;
+ background-color: rgba(51, 51, 51, 0.7);
+ color: #fff;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding: 0.8214em 1.6429em;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 12px;
+ font-size: 1.2rem;
+ padding: 0.7917em 1.5833em;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding: 0.8214em 1.5714em;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+/* Seperators */
+
+.wp-block-separator {
+ border: 0;
+ max-width: 100px;
+}
+
+.wp-block-separator.is-style-wide {
+ max-width: 100%;
+}
+
+/* Media & Text */
+
+.wp-block-media-text {
+ margin-bottom: 1.6em;
+}
+
+.wp-block-media-text *:last-child {
+ margin-bottom: 0;
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Archives, Categories & Latest Posts */
+
+.wp-block-archives.aligncenter,
+.wp-block-categories.aligncenter,
+.wp-block-latest-posts.aligncenter {
+ list-style-position: inside;
+ text-align: center;
+}
+
+/* Latest Comments */
+
+.wp-block-latest-comments {
+ margin: 0;
+}
+
+.wp-block-latest-comments__comment,
+.wp-block-latest-comments__comment-excerpt,
+.wp-block-latest-comments__comment-excerpt p {
+ font-size: inherit;
+}
+
+.wp-block-latest-comments__comment-meta a {
+ border-bottom-color: transparent;
+ font-weight: 700;
+}
+
+.wp-block-latest-comments__comment-excerpt p:last-child {
+ margin-bottom: 0;
+}
+
+.wp-block-latest-comments__comment-date {
+ color: #707070;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ line-height: 1.5;
+ margin-bottom: 1.6em;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 16px;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 12px;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 16px;
+ }
+}
+
+.wp-block-latest-comments .wp-block-latest-comments__comment {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ margin-bottom: 0;
+ padding: 1.6em 0;
+}
+
+/*--------------------------------------------------------------
+6.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+.has-dark-gray-color {
+ color: #111;
+}
+
+.has-dark-gray-background-color {
+ background-color: #111;
+}
+
+.has-light-gray-color {
+ color: #f1f1f1;
+}
+
+.has-light-gray-background-color {
+ background-color: #f1f1f1;
+}
+
+.has-white-color {
+ color: #fff;
+}
+
+.has-white-background-color {
+ background-color: #fff;
+}
+
+.has-yellow-color {
+ color: #f4ca16;
+}
+
+.has-yellow-background-color {
+ background-color: #f4ca16;
+}
+
+.has-dark-brown-color {
+ color: #352712;
+}
+
+.has-dark-brown-background-color {
+ background-color: #352712;
+}
+
+.has-medium-pink-color {
+ color: #e53b51;
+}
+
+.has-medium-pink-background-color {
+ background-color: #e53b51;
+}
+
+.has-light-pink-color {
+ color: #ffe5d1;
+}
+
+.has-light-pink-background-color {
+ background-color: #ffe5d1;
+}
+
+.has-dark-purple-color {
+ color: #2e2256;
+}
+
+.has-dark-purple-background-color {
+ background-color: #2e2256;
+}
+
+.has-purple-color {
+ color: #674970;
+}
+
+.has-purple-background-color {
+ background-color: #674970;
+}
+
+.has-blue-gray-color {
+ color: #22313f;
+}
+
+.has-blue-gray-background-color {
+ background-color: #22313f;
+}
+
+.has-bright-blue-color {
+ color: #55c3dc;
+}
+
+.has-bright-blue-background-color {
+ background-color: #55c3dc;
+}
+
+.has-light-blue-color {
+ color: #e9f2f9;
+}
+
+.has-light-blue-background-color {
+ background-color: #e9f2f9;
+}
+
+.has-dark-gray-gradient-background {
+ background-image: linear-gradient(90deg, rgba(17,17,17,1) 0%, rgba(42,42,42,1) 100%);
+}
+
+.has-light-gray-gradient-background {
+ background-image: linear-gradient(90deg, rgba(241,241,241,1) 0%, rgba(215,215,215,1) 100%);
+}
+
+.has-white-gradient-background {
+ background-image: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
+}
+
+.has-yellow-gradient-background {
+ background-image: linear-gradient(90deg, rgba(244,202,22,1) 0%, rgba(205,168,10,1) 100%);
+}
+
+.has-dark-brown-gradient-background {
+ background-image: linear-gradient(90deg, rgba(53,39,18,1) 0%, rgba(91,67,31,1) 100%);
+}
+
+.has-medium-pink-gradient-background {
+ background-image: linear-gradient(90deg, rgba(229,59,81,1) 0%, rgba(209,28,51,1) 100%);
+}
+
+.has-light-pink-gradient-background {
+ background-image: linear-gradient(90deg, rgba(255,229,209,1) 0%, rgba(255,200,158,1) 100%);
+}
+
+.has-dark-purple-gradient-background {
+ background-image: linear-gradient(90deg, rgba(46,34,86,1) 0%, rgba(66,48,123,1) 100%);
+}
+
+.has-purple-gradient-background {
+ background-image: linear-gradient(90deg, rgba(103,73,112,1) 0%, rgba(131,93,143,1) 100%);
+}
+
+.has-blue-gray-gradient-background {
+ background-image: linear-gradient(90deg, rgba(34,49,63,1) 0%, rgba(52,75,96,1) 100%);
+}
+
+.has-bright-blue-gradient-background {
+ background-image: linear-gradient(90deg, rgba(85,195,220,1) 0%, rgba(43,180,211,1) 100%);
+}
+
+.has-light-blue-gradient-background {
+ background-image: linear-gradient(90deg, rgba(233,242,249,1) 0%, rgba(193,218,238,1) 100%);
+}
diff --git a/static/wp-content/themes/twentyfifteen/css/editor-blocks.css b/static/wp-content/themes/twentyfifteen/css/editor-blocks.css
new file mode 100755
index 0000000..0fe10ca
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/css/editor-blocks.css
@@ -0,0 +1,982 @@
+/*
+Theme Name: Twenty Fifteen
+Description: Used to style blocks in the editor.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 General Typography
+2.0 General Block Styles
+3.0 Blocks - Common Blocks
+4.0 Blocks - Formatting
+5.0 Blocks - Layout Elements
+6.0 Blocks - Widgets
+7.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 General Typography
+--------------------------------------------------------------*/
+
+.edit-post-visual-editor .editor-block-list__block,
+.edit-post-visual-editor .editor-block-list__block p,
+.editor-default-block-appender textarea.editor-default-block-appender__content {
+ font-size: 15px;
+ line-height: 1.6;
+}
+
+.edit-post-visual-editor .editor-block-list__block {
+ color: #333;
+}
+
+.editor-post-title__block .editor-post-title__input {
+ color: #333;
+ font-size: 26px;
+ line-height: 1.1538;
+}
+
+.edit-post-visual-editor h1,
+.edit-post-visual-editor h2,
+.edit-post-visual-editor h3,
+.edit-post-visual-editor h4,
+.edit-post-visual-editor h5,
+.edit-post-visual-editor h6 {
+ clear: both;
+ font-weight: 700;
+}
+
+.edit-post-visual-editor .editor-block-list__block h1 {
+ font-size: 26px;
+ line-height: 1.1538;
+ padding: 0.9em 0 0.45em;
+}
+
+.edit-post-visual-editor .editor-block-list__block h2 {
+ font-size: 22px;
+ line-height: 1.3636;
+ padding: 1em 0 0.5em;
+}
+
+.edit-post-visual-editor .editor-block-list__block h3 {
+ font-size: 18px;
+ line-height: 1.3333;
+ padding: 1.3em 0 0.65em;
+}
+
+.edit-post-visual-editor .editor-block-list__block h4,
+.edit-post-visual-editor .editor-block-list__block h5,
+.edit-post-visual-editor .editor-block-list__block h6 {
+ font-size: 15px;
+ line-height: 1.2;
+ padding: 0.8em 0 0.4em;
+}
+
+.edit-post-visual-editor .editor-block-list__block h5,
+.edit-post-visual-editor .editor-block-list__block h6 {
+ letter-spacing: 0.1em;
+ text-transform: uppercase;
+}
+
+.edit-post-visual-editor > h1:first-child,
+.edit-post-visual-editor > h2:first-child,
+.edit-post-visual-editor > h3:first-child,
+.edit-post-visual-editor > h4:first-child,
+.edit-post-visual-editor > h5:first-child,
+.edit-post-visual-editor > h6:first-child {
+ padding-top: 0;
+}
+
+@media screen and (min-width: 46.25em) {
+ .edit-post-visual-editor .editor-block-list__block,
+ .edit-post-visual-editor .editor-block-list__block p,
+ .editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+
+ .editor-post-title__block .editor-post-title__input {
+ font-size: 35px;
+ line-height: 1.2;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h1 {
+ font-size: 35px;
+ line-height: 1.2;
+ padding: 0.8em 0 0.4em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h2 {
+ font-size: 29px;
+ line-height: 1.2069;
+ padding: 1.0em 0 0.5em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h3 {
+ font-size: 24px;
+ line-height: 1.1667;
+ padding: 1.15em 0 0.6em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h4 {
+ font-size: 20px;
+ line-height: 1.4;
+ padding: .7em 0 0.35em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h5,
+ .edit-post-visual-editor .editor-block-list__block h6 {
+ font-size: 17px;
+ line-height: 1.2353;
+ padding: 0.8em 0 0.4em;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .edit-post-visual-editor .editor-block-list__block,
+ .edit-post-visual-editor .editor-block-list__block p,
+ .editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+
+ .editor-post-title__block .editor-post-title__input {
+ font-size: 39px;
+ line-height: 1.2308;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h1 {
+ font-size: 39px;
+ line-height: 1.2308;
+ padding: 0.8em 0 0.4em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h2 {
+ font-size: 32px;
+ line-height: 1.25;
+ padding: 1em 0 0.5em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h3 {
+ font-size: 27px;
+ line-height: 1.1852;
+ padding: 1.2em 0 0.6em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h4 {
+ font-size: 22px;
+ line-height: 1.4545;
+ padding: 0.75em 0 0.35em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h5,
+ .edit-post-visual-editor .editor-block-list__block h6 {
+ font-size: 19px;
+ line-height: 1.2632;
+ padding: 0.8em 0 0.4em;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .edit-post-visual-editor .editor-block-list__block,
+ .edit-post-visual-editor .editor-block-list__block p,
+ .editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+ font-size: 15px;
+ line-height: 1.6;
+ }
+
+ .editor-post-title__block .editor-post-title__input {
+ font-size: 31px;
+ line-height: 1.1613;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h1 {
+ font-size: 31px;
+ line-height: 1.1613;
+ padding: 0.8em 0 0.4em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h2 {
+ font-size: 26px;
+ line-height: 1.3846;
+ padding: 0.9em 0 0.45em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h3 {
+ font-size: 22px;
+ line-height: 1.3636;
+ padding: 1.1em 0 0.55em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h4 {
+ font-size: 18px;
+ line-height: 1.3333;
+ padding: 0.65em 0 0.3em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h5,
+ .edit-post-visual-editor .editor-block-list__block h6 {
+ font-size: 15px;
+ line-height: 1.2;
+ padding: 0.8em 0 0.4em;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .edit-post-visual-editor .editor-block-list__block,
+ .edit-post-visual-editor .editor-block-list__block p,
+ .editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+
+ .editor-post-title__block .editor-post-title__input {
+ font-size: 35px;
+ line-height: 1.2;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h1 {
+ font-size: 35px;
+ line-height: 1.2;
+ padding: 0.8em 0 0.4em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h2 {
+ font-size: 29px;
+ line-height: 1.2069;
+ padding: 1.0em 0 0.5em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h3 {
+ font-size: 24px;
+ line-height: 1.1667;
+ padding: 1.2em 0 0.6em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h4 {
+ font-size: 20px;
+ line-height: 1.4;
+ padding: 0.7em 0 0.35em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h5,
+ .edit-post-visual-editor .editor-block-list__block h6 {
+ font-size: 17px;
+ line-height: 1.2353;
+ padding: 0.8em 0 0.4em;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .edit-post-visual-editor .editor-block-list__block,
+ .edit-post-visual-editor .editor-block-list__block p,
+ .editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+
+ .editor-post-title__block .editor-post-title__input {
+ font-size: 39px;
+ line-height: 1.2308;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h3 {
+ font-size: 27px;
+ line-height: 1.1852;
+ padding: 1.2em 0 0.6em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h4 {
+ font-size: 22px;
+ line-height: 1.4545;
+ padding: 0.75em 0 0.35em;
+ }
+
+ .edit-post-visual-editor .editor-block-list__block h5,
+ .edit-post-visual-editor .editor-block-list__block h6 {
+ font-size: 19px;
+ line-height: 1.2632;
+ padding: 0.85em 0 0.45em;
+ }
+}
+
+/*--------------------------------------------------------------
+2.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Main column width */
+
+.editor-styles-wrapper {
+ max-width: 100% !important; /* Override where editor-style.css is affecting this. */
+}
+
+.wp-block {
+ max-width: 690px; /* 660px + 30px to account for padding. */
+}
+
+/* Link styles */
+
+.edit-post-visual-editor a,
+.editor-block-list__block a,
+.wp-block-freeform.block-library-rich-text__tinymce a {
+ border-bottom: 1px solid #333;
+ color: #333;
+ text-decoration: none;
+}
+
+/* List styles */
+
+.edit-post-visual-editor ul:not(.wp-block-gallery),
+.editor-block-list__block ul:not(.wp-block-gallery),
+.block-library-list ul,
+.edit-post-visual-editor ol,
+.editor-block-list__block ol,
+.block-library-list ol,
+.block-library-list .editor-rich-text__tinymce {
+ padding: 0;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery),
+.editor-block-list__block ul:not(.wp-block-gallery),
+.block-library-list ul {
+ list-style: disc;
+}
+
+.edit-post-visual-editor ol,
+.editor-block-list__block ol,
+.block-library-list ol {
+ list-style: decimal;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
+.editor-block-list__block ul:not(.wp-block-gallery) li > ul,
+.block-library-list li > ul,
+.edit-post-visual-editor li > ol,
+.editor-block-list__block li > ol,
+.block-library-list li > ol {
+ margin-bottom: 0;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce li,
+.editor-block-list__block li {
+ margin-bottom: 0;
+}
+
+.rtl .editor-styles-wrapper ul ul,
+.rtl .editor-styles-wrapper ol ol,
+.rtl .editor-styles-wrapper ul ol,
+.rtl .editor-styles-wrapper ol ul {
+ margin-left: 0;
+ margin-right: 23px;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce ul,
+.wp-block-freeform.block-library-rich-text__tinymce ol {
+ padding-left: 23px;
+}
+
+.rtl .wp-block-freeform.block-library-rich-text__tinymce ul,
+.rtl .wp-block-freeform.block-library-rich-text__tinymce ol {
+ padding: 0;
+}
+
+/* Quote */
+
+.rtl .editor-block-list__block blockquote {
+ border-left: 0;
+ padding-left: 0;
+}
+
+/* Captions */
+
+[class^="wp-block-"] figcaption {
+ color: #707070;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ margin-bottom: 0;
+ padding: 0.5em 0;
+}
+
+.editor-block-list__block [class^="wp-block-"] figcaption {
+ line-height: 1.5;
+}
+
+@media screen and (min-width: 46.25em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 16px;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 12px;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ [class^="wp-block-"] figcaption {
+ font-size: 16px;
+ }
+}
+
+/* Pre */
+
+[class^="wp-block-"] pre {
+ font-size: inherit;
+}
+
+/* Alignments */
+
+.wp-block-quote.alignright,
+.wp-block-freeform.block-library-rich-text__tinymce .alignright {
+ margin: 0.4211em 0 1.6842em 1.6842em;
+}
+
+.wp-block-quote.alignleft,
+.wp-block-freeform.block-library-rich-text__tinymce .alignleft {
+ margin: 0.4211em 1.6842em 1.6842em 0;
+}
+
+/*--------------------------------------------------------------
+3.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+ font-size: 5em;
+}
+
+/* Quotes */
+
+.wp-block-quote,
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+ color: #707070;
+ margin-bottom: 1.6667em;
+ padding-left: 0.7778em;
+}
+
+.wp-block-quote:not(.is-large):not(.is-style-large),
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+ border-color: #707070;
+}
+
+.edit-post-visual-editor .wp-block-quote p {
+ font-size: 18px;
+ font-style: italic;
+ line-height: 1.6667;
+ margin-bottom: 1.6667em;
+}
+
+.edit-post-visual-editor .wp-block-quote > p:last-child {
+ margin-bottom: 0;
+}
+
+.wp-block-quote__citation {
+ color: #333;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 15px;
+ font-style: normal;
+ line-height: 1.6;
+ text-transform: none;
+}
+
+.wp-block-quote em,
+.wp-block-quote i {
+ font-style: normal;
+}
+
+.wp-block-quote strong,
+.wp-block-quote b {
+ font-weight: 400;
+}
+
+@media screen and (min-width: 46.25em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 20px;
+ line-height: 1.75;
+ }
+
+ .wp-block-quote__citation {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 22px;
+ line-height: 1.8182;
+ }
+
+ .wp-block-quote__citation {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 18px;
+ line-height: 1.6667;
+ }
+
+ .wp-block-quote__citation {
+ font-size: 15px;
+ line-height: 1.6;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 20px;
+ line-height: 1.75;
+ }
+
+ .wp-block-quote__citation {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .edit-post-visual-editor .wp-block-quote p {
+ font-size: 22px;
+ line-height: 1.8182;
+ }
+
+ .wp-block-quote__citation {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+/* Cover */
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-cover-image p,
+.edit-post-visual-editor .editor-block-list__block .wp-block-cover p,
+.wp-block-cover-image h2,
+.wp-block-cover h2 {
+ font-size: 29px;
+ line-height: 1.2069;
+}
+
+/* File */
+
+.wp-block-file .editor-rich-text__tinymce {
+ border-bottom: 1px solid #333;
+}
+
+.wp-block-file .wp-block-file__button {
+ background-color: #333;
+ border: 0;
+ border-radius: 0;
+ color: #fff;
+ cursor: pointer;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-weight: 700;
+ line-height: 1.5;
+ padding: 0.7917em 1.5em;
+ text-transform: uppercase;
+ vertical-align: baseline;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-file .wp-block-file__button {
+ font-size: 14px;
+ padding: 0.8214em 1.6429em;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-file .wp-block-file__button {
+ font-size: 16px;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-file .wp-block-file__button {
+ font-size: 12px;
+ padding: 0.7917em 1.5833em;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-file .wp-block-file__button {
+ font-size: 14px;
+ padding: 0.8214em 1.5714em;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-file .wp-block-file__button {
+ font-size: 16px;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.editor-styles-wrapper .wp-block-code,
+.wp-block-freeform.block-library-rich-text__tinymce code {
+ background: transparent;
+ border: 0;
+ padding: 0;
+}
+
+/* Pullquote */
+
+.wp-block-pullquote,
+.editor-block-list__block .wp-block-pullquote blockquote {
+ border: 0;
+ margin: 0;
+ padding-left: 0;
+}
+
+.wp-block-pullquote .wp-block-pullquote__citation {
+ color: #333;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 15px;
+ font-style: normal;
+ line-height: 1.6;
+ text-transform: none;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-pullquote .wp-block-pullquote__citation {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-pullquote .wp-block-pullquote__citation {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-pullquote .wp-block-pullquote__citation {
+ font-size: 15px;
+ line-height: 1.6;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-pullquote .wp-block-pullquote__citation {
+ font-size: 17px;
+ line-height: 1.6471;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-pullquote .wp-block-pullquote__citation {
+ font-size: 19px;
+ line-height: 1.6842;
+ }
+}
+
+/* Tables */
+
+.editor-block-list__block .wp-block-table th,
+.editor-block-list__block .wp-block-table td {
+ padding: 0;
+}
+
+.rtl .editor-block-list__block .wp-block-table th {
+ text-align: right;
+}
+
+/* Verse */
+
+.editor-styles-wrapper .wp-block-verse {
+ font-family: inherit;
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Layout Elements
+--------------------------------------------------------------*/
+
+/* Button */
+
+.wp-block-button .wp-block-button__link {
+ cursor: pointer;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-weight: 700;
+ line-height: 1.5;
+ padding: 0.7917em 1.5em;
+ text-transform: uppercase;
+ vertical-align: baseline;
+}
+
+.wp-block-button__link {
+ background-color: #333;
+ color: #fff;
+}
+
+.is-style-outline .wp-block-button__link {
+ color: #333;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 14px;
+ padding: 0.8214em 1.6429em;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 16px;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 12px;
+ padding: 0.7917em 1.5833em;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 14px;
+ padding: 0.8214em 1.5714em;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-button .wp-block-button__link {
+ font-size: 16px;
+ padding: 0.8125em 1.625em;
+ }
+}
+
+/* Seperator */
+
+.wp-block-separator {
+ max-width: 100px;
+}
+
+.wp-block-separator.is-style-wide {
+ max-width: 100%;
+}
+
+/* Media & Text */
+
+.wp-block-media-text *:last-child {
+ margin-bottom: 0;
+}
+
+
+/*--------------------------------------------------------------
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Archives, Categories & Latest Posts */
+
+[data-align="center"] .wp-block-archives ul,
+[data-align="center"] .wp-block-categories ul,
+[data-align="center"] .wp-block-latest-posts ul {
+ list-style-position: inside;
+}
+
+
+/* Latest Comments */
+
+.wp-block-latest-comments {
+ margin: 0;
+}
+
+.wp-block-latest-comments__comment,
+.wp-block-latest-comments__comment-excerpt,
+.wp-block-latest-comments__comment-excerpt p {
+ font-size: inherit;
+}
+
+.wp-block-latest-comments__comment-meta a {
+ border-bottom-color: transparent;
+ font-weight: 700;
+}
+
+.wp-block-latest-comments__comment-excerpt p:last-child {
+ margin-bottom: 0;
+}
+
+.wp-block-latest-comments__comment-date {
+ color: #707070;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ line-height: 1.5;
+ margin-bottom: 1.6em;
+}
+
+@media screen and (min-width: 46.25em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 55em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 16px;
+ }
+}
+
+@media screen and (min-width: 59.6875em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 12px;
+ }
+}
+
+@media screen and (min-width: 68.75em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 14px;
+ }
+}
+
+@media screen and (min-width: 77.5em) {
+ .wp-block-latest-comments__comment-date {
+ font-size: 16px;
+ }
+}
+
+.wp-block-latest-comments .wp-block-latest-comments__comment {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ margin-bottom: 0;
+ padding: 1.6em 0;
+}
+
+/* Latest Posts */
+
+.edit-post-visual-editor .wp-block-latest-posts.is-grid {
+ list-style: none;
+ margin-left: 0;
+ margin-right: 0;
+}
+
+.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
+ margin-bottom: 16px;
+}
+
+/*--------------------------------------------------------------
+7.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+:root .editor-styles-wrapper .has-dark-gray-color {
+ color: #111;
+}
+
+:root .editor-styles-wrapper .has-dark-gray-background-color {
+ background-color: #111;
+}
+
+:root .editor-styles-wrapper .has-light-gray-color {
+ color: #f1f1f1;
+}
+
+:root .editor-styles-wrapper .has-light-gray-background-color {
+ background-color: #f1f1f1;
+}
+
+:root .editor-styles-wrapper .has-white-color {
+ color: #fff;
+}
+
+:root .editor-styles-wrapper .has-white-background-color {
+ background-color: #fff;
+}
+
+:root .editor-styles-wrapper .has-yellow-color {
+ color: #f4ca16;
+}
+
+:root .editor-styles-wrapper .has-yellow-background-color {
+ background-color: #f4ca16;
+}
+
+:root .editor-styles-wrapper .has-dark-brown-color {
+ color: #352712;
+}
+
+:root .editor-styles-wrapper .has-dark-brown-background-color {
+ background-color: #352712;
+}
+
+:root .editor-styles-wrapper .has-medium-pink-color {
+ color: #e53b51;
+}
+
+:root .editor-styles-wrapper .has-medium-pink-background-color {
+ background-color: #e53b51;
+}
+
+:root .editor-styles-wrapper .has-light-pink-color {
+ color: #ffe5d1;
+}
+
+:root .editor-styles-wrapper .has-light-pink-background-color {
+ background-color: #ffe5d1;
+}
+
+:root .editor-styles-wrapper .has-dark-purple-color {
+ color: #2e2256;
+}
+
+:root .editor-styles-wrapper .has-dark-purple-background-color {
+ background-color: #2e2256;
+}
+
+:root .editor-styles-wrapper .has-purple-color {
+ color: #674970;
+}
+
+:root .editor-styles-wrapper .has-purple-background-color {
+ background-color: #674970;
+}
+
+:root .editor-styles-wrapper .has-blue-gray-color {
+ color: #22313f;
+}
+
+:root .editor-styles-wrapper .has-blue-gray-background-color {
+ background-color: #22313f;
+}
+
+:root .editor-styles-wrapper .has-bright-blue-color {
+ color: #55c3dc;
+}
+
+:root .editor-styles-wrapper .has-bright-blue-background-color {
+ background-color: #55c3dc;
+}
+
+:root .editor-styles-wrapper .has-light-blue-color {
+ color: #e9f2f9;
+}
+
+:root .editor-styles-wrapper .has-light-blue-background-color {
+ background-color: #e9f2f9;
+}
diff --git a/static/wp-content/themes/twentyfifteen/css/editor-style.css b/static/wp-content/themes/twentyfifteen/css/editor-style.css
new file mode 100755
index 0000000..b2660b1
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/css/editor-style.css
@@ -0,0 +1,481 @@
+/*
+Theme Name: Twenty Fifteen
+Description: Used to style the TinyMCE editor.
+*/
+
+
+/**
+ * Table of Contents:
+ *
+ * 1.0 - Body
+ * 2.0 - Typography
+ * 3.0 - Elements
+ * 4.0 - Alignment
+ * 5.0 - Caption
+ * 6.0 - Galleries
+ * 7.0 - Audio / Video
+ * 8.0 - RTL
+ */
+
+
+/**
+ * 1.0 Body
+ */
+
+body {
+ color: #333;
+ font-family: "Noto Serif", serif;
+ font-weight: 400;
+ font-size: 17px;
+ line-height: 1.6471;
+ margin: auto 20px;
+ max-width: 660px;
+ vertical-align: baseline;
+}
+
+
+/**
+ * 2.0 Typography
+ */
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ clear: both;
+ font-weight: 700;
+ margin: 56px 0 28px;
+}
+
+h1 {
+ font-size: 35px;
+ line-height: 1.2308;
+}
+
+h2 {
+ font-size: 29px;
+ line-height: 1.2069;
+}
+
+h3 {
+ font-size: 24px;
+ line-height: 1.1667;
+}
+
+h4 {
+ font-size: 20px;
+ line-height: 1.4;
+}
+
+h5,
+h6 {
+ font-size: 17px;
+ letter-spacing: 0.1em;
+ line-height: 1.2353;
+ text-transform: uppercase;
+}
+
+h1:first-child,
+h2:first-child,
+h3:first-child,
+h4:first-child,
+h5:first-child,
+h6:first-child {
+ margin-top: 0;
+}
+
+p {
+ margin: 0 0 28px;
+}
+
+b,
+strong {
+ font-weight: 700;
+}
+
+dfn,
+cite,
+em,
+i {
+ font-style: italic;
+}
+
+blockquote {
+ border-left: 4px solid #707070;
+ color: #707070;
+ font-size: 20px;
+ font-style: italic;
+ line-height: 1.8182;
+ margin: 0 0 35px -21px;
+ padding-left: 17px;
+}
+
+blockquote > blockquote {
+ margin-left: 0;
+}
+
+blockquote p {
+ margin-bottom: 35px;
+}
+
+blockquote > p:last-child {
+ margin-bottom: 0;
+}
+
+blockquote cite,
+blockquote small {
+ color: #333;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 17px;
+ line-height: 1.6471;
+}
+
+blockquote em,
+blockquote i,
+blockquote cite {
+ font-style: normal;
+}
+
+blockquote strong,
+blockquote b {
+ font-weight: 400;
+}
+
+address {
+ font-style: italic;
+ margin: 0 0 28px;
+}
+
+code,
+kbd,
+tt,
+var,
+samp,
+pre {
+ font-family: Inconsolata, monospace;
+}
+
+pre {
+ background-color: #fcfcfc;
+ border: 1px solid #eaeaea;
+ font-size: 17px;
+ line-height: 1.2353;
+ margin-bottom: 28px;
+ overflow: auto;
+ padding: 14px;
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+abbr[title] {
+ border-bottom: 1px dotted #eaeaea;
+ cursor: help;
+}
+
+mark,
+ins {
+ background-color: #fff9c0;
+ text-decoration: none;
+}
+
+sup,
+sub {
+ font-size: 75%;
+ height: 0;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sup {
+ bottom: 1ex;
+}
+
+sub {
+ top: .5ex;
+}
+
+small {
+ font-size: 75%;
+}
+
+big {
+ font-size: 125%;
+}
+
+
+/**
+ * 3.0 Elements
+ */
+
+hr {
+ background-color: #eaeaea;
+ border: 0;
+ height: 1px;
+ margin-bottom: 28px;
+}
+
+ul,
+ol {
+ margin: 0 0 28px 0;
+ padding: 0;
+}
+
+ul {
+ list-style: disc;
+}
+
+ol {
+ list-style: decimal;
+}
+
+li > ul,
+li > ol {
+ margin: 0 0 0 23px;
+}
+
+blockquote > ul,
+blockquote > ol {
+ margin-left: 28px;
+}
+
+dl {
+ margin: 0 0 28px;
+}
+
+dt {
+ font-weight: bold;
+}
+
+dd {
+ margin: 0 0 28px;
+}
+
+table,
+th,
+td,
+.mce-item-table,
+.mce-item-table th,
+.mce-item-table td {
+ border: 1px solid #eaeaea;
+}
+
+table a {
+ color: #333;
+}
+
+table,
+.mce-item-table {
+ border-collapse: separate;
+ border-spacing: 0;
+ border-width: 1px 0 0 1px;
+ margin: 0 0 28px;
+ width: 100%;
+}
+
+table th,
+.mce-item-table th,
+table caption {
+ border-width: 0 1px 1px 0;
+ font-family: "Noto Serif", serif;
+ font-size: 17px;
+ font-weight: 700;
+ padding: 7px;
+ text-align: left;
+ vertical-align: baseline;
+}
+
+table td,
+.mce-item-table td {
+ border-width: 0 1px 1px 0;
+ font-family: "Noto Serif", serif;
+ font-size: 17px;
+ padding: 7px;
+ vertical-align: baseline;
+}
+
+img {
+ border: 0;
+ height: auto;
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+figure {
+ margin: 0;
+}
+
+del {
+ opacity: 0.8;
+}
+
+a {
+ border-bottom: 1px solid #333;
+ color: #333;
+ text-decoration: none;
+}
+
+
+/**
+ * 4.0 Alignment
+ */
+
+.alignleft {
+ float: left;
+ margin: 7px 28px 28px 0;
+}
+
+.alignright {
+ float: right;
+ margin: 7px 0 28px 28px;
+}
+
+.aligncenter {
+ clear: both;
+ display: block;
+ margin: 7px auto;
+}
+
+
+/**
+ * 5.0 Caption
+ */
+
+.wp-caption {
+ background: transparent;
+ border: none;
+ color: #707070;
+ font-family: "Noto Sans", sans-serif;
+ margin: 0 0 28px 0;
+ max-width: 100%;
+ padding: 0;
+ text-align: inherit;
+}
+
+.wp-caption.alignleft {
+ margin: 7px 28px 21px 0;
+}
+
+.wp-caption.alignright {
+ margin: 7px 0 21px 28px;
+}
+
+.wp-caption.aligncenter {
+ margin: 7px auto;
+}
+
+.wp-caption .wp-caption-text,
+.wp-caption-dd {
+ font-size: 14px;
+ line-height: 1.5;
+ padding: 7px 0;
+}
+
+
+/**
+ * 6.0 Galleries
+ */
+
+.gallery-item {
+ display: inline-block;
+ padding: 1.79104477%;
+ text-align: center;
+ vertical-align: top;
+ width: 100%;
+}
+
+.gallery-columns-2 .gallery-item {
+ max-width: 50%;
+}
+
+.gallery-columns-3 .gallery-item {
+ max-width: 33.33%;
+}
+
+.gallery-columns-4 .gallery-item {
+ max-width: 25%;
+}
+
+.gallery-columns-5 .gallery-item {
+ max-width: 20%;
+}
+
+.gallery-columns-6 .gallery-item {
+ max-width: 16.66%;
+}
+
+.gallery-columns-7 .gallery-item {
+ max-width: 14.28%;
+}
+
+.gallery-columns-8 .gallery-item {
+ max-width: 12.5%;
+}
+
+.gallery-columns-9 .gallery-item {
+ max-width: 11.11%;
+}
+
+.gallery .gallery-caption {
+ color: #707070;
+ display: block;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 14px;
+ line-height: 1.5;
+ padding: 7px 0;
+}
+
+.gallery-columns-6 .gallery-caption,
+.gallery-columns-7 .gallery-caption,
+.gallery-columns-8 .gallery-caption,
+.gallery-columns-9 .gallery-caption {
+ display: none;
+}
+
+
+/**
+ * 7.0 Audio / Video
+ */
+
+.mce-content-body .wpview-wrap {
+ margin-bottom: 32px;
+}
+
+.mce-content-body .wp-audio-playlist {
+ margin: 0;
+}
+
+
+/**
+ * 8.0 RTL
+ */
+
+body.rtl {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+.rtl blockquote {
+ border-left: none;
+ border-right: 4px solid #707070;
+ margin: 0 -21px 35px 0;
+ padding-left: 0;
+ padding-right: 17px;
+}
+
+.rtl blockquote > blockquote {
+ margin-left: auto;
+ margin-right: 0;
+}
+
+.rtl li > ul,
+.rtl li > ol {
+ margin: 0 23px 0 0;
+}
+
+.rtl table th,
+.rtl table caption {
+ text-align: right;
+}
diff --git a/static/wp-content/themes/twentyfifteen/css/ie.css b/static/wp-content/themes/twentyfifteen/css/ie.css
new file mode 100755
index 0000000..74ead6a
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/css/ie.css
@@ -0,0 +1,948 @@
+/*
+Theme Name: Twenty Fifteen
+Description: Global Styles for older IE versions (previous to IE9).
+*/
+
+body,
+button,
+input,
+select,
+textarea {
+ font-size: 19px;
+ line-height: 1.6842;
+}
+
+button,
+input {
+ line-height: normal;
+}
+
+p,
+address,
+pre,
+hr,
+ul,
+ol,
+dl,
+dd,
+table {
+ margin-bottom: 1.6842em;
+}
+
+ul,
+ol {
+ margin-left: 0;
+}
+
+li > ul,
+li > ol,
+blockquote > ul,
+blockquote > ol {
+ margin-left: 1.3333em;
+}
+
+blockquote {
+ border-color: inherit;
+ border-style: solid;
+ border-width: 0 0 0 4px;
+ font-size: 22px;
+ line-height: 1.8182;
+ margin-bottom: 1.8182em;
+ margin-left: -1.0909em;
+ padding-left: 0.9091em;
+}
+
+blockquote > blockquote {
+ margin-left: 0;
+}
+
+blockquote p {
+ margin-bottom: 1.8182em;
+}
+
+blockquote cite,
+blockquote small {
+ font-size: 19px;
+ line-height: 1.6842;
+}
+
+pre {
+ line-height: 1.2632;
+}
+
+.entry-content img,
+.entry-summary img,
+.page-content img,
+.comment-content img,
+.widget img {
+ max-width: 660px;
+}
+
+img.size-full,
+img.size-large,
+img.header-image,
+img.wp-post-image,
+img[class*="align"],
+img[class*="wp-image-"],
+img[class*="attachment-"] {
+ height: auto;
+ width: auto; /* Prevent stretching of full-size and large-size images with height and width attributes in IE8 */
+}
+
+button,
+input[type="button"],
+input[type="reset"],
+input[type="submit"],
+.post-password-form input[type="submit"],
+.widecolumn #submit,
+.widecolumn .mu_register input[type="submit"] {
+ font-size: 16px;
+ padding: 0.8125em 1.625em;
+}
+
+input[type="text"],
+input[type="email"],
+input[type="url"],
+input[type="password"],
+input[type="search"],
+textarea {
+ padding: 0.5278em;
+}
+
+.main-navigation {
+ font-size: 16px;
+ line-height: 1.5;
+ margin: 9.0909%;
+}
+
+.main-navigation ul ul {
+ border-bottom: 0;
+ border-top: 0;
+ margin-left: 1em;
+}
+
+.main-navigation a {
+ padding: 0.75em 0;
+}
+
+.main-navigation .menu-item-has-children > a {
+ padding-right: 48px;
+}
+
+.main-navigation .menu-item-description {
+ font-size: 13px;
+ line-height: 1.8462;
+ margin-top: 0;
+}
+
+.social-navigation {
+ margin: 9.0909%;
+ max-width: 660px;
+ padding-top: 0;
+}
+
+.social-navigation ul {
+ margin-bottom: -1.2632em;
+}
+
+.social-navigation a {
+ width: 2.5263em;
+ height: 2.5263em;
+}
+
+.secondary-toggle {
+ margin-top: -32px;
+ right: 7.6897%;
+ width: 64px;
+ height: 64px;
+}
+
+.secondary-toggle:before {
+ line-height: 64px;
+}
+
+.post-password-form label,
+.post-navigation .meta-nav,
+.comment-navigation,
+.image-navigation,
+.author-heading,
+.author-bio,
+.entry-footer,
+.page-links a,
+.page-links span,
+.comment-metadata,
+.pingback .edit-link,
+.comment-list .reply,
+.comment-notes,
+.comment-awaiting-moderation,
+.logged-in-as,
+.comment-form label,
+.form-allowed-tags,
+.site-info,
+.wp-caption-text,
+.gallery-caption,
+.entry-caption,
+.widecolumn label,
+.widecolumn .mu_register label {
+ font-size: 16px;
+}
+
+.post-navigation .post-title {
+ font-size: 24px;
+ line-height: 1.1667;
+}
+
+.pagination .nav-links {
+ min-height: 3.3684em;
+}
+
+.pagination .page-numbers {
+ line-height: 3.3684em;
+ padding: 0 0.8421em;
+}
+
+.pagination .prev,
+.pagination .next {
+ padding: 0;
+ width: 64px;
+ height: 64px;
+}
+
+.pagination .prev:before,
+.pagination .next:before {
+ line-height: 64px;
+ width: 64px;
+ height: 64px;
+}
+
+.image-navigation a {
+ display: block;
+ margin-bottom: 2em;
+}
+
+.image-navigation .nav-previous,
+.comment-navigation .nav-previous {
+ float: left;
+ width: 50%;
+}
+.image-navigation .nav-next,
+.comment-navigation .nav-next {
+ float: right;
+ text-align: right;
+ width: 50%;
+}
+
+.image-navigation .nav-previous a:before,
+.image-navigation .nav-next a:after,
+.comment-navigation .nav-previous a:before,
+.comment-navigation .nav-next a:after {
+ font-size: 24px;
+ top: -1px;
+}
+
+blockquote.alignleft,
+.wp-caption.alignleft,
+img.alignleft {
+ margin: 0.4211em 1.6842em 1.6842em 0;
+}
+
+blockquote.alignright,
+.wp-caption.alignright,
+img.alignright {
+ margin: 0.4211em 0 1.6842em 1.6842em;
+}
+
+blockquote.aligncenter,
+.wp-caption.aligncenter,
+img.aligncenter {
+ margin-top: 0.4211em;
+ margin-bottom: 1.6842em;
+}
+
+.site-header {
+ border-top: 1px solid transparent;
+ border-bottom: 1px solid transparent;
+ padding: 0;
+}
+
+.secondary {
+ background-color: #fff;
+ margin: 0 auto;
+ max-width: 807px;
+ padding: 0;
+}
+
+.site-main {
+ padding: 7.6923% 0;
+}
+
+.site-content {
+ margin: 0 auto;
+ max-width: 954px;
+}
+
+.site-branding {
+ background-color: inherit;
+ margin: 0 auto;
+ max-width: 954px;
+ padding: 0;
+}
+
+.site-title {
+ font-size: 32px;
+ line-height: 1.25;
+ margin: 7.6897% 7.6897% 0;
+}
+
+.site-description {
+ background-color: inherit;
+ display: block;
+ filter: alpha(opacity=70);
+ font-size: 16px;
+ margin: 0.5em 7.6897% 7.6897%;
+}
+
+.sidebar {
+ position: static !important;
+}
+
+.widget-area {
+ clear: both;
+ margin: 9.0909% 9.0909% 0;
+ max-width: 660px;
+}
+
+.widget {
+ font-size: 16px;
+ margin: 0 0 11.1111%;
+}
+
+.widget p,
+.widget address,
+.widget hr,
+.widget ul,
+.widget ol,
+.widget dl,
+.widget dd,
+.widget table,
+.widget pre {
+ margin-bottom: 1.5em;
+}
+
+.widget li > ul,
+.widget li > ol {
+ margin-bottom: 0;
+}
+
+.widget blockquote {
+ font-size: 19px;
+ line-height: 1.6842;
+ margin-bottom: 1.6842em;
+ margin-left: -1.2632em;
+ padding-left: 1.0526em;
+}
+
+.widget blockquote > blockquote {
+ margin-left: 0;
+}
+
+.widget blockquote p {
+ margin-bottom: 1.6842em;
+}
+
+.widget blockquote cite,
+.widget blockquote small {
+ font-size: 16px;
+ line-height: 1.5;
+}
+
+.widget pre {
+ line-height: 1.5;
+ padding: 0.75em;
+}
+
+.widget button,
+.widget input,
+.widget select,
+.widget textarea {
+ line-height: 1.5;
+}
+
+.widget button,
+.widget input {
+ line-height: normal;
+}
+
+.widget button,
+.widget input[type="button"],
+.widget input[type="reset"],
+.widget input[type="submit"] {
+ font-size: 16px;
+ padding: 0.8125em 1.625em;
+}
+
+.widget input[type="text"],
+.widget input[type="email"],
+.widget input[type="url"],
+.widget input[type="password"],
+.widget input[type="search"],
+.widget textarea {
+ padding: 0.75em;
+}
+
+.widget-title {
+ margin: 0 0 1.5em;
+}
+
+.widget_calendar td,
+.widget_calendar th {
+ line-height: 2.9375;
+}
+
+.widget_calendar caption {
+ margin: 0 0 1.5em;
+}
+
+.widget_archive li,
+.widget_categories li,
+.widget_links li,
+.widget_meta li,
+.widget_nav_menu li,
+.widget_pages li,
+.widget_recent_comments li,
+.widget_recent_entries li {
+ padding: 0.7188em 0;
+}
+
+.widget_categories .children,
+.widget_nav_menu .sub-menu,
+.widget_pages .children {
+ margin: 0.7188em 0 0 1em;
+ padding-top: 0.7188em;
+}
+
+.widget_rss li {
+ margin-bottom: 1.5em;
+}
+
+.widget_rss .rss-date,
+.widget_rss cite {
+ font-size: 13px;
+ line-height: 1.8462;
+}
+
+.widget .wp-caption-text,
+.widget .gallery-caption {
+ line-height: 1.5;
+ padding: 0.5em 0;
+}
+
+.hentry,
+.page-header,
+.page-content {
+ margin: 0 7.6923%;
+}
+
+.hentry + .hentry,
+.page-header + .hentry,
+.page-header + .page-content {
+ margin-top: 7.6923%;
+}
+
+.post-thumbnail {
+ margin-bottom: 2.9474em;
+}
+
+.entry-header {
+ padding: 0 9.0909%;
+}
+
+.entry-title,
+.widecolumn h2 {
+ font-size: 39px;
+ line-height: 1.2308;
+ margin-bottom: 1.2308em;
+}
+
+.entry-content,
+.entry-summary {
+ padding: 0 9.0909% 9.0909%;
+}
+
+.entry-content h1,
+.entry-summary h1,
+.page-content h1,
+.comment-content h1 {
+ font-size: 39px;
+ line-height: 1.2308;
+ margin-top: 1.641em;
+ margin-bottom: 0.8205em;
+}
+
+.entry-content h2,
+.entry-summary h2,
+.page-content h2,
+.comment-content h2 {
+ font-size: 32px;
+ line-height: 1.25;
+ margin-top: 2em;
+ margin-bottom: 1em;
+}
+
+.entry-content h3,
+.entry-summary h3,
+.page-content h3,
+.comment-content h3 {
+ font-size: 27px;
+ line-height: 1.1852;
+ margin-top: 2.3704em;
+ margin-bottom: 1.1852em;
+}
+
+.entry-content h4,
+.entry-summary h4,
+.page-content h4,
+.comment-content h4 {
+ font-size: 22px;
+ line-height: 1.4545;
+ margin-top: 2.9091em;
+ margin-bottom: 1.4545em;
+}
+
+.entry-content h5,
+.entry-content h6,
+.entry-summary h5,
+.entry-summary h6,
+.page-content h5,
+.page-content h6,
+.comment-content h5,
+.comment-content h6 {
+ font-size: 19px;
+ line-height: 1.2632;
+ margin-top: 3.3684em;
+ margin-bottom: 1.6842em;
+}
+
+.entry-content .more-link:after {
+ font-size: 24px;
+ top: 3px;
+}
+
+.author-info {
+ margin: 0 9.0909%;
+ padding: 9.0909% 0;
+}
+
+.author-info .avatar {
+ margin: 0 1.6842em 1.6842em 0;
+ width: 56px;
+ height: 56px;
+}
+
+.author-link:after {
+ font-size: 24px;
+ top: 0;
+}
+
+.entry-footer {
+ padding: 4.5454% 9.0909%;
+}
+
+.posted-on:before,
+.byline:before,
+.cat-links:before,
+.tags-links:before,
+.comments-link:before,
+.entry-format:before,
+.edit-link:before,
+.full-size-link:before {
+ top: 4px;
+}
+
+.updated {
+ display: none;
+}
+
+.updated.published {
+ display: inline;
+}
+
+.page-header {
+ border-color: inherit;
+ border-style: solid;
+ border-width: 0 0 0 7px;
+ padding: 3.8461% 7.6923%;
+}
+
+.page-title,
+.taxonomy-description {
+ margin-left: -7px;
+}
+
+.taxonomy-description {
+ padding-top: 0.4211em;
+}
+
+.page-title,
+.comments-title,
+.comment-reply-title,
+.post-navigation .post-title {
+ font-size: 27px;
+ line-height: 1.1852;
+}
+
+.page-content {
+ padding: 7.6923%;
+}
+
+.page-links {
+ margin-bottom: 1.4736em;
+}
+
+.page-links a,
+.page-links > span {
+ margin: 0 0.25em 0.25em 0;
+}
+
+.format-aside .entry-title,
+.format-image .entry-title,
+.format-video .entry-title,
+.format-quote .entry-title,
+.format-gallery .entry-title,
+.format-status .entry-title,
+.format-link .entry-title,
+.format-audio .entry-title,
+.format-chat .entry-title {
+ font-size: 22px;
+ line-height: 1.4545;
+ margin-bottom: 32px;
+}
+
+.format-link .entry-title a:after {
+ top: 0.125em;
+}
+
+.comments-title {
+ margin-bottom: 1.4545em;
+}
+
+.comment-list article,
+.comment-list .pingback,
+.comment-list .trackback {
+ padding: 1.6842em 0;
+}
+
+.comment-list + .comment-respond,
+.comment-navigation + .comment-respond {
+ padding-top: 1.6842em;
+}
+
+.comment-list .children > li {
+ padding-left: 1.4737em;
+}
+
+.comment-meta {
+ position: relative;
+}
+
+.comment-author {
+ margin-bottom: 0;
+ padding-left: 4.6315em;
+}
+
+.comment-author .avatar {
+ margin: 0;
+ position: absolute;
+ top: 3px;
+ left: 0;
+ width: 56px;
+ height: 56px;
+}
+
+.comment-metadata {
+ line-height: 2;
+ padding-left: 5.5em;
+}
+
+.comment-metadata .edit-link:before,
+.pingback .edit-link:before {
+ top: 8px;
+}
+
+.bypostauthor > article .fn:after {
+ top: 8px;
+ left: 6px;
+}
+
+.comment-content ul,
+.comment-content ol {
+ margin: 0 0 1.6842em 0;
+}
+
+.comment-content li > ul,
+.comment-content li > ol,
+.comment-content blockquote > ul,
+.comment-content blockquote > ol {
+ margin-left: 1.3333em;
+}
+
+.comment-list .reply a {
+ padding: 0.4375em 0.875em;
+}
+
+.comment-form,
+.no-comments {
+ padding-top: 1.6842em;
+}
+
+.comment-reply-title small a:before {
+ top: -1px;
+}
+
+.comment-list .reply {
+ margin-top: 0;
+}
+
+.site-footer {
+ border-top: 1px solid transparent;
+ border-bottom: 1px solid transparent;
+ margin: 0 auto;
+ max-width: 806px;
+ padding: 0;
+}
+
+.site-info {
+ margin: 4.5454% 9.0909%;
+}
+
+.post-navigation {
+ border-top: 0;
+ margin: 7.6923% 7.6923% 0;
+}
+
+.post-navigation a {
+ padding: 4.5454% 9.0909%;
+}
+
+.pagination {
+ border-top: 0;
+ margin: 7.6923% 7.6923% 0;
+ padding: 0;
+}
+
+.pagination .page-numbers {
+ display: inline-block;
+}
+
+.pagination .meta-nav {
+ display: none;
+}
+
+.image-navigation {
+ padding: 0 9.0909%;
+}
+
+.comments-area {
+ border-top: 0;
+ margin: 7.6923% 7.6923% 0;
+}
+
+embed,
+iframe,
+object,
+video {
+ margin-bottom: 1.6842em;
+}
+
+.wp-audio-shortcode,
+.wp-video,
+.wp-playlist.wp-audio-playlist {
+ font-size: 19px;
+ margin-bottom: 1.6842em;
+}
+
+.wp-caption,
+.gallery {
+ margin-bottom: 1.6842em;
+}
+
+.wp-caption-text,
+.gallery-caption {
+ padding: 0.5em 0;
+}
+
+.widecolumn {
+ margin: 7.6923%;
+}
+
+.widecolumn .mu_alert {
+ margin-bottom: 1.6842em;
+}
+
+.widecolumn p {
+ margin: 1.6842em 0;
+}
+
+.widecolumn p + h2 {
+ margin-top: 1.641em;
+}
+
+.widecolumn #key,
+.widecolumn .mu_register #blog_title,
+.widecolumn .mu_register #user_email,
+.widecolumn .mu_register #blogname,
+.widecolumn .mu_register #user_name {
+ font-size: 19px;
+}
+
+.widecolumn .mu_register #blog_title,
+.widecolumn .mu_register #user_email,
+.widecolumn .mu_register #user_name {
+ margin: 0 0 0.421em;
+}
+
+
+/**
+ * RTL
+ */
+
+.rtl ul,
+.rtl ol {
+ margin-right: 0;
+ margin-left: auto;
+}
+
+.rtl li > ul,
+.rtl li > ol,
+.rtl blockquote > ul,
+.rtl blockquote > ol {
+ margin-right: 1.3333em;
+ margin-left: auto;
+}
+
+.rtl blockquote {
+ border-width: 0 4px 0 0;
+ margin-right: -1.0909em;
+ margin-left: auto;
+ padding-right: 0.9091em;
+ padding-left: 0;
+}
+
+.rtl blockquote > blockquote {
+ margin-right: 0;
+ margin-left: auto;
+}
+
+.rtl .main-navigation ul ul {
+ margin-right: 1em;
+ margin-left: auto;
+}
+
+.rtl .main-navigation .menu-item-has-children > a {
+ padding-right: 0;
+ padding-left: 48px;
+}
+
+.rtl .secondary-toggle {
+ right: auto;
+ left: 7.6897%;
+}
+
+.rtl .image-navigation .nav-previous,
+.rtl .comment-navigation .nav-previous {
+ float: right;
+}
+
+.rtl .image-navigation .nav-next,
+.rtl .comment-navigation .nav-next {
+ float: left;
+ text-align: left;
+}
+
+.rtl blockquote.alignright,
+.rtl .wp-caption.alignright,
+.rtl img.alignright {
+ margin: 0.4211em 0 1.6842em 1.6842em;
+}
+
+.rtl blockquote.alignleft,
+.rtl .wp-caption.alignleft,
+.rtl img.alignleft {
+ margin: 0.4211em 1.6842em 1.6842em 0;
+}
+
+.rtl .widget blockquote {
+ margin-right: -1.2632em;
+ margin-left: auto;
+ padding-right: 1.0526em;
+ padding-left: 0;
+}
+
+.rtl .widget blockquote > blockquote {
+ margin-right: 0;
+ margin-left: auto;
+}
+
+.rtl .widget_categories .children,
+.rtl .widget_nav_menu .sub-menu,
+.rtl .widget_pages .children {
+ margin: 0.7188em 1em 0 0;
+}
+
+.rtl .page-links a,
+.rtl .page-links > span {
+ margin: 0 0 0.25em 0.25em;
+}
+
+.rtl .author-info .avatar {
+ margin: 0 0 1.6842em 1.6842em;
+}
+
+.rtl .page-header {
+ border-width: 0 7px 0 0;
+}
+
+.rtl .page-title,
+.rtl .taxonomy-description {
+ margin-right: -7px;
+ margin-left: auto;
+}
+
+.rtl .comment-list .children > li {
+ padding-right: 1.4737em;
+ padding-left: 0;
+}
+
+.rtl .comment-author {
+ padding-right: 4.6315em;
+ padding-left: 0;
+}
+
+.rtl .comment-author .avatar {
+ right: 0;
+ left: auto;
+}
+
+.rtl .comment-content ul,
+.rtl .comment-content ol {
+ margin-right: 0;
+ margin-left: auto;
+}
+
+.rtl .comment-content li > ul,
+.rtl .comment-content li > ol,
+.rtl .comment-content blockquote > ul,
+.rtl .comment-content blockquote > ol {
+ margin-right: 1.3333em;
+ margin-left: auto;
+}
+
+.rtl .comment-metadata {
+ padding-right: 5.5em;
+ padding-left: 0;
+}
+
+.rtl .bypostauthor > article .fn:after {
+ right: 6px;
+ left: auto;
+}
diff --git a/static/wp-content/themes/twentyfifteen/css/ie7.css b/static/wp-content/themes/twentyfifteen/css/ie7.css
new file mode 100755
index 0000000..6f8cd43
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/css/ie7.css
@@ -0,0 +1,89 @@
+/*
+Theme Name: Twenty Fifteen
+Description: IE7 specific style.
+*/
+
+.screen-reader-text {
+ clip: rect(1px 1px 1px 1px);
+}
+
+.secondary-toggle {
+ color: #333;
+ font-size: 16px;
+ line-height: 60px;
+ width: auto;
+}
+
+.pagination .prev,
+.pagination .next {
+ font-size: 16px;
+ font-weight: 700;
+ line-height: 64px;
+ padding: 0 19px;
+ width: auto;
+}
+
+.image-navigation,
+.comment-navigation {
+ width: 662px;
+}
+
+.post-navigation {
+ text-align: left;
+}
+
+.site-main {
+ text-align: center;
+}
+
+.hentry {
+ margin-bottom: 7.6923%;
+ text-align: left;
+ width: 808px;
+}
+
+.page-header {
+ margin-bottom: 7.6923%;
+ text-align: left;
+}
+
+.comments-area {
+ text-align: left;
+}
+
+.comment-list,
+.comment-navigation {
+ margin-bottom: 1.6471em;
+}
+
+.gallery-columns-2 .gallery-item {
+ max-width: 48%;
+}
+
+.gallery-columns-3 .gallery-item {
+ max-width: 31%;
+}
+
+.gallery-columns-4 .gallery-item {
+ max-width: 22%;
+}
+
+.gallery-columns-5 .gallery-item {
+ max-width: 17%;
+}
+
+.gallery-columns-6 .gallery-item {
+ max-width: 13.5%;
+}
+
+.gallery-columns-7 .gallery-item {
+ max-width: 11%;
+}
+
+.gallery-columns-8 .gallery-item {
+ max-width: 9.5%;
+}
+
+.gallery-columns-9 .gallery-item {
+ max-width: 8%;
+}
diff --git a/static/wp-content/themes/twentyfifteen/genericons/COPYING.txt b/static/wp-content/themes/twentyfifteen/genericons/COPYING.txt
new file mode 100755
index 0000000..aece214
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/genericons/COPYING.txt
@@ -0,0 +1,9 @@
+Genericons is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+
+The fonts are distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
+
+This license does not convey any intellectual property rights to third party trademarks that may be included in the icon font; such marks remain subject to all rights and guidelines of use of their owner.
\ No newline at end of file
diff --git a/static/wp-content/themes/twentyfifteen/genericons/Genericons.eot b/static/wp-content/themes/twentyfifteen/genericons/Genericons.eot
new file mode 100755
index 0000000..b5f8647
Binary files /dev/null and b/static/wp-content/themes/twentyfifteen/genericons/Genericons.eot differ
diff --git a/static/wp-content/themes/twentyfifteen/genericons/Genericons.svg b/static/wp-content/themes/twentyfifteen/genericons/Genericons.svg
new file mode 100755
index 0000000..f813110
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/genericons/Genericons.svg
@@ -0,0 +1,543 @@
+
+
+
+
diff --git a/static/wp-content/themes/twentyfifteen/genericons/Genericons.ttf b/static/wp-content/themes/twentyfifteen/genericons/Genericons.ttf
new file mode 100755
index 0000000..1f160dd
Binary files /dev/null and b/static/wp-content/themes/twentyfifteen/genericons/Genericons.ttf differ
diff --git a/static/wp-content/themes/twentyfifteen/genericons/Genericons.woff b/static/wp-content/themes/twentyfifteen/genericons/Genericons.woff
new file mode 100755
index 0000000..973e033
Binary files /dev/null and b/static/wp-content/themes/twentyfifteen/genericons/Genericons.woff differ
diff --git a/static/wp-content/themes/twentyfifteen/genericons/LICENSE.txt b/static/wp-content/themes/twentyfifteen/genericons/LICENSE.txt
new file mode 100755
index 0000000..d159169
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/genericons/LICENSE.txt
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/static/wp-content/themes/twentyfifteen/genericons/README.md b/static/wp-content/themes/twentyfifteen/genericons/README.md
new file mode 100755
index 0000000..faf8f60
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/genericons/README.md
@@ -0,0 +1,152 @@
+## Genericons
+
+Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
+
+Use genericons for instant HiDPI, to change icon colors on the fly, or even with CSS effects such as drop-shadows or gradients!
+
+
+### Usage
+
+To use it, place the `font` folder in your stylesheet directory and enqueue the genericons.css file. Now you can create an icon like this:
+
+```
+.my-icon:before {
+ content: '\f101';
+ font: normal 16px/1 'Genericons';
+ display: inline-block;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+```
+
+This will output a comment icon before every element with the class "my-icon". The `content: '\f101';` part of this CSS is easily copied from the helper tool at http://genericons.com/, or `example.html` in the `font` directory.
+
+You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
+
+
+### Notes
+
+**Photoshop mockups**
+
+The `Genericons.ttf` file found in the `font` directory can be placed in your system fonts folder and used Photoshop or other graphics apps if you like.
+
+If you're using Genericons in your Photoshop mockups, please remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system.
+
+**Pixel grid**
+
+Genericons has been designed for a 16x16px grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible blurry.
+
+**Antialiasing**
+
+If you keep intact the `-webkit-font-smoothing: antialiased;` and `-moz-osx-font-smoothing: grayscale;` CSS properties. That'll make the icons look their best possible, in Firefox and WebKit based browsers.
+
+**optimizeLegibility**
+
+Note: On Android browsers with version 4.2, 4.3, and probably later, Genericons will simply not show up if you're using the CSS property "text-rendering" set to "optimizeLegibility.
+
+**Updates**
+
+We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended.
+
+
+### Changelog
+
+**3.2**
+
+A number of new icons and a couple of quick updates.
+
+* New: Activity
+* New: HTML anchor
+* New: Bug
+* New: Download
+* New: Handset
+* New: Microphone
+* New: Minus
+* New: Plus
+* New: Move
+* New: Rating stars, empty, half, full
+* New: Shuffle
+* New: video camera
+* New: Spotify
+* New: Twitch
+* Update: Fixed geometry in Edit icon
+* Update: Updated Foursquare icon
+
+Twitch and Spotify mark the last social icons that will be added to Genericons.
+Future social icons will have to happen in a separate font.
+
+**3.1**
+
+Genericons is now generated using a commandline tool called FontCustom. This makes it far easier to add new icons to the font, but the switch means the download zip now has a different layout, fonts have different filenames, there's now no .otf font included (but the .ttf should suffice), and the font now has slightly different metrics. I've taken great care to ensure this new version should work as a drop-in replacement, but please be mindful and test carefully if you choose to upgrade.
+
+* Per feedback, the baked-in 16px width and height has been removed from the helper CSS. It wasn't really necessary (the glyph itself has these dimensions naturally), and it caused some headaches.
+* Base64 encoding is now included by default in the helper CSS. This makes it drop-in easy to get Genericons working in Firefox even when using a CDN.
+* Title attribute on website tool.
+* New: Website.
+* New: Ellipsis.
+* New: Foursquare.
+* New: X-post.
+* New: Sitemap.
+* New: Hierarchy.
+* New: Paintbrush.
+* Updated: Show and Hide icons were updated for clarity.
+
+**3.0.3**
+
+Bunch of updates mostly.
+
+* Two new icons, Dropbox and Fullscreen.
+* Updates to all icons containing an exclamation mark.
+* Updates to Image and Quote.
+* Nicer "Share" icon.
+* Bigger default Linkedin icon.
+
+**3.0.2**
+
+A slew of new stuff and updates.
+
+* Social icons: Skype, Digg, Reddit, Stumbleupon, Pocket.
+* New generic icons: heart, lock and print.
+* New editing icons: code, bold, italic, image
+* New interaction icons: subscribe, unsubscribe, subscribed, reply all, reply, flag.
+* The hyperlink icon has been updated to be clearer, chunkier.
+* The "home" icon has been updated for style, size and clarity.
+* The email icon has been updated for style and clarity, and to fit with the new subscribe icons.
+* The document icon has been updated for style.
+* The "pin" icon has been updated for style and clarity.
+* The Twitter icon has been scaled down to fit with the other social icons.
+
+**3.0.1**
+
+Mostly maintenance.
+
+* Fixed an issue with the example page that showed an old "top" icon instead of the actual NEW "refresh" icon.
+* Added inverse Google+ and Path.
+* Replaced tabs with spaces in the helper CSS.
+* Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway.
+
+**3.0**
+
+Mainly maintenance and a few new icons.
+
+* Fast forward, rewind, PollDaddy, Notice, Info, Help, Portfolio
+* Updated the feed icon. It's a bit smaller now for consistency, the previous one was rather big.
+* So, the previous version numbering, 2.09, wasn't very PHP version compare friendly. So from now on it'll be 3.0, 3.1 etc. Props Ipstenu.
+* Genericons.com now has a mini release blog.
+* The CSS has prettier formatting, props Konstantin Obenland.
+
+**2.09**
+
+Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet.
+
+**2.06**
+
+Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox.
+
+**2.05**
+
+Added a bunch of new icons, including upload to cloud, download to cloud, many more.
+
+**2.0**
+
+Initial public release
diff --git a/static/wp-content/themes/twentyfifteen/genericons/genericons.css b/static/wp-content/themes/twentyfifteen/genericons/genericons.css
new file mode 100755
index 0000000..f1056ed
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/genericons/genericons.css
@@ -0,0 +1,209 @@
+/**
+
+ Genericons
+
+*/
+
+
+/* IE8 and below use EOT and allow cross-site embedding.
+ IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
+ So unfortunately, IE9 will throw a console error, but it'll still work.
+ When the font is base64 encoded, cross-site embedding works in Firefox */
+
+@font-face {
+ font-family: 'Genericons';
+ src: url('Genericons.eot');
+}
+
+@font-face {
+ font-family: 'Genericons';
+ src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAADgYAA0AAAAAWDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA3/AAAABoAAAAcbOWpBk9TLzIAAAGUAAAARQAAAGBVb3cYY21hcAAAAngAAACUAAABqq7WqvhjdnQgAAADDAAAAAQAAAAEAEQFEWdhc3AAADf0AAAACAAAAAj//wADZ2x5ZgAABEAAADAqAABJ0A3bTddoZWFkAAABMAAAACkAAAA2B8ZTM2hoZWEAAAFcAAAAGAAAACQQuQgFaG10eAAAAdwAAACZAAABNGKqU2Vsb2NhAAADEAAAAS4AAAEuB9f1Nm1heHAAAAF0AAAAIAAAACAA6AEZbmFtZQAANGwAAAFRAAAChXCWuFJwb3N0AAA1wAAAAjEAAAXmlxz2knjaY2BkYGAA4rplZ/Tj+W2+MnBzMIDAhRBmaWSag4EDQjGBKADj7gZyAAAAeNpjYGRg4GAAgh1gEsRmZEAFLAAWNADXAAEAAACWAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNg4WBg/MLAysDAasw6k4GBUQ5CM19nSGMSYmBgYmDjZIADAQSTISDNNYXhwEeGr+IcIO4ODogwI5ISBQZGAOtvCU0AAAB42kVPuxXCQAyTL+GRmmVoKdgA6FNRMoObdAyRnj3o6NkGLOl4+N75I381AUeUTPoNASSyoWVUBMYUYkmt/KOQVdG79IceFtwj8QpN4JxI+vL4LrYUTlL294GNerLNcGfiRMu6gfhOGMbSzTOz30lv9SbvMoe+TRfHFld08b4wQ/Mhk6ocD8rtKzrHrV/49A34cy/9BURAKJ4AAAB42t2NPw8BQRTEZ+/E2Xi7NlHIJsI1hGgodVqdVqfVqZRqH8QXvL25eq0/USh8AL/kzWReJhkAOV43hMKDW0rqmVu4Jh/BpY+tdNDBh2ndoabnnGtuueeR52YQI1AhILhQ1iDoWHLJDXc88NQgxl5ujS2sMjNZyUImMhYvfTFSdC/v3R+oNj4llSXJvgv4e+6zoCcQAEQFEQAAACwALAAsAFoAhADMAPIBAAEcAUYBlAHOAggCsgNMA6QD4AQSBMIFXAWoBgQGdgcIByoHageOB8gIJgkeCn4LOgvIDH4Myg2YDeoOLA5oDtIO9A8QDy4PeA+aD+AQNhCgEN4RFBFSEZwR9hJgEoISpBLuEwwTKBNEE3ITihPOFAYUWBSYFMgU3BT4FT4VTBViFaAVzhY6FmYWlhaoFsIW2hbuFwQXEhcgFzYXlBfEGAIYNhh4GLIY2hj8GSoZhBnAGfAaBhoUGioaQBpOGn4awBr4GyobgBuWG6wb3hwCHCwccByqHOgdFh02HWodmh3MHgQeHh5GHowfpB/OH9wf6B/2IAQgWCCOIOYhdiGuIfAiciKOIrQi6CL2IyojRCN2I5QjviQIJJAkxCToAAB42oV8CWBU1dX/PW+dyT57Mkkms2RmAkkmyazZCEPYE3ZCWALKJkhYI7IorT4XFERwQdEiAtaK1l0roMUln3WtSktBPltrP7CLyx9b21o/hczlf+59MyGA+jF579333n3vbuf+zu+cex5EICMIERbK04hIVBJ6BkhN87OqRL4IP6PIf2x+VhQwSZ4R2WWZXX5WVaCv+Vlg1yMmj8nvMXlGCG5aDvfSy+Vppx8bIb1HCFEEIhCFyBp/bzbJJxbiIAQ8No9s88TkmMcGuPkxbcKjQCTSRwQtpYkESErDFDmLj8pa+t9Zwg8UNyIA5lHxh++1YFluyVwgSO5yocBMwvFowKtYxRr4Kcw7fJjuoZfQPYcPw1vHduw4tkMl567MYzn6Du9gNwgWr4GmaoqGr3WQYjIY6yqz5lk8JNwiREOCN0+wukC0yTESdoHNmif4vCGIxmVNIN9iY/FAHzqwb/3o0ev36YezZ4nw8ye3d0amrRs2fXtnJzamTxM1DcgZrT8TO4jfzk3upb2d26cPWzct0rn9ye2sPgIxDOw/7DuTB7BKbGM/Cd/Vp/UREXsFMAWajHuBAJ5Tvmcb9g+wawprm0CIUcC+1s7gWQp/eI8/h32ZixmtimqSTSGIReNuu6zd1nOW9Nx2ElpOytqG1ytSn2rCvRWvb9hz8iQfA3xKYWPAxhXrY80Dnykcj8G5pAdwTDef2tK9Q8gkKNaajfOWU5uB7OgekCQCqyevSxGJsnG120xYo1g8ZmKDiicOG9bNFHVg/+MddwDTLZCwsVv2MMsWFA9B1qHuzmTP7p5kZ3dvZ/ch+vWhus4GfkElhzZSbd7uwD2NHaBN7OmZSLWOxnsCu+eBtvEEHqi28dChjaAl10wvwjyU5wHMw3qO9KqsbgXEh+0N87pVggk8CQ9rtH7BhyPk87J6xSOK1r1jR7dGk3S/Blv2nKT8HE+TPKFgk9klmoRe7eQeQTt3uqMbMEVEyIybjKW6mASw8sDFxikYj0WDmCzAZIsQiwaCLDcfe03Kjzc1xWe1t0PBjAULZnTVtPonjpbx9hnchIL4rbtujc1q7+7G+zM/p32fz+yq6blx1OWHRmMR2M6oASWPrOMzyyWYbVZBkVQlgELBimlRsOAWIRAMQZ6gBoKKGhLzIQ9wcjgUm9UlOxQ1TwhBMCQFB+N1u8MlOVxKwmq32qxKMFAewNqaWwRxDdgh68RLN7YteYHSe30+CLpiMxeMH1tbskQxGvMtUl64eUHiqptvvioxf2goK6sg32CUlpTUjpkwf2YsmmsPjR46yikYS73xUimnyGhyisZSpzcXFIc7MWp+M/h899DUC0vabnzphIGwPf16y8P0rTOvhFV3ofSrKcPnOhVLeXjC/E1T916RXzHm0joQZXOd3wvg9deZFEGomNSQKMlevWfK5vkTwn6zEurKypMLYtVSrq+4UFCznWZQCl31Hil3kGtwXpapfGJdVqFbibx8Bhoe3sIbh53IgIoQ3qcGYiKliC1hkiSTCPGHE4KoENXuj5sT5bILzIgrZkecJALBHGDd6xIccckhAMtUnhAsXsVnt7RIiUAVuCWCsEcQ9wgDPonsP+R56k90U/cH4phd7xbSU/RYXmPX6fuvXPZjePyTgiT9G+2Rl4w+8L/N9tKg8iiMu9p5pvFV+s+aV+GrW7Y+4dbci36t7B2/Zcmga+hBehXsgg1g+dnP6Bd0I12I2xc/+xlYtElQBTe20SNv9u5dBh29oVDxvfTXwubkw/Q369+D+PharTMMHzRc2u0qjXTkeJRiKIV/T6OHjtvHhMAJ8YJ9dJ/Q6G5pLb/mTu2Cl2OBvFDWXYB4XIV4/BFpwBNFtSPgSpLP7bdHwjjlUbwwgYchKF8MrxJ2yYES2iJEwnZHPJEHalzV2pcL1bO0p39L6TZ6mJ6tqpr24B1D173k87vraq99ZMKM9hnhW+CWj7MaF2xqn7Al8uNl1o6GFUrtqgnFtiXH3jt0/+phD8mBUXXitpVqbtE7N8qVYvinlyzofPSd7EGVbZsWNA5JFCWTS7y5en0J6g9VI8F+dPAhSls8Q1BHRByJgA8VSCnCIirN8wCC/g3ycujfKlv3yeOXXHLnjCpKU1XshoqIcIYgdL4JUm9OcwL+lRW/dM2IU7Qv1bCjW8Y7HNuxXPkTLNfN8EFkioGVEW2RsCfKQPTyckVpN4zNp2/Q3j/9yVE95pJr2hLdTqc6Z2FF1GmUvqFH+g6KY6EGhOjc6WPipYoo0r+Z/NVeUTASRJ9M2yyIzB6ykKzg2GA3s0HxeXFGF5jjgJILCoRRdrPBbgFLPNEixqIMCAwIHZGwI1Du80qKGo6E40MhbldURQWLiDgSd9jPXfPjUKti3ByLim2wDMZ9uW3Y6n2vfXr1Afrcl9u2fUn/ePo9eu0oMXDL9ZLwzb9W/Rl8kwSpIM+iOgqt4JDNcp6kChMawbiCfnbfLfTs4THFRf5lPq/NkmetqgX/09d0WPOt1o0TA0t9PrxoqxR88pCvD/5B1fDtzx24+tPX9q0etu1LGMdLT+WdohsWSqX399WEZEV4ODXMI+3t2w05Sk5d3ahIYWhmzCv4De7skvxCW3ZDJyxc1fXgClkQocwrykLfPYIJZqiC1w1ZmYtqReXNO1MN3bD6w8NM1lHXk2t5/+YjykfIUhxJnOhe1cRknGEqWLAbAy3gcIkOuwKsh1CIgngB0VUBNuRIrJhocbFDnA4JQW9IxX5PcNCOJDxehZ1GPCibQrN5rOXgPde86/S4nWWeH79ty6u/enJzz/Qh2TYNclRIPTftpqLGD7Qp4yyjfPFSj1XsRQJ2ls9KprZk2RLtaoNgTqDAnW821LT/YubUvTenHrj2r5N0yRQaYSr89VqxpcHTXA5TpN/uXvLUPFFIdt8+aW9vKubxCPZFk6ZdLkBhbm1hRWkwKBcASRfRh8+X2Mcuumx2fWlWaUGJtdBmjI5uuvX5Vc/Xbps/dRibG1w3IrAqLyE/MpM6nR0FmeplooaqCCkIXoqyaQcqEgSPOeixtSh4T7AJc+gBaHtImHzZ4qmJjiqo6pQL6MHJnZWjB+dm04OSBGOzbW5PTaS1fMrmxQ1AxP+5ef7YtnnV4+tqx4fO7BTMS9b5I+7ieOq/xevnbDWV+IqLLdmJpU+s5GOppcfSgnOyeQAapKc940oWpAwh8CGpsdrxAq+moMY89gKbirVOcByzmXSEYCCAlMBBv71hxGSY1Dp8yuRhUtPDm8KT670F9BsAMBiyvA3ekcMykKEPwmkiFvV9Im6c2Ng8fkJT48S+DfDmUweKKoOFqzx09f4DcKjS5hxUemkHnYGd+RgqqsmooyaxGrskfWoHggLO0mAgYQkJvGcZDmN/svlqZlKG9casSMjUPPYXZNlaZKlu7e+f3DY3Wj31qh0HFi54yju2wDvnbrX0p1KefeuiqTMCzXmOqxeueWH+yBve+vGcx25eMTY41ayqolVQffZpaxPl45bd84s/G0hi/qa9++ds+PiVXcub5yTpR/UbtscfuVp42uhZEr310NIpke3/1bDg9ueh7sDlz1zXFpq86qZ7J9093+YszJmYVWgy+u56cdX43fdtXT89rOuUjB5ekOE2BUKegM0MxhMWFzDNwhol6o2yO+wIYZCIB4JpzYKiw5gt0v4Ep1xMtjBfGWAnOQLkQl6T5hx3bWsvGVOydfJVv7l9ctMVu95bvfbI7msmDupebC6RBZMgy3kjRmu9PZc92F0/acclsQ5/Tnada/Tw+KxYgcHYY3HI++mpXQNZDP2cfs3eP3j9AnDG2pceAvHurifuWplMXPKj2+9uu+XoYEOexZDMstpME6+a9+zNk5uX3DZt+zd3x7piNbvWDW6dPuLq9srJFgv1T52/eSI4YO3hfrIikL3CXHWuvBcnVz7n4AXIswvK00fZCjO++oo+8lXqynRC3sv2X6XP8KjrbsK5shdPJBFtBR9qkiAKC9LWBP4sZocZoQ1TeMmsbABrQQ4aZnem7l+2wjt5tvWqjo3XPT3zSF3U2jy2vmeVoWBTcuSNKjHQh2iKDqGDoAxuuwbKOpZdufpeg5X+lj4/kf7z6adn31sKT7A2ZGy5fMSGi+afUVAImjB7+vgeuNWpIAOn/FzAfR9n0gTgA6IpFTiXvbqFg+iKgMtA2YSKCsWGkeCYyRfjjUpIw+HndLqpoLp53KabV8+Zs2zDpZcMb42+0d3eHqo2qRptop/Q6K6qKmf5DPq3uN1eVtbQeN0GYU3Kl0zOmrklowsy+OEg1WTIxfUnbqXA7o4XYI34bHRz/oN1syO4x00ol5WoPkrBam+CcHwghIhl9NWTzJxDM+Hv5s2n6OenNpvp39tjMom1t8e09O58FKHkpP5U30mRjGpEYw3tuKaRKfaItD/zTDufWmcBVFDOkm3kTrKD/ITcTx4gD5FHmGWJTbDVKuzPqtSh/aLUKaqV7RQbAxTsTiUfQPEGobYGAsHaQCygd28gGA3yGRiI4cUodkGsNh6L10VZn8fCCX7Uf0OhNgHxsANq7XW19ojd0f+zsa2W/Vkd1jo7mOSEERx+2ZYAk1/1J4KqEYKyP6aqOOr8n4B/QnqPh1SrqcKUagURUJxFdlWA8/4J0J8Z1bzwMmYXXgYB+t+RfhHgq8D1SWpd6swn4Eq98RDcTT/+RBj92WefQaUgf0I/Fhofkv4lS7RaUAWQ2DOsUIEVmX4Dvh9odXYOHGWvT9dU5PfxAPgQPijBUUkWQAYBT9nGHuMvYPuj2dm0Ot1CUX8jK4NlwydgIn3vlZ0wgz6y85W9f1yRehmir9w3YdeuXZiasfOVB/644nxZtaCee5l8wmQVWWEB2otubua1IClH01FA/eCwSwmcMlw/IKYisA4FhqmYA21CC2eDCiP1iKy10TrGd8rZJf5onIFwCBT9gnAOmJHmBLji4dmYWYBvYzfZOVNKIhquQY7XyJ3wlD2RPhUgXJ7QqRJ7JWK4hGUGA+ZEHK8nFElBuDfbJYkcYCyUkUN6FyOhnI8e3U2PL1++0Gra96P14N4wtn3lu3dNL0+GsEeNIgz72WuLHwTXPLf/cvrh7eLgwZ1brlzbMWvuU9e0Z3d3LKJfLb9ySEuWYefyFf/T1OJoD23cFOu02CIFVbHSqlmBQNRgMBcVVIaLndFqc7FDVirLKmpCY3LRJjTa7CMDgVFWm2w2Fnsr7JVdHq9fFDo3tkam1eTYzJMWra0vHxYxFRvNjg2PdEy/fRrdcAo2LWqavuPt1eNvmOeMj1m9ih58+GH62ei23OkzoPpZk/k++tnba6/7EEI6B9abyShwmg3fY1izcin9/d13nR07Jq/BNmP7u6tGbVoTxrZmCdC+rOnWDZHqa+5OZQ2/qX71YF+Jt/2ap+YKS19pGW9talmy9Efrf+XyTJnT9XF7pNoaHDJ33rTiyjI1O8/hGD1ocIfH4bEIQo7TXNzm97eYkN7WVwpQNrbU5RGg0ufrCFo9TotkLCpzz6wdtjRkyhl5ycpYtKPaYM+rGVKe2NA88apYfs7yB/tu/ubdm25cc+S+pVb38q2T76FPrt+wqtT5P3t2wfKf3Pc7lyTk3PIB/dPuffR3H17fL78G1FQkm3SRK8mtun+SkekYkmlQfZwGodgwz18ZuGR2hjIsMslG6ybBU0osLdcopR6IhlCKOOnkHAJ5khhPcwrGQ60utMviiDIZtqtR+z13FroSbmehu7nK77AUOiyWaZ7yeKk7N7z4jnfWLHx47ZSgoaA0mPBGNtzaNsSSV5yFU1xQwNBomnXP3Nj4sfeDAew5ZeXDWiIWn2XY2urC8mGV3j8f+tmBl5oc4REL6l0tcUu0oCw8tLO2aoakZZi8QKZZSpJDLomEZ7a0Bkrt9praSkt+a4k7UT1kZHD4dT2dYf/QznkxeygSCddY3ZV2VSqyhKqcan52npovIXlJLrlhVMfDyetOz3NFwoMToXJRNucb8wfXTq65du9WcVFTT/TK1bMbLD5HcsWgWZdOG1Hhx7I3Im7E1evIIuxxF07qPDmExqcpz4AzmadcQjyB6tYlYj/HQ4ov6A3kYTZwiWWghiSc/C0i2kLybrVo7MgZI5qceWWVy1auW3X59KTZjGrEYLK6/dHS6IqOkWaLZ8Tw+gKoV6zJoTPGTxlalyWUt0zpmj11mMUiFUSi7aOmjh5TUlwkmpxFRuNJ1dE4qDR7zPCRjzz89E/v3TDbqQ4ScwaHp825YdvB+TM3T01Y5NxcVaH/T1DtDrfL5yrNNgtFrpxcKPRW5pVXi8+m/ibI2ZJsqR6+dOS467vaqrz5BoRYJb+wItJeXT138rjGqpzst43uJSseeuCN2ROuaHILeSVFWYTzr1uxb65EmRxErsPesavc0RxkIiahmmdMVERbmhk5KI7AvICBgT/Mw2xte5qo9N9HosV0rXWATrSmOUz/fVuG3sTVYREYf8P+hVctnzjuig+fR/ptGl7Xtf7uSVvXtY2a//JD21dPraKLmry+IU0dU5Z0utzlbktBNNE1v3Kwp8RRVBP1eYuc9fVTp63atmRZfUMi1jVj4+yWeq+npfXyCdWhQqfDVlJWFff64tHp6w78ZMUqsXXxFQv33zC+MW/Isl0v/GF1x7QrNk66e31XXXtO1dTV2x96ef4c+uuOy2cMaa4IFjsdFqPRnI/vCHnL3e6WkM1eXl4dCtcitXIGB41tm7toRGswUGI1mzyu8NDBVXabxxOrLSxCm659/LiaoaEQtweQ5RGF8dQoYyg4P3XrBvdKJbIuzrlCQiWYuFbiHc88/0hU0IpWNHuwyM629liSsSCaHHbl6FmDtd66FfOSoCKieWaOKjAYYG+sXSLFdeUGT1DfY+7u9oraCkG75IFvNsumak9Jx84p0/b6A+26ifIebFUj6mruLQySWjKUjEG7bDPWMo7V0octikQHxwqwlmmr117OzDOFnfnj3DxR7ajjWJJ7Xqx2CayOOHNFKcSrMJd51GLVfWuAGpvzyIydh/ksCGgOuQXtItYVaPUE/aLdwc5dIL2VP9iV3/nCoc581+D8+tvuoP9oDYWGDQuFWmHE7NbW2a2Cp7JhUHXZ1NSWx8D36KP0o8cepx89+ij4Uh9X1EwrrRrUKFfjQAyt3lcfyrvydfolPU6/fH1NQWll0dqpdVNLDv51tmw226ChcEpd25IlbTUT60R6evyfniqZFo7PjouGfFdlfmdnfqUrvx6UUCsW39qq70OhIWW1gxqCQ1KLu/cvXXagu/vA8QPdwn01JeOGlDcIHaGWUHUy9XSiqzhcd9kLGydO3Pj8ZWjPRob5pq6tDswzwtv27Bx5zKC6JXctqR4faqbX5MytCMVns/nJUFNFqSE+ksDxYA4uZsaLfDlIGIIKRF+K4N3msKmyJ2MzBmOOhH5Tmmz32701ALPvnzNSmx0HtWZEjfzmli1vSfcjLVJn754zZ/dsWHI/XpaOzLb7bSEvLZv1k5mxrh+POHLYU1PjgU82vfTKpqXV1x7p2jVr5s6u39WGjrHrRK8jW5tBuc4n5Rn7gS+Q6f4HtkSGfJetkzkg4UIjIeFQkOln1sbQUPhDoL3bT/9A/+Dvbg/AEtnUMKLBJKt8yeKIvnx2hK1RpPaxDPRD8PMHdkilPl+pRHSf4cvIDVv7168chBhFkzEnYTNCzCHcBj2pL+h2WC5YKKYFCyxP/VPIp9tTX0APvR2u2J36MvXlbrWVvksPQnnqBfDR5+m7EIUx9CP6sLiX/hHGQvTMt/S9xavpq9CyejFvu0DIWWUktt1FRvK2q6KAqpiZRCrkgW6xMWue8Uec32ztKGFGxsiMJZ1VMkuLe2094RaQ35jRaI3OlGXFWlTjOm2QVboub7A721qWX9ZcIZz0yk5LaoWtVP6301pa9pG1WBRcouSy0H8W+3zFMDTbXqCS+fMppS1Wq63CZhYMtKEgV5TVygrZ5qiqKqErf2Evc5v7DIqMclKY58wz7Mq1+rzFwWJPjoXjFFt7YmttA63ZAQtN5HsXltIrSRzrBJRavl7H1pHQmHUg1xEjQi/z7TGLF7OnNE2T0BxGZoQcISNLWLLC2FIO97IZIbPIKuFUSBFKxHe6GaApmEwRtobXzs5JZv2Ky2EZ8ad9xhnrgLmM9ZVVxCY8kywmNB5NYh24QH5x1aoX6Rn6MT3z0sqVL8Fda96/r6vrvvfX7KJf79wJWX+EwV30GZWsfEnPxLKj3YIPvnRmZdfO458f39m1k35N38LsEqGz6H93wST4gy4fWCfC13lNeO5lOGq3iqxXPawzpW6+UqwxL8DJPZLG14fp5yf3MM605yTrk3PtyibFpEr3PSJnjNhwszBnni5W3B5PjxcbKh8rLCKj0jmNmyZgZ7fH+rgFLeI+1etE5h9I4t6paGfYFNK0M5iNZUixvbA/4KSE3YdezHl+XVxkMGnEutSi5a+KjEclLHqJniaoDUfQICqBuh+qqoRlKaFIibrsSV4GYdahw81drd9ZY+lXIBhUrFFxTqgInsEqCW4H2qeHvqvyhOT013VgTEAxykYlaUIdN5zhacQmprdM2pNOR3Az/VBPZ549FyrAasyP39MASvQ87B7faPqY2Qvku5oCMT0ggc+PaTBNvVq9GtvjRoQDB6DB0CJAAtSAN5+vf6qQsIeHIuzCn4SyWamT5U2NQW+OtV745jmhbL+/O7C/0GwufC51Yn8A036hnufy15TmGUORKdKL+1MnnvP79xe1thbuF8owecDf3T83Oc4XkBLsOxVQS7MoiHK3ZEZ2R9BqQQRDDYXYh4aG6d4X0vMH6iFr58q+lesPf3V4PdsBNvgfKzN3cOrseuFeeCd9c/16kvG3p8viLb2gOJIuKg+sdkvMY5NN8I+LykyN6n+nQdDEldR0Ubn023O1MvA+FgfEe5SQCu6L6zfTfrAeotZvZwn/R3UUcm6FI/V/1IvrNwKVBqK8T3KxTqWIbtUstoJBW9AIcayKaATe8UZgnuU4mhpx7kQVOO9C/JThDJUX0q+Q93x1GVXg9GWQA4Mhxw9r6Nbxr3/w2jh6K1wx/vVly16fmCLMbXeSvjqPY6uMT1J50erVi+E0nF68enVfJVwJqydMnTKB3kq34hFe3aM/cFKIcXQ+r84sxsXHZx0Bb5CtJyms7kgrE8xiTUDQ4oBggjUEbYkM3vs5c8QGJXS+KZEiDzynnBQA5vKW3P3zXdsv6Vj2ejus+X3oujPkOo028mbd/b9vp7bwasB73bc9sow3raVn6Mk9yxBy4DlP0Z6Twgm6l7Vp4nbvlAlw5QfwMX8DvMEauDf1Lm/4191LeBNf7Zm7nIMxCAy09DgU7H/mxsP6GQGVUS8kNdpLezVI8h0k5QvONZYnvXbL1wXOf4eB9PWKSa2vt69XE5N8JybVC841lofJqJbWKxbEsxiLHrJVGmJ+fcVNZT3IsAqRSo70O3Mj534y0QFH07GnPQYINEwhOM+mAV/TwUfPofDMCEX7EXTxrzfFTRABj5mN8wYoRd6wgxjZfLXgH8jFoBJafpD6qf8gLRfGPfecdC09kPoMxtHnBAe0geBIfcawRecLGnZtFp/tCLxB5gRHra9pfUQTccIoDDApc7ineqGXJs/xY8YXjNyfYgT8M3kYi0jhT8TfaUzz8KRetmNVJRLvv16lF58zkDzGdIwCm90OHIoaQfWjPGIf9fZpNClqqSfmClNTe7W5ybkajMf0XAVL79OgF1vO7vXN5fdy2a00f8K3syE2ZkKoVOQ5jPYgDCVT/ElWFegdiDc5OLc5g+ZxMJ6oUO4zhVGNOQFPsiBQBT4zM45QzQLR11DazpLDdPdvj8A2mAwlb6w4S2Y/9AX9hO5/ctXeVfgnZ0JRfgvzD4tkxRv0L/QpesWRJ6Edir54aHafxvNx3U5krMdZ9RXsDSeP/3GhPuE2KU7RFmQW/VOzGDwW9d3KvOiVU7891bq42eHwCd9UrrpiVSX9Xz7vfh+lf4sIs0ZpcxK+5LTueun9UWPHjjp9hM8qiLE1ECwvs25iQ2yI6LyGoQLaLglub3IkQ1BD9PUwaLA7WOODakgQOI1SvCwajv66nf7q1ekPbW0EtAoCsS3jWfATbmi+tsOQV6//dCa7Dr6pC77ijZVQlB4/FupoArQm/PEhJ4UytjDz+LGFM9kFKA+X0lree3osG48Rq8xEiOWBl3F6nFZ2Nw8V83n7A8L4XOM0mQeGcQTXWKpn4qRVOG80dmRhYSntaobtVzNsYDFggjaxZ9WkNNl6jTazM4FsZPMC7lCYbOSRQj32EMFTZVgfi5rRhChgxRfYxXKuOWZOokvokkkzd8K+G1988UZ8s0qYNllzFG/APZOOrtkFWSnni2B4kQWqMTyby/BMPsGmEJIJHyQcMucl9IR2Qj4xN0Vgr9aLY4UyaiD9XIoU4WCx8WJHA/mG6BtwRyPTbSmuCgdwBgsZhO8I4qzOY35uhwkHkTWBeUAcHlMZChiP3jCh6MOf/yxon9aM8P/+4ZtPPTZ/vbyp/rJRf05plvfHTFr45Ap2TSnF809DqzaOfIb+o4qetm9+A8Rbd4GdTrj8jUdG4/OW90f98vI1h7eVgoI3aYrZJCK2VdJ4a9i01FhMY7qeDH9YJ7D2cUn0p3OcQfOkD5/rIzyQkCHNVCFpYH2mcjuzjM1yzg/SB3BI6fVLc3q+CPX0P7BdoxZYIz2UTqzqG46CwYbhn7t7enb3yA/QMsq8pHtSJ/Vjyzx2F8WHHuphWc7jJirnswxfeJjewJkp87g8NJXwCO3n5iMicfqqyIPzBk5Gwl7FdUr63RmmnNCZMknjjvmCoz8dWaszZV39yFzxeLgSQrMRybPPxPII+7jyGPgH6cBRFqOaUUM0qZsDfJ/EyrH7OAj8CdAfpPphn06MJU6bmUbS33qGW5QswJcROkbEicps0RJuz+rqMBpvgrQfi/uYuH9ywOKlqh7a2Lq2KvTiFXtOFkqE22U7yjwbD0WqL9twck9LK5+bmgqqnI41tlsZ/w6yiREMRIeylUERablyoL39s7Yj7bSBnoA3oa3ts/ZjbTP2niV75V3tR/EWjKEN4Ga3juFZW2rHXiAMkIHpLpnRKPVc/4t6RWS9Qtyn+Dv57/KTXNcIWHjMAxKBL6hlOkxn4b/05/IT1EItnTBdg+ncD4kT7HeKpj+Dcx7JLZJaiUynP2cRvjB9OrXIT3TSn+OznfAFt+WTCqsHY3RMQQJCRKo3haymV2a6WEBqk+T5GJYkWT6sixGzcS+BkMSfxhQ2JlO9/bERIlaPRbqiBIs8VLmPyyHgDMWq6fdQttkkzdxL8wRZ4+HexCiyymuMlDEJOEMEPaib8/gCdiJrysX2n48EUbJrUOckuCVIMvYe2xIRm2/geWSAPfh950I/mUplUn3ahYn+4PJMdPn3pHjXCNwPwn0ZrM4XrcpnkIXhmKw7ZPhe940wRwnznvXxaxILztHSs13EW2kc4e9n+BW44P0RpnBtvtiAcsQYM4ThXFEae5GWKZCzMuYFzJSJFh4zjM8VvJ+ZuGd1H0LGD85wpljHYqbP5fQRPFZBYQQwBIKIz/AG8UMfDvJNn91xltzx2U0KBw7uCdePqXfupf/5RSn9N+SW/gKyGU0k+rxX0lYcw+c0ADC0GggCLuhHAQmrx8KaAeWGtxYbpwdTK8qhjVUdo0t1UBCwajp2AXPbMD2CB7d74yFHpSuNEeewp7wfe/R6fF/p6ShNkqmDPqznl8zhSIfO7yhT4N9CMF5l5B48E1va8qhcXyMQI0bgpGWR+8z+ZO6I1B9mCQE6S2AjRHHecY8cKvB9/MZ5Pqx8piZKeXAK7nwx/l0AMKjFPGcZy2bDcpWaYrORvZvF1+nzNj3mJj7iTEM0IatNSzOrWyCa4BaLwk2LZEZ0+4gYDof7DjN/FBMlTZfnM1ha4s4EszQFRMs96lx1LqniKyuqX1EtapARxaAlEJSDzH5MBBNyPCEmHIjKCYdod/gdqh3Hmgu3PazObaS/qWm2b3l7qLPl7S22plr6m8ZPDYZPG6Gutsm25e1h1mFv32pvqoU6dplu4vArnLrV3lxzLqf+gtzsJL6huUbP+qn+4lvfwheXcewmF/gYrGjPn/dVCXAnvwpxv5Ux4AQoF35fIoU3n9qyaYNwaEwf4anUyDEXfWySOrzl1OYxqZEbNrGjcGjDRfyh+JxeKc/YFQiobPaz6S7r3CGlHxgLQhgmTGgklB79qj6532E6mM3uc7Ki8yiTzhLZ1Yyql4kO1Yxb93MunpN9laN/mdP/vUcG5/VwKBFvnmbFkwzeD1h/yORFMmRh4ql/Y6OXmOIKov/bFDLg2xQsLf1tigg8eN7wvZhLBmCu7gRPY10adLFzDAiAp/UZi/tvMqDLqypyPGLvV9C6YpjLMdV4XjGe9G9AcUIaXIX+IoFXG6d+pmj+lQ/2v6hliseHsN2s9f3VuFDuLBfKnZRZpIux+N4IMrcL5U5YrKP9Xtqr7b1I4MK8mL52Bi00rcfOK8/x3V9PMc560RdUqYG89YKCzhw+z448r4zId5ehr1zjrHLw5WoGtOxXCpEYj+j6nvLhFX9Hx13P/Wz2TQsripyFRdERxc53TeaRU76vTkJD4+RVyWGXPDe6oKDEV1LsHVxdNazBW2q1VUfT3xnoNq8u1eynotwwRwXH3BPUjcPmhhMX5GUZjSxvCkdeIsxhz/Iy5kPdzJ+R8YMwpmMmdnwigoZBxIJb0Oe3oGUXKWZJhVGNFHt5J3TQ/3e8Ukt93sl9kVrnUDyTeV24H5NnTKf5mo6Kc+db5Sq2ksEs0BbBXgaJFnChtsbKrx/bFLzxhZfHPvDA2Jef31jRPBZF9rKRv3rzvpbBI++9d+TglvveenUk9zMsghPqTsWNM1j/0oz5v0RQLaKDObSDwtLj9AjUHD8iHTl+5MhxqDnT/Q2Qb+SGbcihG7ZBA7y5jb5J39wGb9KyFom0MJuM26dpP1ARW/0xCjFUtGjFXRQQHTsXwK47iRREFZGHgqvnvO4xpt91F63MYYR583CHVPZcDu7T73f6XlyP0h+uh+2Hy0/9XyVr5DvKLPuBMi2o/oPqD5XaB6/Nojv2d/1QySg+r3WxTAxF0zIqox7Dck1GgQUtmIKowpg/zSRwrycDYJGgHtrR9uLCsxyP5STzjtJeLsLsYz16bEfbOKrp5+l4CR3X83iM+MC3yhe8i3zH8+d8DyLrk4wu8vLgKNFnCvMAC44eEhfyUSvb21eOGr2sJdLg8zVEWpaN5leA95SMM49ZpGwT+1MDMI7zo2zmpYE0iPMSWby2J8iX6oF7RhhwSxqbWA31q1JklT9SxMy8FFePUvqThPatiZ6e8lmXhrWB3In7Gi4cUhbg6MbOkT0x/tmiwg3hPr7ffArspzazVVLkHdJ5Y6jpkbWapn/fwHSxPB3bUECcPP7Yw1FSUW08BMXnYa44BqGVUKQnfaiTFn+1cuW8Scvn/eVXdDKQ6xfOrKu7fM32y+a+q2ijRv5k8Y15atFNK+9/Rnh+yOjW0lLaQo+Nn3QbSfvRiZxZH/aJEdWTiFh8CY88Q/tSq6DJCnZA85IbVFxzpn3eGucW2QyDWD9nAkvAFGSBpZxdwP60PkbB7T3LsVLS6UrfO0KyNzUX3ExAjP1x44w3GEkOj9+24Qii7reYPBb24QSTtkEAumdY9RsBTXpNN25A+5aPme5uAd3FrH2rcSKM53KaGFMsPeN4YSMMGmdRGjczmLNNO19Pmsl/na/DHEFFHcrDR4OJGiEfaoShqmMolEGgBvKl4FBwJIJDhUBQdeBfvsgy4SnqugTCM8+YyBfK8BomyiAfEmoZqIl8Q7ASTxwJfKHkUGtkhYWfOmrkoQIS56ECPi2pmFXENzryUeouVJF5opglm1wCeQ2SbUq+r6iwPloRBJBlR64l1x8oHu4szHXIeaUOZ6RQzK0xFNoq8setlqweyWZoHt+sFOSE7O6RrqXz338qUOv21biUkuza9vJEbrDYa/F4jKXZ1vb4YDkvO1TgLMvzObPcTkNhKFinlDbmDwpWocFoAIOcJYPT9aMPNklZ2cPdWWqewZBvzW0OCvmWEXVeo8FjqKktExwl4Ypyk+CRBl+kuP8jKRZk2H0Tfv90VqTIYLGJpXF3QjX78qxOH2Sp/qzmuKwKdl+2scIp2p1Ge/b6dsEkZwnGLF9ps8dmNRlM4L8ZcgwGRTWLDrnINjjfXOINOEzmrITVYs8xFagWi5xvslgLnc3O2opKt6vSaTRPrC1oNWWZchzloQVT76Bnny3PuWVoa31JQaxFzjaquebiItXutch1xoJsydI4bERZl+wwORWuQ/eKbnWulPFBXsTj+/m875c33PDLG0Rx4EE6cQM/DvhLf1PI/C69DNVR5g3kG03sFfv9NXhiYHOFxEwg9iLq9yXZM1KSr2XhdeQa/KqB9CW5HyeZXucSOH9hl/V3DvQBVJBaUq9/C65HLiEn8+jfhKe//jEhY4sPgfSl8vSEl9LEDpGmkX/pfZY0jmK2cGPg6pu6d/B0n74WKbSnA0ZGrfE+yPRGtyb5vGtHMuQLdbY6qH30ju4HvWtG4QU7z7s/Q5iVftvi/P9XIK1LMos7mW/kgejapI8wA15EBU75FZGBBLOccKMkkwLOw/Q0x7cExwCN5OrrIUYRbWIItkh8xdTnDUIsGFDyQWGxXA7d3VgG51w0BD7DAv/t94MfeJSf+Os4tiNODySdXf5x/m5/vqDl+zGV70xqT8cCgZhf1agDaWeuvzsA5aJsGz1l42kaG9feHYc2LenMx8z6U92Y6nImU//Bh/wxQgZ+pzmCjCMdZDZZyNeM0jGBLZBgQYEeU/8VFmPLhnfABf6J4LnRZl4fPGZAvT/y54Kj2j/U7bH0sI9qPIsaL51kqznpJAuiSeli0Jc2084/zNHHnQvCg0iqPkqfj1zrBV977MG0nODpg3tOQkZsUJLoRyf3pNXK6fYBxnB7RnYE7JOTalLp5etpRF+XjxgFEdmugy2PZuas/Kivp1XMFuiqszqTpMf+OppHBuBPX4iSV8dahL4TApceNAenr97GXGLsXPhpegVPgBU4p+7EOeXhay0OHh2QcIHD5ItFYgM62Rax+UwtkOlmmd61mD5IF9IHF9816vXVmpbuO01b/Tr9sd5Nh2c+9ut3Hp3ZtsgC/9EePNcLD2o023KZmEo3WkjLBCETUB50j1cl+57aXAqsrUMgGmRLfOVBpf+COREI+nRvWDQRMPFa4k2X4G4RWFwcOytQ7TY//wSVO8vyBJUvEryX6501PxANXD+Lfr3zJ/Q/M2/AkwUzPXnvsbu9pffj6WWPfwHSF49fhsldJSltZ2rIrH9t6nrijqaKLb/kiwrD2hbTs1v5+5LHH1t3y+Z1jx/Tz7YCLB7bilkmzT0Mgn7tenwVvvJ6/YyePdzVqf1887zlka7krFsmZHxd2oC1bMGTRgtZ0116bN4zniJxxsDGkDIEgH4OwLiNPWLyVgHJQivB6lDtxCG/df99R+gV9Cn6lzdWCKT7pUUQPiRGIpSseANKYDJsO/LF8Zeeof+YwuvwBspCI/9/Nkp53BnnipxEWxMRRWDu1YAQjLjAHZcm7enpmRidGXmh1/rVM2fJM19Zex3vQ/ExUeuZKJCJPZGZUUomFRykXw6iX0LBICg4uPngwXRMs4gtHbimJpP0mtq5b9QdGQ8Od3yaBqbVdJ8M2HMCldkz6vRd1yH9XMZO4P2dnfluTv+xcAGGt8yXzoi1nmL9zb/ZI7xuRraKBqJHFv345xFRifHIBY9E1tKtULUW7ejoOqiiW9ceFZ5Ivf9+6njq+Pup94Un5E/oT35H93z4Icz7nYhmCP1R6ka4ha4VfgQ3Zv5PgUwZmXgITzGgCT/gJUePork/4MH0YtzA+uUPfFrklbzwHUczVbz4ZbSC1Q8Wp2P3uK1mR4ZfyfxPRpQutprNcdrDo82Z3KmBIMIyuwvhhN3BfNYKH9Oz3OzqZoPBE7PGDJp+wx591beP6GeUcWMOZFwtA0n/hyxN18zv0q9TnoYLvz8MoCE/47uiNvkn5QEP/2KAfy4QcTvsCd0cKfcNuByWHHZLmC0k6zf457L9dzLf9w/85EhcYfeYzB/T3//0ydqyImHwjo1gfNN2RemgQRvp/qeferZ+UKnRt/Wen0Kgp0RzBApr7qRXH/77oeLyunJDYM+bv4S564ou/IiJl3JmsbuwsCj75gpj1OExlK3L+2JQaa1j0rS6/CbXoGz/+OEFaBkGChPO6Z0JQ6W3PJxVOXFM3oD+EHnEaBGTaB//Txb4grvoy7ANWwIldJdQsqvvUmUIraYPfP4XSpSFp8/ApZ/B4/LjtBqOsg2OnXmJDmckQ3orNVyceWbH0aMca9L+ovQa8kCLkqlg3ag5L/qSmzNs9vErfP//ATHKtuMAAHjajZA9TgMxEIWfyY9EhBBFDuAKhSKON0m10EUKUgRt+vx4ky3wRruOktByFlpKuAT0nICOO/DWsUBICFhrPd+8Gc+MDeAYDxDYfxe4DSzQwEvgA9TxFriCU3EeuIqG2Aau4UTcB65Tf2amqB7S2/pTJQs08RT4AEd4DVzBFd4DV9EU08A1SHEXuE79EQPkMJjAcZ9DYood9xEy+pa0QcrYkjSkZsmlzbFgXKILBU3bYobjWiFGhysJuclnrkJBT1E11M+AQW4mzszldCdHmbFyk7qlHGbWDbN8YWRXadlaOreKO52EalKqqkiUNY6nL/14hsVTzHyzgqKxJk9nmSVf+/ukWOOGjpmna9rfrhDz/6nqPtJDGxHz2szXpD6LfZs1ll/d6fTakW53ddT/x6hjHywYzvyTa99BeVtOhrHJizSzUutIaa3l3zU/ABw5cLgAAAB42l3SZ5MVVRSF4fuOBEmCiZyDiInb5+zTPYOkgWEIEpUgQUkShpyVoCA5Jy3/LlBz3/ED/WVVdVU/1XvVanW1Bp83rdbRd0Hr/ee/wbdddPEBwxjOCEbyIaMYzRjGMo6PGM8EPuYTPuUzPmcik5jMFKYyjenMYCazmM0c5jKP+SzgCxbyJYv4iq/5hm/5jsW0qUhkgkJNQzc9LOF7lrKM5axgJb2sYjV9rKGftaxjPRv4gY1sYjNb2Mo2fuQntrODneziZ3azh73s4xd+ZT8HOMghDvMbRzjKMY4zwAlOcorTnOEs5zjPBS5yictc4Xf+4CrXuM4N/uQvbnKLv7nNHe5yj/s84CGPeMwTnvKM57zgJa94zT/8O/LymYH+qt02KzOZ2QyzmLXZmN1mz2AmvaSX9JJe0kt6SS/pJb005FV6lV6lV+lVepVepVfpVXqVXtJLekkv6SW9pJc6Xvau7F3Zu7J3Ze/K3pXbQ981Zuc/Qid0Qid0Qid0Qid04n+nc0/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hPJL2kl/SyXtbLelkv62W9rJf1sl7WC73QC73QC73QC73QC73QK3pFr+gVvaJX9Ipe0St6Ra/Wq/VqvVqv1qv1ar1ar9ar9Rq9Rq/Ra/QavUav6XjFnRV3VtxZcWfFnRV3VtpD3zVmt9lj9pqrzNVmn7nG7O+kuyzusrjL4i6LuyzusrjLUjVvAQpVcTgAAAAAAAAB//8AAnjaY2BgYGQAgjO2i86D6AshzNIwGgBAmQUAAAA=) format('woff'),
+ url('Genericons.ttf') format('truetype'),
+ url('Genericons.svg#genericonsregular') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+
+@media screen and (-webkit-min-device-pixel-ratio:0) {
+ @font-face {
+ font-family: "Genericons";
+ src: url("./Genericons.svg#Genericons") format("svg");
+ }
+}
+
+
+/**
+ * All Genericons
+ */
+
+.genericon {
+ font-size: 16px;
+ vertical-align: top;
+ text-align: center;
+ -moz-transition: color .1s ease-in 0;
+ -webkit-transition: color .1s ease-in 0;
+ display: inline-block;
+ font-family: "Genericons";
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ line-height: 1;
+ text-decoration: inherit;
+ text-transform: none;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ speak: never;
+}
+
+
+/**
+ * Individual icons
+ */
+
+.genericon-404:before { content: "\f423"; }
+.genericon-activity:before { content: "\f508"; }
+.genericon-anchor:before { content: "\f509"; }
+.genericon-aside:before { content: "\f101"; }
+.genericon-attachment:before { content: "\f416"; }
+.genericon-audio:before { content: "\f109"; }
+.genericon-bold:before { content: "\f471"; }
+.genericon-book:before { content: "\f444"; }
+.genericon-bug:before { content: "\f50a"; }
+.genericon-cart:before { content: "\f447"; }
+.genericon-category:before { content: "\f301"; }
+.genericon-chat:before { content: "\f108"; }
+.genericon-checkmark:before { content: "\f418"; }
+.genericon-close:before { content: "\f405"; }
+.genericon-close-alt:before { content: "\f406"; }
+.genericon-cloud:before { content: "\f426"; }
+.genericon-cloud-download:before { content: "\f440"; }
+.genericon-cloud-upload:before { content: "\f441"; }
+.genericon-code:before { content: "\f462"; }
+.genericon-codepen:before { content: "\f216"; }
+.genericon-cog:before { content: "\f445"; }
+.genericon-collapse:before { content: "\f432"; }
+.genericon-comment:before { content: "\f300"; }
+.genericon-day:before { content: "\f305"; }
+.genericon-digg:before { content: "\f221"; }
+.genericon-document:before { content: "\f443"; }
+.genericon-dot:before { content: "\f428"; }
+.genericon-downarrow:before { content: "\f502"; }
+.genericon-download:before { content: "\f50b"; }
+.genericon-draggable:before { content: "\f436"; }
+.genericon-dribbble:before { content: "\f201"; }
+.genericon-dropbox:before { content: "\f225"; }
+.genericon-dropdown:before { content: "\f433"; }
+.genericon-dropdown-left:before { content: "\f434"; }
+.genericon-edit:before { content: "\f411"; }
+.genericon-ellipsis:before { content: "\f476"; }
+.genericon-expand:before { content: "\f431"; }
+.genericon-external:before { content: "\f442"; }
+.genericon-facebook:before { content: "\f203"; }
+.genericon-facebook-alt:before { content: "\f204"; }
+.genericon-fastforward:before { content: "\f458"; }
+.genericon-feed:before { content: "\f413"; }
+.genericon-flag:before { content: "\f468"; }
+.genericon-flickr:before { content: "\f211"; }
+.genericon-foursquare:before { content: "\f226"; }
+.genericon-fullscreen:before { content: "\f474"; }
+.genericon-gallery:before { content: "\f103"; }
+.genericon-github:before { content: "\f200"; }
+.genericon-googleplus:before { content: "\f206"; }
+.genericon-googleplus-alt:before { content: "\f218"; }
+.genericon-handset:before { content: "\f50c"; }
+.genericon-heart:before { content: "\f461"; }
+.genericon-help:before { content: "\f457"; }
+.genericon-hide:before { content: "\f404"; }
+.genericon-hierarchy:before { content: "\f505"; }
+.genericon-home:before { content: "\f409"; }
+.genericon-image:before { content: "\f102"; }
+.genericon-info:before { content: "\f455"; }
+.genericon-instagram:before { content: "\f215"; }
+.genericon-italic:before { content: "\f472"; }
+.genericon-key:before { content: "\f427"; }
+.genericon-leftarrow:before { content: "\f503"; }
+.genericon-link:before { content: "\f107"; }
+.genericon-linkedin:before { content: "\f207"; }
+.genericon-linkedin-alt:before { content: "\f208"; }
+.genericon-location:before { content: "\f417"; }
+.genericon-lock:before { content: "\f470"; }
+.genericon-mail:before { content: "\f410"; }
+.genericon-maximize:before { content: "\f422"; }
+.genericon-menu:before { content: "\f419"; }
+.genericon-microphone:before { content: "\f50d"; }
+.genericon-minimize:before { content: "\f421"; }
+.genericon-minus:before { content: "\f50e"; }
+.genericon-month:before { content: "\f307"; }
+.genericon-move:before { content: "\f50f"; }
+.genericon-next:before { content: "\f429"; }
+.genericon-notice:before { content: "\f456"; }
+.genericon-paintbrush:before { content: "\f506"; }
+.genericon-path:before { content: "\f219"; }
+.genericon-pause:before { content: "\f448"; }
+.genericon-phone:before { content: "\f437"; }
+.genericon-picture:before { content: "\f473"; }
+.genericon-pinned:before { content: "\f308"; }
+.genericon-pinterest:before { content: "\f209"; }
+.genericon-pinterest-alt:before { content: "\f210"; }
+.genericon-play:before { content: "\f452"; }
+.genericon-plugin:before { content: "\f439"; }
+.genericon-plus:before { content: "\f510"; }
+.genericon-pocket:before { content: "\f224"; }
+.genericon-polldaddy:before { content: "\f217"; }
+.genericon-portfolio:before { content: "\f460"; }
+.genericon-previous:before { content: "\f430"; }
+.genericon-print:before { content: "\f469"; }
+.genericon-quote:before { content: "\f106"; }
+.genericon-rating-empty:before { content: "\f511"; }
+.genericon-rating-full:before { content: "\f512"; }
+.genericon-rating-half:before { content: "\f513"; }
+.genericon-reddit:before { content: "\f222"; }
+.genericon-refresh:before { content: "\f420"; }
+.genericon-reply:before { content: "\f412"; }
+.genericon-reply-alt:before { content: "\f466"; }
+.genericon-reply-single:before { content: "\f467"; }
+.genericon-rewind:before { content: "\f459"; }
+.genericon-rightarrow:before { content: "\f501"; }
+.genericon-search:before { content: "\f400"; }
+.genericon-send-to-phone:before { content: "\f438"; }
+.genericon-send-to-tablet:before { content: "\f454"; }
+.genericon-share:before { content: "\f415"; }
+.genericon-show:before { content: "\f403"; }
+.genericon-shuffle:before { content: "\f514"; }
+.genericon-sitemap:before { content: "\f507"; }
+.genericon-skip-ahead:before { content: "\f451"; }
+.genericon-skip-back:before { content: "\f450"; }
+.genericon-skype:before { content: "\f220"; }
+.genericon-spam:before { content: "\f424"; }
+.genericon-spotify:before { content: "\f515"; }
+.genericon-standard:before { content: "\f100"; }
+.genericon-star:before { content: "\f408"; }
+.genericon-status:before { content: "\f105"; }
+.genericon-stop:before { content: "\f449"; }
+.genericon-stumbleupon:before { content: "\f223"; }
+.genericon-subscribe:before { content: "\f463"; }
+.genericon-subscribed:before { content: "\f465"; }
+.genericon-summary:before { content: "\f425"; }
+.genericon-tablet:before { content: "\f453"; }
+.genericon-tag:before { content: "\f302"; }
+.genericon-time:before { content: "\f303"; }
+.genericon-top:before { content: "\f435"; }
+.genericon-trash:before { content: "\f407"; }
+.genericon-tumblr:before { content: "\f214"; }
+.genericon-twitch:before { content: "\f516"; }
+.genericon-twitter:before { content: "\f202"; }
+.genericon-unapprove:before { content: "\f446"; }
+.genericon-unsubscribe:before { content: "\f464"; }
+.genericon-unzoom:before { content: "\f401"; }
+.genericon-uparrow:before { content: "\f500"; }
+.genericon-user:before { content: "\f304"; }
+.genericon-video:before { content: "\f104"; }
+.genericon-videocamera:before { content: "\f517"; }
+.genericon-vimeo:before { content: "\f212"; }
+.genericon-warning:before { content: "\f414"; }
+.genericon-website:before { content: "\f475"; }
+.genericon-week:before { content: "\f306"; }
+.genericon-wordpress:before { content: "\f205"; }
+.genericon-xpost:before { content: "\f504"; }
+.genericon-youtube:before { content: "\f213"; }
+.genericon-zoom:before { content: "\f402"; }
diff --git a/static/wp-content/themes/twentyfifteen/js/color-scheme-control.js b/static/wp-content/themes/twentyfifteen/js/color-scheme-control.js
new file mode 100755
index 0000000..3563239
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/js/color-scheme-control.js
@@ -0,0 +1,78 @@
+/* global colorScheme, Color */
+/**
+ * Add a listener to the Color Scheme control to update other color controls to new values/defaults.
+ * Also trigger an update of the Color Scheme CSS when a color is changed.
+ */
+
+( function( api ) {
+ var cssTemplate = wp.template( 'twentyfifteen-color-scheme' ),
+ colorSchemeKeys = [
+ 'background_color',
+ 'header_background_color',
+ 'box_background_color',
+ 'textcolor',
+ 'sidebar_textcolor',
+ 'meta_box_background_color'
+ ],
+ colorSettings = [
+ 'background_color',
+ 'header_background_color',
+ 'sidebar_textcolor'
+ ];
+
+ api.controlConstructor.select = api.Control.extend( {
+ ready: function() {
+ if ( 'color_scheme' === this.id ) {
+ this.setting.bind( 'change', function( value ) {
+ // Update Background Color.
+ api( 'background_color' ).set( colorScheme[value].colors[0] );
+ api.control( 'background_color' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', colorScheme[value].colors[0] )
+ .wpColorPicker( 'defaultColor', colorScheme[value].colors[0] );
+
+ // Update Header/Sidebar Background Color.
+ api( 'header_background_color' ).set( colorScheme[value].colors[1] );
+ api.control( 'header_background_color' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', colorScheme[value].colors[1] )
+ .wpColorPicker( 'defaultColor', colorScheme[value].colors[1] );
+
+ // Update Header/Sidebar Text Color.
+ api( 'sidebar_textcolor' ).set( colorScheme[value].colors[4] );
+ api.control( 'sidebar_textcolor' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', colorScheme[value].colors[4] )
+ .wpColorPicker( 'defaultColor', colorScheme[value].colors[4] );
+ } );
+ }
+ }
+ } );
+
+ // Generate the CSS for the current Color Scheme.
+ function updateCSS() {
+ var scheme = api( 'color_scheme' )(), css,
+ colors = _.object( colorSchemeKeys, colorScheme[ scheme ].colors );
+
+ // Merge in color scheme overrides.
+ _.each( colorSettings, function( setting ) {
+ colors[ setting ] = api( setting )();
+ });
+
+ // Add additional colors.
+ colors.secondary_textcolor = Color( colors.textcolor ).toCSS( 'rgba', 0.7 );
+ colors.border_color = Color( colors.textcolor ).toCSS( 'rgba', 0.1 );
+ colors.border_focus_color = Color( colors.textcolor ).toCSS( 'rgba', 0.3 );
+ colors.secondary_sidebar_textcolor = Color( colors.sidebar_textcolor ).toCSS( 'rgba', 0.7 );
+ colors.sidebar_border_color = Color( colors.sidebar_textcolor ).toCSS( 'rgba', 0.1 );
+ colors.sidebar_border_focus_color = Color( colors.sidebar_textcolor ).toCSS( 'rgba', 0.3 );
+
+ css = cssTemplate( colors );
+
+ api.previewer.send( 'update-color-scheme-css', css );
+ }
+
+ // Update the CSS whenever a color setting is changed.
+ _.each( colorSettings, function( setting ) {
+ api( setting, function( setting ) {
+ setting.bind( updateCSS );
+ } );
+ } );
+} )( wp.customize );
diff --git a/static/wp-content/themes/twentyfifteen/js/customize-preview.js b/static/wp-content/themes/twentyfifteen/js/customize-preview.js
new file mode 100755
index 0000000..58ca269
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/js/customize-preview.js
@@ -0,0 +1,35 @@
+/**
+ * Live-update changed settings in real time in the Customizer preview.
+ */
+
+( function( $ ) {
+ var $style = $( '#twentyfifteen-color-scheme-css' ),
+ api = wp.customize;
+
+ if ( ! $style.length ) {
+ $style = $( 'head' ).append( '' )
+ .find( '#twentyfifteen-color-scheme-css' );
+ }
+
+ // Site title.
+ api( 'blogname', function( value ) {
+ value.bind( function( to ) {
+ $( '.site-title a' ).text( to );
+ } );
+ } );
+
+ // Site tagline.
+ api( 'blogdescription', function( value ) {
+ value.bind( function( to ) {
+ $( '.site-description' ).text( to );
+ } );
+ } );
+
+ // Color Scheme CSS.
+ api.bind( 'preview-ready', function() {
+ api.preview.bind( 'update-color-scheme-css', function( css ) {
+ $style.html( css );
+ } );
+ } );
+
+} )( jQuery );
diff --git a/static/wp-content/themes/twentyfifteen/js/functions.js b/static/wp-content/themes/twentyfifteen/js/functions.js
new file mode 100755
index 0000000..ba102a0
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/js/functions.js
@@ -0,0 +1,134 @@
+/* global screenReaderText */
+/**
+ * Theme functions file.
+ *
+ * Contains handlers for navigation and widget area.
+ */
+
+( function( $ ) {
+ var $body, $window, $sidebar, resizeTimer,
+ secondary, button;
+
+ function initMainNavigation( container ) {
+ // Add dropdown toggle that display child menu items.
+ container.find( '.menu-item-has-children > a' ).after( '' );
+
+ // Toggle buttons and submenu items with active children menu items.
+ container.find( '.current-menu-ancestor > button' ).addClass( 'toggle-on' );
+ container.find( '.current-menu-ancestor > .sub-menu' ).addClass( 'toggled-on' );
+
+ container.find( '.dropdown-toggle' ).on( 'click', function( e ) {
+ var _this = $( this );
+ e.preventDefault();
+ _this.toggleClass( 'toggle-on' );
+ _this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );
+ _this.attr( 'aria-expanded', _this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
+ _this.html( _this.html() === screenReaderText.expand ? screenReaderText.collapse : screenReaderText.expand );
+ } );
+ }
+ initMainNavigation( $( '.main-navigation' ) );
+
+ // Re-initialize the main navigation when it is updated, persisting any existing submenu expanded states.
+ $( document ).on( 'customize-preview-menu-refreshed', function( e, params ) {
+ if ( 'primary' === params.wpNavMenuArgs.theme_location ) {
+ initMainNavigation( params.newContainer );
+
+ // Re-sync expanded states from oldContainer.
+ params.oldContainer.find( '.dropdown-toggle.toggle-on' ).each(function() {
+ var containerId = $( this ).parent().prop( 'id' );
+ $( params.newContainer ).find( '#' + containerId + ' > .dropdown-toggle' ).triggerHandler( 'click' );
+ });
+ }
+ });
+
+ secondary = $( '#secondary' );
+ button = $( '.site-branding' ).find( '.secondary-toggle' );
+
+ // Enable menu toggle for small screens.
+ ( function() {
+ var menu, widgets, social;
+ if ( ! secondary.length || ! button.length ) {
+ return;
+ }
+
+ // Hide button if there are no widgets and the menus are missing or empty.
+ menu = secondary.find( '.nav-menu' );
+ widgets = secondary.find( '#widget-area' );
+ social = secondary.find( '#social-navigation' );
+ if ( ! widgets.length && ! social.length && ( ! menu.length || ! menu.children().length ) ) {
+ button.hide();
+ return;
+ }
+
+ button.on( 'click.twentyfifteen', function() {
+ secondary.toggleClass( 'toggled-on' );
+ secondary.trigger( 'resize' );
+ $( this ).toggleClass( 'toggled-on' );
+ if ( $( this, secondary ).hasClass( 'toggled-on' ) ) {
+ $( this ).attr( 'aria-expanded', 'true' );
+ secondary.attr( 'aria-expanded', 'true' );
+ } else {
+ $( this ).attr( 'aria-expanded', 'false' );
+ secondary.attr( 'aria-expanded', 'false' );
+ }
+ } );
+ } )();
+
+ /**
+ * Add or remove ARIA attributes.
+ *
+ * Uses jQuery's width() function to determine the size of the window and add
+ * the default ARIA attributes for the menu toggle if it's visible.
+ *
+ * @since Twenty Fifteen 1.1
+ */
+ function onResizeARIA() {
+ if ( 955 > $window.width() ) {
+ button.attr( 'aria-expanded', 'false' );
+ secondary.attr( 'aria-expanded', 'false' );
+ button.attr( 'aria-controls', 'secondary' );
+ } else {
+ button.removeAttr( 'aria-expanded' );
+ secondary.removeAttr( 'aria-expanded' );
+ button.removeAttr( 'aria-controls' );
+ }
+ }
+
+ // Sidebar scrolling.
+ function resizeAndScroll() {
+ var windowPos = $window.scrollTop(),
+ windowHeight = $window.height(),
+ sidebarHeight = $sidebar.height(),
+ pageHeight = $( '#page' ).height();
+
+ if ( 955 < $window.width() && pageHeight > sidebarHeight && ( windowPos + windowHeight ) >= sidebarHeight ) {
+ $sidebar.css({
+ position: 'fixed',
+ bottom: sidebarHeight > windowHeight ? 0 : 'auto'
+ });
+ } else {
+ $sidebar.css('position', 'relative');
+ }
+ }
+
+ $( function() {
+ $body = $( document.body );
+ $window = $( window );
+ $sidebar = $( '#sidebar' ).first();
+
+ $window
+ .on( 'scroll.twentyfifteen', resizeAndScroll )
+ .on( 'load.twentyfifteen', onResizeARIA )
+ .on( 'resize.twentyfifteen', function() {
+ clearTimeout( resizeTimer );
+ resizeTimer = setTimeout( resizeAndScroll, 500 );
+ onResizeARIA();
+ } );
+ $sidebar.on( 'click.twentyfifteen keydown.twentyfifteen', 'button', resizeAndScroll );
+
+ for ( var i = 0; i < 6; i++ ) {
+ setTimeout( resizeAndScroll, 100 * i );
+ }
+ } );
+
+} )( jQuery );
diff --git a/static/wp-content/themes/twentyfifteen/js/html5.js b/static/wp-content/themes/twentyfifteen/js/html5.js
new file mode 100755
index 0000000..412fe56
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/js/html5.js
@@ -0,0 +1,9 @@
+/*
+ * HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
+ */
+
+(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
+a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x";
+c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
+"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
+if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d -1 || ua.indexOf( 'opera' ) > -1 || ua.indexOf( 'msie' ) > -1 ) &&
+ document.getElementById && window.addEventListener ) {
+
+ window.addEventListener( 'hashchange', function() {
+ var element = document.getElementById( location.hash.substring( 1 ) );
+
+ if ( element ) {
+ if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.nodeName ) ) {
+ element.tabIndex = -1;
+ }
+
+ element.focus();
+ }
+ }, false );
+ }
+} )();
diff --git a/static/wp-content/themes/twentyfifteen/rtl.css b/static/wp-content/themes/twentyfifteen/rtl.css
new file mode 100755
index 0000000..4a7397f
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/rtl.css
@@ -0,0 +1,848 @@
+/*
+Theme Name: Twenty Fifteen
+Description: Adds support for languages written in a Right To Left (RTL) direction.
+It's easy, just a matter of overwriting all the horizontal positioning attributes
+of your CSS stylesheet in a separate stylesheet file named rtl.css.
+
+See: https://codex.wordpress.org/Right_to_Left_Language_Support
+*/
+
+/**
+ * Table of Contents:
+ *
+ * 1.0 - Reset
+ * 2.0 - Typography
+ * 3.0 - Elements
+ * 4.0 - Forms
+ * 5.0 - Navigations
+ * 6.0 - Accessibility
+ * 7.0 - Alignments
+ * 8.0 - Header
+ * 9.0 - Widgets
+ * 10.0 - Content
+ * 10.1 - Posts and pages
+ * 10.2 - Comments
+ * 11.0 - Media Queries
+ * 11.1 - Mobile Large
+ * 11.2 - Tablet Small
+ * 11.3 - Tablet Large
+ * 11.4 - Desktop Small
+ * 11.5 - Desktop Medium
+ * 11.6 - Desktop Large
+ * 11.7 - Desktop X-Large
+ */
+
+
+/**
+ * 1.0 Reset
+ */
+
+body {
+ direction: rtl;
+ unicode-bidi: embed;
+}
+
+caption,
+th,
+td {
+ text-align: right;
+}
+
+
+/**
+ * 2.0 Typography
+ */
+
+body,
+button,
+input[type="button"],
+input[type="reset"],
+input[type="submit"],
+input,
+select,
+textarea,
+blockquote cite,
+blockquote small,
+.post-password-form label,
+.main-navigation .menu-item-description,
+.post-navigation .meta-nav,
+.post-navigation .post-title,
+.pagination,
+.image-navigation,
+.comment-navigation,
+.site-title,
+.site-description,
+.widget-title,
+.widget_calendar caption,
+.widget_rss .rss-date,
+.widget_rss cite,
+.author-heading,
+.entry-footer,
+.page-title,
+.page-links,
+.entry-caption,
+.comments-title,
+.comment-reply-title,
+.comment-metadata,
+.pingback .edit-link,
+.comment-list .reply a,
+.comment-form label,
+.comment-notes,
+.comment-awaiting-moderation,
+.logged-in-as,
+.form-allowed-tags,
+.no-comments,
+.wp-caption-text,
+.gallery-caption {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+::-webkit-input-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+:-moz-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+::-moz-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+:-ms-input-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+blockquote {
+ border-right: 4px solid rgba(51, 51, 51, 0.7);
+ border-left: 0;
+ padding-right: 0.7778em;
+ padding-left: 0;
+}
+
+
+/**
+ * 3.0 Elements
+ */
+
+ul,
+ol {
+ margin: 0 1.3333em 1.6em 0;
+}
+
+caption,
+th,
+td {
+ text-align: right;
+}
+
+
+/**
+ * 4.0 Forms
+ */
+
+.post-password-form input[type="submit"] {
+ right: auto;
+ left: 0;
+}
+
+
+/**
+ * 5.0 Navigations
+ */
+
+.main-navigation ul ul {
+ margin-right: 0.8em;
+ margin-left: auto;
+}
+
+.main-navigation .menu-item-has-children > a {
+ padding-right: 0;
+ padding-left: 48px;
+}
+
+.dropdown-toggle {
+ right: auto;
+ left: 0;
+}
+
+.dropdown-toggle:after {
+ right: -1px;
+ left: auto;
+}
+
+.social-navigation li {
+ float: right;
+}
+
+.social-navigation a:before {
+ right: 0;
+ left: auto;
+}
+
+.secondary-toggle {
+ right: auto;
+ left: 0;
+}
+
+.post-navigation .has-post-thumbnail a:before {
+ right: 0;
+ left: auto;
+}
+
+.pagination .prev {
+ right: 0;
+ left: auto;
+}
+
+.pagination .prev:before {
+ content: "\f429";
+ right: -1px;
+ left: auto;
+}
+
+.pagination .next {
+ right: auto;
+ left: 0;
+}
+
+.pagination .next:before {
+ content: "\f430";
+ right: auto;
+ left: -1px;
+}
+
+.image-navigation .nav-previous a:before,
+.comment-navigation .nav-previous a:before {
+ content: "\f429";
+ margin-right: auto;
+ margin-left: 0.2em;
+}
+
+.image-navigation .nav-next a:after,
+.comment-navigation .nav-next a:after {
+ content: "\f430";
+ margin-right: 0.2em;
+ margin-left: auto;
+}
+
+
+/**
+ * 6.0 Accessibility
+ */
+
+.screen-reader-text:hover,
+.screen-reader-text:focus {
+ right: 5px;
+ left: auto;
+}
+
+
+/**
+ * 7.0 Alignments
+ */
+
+.alignright {
+ float: right;
+}
+
+.alignleft {
+ float: left;
+}
+
+.aligncenter {
+ margin-right: auto;
+ margin-left: auto;
+}
+
+blockquote.alignright,
+.wp-caption.alignright,
+img.alignright {
+ margin: 0.4em 0 1.6em 1.6em;
+}
+
+blockquote.alignleft,
+.wp-caption.alignleft,
+img.alignleft {
+ margin: 0.4em 1.6em 1.6em 0;
+}
+
+
+/**
+ * 8.0 Header
+ */
+
+.site-branding {
+ padding-right: 0;
+ padding-left: 60px;
+}
+
+
+/**
+ * 9.0 Widgets
+ */
+
+.widget_categories .children,
+.widget_nav_menu .sub-menu,
+.widget_pages .children {
+ margin: 0.7667em 0.8em 0 0;
+}
+
+.textwidget ul,
+.textwidget ol {
+ margin-left: 0;
+ margin-right: 1.6em;
+}
+
+/**
+ * 10.0 Content
+ */
+
+/**
+ * 10.1 Posts and pages
+ */
+
+.entry-content .more-link:after {
+ content: "\f430";
+}
+
+.author-link:after {
+ content: "\f430";
+}
+
+.author-info .avatar {
+ float: right;
+ margin: 0 0 1.6em 1.6em;
+}
+
+.posted-on:before,
+.byline:before,
+.cat-links:before,
+.tags-links:before,
+.comments-link:before,
+.entry-format:before,
+.edit-link:before,
+.full-size-link:before {
+ margin-right: auto;
+ margin-left: 2px;
+}
+
+.posted-on,
+.byline,
+.cat-links,
+.tags-links,
+.comments-link,
+.entry-format,
+.full-size-link {
+ margin-right: auto;
+ margin-left: 1em;
+}
+
+.page-links a,
+.page-links > span {
+ margin: 0 0 0.3333em 0.3333em;
+}
+
+.page-links > .page-links-title {
+ padding-right: 0;
+ padding-left: 0.5em;
+}
+
+.type-attachment .entry-header {
+ clear: left;
+}
+
+.format-link .entry-title a:after {
+ -webkit-transform: scaleX(-1);
+ -moz-transform: scaleX(-1);
+ -ms-transform: scaleX(-1);
+ -o-transform: scaleX(-1);
+ transform: scaleX(-1);
+}
+
+
+/**
+ * 10.2 Comments
+ */
+
+.comment-list .children > li {
+ padding-right: 0.8em;
+ padding-left: 0;
+}
+
+.comment-author .avatar {
+ float: right;
+ margin-right: 0;
+ margin-left: 0.4em;
+}
+
+.bypostauthor > article .fn:after {
+ right: 3px;
+ left: auto;
+}
+
+.comment-metadata .edit-link {
+ margin-right: 1em;
+ margin-left: auto;
+}
+
+.pingback .edit-link {
+ margin-right: 1em;
+ margin-left: auto;
+}
+
+.comment-content ul,
+.comment-content ol {
+ margin: 0 1.3333em 1.6em 0;
+}
+
+.comment-reply-title small a {
+ float: left;
+}
+
+.comment-form #wp-comment-cookies-consent {
+ margin: 0 0 0 10px;
+}
+
+/**
+ * 11.0 Media Queries
+ */
+
+
+/**
+ * 11.1 Mobile Large 620px
+ */
+
+@media screen and (min-width: 38.75em) {
+ ul,
+ ol {
+ margin-right: 0;
+ margin-left: auto;
+ }
+
+ li > ul,
+ li > ol,
+ blockquote > ul,
+ blockquote > ol {
+ margin-right: 1.3333em;
+ margin-left: auto;
+ }
+
+ blockquote {
+ margin-right: -1em;
+ margin-left: auto;
+ }
+
+ blockquote > blockquote {
+ margin-right: 0;
+ margin-left: auto;
+ }
+
+ .page-header {
+ border-color: inherit;
+ border-left: none;
+ border-style: solid;
+ border-width: 0 7px 0 0;
+ }
+
+ .page-title,
+ .taxonomy-description {
+ margin-right: -7px;
+ margin-left: auto;
+ }
+
+ .comment-content ul,
+ .comment-content ol {
+ margin-right: 0;
+ margin-left: auto;
+ }
+
+ .comment-content li > ul,
+ .comment-content li > ol,
+ .comment-content blockquote > ul,
+ .comment-content blockquote > ol {
+ margin-right: 1.3333em;
+ margin-left: auto;
+ }
+}
+
+
+/**
+ * 11.2 Tablet Small 740px
+ */
+
+@media screen and (min-width: 46.25em) {
+ blockquote {
+ margin-right: -1.05em;
+ margin-left: auto;
+ padding-right: 0.85em;
+ padding-left: 0;
+ }
+
+ .main-navigation ul ul {
+ margin-right: 1em;
+ margin-left: auto;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4118em 0 1.6471em 1.6471em;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4118em 1.6471em 1.6471em 0;
+ }
+
+ .site-branding {
+ padding-right: 0;
+ padding-left: 66px;
+ }
+
+ .widget blockquote {
+ margin-right: -1.2353em;
+ margin-left: auto;
+ padding-right: 1em;
+ padding-left: 0;
+ }
+
+ .widget blockquote > blockquote {
+ margin-right: 0;
+ margin-left: auto;
+ }
+
+ .widget blockquote.alignright,
+ .widget .wp-caption.alignright,
+ .widget img.alignright {
+ margin: 0.5em 0 1.5em 1.5em;
+ }
+
+ .widget blockquote.alignleft,
+ .widget .wp-caption.alignleft,
+ .widget img.alignleft {
+ margin: 0.5em 1.5em 1.5em 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.9643em 1em 0 0;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0 0.2857em 0.2857em;
+ }
+
+ .author-info .avatar {
+ margin: 0 0 1.6471em 1.6471em;
+ }
+
+ .comment-list .children > li {
+ padding-right: 1.2353em;
+ padding-left: 0;
+ }
+
+ .comment-author .avatar {
+ margin-left: 1.64705em;
+ }
+
+ .bypostauthor > article .fn:after {
+ right: 6px;
+ left: auto;
+ }
+}
+
+
+/**
+ * 11.3 Tablet Large 880px
+ */
+
+@media screen and (min-width: 55em) {
+ blockquote {
+ margin-right: -1.0909em;
+ margin-left: auto;
+ padding-right: 0.9091em;
+ padding-left: 0;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4211em 0 1.6842em 1.6842em;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4211em 1.6842em 1.6842em 0;
+ }
+
+ .site-branding {
+ padding-right: 0;
+ padding-left: 74px;
+ }
+
+ .widget blockquote {
+ margin-right: -1.2632em;
+ margin-left: auto;
+ padding-right: 1.0526em;
+ padding-left: 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.7188em 1em 0 0;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0 0.25em 0.25em;
+ }
+
+ .author-info .avatar {
+ margin: 0 0 1.6842em 1.6842em;
+ }
+
+ .comment-list .children > li {
+ padding-right: 1.4737em;
+ padding-left: 0;
+ }
+
+ .comment-author .avatar {
+ margin-left: 1.6842em;
+ }
+}
+
+
+/**
+ * 11.4 Desktop Small 955px
+ */
+
+@media screen and (min-width: 59.6875em) {
+ body:before {
+ right: 0;
+ left: auto;
+ }
+
+ .sidebar {
+ float: right;
+ margin-right: auto;
+ margin-left: -100%;
+ }
+
+ .site-content {
+ float: right;
+ margin-right: 29.4118%;
+ margin-left: auto;
+ }
+
+ blockquote {
+ margin-right: -1.3333em;
+ margin-left: auto;
+ padding-right: 1.1111em;
+ padding-left: 0;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ padding-right: 0;
+ padding-left: 30px;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4em 0 1.6em 1.6em;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4em 1.6em 1.6em 0;
+ }
+
+ .widget blockquote {
+ margin-right: -1.5em;
+ margin-left: auto;
+ padding-right: 1.1667em;
+ padding-left: 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.4583em 1em 0 0;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0 0.3333em 0.3333em;
+ }
+
+ .author-info .avatar {
+ margin: 0 0 1.5em 1.5em;
+ }
+
+ .comment-list .children > li {
+ padding-right: 0.8em;
+ padding-left: 0;
+ }
+
+ .comment-author .avatar {
+ margin-left: 0.8em;
+ }
+
+ .bypostauthor > article .fn:after {
+ right: 3px;
+ left: auto;
+ }
+
+ .site-branding {
+ padding: 0;
+ }
+
+ .site-footer {
+ float: right;
+ margin: 0 35.2941% 0 0;
+ }
+}
+
+
+/**
+ * 11.5 Desktop Medium 1100px
+ */
+
+@media screen and (min-width: 68.75em) {
+ blockquote {
+ margin-right: -1.05em;
+ margin-left: auto;
+ padding-right: 0.85em;
+ padding-left: 0;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ padding-right: 0;
+ padding-left: 34px;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4118em 0 1.6471em 1.6471em;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4118em 1.6471em 1.6471em 0;
+ }
+
+ .widget blockquote {
+ padding-right: 1.2143em;
+ padding-left: 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.4643em 1em 0 0;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0 0.2857em 0.2857em;
+ }
+
+ .author-info .avatar {
+ margin: 0 0 1.6471em 1.6471em;
+ }
+
+ .comment-list .children > li {
+ padding-right: 1.1667em;
+ padding-left: 0;
+ }
+
+ .comment-author .avatar {
+ margin-left: 1.64705em;
+ }
+
+ .bypostauthor > article .fn:after {
+ right: 6px;
+ left: auto;
+ }
+}
+
+
+/**
+ * 11.6 Desktop Large 1240px
+ */
+
+@media screen and (min-width: 77.5em) {
+ blockquote {
+ margin-right: -1.0909em;
+ margin-left: auto;
+ padding-right: 0.9091em;
+ padding-left: 0;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ padding-right: 0;
+ padding-left: 38px;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4211em 0 1.6842em 1.6842em;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4211em 1.6842em 1.6842em 0;
+ }
+
+ .widget blockquote {
+ padding-right: 1.25em;
+ padding-left: 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.4688em 1em 0 0;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0 0.25em 0.25em;
+ }
+
+ .author-info .avatar {
+ margin: 0 0 1.6842em 1.6842em;
+ }
+
+ .comment-list .children > li {
+ padding-right: 1.4737em;
+ padding-left: 0;
+ }
+
+ .comment-author .avatar {
+ margin-left: 1.64705em;
+ }
+}
+
+
+/**
+ * 11.7 Desktop X-Large 1403px
+ */
+
+@media screen and (min-width: 87.6875em) {
+ body:before {
+ width: -webkit-calc(50% - 289px);
+ width: calc(50% - 289px);
+ }
+}
diff --git a/static/wp-content/themes/twentyfifteen/style.css b/static/wp-content/themes/twentyfifteen/style.css
new file mode 100755
index 0000000..04b0c5d
--- /dev/null
+++ b/static/wp-content/themes/twentyfifteen/style.css
@@ -0,0 +1,6118 @@
+/*
+Theme Name: Twenty Fifteen
+Theme URI: https://wordpress.org/themes/twentyfifteen/
+Author: the WordPress team
+Author URI: https://wordpress.org/
+Description: Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
+Version: 3.2
+Tested up to: 6.0
+Requires PHP: 5.2.4
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Tags: blog, two-columns, left-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, block-patterns
+Text Domain: twentyfifteen
+
+This theme, like WordPress, is licensed under the GPL.
+Use it to make something cool, have fun, and share what you've learned with others.
+*/
+
+
+/**
+ * Table of Contents
+ *
+ * 1.0 - Reset
+ * 2.0 - Genericons
+ * 3.0 - Typography
+ * 4.0 - Elements
+ * 5.0 - Forms
+ * 6.0 - Navigations
+ * 6.1 - Links
+ * 6.2 - Menus
+ * 7.0 - Accessibility
+ * 8.0 - Alignments
+ * 9.0 - Clearings
+ * 10.0 - Header
+ * 11.0 - Widgets
+ * 12.0 - Content
+ * 12.1 - Posts and pages
+ * 12.2 - Post Formats
+ * 12.3 - Comments
+ * 13.0 - Footer
+ * 14.0 - Media
+ * 14.1 - Captions
+ * 14.2 - Galleries
+ * 15.0 - Multisite
+ * 16.0 - Media Queries
+ * 16.1 - Mobile Large
+ * 16.2 - Tablet Small
+ * 16.3 - Tablet Large
+ * 16.4 - Desktop Small
+ * 16.5 - Desktop Medium
+ * 16.6 - Desktop Large
+ * 16.7 - Desktop X-Large
+ * 17.0 - Print
+ */
+
+
+/**
+ * 1.0 - Reset
+ *
+ * Resetting and rebuilding styles have been helped along thanks to the fine
+ * work of Eric Meyer, Nicolas Gallagher, Jonathan Neal, and Blueprint.
+ */
+
+html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
+ border: 0;
+ font-family: inherit;
+ font-size: 100%;
+ font-style: inherit;
+ font-weight: inherit;
+ margin: 0;
+ outline: 0;
+ padding: 0;
+ vertical-align: baseline;
+}
+
+html {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: 62.5%;
+ overflow-y: scroll;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+}
+
+*,
+*:before,
+*:after {
+ -webkit-box-sizing: inherit;
+ -moz-box-sizing: inherit;
+ box-sizing: inherit;
+}
+
+body {
+ background: #f1f1f1;
+}
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+main,
+nav,
+section {
+ display: block;
+}
+
+ol,
+ul {
+ list-style: none;
+}
+
+table {
+ border-collapse: separate;
+ border-spacing: 0;
+}
+
+caption,
+th,
+td {
+ font-weight: normal;
+ text-align: left;
+}
+
+fieldset {
+ min-width: inherit;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+ content: "";
+}
+
+blockquote,
+q {
+ -webkit-hyphens: none;
+ -moz-hyphens: none;
+ -ms-hyphens: none;
+ hyphens: none;
+ quotes: none;
+}
+
+a:focus {
+ outline: 2px solid #c1c1c1;
+ outline: 2px solid rgba(51, 51, 51, 0.3);
+}
+
+a:hover,
+a:active {
+ outline: 0;
+}
+
+a img {
+ border: 0;
+}
+
+
+/**
+ * 2.0 - Genericons
+ */
+
+.social-navigation a:before,
+.secondary-toggle:before,
+.dropdown-toggle:after,
+.bypostauthor > article .fn:after,
+.comment-reply-title small a:before,
+.comment-navigation .nav-next a:after,
+.comment-navigation .nav-previous a:before,
+.posted-on:before,
+.byline:before,
+.cat-links:before,
+.tags-links:before,
+.comments-link:before,
+.entry-format:before,
+.edit-link:before,
+.full-size-link:before,
+.pagination .prev:before,
+.pagination .next:before,
+.image-navigation a:before,
+.image-navigation a:after,
+.format-link .entry-title a:after,
+.entry-content .more-link:after,
+.entry-summary .more-link:after,
+.author-link:after {
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ display: inline-block;
+ font-family: "Genericons";
+ font-size: 16px;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ line-height: 1;
+ speak: never;
+ text-align: center;
+ text-decoration: inherit;
+ text-transform: none;
+ vertical-align: top;
+}
+
+
+/**
+ * 3.0 Typography
+ */
+
+body,
+button,
+input,
+select,
+textarea {
+ color: #333;
+ font-family: "Noto Serif", serif;
+ font-size: 15px;
+ font-size: 1.5rem;
+ line-height: 1.6;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ clear: both;
+ font-weight: 700;
+}
+
+p {
+ margin-bottom: 1.6em;
+}
+
+b,
+strong {
+ font-weight: 700;
+}
+
+dfn,
+cite,
+em,
+i {
+ font-style: italic;
+}
+
+blockquote {
+ border-left: 4px solid #707070;
+ border-left: 4px solid rgba(51, 51, 51, 0.7);
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-size: 18px;
+ font-size: 1.8rem;
+ font-style: italic;
+ line-height: 1.6667;
+ margin-bottom: 1.6667em;
+ padding-left: 0.7778em;
+}
+
+blockquote p {
+ margin-bottom: 1.6667em;
+}
+
+blockquote > p:last-child {
+ margin-bottom: 0;
+}
+
+blockquote cite,
+blockquote small {
+ color: #333;
+ font-size: 15px;
+ font-size: 1.5rem;
+ font-family: "Noto Sans", sans-serif;
+ line-height: 1.6;
+}
+
+blockquote em,
+blockquote i,
+blockquote cite {
+ font-style: normal;
+}
+
+blockquote strong,
+blockquote b {
+ font-weight: 400;
+}
+
+address {
+ font-style: italic;
+ margin: 0 0 1.6em;
+}
+
+code,
+kbd,
+tt,
+var,
+samp,
+pre {
+ font-family: Inconsolata, monospace;
+ -webkit-hyphens: none;
+ -moz-hyphens: none;
+ -ms-hyphens: none;
+ hyphens: none;
+}
+
+pre {
+ background-color: transparent;
+ background-color: rgba(0, 0, 0, 0.01);
+ border: 1px solid #eaeaea;
+ border: 1px solid rgba(51, 51, 51, 0.1);
+ line-height: 1.2;
+ margin-bottom: 1.6em;
+ max-width: 100%;
+ overflow: auto;
+ padding: 0.8em;
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+abbr[title] {
+ border-bottom: 1px dotted #eaeaea;
+ border-bottom: 1px dotted rgba(51, 51, 51, 0.1);
+ cursor: help;
+}
+
+mark,
+ins {
+ background-color: #fff9c0;
+ text-decoration: none;
+}
+
+sup,
+sub {
+ font-size: 75%;
+ height: 0;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sup {
+ bottom: 1ex;
+}
+
+sub {
+ top: .5ex;
+}
+
+small {
+ font-size: 75%;
+}
+
+big {
+ font-size: 125%;
+}
+
+
+/**
+ * 4.0 Elements
+ */
+
+hr {
+ background-color: #eaeaea;
+ background-color: rgba(51, 51, 51, 0.1);
+ border: 0;
+ height: 1px;
+ margin-bottom: 1.6em;
+}
+
+ul,
+ol {
+ margin: 0 0 1.6em 1.3333em;
+}
+
+ul {
+ list-style: disc;
+}
+
+ol {
+ list-style: decimal;
+}
+
+li > ul,
+li > ol {
+ margin-bottom: 0;
+}
+
+dl {
+ margin-bottom: 1.6em;
+}
+
+dt {
+ font-weight: bold;
+}
+
+dd {
+ margin-bottom: 1.6em;
+}
+
+table,
+th,
+td {
+ border: 1px solid #eaeaea;
+ border: 1px solid rgba(51, 51, 51, 0.1);
+}
+
+table {
+ border-collapse: separate;
+ border-spacing: 0;
+ border-width: 1px 0 0 1px;
+ margin: 0 0 1.6em;
+ table-layout: fixed; /* Prevents HTML tables from becoming too wide */
+ width: 100%;
+}
+
+caption,
+th,
+td {
+ font-weight: normal;
+ text-align: left;
+}
+
+th {
+ border-width: 0 1px 1px 0;
+ font-weight: 700;
+}
+
+td {
+ border-width: 0 1px 1px 0;
+}
+
+th, td {
+ padding: 0.4em;
+}
+
+img {
+ -ms-interpolation-mode: bicubic;
+ border: 0;
+ height: auto;
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+figure {
+ margin: 0;
+}
+
+del {
+ opacity: 0.8;
+}
+
+/* Placeholder text color -- selectors need to be separate to work. */
+
+::-webkit-input-placeholder {
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+}
+
+:-moz-placeholder {
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+}
+
+::-moz-placeholder {
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */
+}
+
+:-ms-input-placeholder {
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+}
+
+
+/**
+ * 5.0 Forms
+ */
+
+button,
+input,
+select,
+textarea {
+ background-color: #f7f7f7;
+ border-radius: 0;
+ font-size: 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ margin: 0;
+ max-width: 100%;
+ vertical-align: baseline;
+}
+
+button,
+input {
+ -webkit-hyphens: none;
+ -moz-hyphens: none;
+ -ms-hyphens: none;
+ hyphens: none;
+ line-height: normal;
+}
+
+input,
+textarea {
+ background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); /* Removing the inner shadow on iOS inputs */
+ border: 1px solid #eaeaea;
+ border: 1px solid rgba(51, 51, 51, 0.1);
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+}
+
+input:focus,
+textarea:focus {
+ background-color: #fff;
+ border: 1px solid #c1c1c1;
+ border: 1px solid rgba(51, 51, 51, 0.3);
+ color: #333;
+}
+
+input:focus,
+select:focus {
+ outline: 2px solid #c1c1c1;
+ outline: 2px solid rgba(51, 51, 51, 0.3);
+}
+
+button[disabled],
+input[disabled],
+select[disabled],
+textarea[disabled] {
+ cursor: default;
+ opacity: .5;
+}
+
+button,
+input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+ -webkit-appearance: button;
+ background-color: #333;
+ border: 0;
+ color: #fff;
+ cursor: pointer;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: 700;
+ padding: 0.7917em 1.5em;
+ text-transform: uppercase;
+}
+
+button:hover,
+input[type="button"]:hover,
+input[type="reset"]:hover,
+input[type="submit"]:hover,
+button:focus,
+input[type="button"]:focus,
+input[type="reset"]:focus,
+input[type="submit"]:focus {
+ background-color: #707070;
+ background-color: rgba(51, 51, 51, 0.7);
+ outline: 0;
+}
+
+input[type="search"] {
+ -webkit-appearance: textfield;
+}
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+
+input[type="text"],
+input[type="email"],
+input[type="url"],
+input[type="password"],
+input[type="search"],
+textarea {
+ padding: 0.375em;
+ width: 100%;
+}
+
+textarea {
+ overflow: auto;
+ vertical-align: top;
+}
+
+input[type="text"]:focus,
+input[type="email"]:focus,
+input[type="url"]:focus,
+input[type="password"]:focus,
+input[type="search"]:focus,
+textarea:focus {
+ outline: 0;
+}
+
+.post-password-form {
+ position: relative;
+}
+
+.post-password-form label {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ display: block;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: 700;
+ letter-spacing: 0.04em;
+ line-height: 1.5;
+ text-transform: uppercase;
+}
+
+.post-password-form input[type="submit"] {
+ padding: 0.7917em;
+ position: absolute;
+ right: 0;
+ bottom: 0;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ padding: 0;
+}
+
+.search-form input[type="submit"],
+.widget .search-form input[type="submit"] {
+ padding: 0;
+}
+
+
+/**
+ * 6.0 Navigations
+ */
+
+
+/**
+ * 6.1 Links
+ */
+
+a {
+ color: #333;
+ text-decoration: none;
+}
+
+a:hover,
+a:focus {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+}
+
+
+/**
+ * 6.2 Menus
+ */
+
+.main-navigation a {
+ display: block;
+ padding: 0.8em 0;
+ position: relative;
+ text-decoration: none;
+}
+
+.main-navigation ul {
+ list-style: none;
+ margin: 0;
+}
+
+.main-navigation ul ul {
+ display: none;
+ margin-left: 0.8em;
+}
+
+.main-navigation ul .toggled-on {
+ display: block;
+}
+
+.main-navigation li {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ position: relative;
+}
+
+.main-navigation .current-menu-item > a,
+.main-navigation .current-menu-ancestor > a {
+ font-weight: 700;
+}
+
+.main-navigation .nav-menu > ul > li:first-child,
+.main-navigation .nav-menu > li:first-child {
+ border-top: 0;
+}
+
+.main-navigation .menu-item-has-children > a {
+ padding-right: 48px;
+}
+
+.main-navigation .menu-item-description {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: 400;
+ line-height: 1.5;
+ margin-top: 0.5em;
+}
+
+.no-js .main-navigation ul ul {
+ display: block;
+}
+
+.dropdown-toggle {
+ background-color: transparent;
+ border: 0;
+ -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+ content: "";
+ height: 42px;
+ padding: 0;
+ position: absolute;
+ text-transform: lowercase; /* Stop screen readers to read the text as capital letters */
+ top: 3px;
+ right: 0;
+ width: 42px;
+}
+
+.dropdown-toggle:after {
+ color: #333;
+ content: "\f431";
+ font-size: 24px;
+ line-height: 42px;
+ position: relative;
+ top: 0;
+ left: 1px;
+ width: 42px;
+}
+
+.dropdown-toggle:hover,
+.dropdown-toggle:focus {
+ background-color: #eaeaea;
+ background-color: rgba(51, 51, 51, 0.1);
+}
+
+.dropdown-toggle:focus {
+ outline: 1px solid #c1c1c1;
+ outline: 1px solid rgba(51, 51, 51, 0.3);
+}
+
+.dropdown-toggle.toggle-on:after {
+ content: "\f432";
+}
+
+.social-navigation {
+ margin: 9.0909% 0;
+}
+
+.social-navigation ul {
+ list-style: none;
+ margin: 0 0 -1.6em 0;
+}
+
+.social-navigation li {
+ float: left;
+}
+
+.social-navigation a {
+ display: block;
+ height: 3.2em;
+ position: relative;
+ width: 3.2em;
+}
+
+.social-navigation a:before {
+ content: "\f415";
+ font-size: 24px;
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+
+.social-navigation a[href*="codepen.io"]:before {
+ content: "\f216";
+}
+
+.social-navigation a[href*="digg.com"]:before {
+ content: "\f221";
+}
+
+.social-navigation a[href*="dribbble.com"]:before {
+ content: "\f201";
+}
+
+.social-navigation a[href*="dropbox.com"]:before {
+ content: "\f225";
+}
+
+.social-navigation a[href*="facebook.com"]:before {
+ content: "\f203";
+}
+
+.social-navigation a[href*="flickr.com"]:before {
+ content: "\f211";
+}
+
+.social-navigation a[href*="foursquare.com"]:before {
+ content: "\f226";
+}
+
+.social-navigation a[href*="plus.google.com"]:before {
+ content: "\f206";
+}
+
+.social-navigation a[href*="github.com"]:before {
+ content: "\f200";
+}
+
+.social-navigation a[href*="instagram.com"]:before {
+ content: "\f215";
+}
+
+.social-navigation a[href*="linkedin.com"]:before {
+ content: "\f208";
+}
+
+.social-navigation a[href*="pinterest.com"]:before {
+ content: "\f210";
+}
+
+.social-navigation a[href*="getpocket.com"]:before {
+ content: "\f224";
+}
+
+.social-navigation a[href*="polldaddy.com"]:before {
+ content: "\f217";
+}
+
+.social-navigation a[href*="reddit.com"]:before {
+ content: "\f222";
+}
+
+.social-navigation a[href*="stumbleupon.com"]:before {
+ content: "\f223";
+}
+
+.social-navigation a[href*="tumblr.com"]:before {
+ content: "\f214";
+}
+
+.social-navigation a[href*="twitter.com"]:before {
+ content: "\f202";
+}
+
+.social-navigation a[href*="vimeo.com"]:before {
+ content: "\f212";
+}
+
+.social-navigation a[href*="wordpress.com"]:before,
+.social-navigation a[href*="wordpress.org"]:before {
+ content: "\f205";
+}
+
+.social-navigation a[href*="youtube.com"]:before {
+ content: "\f213";
+}
+
+.social-navigation a[href*="mailto:"]:before {
+ content: "\f410";
+}
+
+.social-navigation a[href*="spotify.com"]:before {
+ content: "\f515";
+}
+
+.social-navigation a[href*="twitch.tv"]:before {
+ content: "\f516";
+}
+
+.social-navigation a[href$="/feed/"]:before {
+ content: "\f413";
+}
+
+.social-navigation a[href*="path.com"]:before {
+ content: "\f219";
+}
+
+.social-navigation a[href*="skype.com"]:before {
+ content: "\f220";
+}
+
+.secondary-toggle {
+ background-color: transparent;
+ border: 1px solid #eaeaea;
+ border: 1px solid rgba(51, 51, 51, 0.1);
+ height: 42px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ top: 50%;
+ right: 0;
+ text-align: center;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%);
+ width: 42px;
+}
+
+.secondary-toggle:before {
+ color: #333;
+ content: "\f419";
+ line-height: 40px;
+ width: 40px;
+}
+
+.secondary-toggle:hover,
+.secondary-toggle:focus {
+ background-color: transparent;
+ border: 1px solid #c1c1c1;
+ border: 1px solid rgba(51, 51, 51, 0.3);
+ outline: 0;
+}
+
+.secondary-toggle.toggled-on:before {
+ content: "\f405";
+ font-size: 32px;
+ position: relative;
+ top: 1px;
+ left: -1px;
+}
+
+.post-navigation {
+ background-color: #fff;
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ font-weight: 700;
+}
+
+.post-navigation a {
+ display: block;
+ padding: 3.8461% 7.6923%;
+}
+
+.post-navigation span {
+ display: block;
+}
+
+.post-navigation .meta-nav {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ letter-spacing: 0.04em;
+ line-height: 1.5;
+ position: relative;
+ text-transform: uppercase;
+ z-index: 2;
+}
+
+.post-navigation .post-title {
+ font-family: "Noto Serif", serif;
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+ position: relative;
+ z-index: 2;
+}
+
+.post-navigation .nav-next,
+.post-navigation .nav-previous {
+ background-position: center;
+ background-size: cover;
+ position: relative;
+}
+
+.post-navigation a:before {
+ content: "";
+ display: block;
+ height: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ z-index: 1;
+}
+
+.post-navigation a:hover:before,
+.post-navigation a:focus:before {
+ opacity: 0.5;
+}
+
+.post-navigation .meta-nav {
+ opacity: 0.8;
+}
+
+.post-navigation div + div {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+}
+
+.pagination {
+ background-color: #fff;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ font-family: "Noto Sans", sans-serif;
+}
+
+.pagination .nav-links {
+ min-height: 3.2em;
+ position: relative;
+ text-align: center;
+}
+
+/* reset screen-reader-text */
+.pagination .current .screen-reader-text {
+ position: static !important;
+}
+
+.pagination .page-numbers {
+ display: none;
+ line-height: 3.2em;
+ padding: 0 0.6667em;
+}
+
+.pagination .page-numbers.current {
+ text-transform: uppercase;
+}
+
+.pagination .current {
+ display: inline-block;
+ font-weight: 700;
+}
+
+.pagination .prev,
+.pagination .next {
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
+ background-color: #333;
+ color: #fff;
+ display: inline-block;
+ height: 48px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 48px;
+}
+
+.pagination .prev:before,
+.pagination .next:before {
+ font-size: 32px;
+ height: 48px;
+ line-height: 48px;
+ position: relative;
+ width: 48px;
+}
+
+.pagination .prev:hover,
+.pagination .prev:focus,
+.pagination .next:hover,
+.pagination .next:focus {
+ background-color: #707070;
+ background-color: rgba(51, 51, 51, 0.7);
+}
+
+.pagination .prev {
+ left: 0;
+}
+
+.pagination .prev:before {
+ content: "\f430";
+ left: -1px;
+}
+
+.pagination .next {
+ right: 0;
+}
+
+.pagination .next:before {
+ content: "\f429";
+ right: -1px;
+}
+
+.image-navigation,
+.comment-navigation {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-family: "Noto Sans", sans-serif;
+ font-weight: 700;
+ line-height: 1.5;
+ text-transform: uppercase;
+}
+
+.image-navigation a,
+.comment-navigation a {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+}
+
+.image-navigation a:hover,
+.image-navigation a:focus,
+.comment-navigation a:hover,
+.comment-navigation a:focus {
+ color: #333;
+}
+
+.image-navigation .nav-previous:not(:empty),
+.image-navigation .nav-next:not(:empty),
+.comment-navigation .nav-previous:not(:empty),
+.comment-navigation .nav-next:not(:empty) {
+ display: inline-block;
+}
+
+.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
+.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
+ content: "\2215";
+ font-weight: 400;
+ margin: 0 0.7em;
+}
+
+.image-navigation .nav-previous a:before,
+.comment-navigation .nav-previous a:before {
+ content: "\f430";
+ margin-right: 0.2em;
+ position: relative;
+}
+
+.image-navigation .nav-next a:after,
+.comment-navigation .nav-next a:after {
+ content: "\f429";
+ margin-left: 0.2em;
+ position: relative;
+}
+
+.comment-navigation {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ border-bottom: 1px solid #eaeaea;
+ border-bottom: 1px solid rgba(51, 51, 51, 0.1);
+ padding: 2em 0;
+}
+
+.comments-title + .comment-navigation {
+ border-bottom: 0;
+}
+
+.image-navigation {
+ padding: 0 7.6923%;
+}
+
+.image-navigation .nav-previous:not(:empty),
+.image-navigation .nav-next:not(:empty) {
+ margin-bottom: 2em;
+}
+
+
+/**
+ * 7.0 Accessibility
+ */
+
+/* Text meant only for screen readers */
+.says,
+.screen-reader-text {
+ clip: rect(1px, 1px, 1px, 1px);
+ height: 1px;
+ overflow: hidden;
+ position: absolute !important;
+ width: 1px;
+}
+
+/* must have higher specificity than alternative color schemes inline styles */
+.site .skip-link {
+ background-color: #f1f1f1;
+ box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
+ color: #21759b;
+ display: block;
+ font: bold 14px/normal "Noto Sans", sans-serif;
+ left: -9999em;
+ outline: none;
+ padding: 15px 23px 14px;
+ text-decoration: none;
+ text-transform: none;
+ top: -9999em;
+}
+
+.logged-in .site .skip-link {
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+ font: bold 14px/normal "Open Sans", sans-serif;
+}
+
+.site .skip-link:focus {
+ clip: auto;
+ height: auto;
+ left: 6px;
+ top: 7px;
+ width: auto;
+ z-index: 100000;
+}
+
+
+/**
+ * 8.0 Alignments
+ */
+
+.alignleft {
+ display: inline;
+ float: left;
+}
+
+.alignright {
+ display: inline;
+ float: right;
+}
+
+.aligncenter {
+ display: block;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+blockquote.alignleft,
+.wp-caption.alignleft,
+img.alignleft {
+ margin: 0.4em 1.6em 1.6em 0;
+}
+
+blockquote.alignright,
+.wp-caption.alignright,
+img.alignright {
+ margin: 0.4em 0 1.6em 1.6em;
+}
+
+blockquote.aligncenter,
+.wp-caption.aligncenter,
+img.aligncenter {
+ clear: both;
+ margin-top: 0.4em;
+ margin-bottom: 1.6em;
+}
+
+.wp-caption.alignleft,
+.wp-caption.alignright,
+.wp-caption.aligncenter {
+ margin-bottom: 1.2em;
+}
+
+
+/**
+ * 9.0 Clearings
+ */
+
+.clear:before,
+.clear:after,
+.site:before,
+.site:after,
+.entry-content:before,
+.entry-content:after,
+.comment-content:before,
+.comment-content:after,
+.site-content:before,
+.site-content:after,
+.nav-links:before,
+.nav-links:after,
+.comment-navigation:before,
+.comment-navigation:after,
+.social-navigation ul:before,
+.social-navigation ul:after,
+.textwidget:before,
+.textwidget:after {
+ content: "";
+ display: table;
+}
+
+.clear:after,
+.site:after,
+.entry-content:after,
+.comment-content:after,
+.site-content:after,
+.nav-links:after,
+.comment-navigation:after,
+.social-navigation ul:after,
+.textwidget:after {
+ clear: both;
+}
+
+
+/**
+ * 10.0 Header
+ */
+
+.site-header {
+ background-color: #fff;
+ border-bottom: 1px solid rgba(51, 51, 51, 0.1);
+ padding: 7.6923%;
+}
+
+.site-branding {
+ min-height: 2em;
+ padding-right: 60px;
+ position: relative;
+}
+
+.site-title {
+ font-family: "Noto Sans", sans-serif;
+ font-size: 22px;
+ font-size: 2.2rem;
+ font-weight: 700;
+ line-height: 1.3636;
+ margin-bottom: 0;
+}
+
+.custom-logo {
+ max-height: 84px;
+ width: auto;
+}
+
+.wp-custom-logo .site-title {
+ margin-top: 0.545454545em;
+}
+
+.site-description {
+ display: none;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: 400;
+ line-height: 1.5;
+ margin: 0.5em 0 0;
+ opacity: 0.7;
+}
+
+
+/**
+ * 11.0 Widgets
+ */
+
+.widget {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ -webkit-hyphens: auto;
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ hyphens: auto;
+ margin: 0 auto 9.09090%;
+ width: 100%;
+ word-wrap: break-word;
+}
+
+.widget pre {
+ line-height: 1.2;
+}
+
+.widget button,
+.widget input,
+.widget select,
+.widget textarea {
+ font-size: 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+}
+
+.widget button,
+.widget input {
+ line-height: normal;
+}
+
+.widget button,
+.widget input[type="button"],
+.widget input[type="reset"],
+.widget input[type="submit"] {
+ font-size: 12px;
+ font-size: 1.2rem;
+ padding: 0.7917em 1.5833em;
+}
+
+.widget input[type="text"],
+.widget input[type="email"],
+.widget input[type="url"],
+.widget input[type="password"],
+.widget input[type="search"],
+.widget textarea {
+ padding: 0.375em;
+}
+
+.widget-title {
+ color: #333;
+ font-family: "Noto Sans", sans-serif;
+ margin: 0 0 1.6em;
+ letter-spacing: 0.04em;
+ text-transform: uppercase;
+}
+
+.widget > :last-child,
+.widget > nav > :last-child {
+ margin-bottom: 0;
+}
+
+.widget_calendar table {
+ margin: 0;
+}
+
+.widget_calendar .wp-calendar-nav {
+ display: table;
+ width: 100%;
+}
+
+.widget_calendar .wp-calendar-nav span {
+ display: table-cell;
+}
+
+.widget_calendar .wp-calendar-nav-prev,
+.widget_calendar .wp-calendar-nav-next {
+ width: 40%;
+}
+
+.widget_calendar td,
+.widget_calendar th,
+.widget_calendar .wp-calendar-nav span {
+ line-height: 2.3333;
+ text-align: center;
+ padding: 0;
+}
+
+.widget_calendar caption {
+ font-family: "Noto Serif", serif;
+ font-weight: 700;
+ margin: 0 0 1.6em;
+ letter-spacing: 0.04em;
+ text-transform: uppercase;
+}
+
+.widget_calendar tbody a {
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
+ background-color: #333;
+ color: #fff;
+ display: block;
+ font-weight: 700;
+}
+
+.widget_calendar tbody a:hover,
+.widget_calendar tbody a:focus {
+ background-color: #707070;
+ background-color: rgba(51, 51, 51, 0.7);
+ color: #fff;
+}
+
+.widget_archive a,
+.widget_categories a,
+.widget_links a,
+.widget_meta a,
+.widget_nav_menu a,
+.widget_pages a,
+.widget_recent_comments a,
+.widget_recent_entries a {
+ border: 0;
+}
+
+.widget_archive ul,
+.widget_categories ul,
+.widget_links ul,
+.widget_meta ul,
+.widget_nav_menu ul,
+.widget_pages ul,
+.widget_recent_comments ul,
+.widget_recent_entries ul {
+ list-style: none;
+ margin: 0;
+}
+
+.widget_archive li,
+.widget_categories li,
+.widget_links li,
+.widget_meta li,
+.widget_nav_menu li,
+.widget_pages li,
+.widget_recent_comments li,
+.widget_recent_entries li {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ padding: 0.7667em 0;
+}
+
+.widget_archive li:first-child,
+.widget_categories li:first-child,
+.widget_links li:first-child,
+.widget_meta li:first-child,
+.widget_nav_menu li:first-child,
+.widget_pages li:first-child,
+.widget_recent_comments li:first-child,
+.widget_recent_entries li:first-child {
+ border-top: 0;
+ padding-top: 0;
+}
+
+.widget_archive li:last-child,
+.widget_categories li:last-child,
+.widget_links li:last-child,
+.widget_meta li:last-child,
+.widget_nav_menu li:last-child,
+.widget_pages li:last-child,
+.widget_recent_comments li:last-child,
+.widget_recent_entries li:last-child {
+ padding-bottom: 0;
+}
+
+.widget_categories .children,
+.widget_nav_menu .sub-menu,
+.widget_pages .children {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ margin: 0.7667em 0 0 0.8em;
+ padding-top: 0.7667em;
+}
+
+.widget_recent_entries .post-date {
+ display: block;
+}
+
+.widget_rss ul {
+ list-style: none;
+ margin: 0;
+}
+
+.widget_rss li {
+ margin-bottom: 1.6em;
+}
+
+.widget_rss ul:last-child,
+.widget_rss li:last-child {
+ margin-bottom: 0;
+}
+
+.widget_rss .rsswidget {
+ border: 0;
+ font-weight: 700;
+}
+
+.widget_rss .rsswidget img {
+ margin-top: -4px;
+}
+
+.widget_rss .rss-date,
+.widget_rss cite {
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-style: normal;
+ display: block;
+ line-height: 2;
+ opacity: 0.8;
+}
+
+.textwidget > :last-child {
+ margin-bottom: 0;
+}
+
+.textwidget a {
+ border-bottom: 1px solid #333;
+}
+
+.textwidget a:hover,
+.textwidget a:focus {
+ border-bottom: 0;
+}
+
+.textwidget ul,
+.textwidget ol {
+ margin-left: 1.6em;
+}
+
+.tagcloud ul {
+ list-style-type: none;
+}
+
+.tagcloud ul li {
+ display: inline-block;
+}
+
+/**
+ * 12.0 Content
+ */
+
+.secondary {
+ background-color: #fff;
+ display: none;
+ padding: 0 7.6923%;
+}
+
+.secondary.toggled-on {
+ border-top: 1px solid transparent;
+ border-bottom: 1px solid transparent;
+ display: block;
+}
+
+.widget-area {
+ margin: 9.09090% auto 0;
+}
+
+.site-footer {
+ background-color: #fff;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ padding: 3.84615% 7.6923%;
+}
+
+
+/**
+ * 12.1 Posts and pages
+ */
+
+.hentry {
+ background-color: #fff;
+ padding-top: 7.6923%;
+ position: relative;
+}
+
+.hentry.has-post-thumbnail {
+ padding-top: 0;
+}
+
+.hentry.sticky:not(.has-post-thumbnail) {
+ padding-top: -webkit-calc(7.6923% + 24px);
+ padding-top: calc(7.6923% + 24px);
+}
+
+.hentry + .hentry {
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+}
+
+.post-thumbnail {
+ border: 0;
+ display: block;
+ margin-bottom: 2.4em;
+}
+.post-thumbnail img {
+ display: block;
+ margin: 0 auto;
+}
+
+a.post-thumbnail:hover,
+a.post-thumbnail:focus {
+ opacity: 0.85;
+}
+
+.entry-header {
+ padding: 0 7.6923%;
+}
+
+.entry-title {
+ font-size: 26px;
+ font-size: 2.6rem;
+ line-height: 1.1538;
+ margin-bottom: 0.9231em;
+}
+
+.entry-content,
+.entry-summary {
+ padding: 0 7.6923% 7.6923%;
+}
+
+.entry-content > :last-child,
+.entry-summary > :last-child {
+ margin-bottom: 0;
+}
+
+.entry-content,
+.entry-summary,
+.page-content,
+.comment-content {
+ -webkit-hyphens: auto;
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ hyphens: auto;
+ word-wrap: break-word;
+}
+
+.entry-content h1,
+.entry-summary h1,
+.page-content h1,
+.comment-content h1 {
+ font-size: 26px;
+ font-size: 2.6rem;
+ line-height: 1.1538;
+ margin-top: 1.8462em;
+ margin-bottom: 0.9231em;
+}
+
+.entry-content h2,
+.entry-summary h2,
+.page-content h2,
+.comment-content h2 {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.3636;
+ margin-top: 2.1818em;
+ margin-bottom: 1.0909em;
+}
+
+.entry-content h3,
+.entry-summary h3,
+.page-content h3,
+.comment-content h3 {
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+ margin-top: 2.6667em;
+ margin-bottom: 1.3333em;
+}
+
+.entry-content h4,
+.entry-content h5,
+.entry-content h6,
+.entry-summary h4,
+.entry-summary h5,
+.entry-summary h6,
+.page-content h4,
+.page-content h5,
+.page-content h6,
+.comment-content h4,
+.comment-content h5,
+.comment-content h6 {
+ font-size: 15px;
+ font-size: 1.5rem;
+ line-height: 1.2;
+ margin-top: 3.2em;
+ margin-bottom: 1.6em;
+}
+
+.entry-content h5,
+.entry-content h6,
+.entry-summary h5,
+.entry-summary h6,
+.page-content h5,
+.page-content h6,
+.comment-content h5,
+.comment-content h6 {
+ letter-spacing: 0.1em;
+ text-transform: uppercase;
+}
+
+.entry-content > h1:first-child,
+.entry-content > h2:first-child,
+.entry-content > h3:first-child,
+.entry-content > h4:first-child,
+.entry-content > h5:first-child,
+.entry-content > h6:first-child,
+.entry-summary > h1:first-child,
+.entry-summary > h2:first-child,
+.entry-summary > h3:first-child,
+.entry-summary > h4:first-child,
+.entry-summary > h5:first-child,
+.entry-summary > h6:first-child,
+.page-content > h1:first-child,
+.page-content > h2:first-child,
+.page-content > h3:first-child,
+.page-content > h4:first-child,
+.page-content > h5:first-child,
+.page-content > h6:first-child,
+.comment-content > h1:first-child,
+.comment-content > h2:first-child,
+.comment-content > h3:first-child,
+.comment-content > h4:first-child,
+.comment-content > h5:first-child,
+.comment-content > h6:first-child {
+ margin-top: 0;
+}
+
+.entry-content a,
+.entry-summary a,
+.page-content a,
+.comment-content a,
+.pingback .comment-body > a {
+ border-bottom: 1px solid #333;
+}
+
+.entry-content a:hover,
+.entry-content a:focus,
+.entry-summary a:hover,
+.entry-summary a:focus,
+.page-content a:hover,
+.page-content a:focus,
+.comment-content a:hover,
+.comment-content a:focus,
+.pingback .comment-body > a:hover,
+.pingback .comment-body > a:focus {
+ border-bottom: 0;
+}
+
+.entry-content a img,
+.entry-summary a img,
+.page-content a img,
+.comment-content a img {
+ display: block;
+}
+
+.entry-content .more-link,
+.entry-summary .more-link:after {
+ white-space: nowrap;
+}
+
+.entry-content .more-link:after,
+.entry-summary .more-link:after {
+ content: "\f429";
+ font-size: 16px;
+ position: relative;
+ top: 5px;
+}
+
+.author-info {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ margin: 0 7.6923%;
+ padding: 7.6923% 0;
+}
+
+.author-info .avatar {
+ float: left;
+ height: 36px;
+ margin: 0 1.6em 1.6em 0;
+ width: 36px;
+}
+
+.author-heading {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ letter-spacing: 0.04em;
+ margin-bottom: 1.5em;
+ text-transform: uppercase;
+}
+
+.author-title {
+ clear: none;
+}
+
+.author-bio {
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ overflow: hidden;
+ padding-bottom: 1px;
+}
+
+.author-description {
+ -webkit-hyphens: auto;
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ hyphens: auto;
+ word-wrap: break-word;
+}
+
+.author-description a {
+ border-bottom: 1px solid #333;
+}
+
+.author-description a:hover,
+.author-description a:focus {
+ border-bottom: 0;
+}
+
+.author-description > :last-child {
+ margin-bottom: 0;
+}
+
+.author-link {
+ white-space: nowrap;
+}
+
+.author-link:after {
+ content: "\f429";
+ position: relative;
+ top: 1px;
+}
+
+.entry-footer {
+ background-color: #f7f7f7;
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ padding: 3.8461% 7.6923%;
+}
+
+.entry-footer a {
+ border-bottom: 1px solid transparent;
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+}
+
+.entry-footer a:hover {
+ border-bottom: 1px solid #333;
+}
+
+.entry-footer a:hover,
+.entry-footer a:focus {
+ color: #333;
+}
+
+.sticky-post {
+ background-color: #333;
+ color: #fff;
+ font-weight: 700;
+ letter-spacing: 0.04em;
+ padding: 0.25em 0.5em;
+ position: absolute;
+ top: 0;
+ text-transform: uppercase;
+}
+
+.updated:not(.published) {
+ display: none;
+}
+
+.sticky .posted-on {
+ display: none;
+}
+
+.posted-on:before,
+.byline:before,
+.cat-links:before,
+.tags-links:before,
+.comments-link:before,
+.entry-format:before,
+.edit-link:before,
+.full-size-link:before {
+ margin-right: 2px;
+ position: relative;
+}
+
+.posted-on,
+.byline,
+.cat-links,
+.tags-links,
+.comments-link,
+.entry-format,
+.full-size-link {
+ margin-right: 1em;
+}
+
+.format-aside .entry-format:before {
+ content: "\f101";
+}
+
+.format-image .entry-format:before {
+ content: "\f473";
+}
+
+.format-gallery .entry-format:before {
+ content: "\f103";
+}
+
+.format-video .entry-format:before {
+ content: "\f104";
+}
+
+.format-status .entry-format:before {
+ content: "\f105";
+}
+
+.format-quote .entry-format:before {
+ content: "\f106";
+}
+
+.format-link .entry-format:before {
+ content: "\f107";
+}
+
+.format-chat .entry-format:before {
+ content: "\f108";
+}
+
+.format-audio .entry-format:before {
+ content: "\f109";
+}
+
+.posted-on:before {
+ content: "\f307";
+}
+
+.byline:before {
+ content: "\f304";
+}
+
+.cat-links:before {
+ content: "\f301";
+}
+
+.tags-links:before {
+ content: "\f302";
+}
+
+.comments-link:before {
+ content: "\f300";
+}
+
+.full-size-link:before {
+ content: "\f402";
+}
+
+.edit-link:before {
+ content: "\f411";
+}
+
+.comments-link,
+.edit-link {
+ white-space: nowrap;
+}
+
+.page-header {
+ background-color: #fff;
+ border-bottom: 1px solid rgba(51, 51, 51, 0.1);
+ padding: 7.6923%;
+}
+
+.page-title {
+ font-family: "Noto Serif", serif;
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+}
+
+.taxonomy-description {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ padding-top: 0.4em;
+}
+
+.taxonomy-description a {
+ border-bottom: 1px solid #333;
+}
+
+.taxonomy-description a:hover,
+.taxonomy-description a:focus {
+ border-bottom: 0;
+}
+
+.taxonomy-description > :last-child {
+ margin-bottom: 0;
+}
+
+.page-content {
+ background-color: #fff;
+ padding: 7.6923%;
+}
+
+.page-content > :last-child {
+ margin-bottom: 0;
+}
+
+.page-links {
+ clear: both;
+ font-family: "Noto Sans", sans-serif;
+ margin-bottom: 1.3333em;
+}
+
+.page-links a,
+.page-links > span {
+ border: 1px solid #eaeaea;
+ border: 1px solid rgba(51, 51, 51, 0.1);
+ display: inline-block;
+ font-size: 12px;
+ font-size: 1.2rem;
+ height: 2em;
+ line-height: 2;
+ margin: 0 0.3333em 0.3333em 0;
+ text-align: center;
+ width: 2em;
+}
+
+.page-links a {
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
+ background-color: #333;
+ border-color: #333;
+ color: #fff;
+}
+
+.page-links a:hover,
+.page-links a:focus {
+ background-color: #707070;
+ background-color: rgba(51, 51, 51, 0.7);
+ border-color: transparent;
+ color: #fff;
+}
+
+.page-links > .page-links-title {
+ border: 0;
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ height: auto;
+ margin: 0;
+ padding-right: 0.5em;
+ width: auto;
+}
+
+.entry-attachment {
+ margin-bottom: 1.6em;
+}
+
+.type-attachment .entry-title {
+ -webkit-hyphens: auto;
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ hyphens: auto;
+ word-wrap: break-word;
+}
+
+.entry-caption {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ -webkit-hyphens: auto;
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ hyphens: auto;
+ line-height: 1.5;
+ padding-top: 0.5em;
+ word-wrap: break-word;
+}
+
+.entry-caption > :last-child {
+ margin-bottom: 0;
+}
+
+
+/**
+ * 12.2 Post Formats
+ */
+
+.format-aside .entry-title,
+.format-image .entry-title,
+.format-video .entry-title,
+.format-quote .entry-title,
+.format-gallery .entry-title,
+.format-status .entry-title,
+.format-link .entry-title,
+.format-audio .entry-title,
+.format-chat .entry-title {
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+ margin-bottom: 1.3333em;
+}
+
+.format-link .entry-title a:after {
+ content: "\f442";
+ font-size: 24px;
+ height: 24px;
+ position: relative;
+ top: 0;
+ width: 24px;
+}
+
+.blog .format-status .entry-title,
+.archive .format-status .entry-title {
+ display: none;
+}
+
+
+/**
+ * 12.3 Comments
+ */
+
+.comments-area {
+ background-color: #fff;
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ padding: 7.6923%;
+}
+
+.comments-area > :last-child {
+ margin-bottom: 0;
+}
+
+.comment-list + .comment-respond {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+}
+
+.comment-list + .comment-respond,
+.comment-navigation + .comment-respond {
+ padding-top: 1.6em;
+}
+
+.comments-title,
+.comment-reply-title {
+ font-family: "Noto Serif", serif;
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+}
+
+.comments-title {
+ margin-bottom: 1.3333em;
+}
+
+.comment-list {
+ list-style: none;
+ margin: 0;
+}
+
+.comment-list article,
+.comment-list .pingback,
+.comment-list .trackback {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ padding: 1.6em 0;
+}
+
+.comment-list .children {
+ list-style: none;
+ margin: 0;
+}
+
+.comment-list .children > li {
+ padding-left: 0.8em;
+}
+
+.comment-author {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ margin-bottom: 0.4em;
+}
+
+.comment-author a:hover {
+ border-bottom: 1px solid #707070;
+ border-bottom: 1px solid rgba(51, 51, 51, 0.7);
+}
+
+.comment-author .avatar {
+ float: left;
+ height: 24px;
+ margin-right: 0.8em;
+ width: 24px;
+}
+
+.bypostauthor > article .fn:after {
+ content: "\f304";
+ position: relative;
+ top: 5px;
+ left: 3px;
+}
+
+.comment-metadata,
+.pingback .edit-link {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+}
+
+.comment-metadata a,
+.pingback .edit-link a {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+}
+
+.comment-metadata a:hover,
+.pingback .edit-link a:hover {
+ border-bottom: 1px solid #333;
+}
+
+.comment-metadata a:hover,
+.comment-metadata a:focus,
+.pingback .edit-link a:hover,
+.pingback .edit-link a:focus {
+ color: #333;
+}
+
+.comment-metadata {
+ margin-bottom: 1.6em;
+}
+
+.comment-metadata .edit-link {
+ margin-left: 1em;
+}
+
+.pingback .edit-link {
+ margin-left: 1em;
+}
+
+.pingback .edit-link:before {
+ top: 5px;
+}
+
+.comment-content ul,
+.comment-content ol {
+ margin: 0 0 1.6em 1.3333em;
+}
+
+.comment-content li > ul,
+.comment-content li > ol {
+ margin-bottom: 0;
+}
+
+.comment-content > :last-child {
+ margin-bottom: 0;
+}
+
+.comment-list .reply {
+ font-size: 12px;
+ font-size: 1.2rem;
+}
+
+.comment-list .reply a {
+ border: 1px solid #eaeaea;
+ border: 1px solid rgba(51, 51, 51, 0.1);
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ display: inline-block;
+ font-family: "Noto Sans", sans-serif;
+ font-weight: 700;
+ line-height: 1;
+ margin-top: 2em;
+ padding: 0.4167em 0.8333em;
+ text-transform: uppercase;
+}
+
+.comment-list .reply a:hover,
+.comment-list .reply a:focus {
+ border-color: #333;
+ color: #333;
+ outline: 0;
+}
+
+.comment-form {
+ padding-top: 1.6em;
+}
+
+.comment-form label {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: 700;
+ display: block;
+ letter-spacing: 0.04em;
+ line-height: 1.5;
+ text-transform: uppercase;
+}
+
+.comment-form input[type="text"],
+.comment-form input[type="email"],
+.comment-form input[type="url"],
+.comment-form input[type="submit"] {
+ width: 100%;
+}
+
+.comment-notes,
+.comment-awaiting-moderation,
+.logged-in-as,
+.form-allowed-tags {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ margin-bottom: 2em;
+}
+
+.logged-in-as a:hover {
+ border-bottom: 1px solid #333;
+}
+
+.no-comments {
+ border-top: 1px solid #eaeaea;
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-weight: 700;
+ padding-top: 1.6em;
+}
+
+.comment-navigation + .no-comments {
+ border-top: 0;
+}
+
+.form-allowed-tags code {
+ font-family: Inconsolata, monospace;
+}
+
+.form-submit {
+ margin-bottom: 0;
+}
+
+.required {
+ color: #c0392b;
+}
+
+.comment-reply-title small {
+ font-size: 100%;
+}
+
+.comment-reply-title small a {
+ border: 0;
+ float: right;
+ height: 32px;
+ overflow: hidden;
+ width: 26px;
+}
+
+.comment-reply-title small a:before {
+ content: "\f405";
+ font-size: 32px;
+ position: relative;
+ top: -3px;
+}
+
+.comment-form #wp-comment-cookies-consent {
+ margin: 0 10px 0 0;
+}
+
+.comment-form .comment-form-cookies-consent label {
+ display: inline;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: normal;
+ letter-spacing: 0;
+ text-transform: none;
+}
+
+/**
+ * 13.0 Footer
+ */
+
+.site-info {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+}
+
+.site-info a {
+ border-bottom: 1px solid transparent;
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+}
+
+.site-info a:hover {
+ border-bottom: 1px solid #333;
+}
+
+.site-info a:hover,
+.site-info a:focus {
+ color: #333;
+}
+
+.site-info span[role=separator] {
+ padding: 0 0.25em 0 0.5em;
+}
+
+.site-info span[role=separator]::before {
+ content: '\002f';
+}
+
+/**
+ * 14.0 Media
+ */
+
+.site .avatar {
+ border-radius: 50%;
+}
+
+.page-content img.wp-smiley,
+.entry-content img.wp-smiley,
+.comment-content img.wp-smiley {
+ border: none;
+ margin-top: 0;
+ margin-bottom: 0;
+ padding: 0;
+}
+
+audio,
+canvas {
+ display: inline-block;
+}
+
+embed,
+iframe,
+object,
+video {
+ margin-bottom: 1.6em;
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+p > embed,
+p > iframe,
+p > object,
+p > video {
+ margin-bottom: 0;
+}
+
+.wp-audio-shortcode,
+.wp-video,
+.wp-playlist.wp-audio-playlist {
+ font-size: 15px;
+ font-size: 1.5rem;
+ margin-top: 0;
+ margin-bottom: 1.6em;
+}
+
+.wp-playlist.wp-playlist {
+ padding-bottom: 0;
+}
+
+.wp-playlist .wp-playlist-tracks {
+ margin-top: 0;
+}
+
+.wp-playlist-item .wp-playlist-caption {
+ border-bottom: 0;
+ padding: 10px 0;
+}
+
+.wp-playlist-item .wp-playlist-item-length {
+ top: 10px;
+}
+
+
+/**
+ * 14.1 Captions
+ */
+
+.wp-caption {
+ margin-bottom: 1.6em;
+ max-width: 100%;
+}
+
+.wp-caption img[class*="wp-image-"] {
+ display: block;
+ margin: 0;
+}
+
+.wp-caption-text {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ padding: 0.5em 0;
+}
+
+
+/**
+ * 14.2 Galleries
+ */
+
+.gallery {
+ margin-bottom: 1.6em;
+}
+
+.gallery-item {
+ display: inline-block;
+ padding: 1.79104477%;
+ text-align: center;
+ vertical-align: top;
+ width: 100%;
+}
+
+.gallery-columns-2 .gallery-item {
+ max-width: 50%;
+}
+
+.gallery-columns-3 .gallery-item {
+ max-width: 33.33%;
+}
+
+.gallery-columns-4 .gallery-item {
+ max-width: 25%;
+}
+
+.gallery-columns-5 .gallery-item {
+ max-width: 20%;
+}
+
+.gallery-columns-6 .gallery-item {
+ max-width: 16.66%;
+}
+
+.gallery-columns-7 .gallery-item {
+ max-width: 14.28%;
+}
+
+.gallery-columns-8 .gallery-item {
+ max-width: 12.5%;
+}
+
+.gallery-columns-9 .gallery-item {
+ max-width: 11.11%;
+}
+
+.gallery-icon img {
+ margin: 0 auto;
+}
+
+.gallery-caption {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ display: block;
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ padding: 0.5em 0;
+}
+
+.gallery-columns-6 .gallery-caption,
+.gallery-columns-7 .gallery-caption,
+.gallery-columns-8 .gallery-caption,
+.gallery-columns-9 .gallery-caption {
+ display: none;
+}
+
+
+/**
+ * 15.0 Multisite
+ */
+
+.widecolumn {
+ background-color: #fff;
+ padding: 7.6923%;
+}
+
+.widecolumn .mu_register {
+ width: auto;
+}
+
+.widecolumn .mu_alert {
+ margin-bottom: 1.6em;
+}
+
+.widecolumn form,
+.widecolumn .mu_register form {
+ margin-top: 0;
+}
+
+.widecolumn h2 {
+ font-size: 26px;
+ font-size: 2.6rem;
+ line-height: 1.1538;
+ margin-bottom: 0.9231em;
+}
+
+.widecolumn p {
+ margin: 1.6em 0;
+}
+
+.widecolumn p + h2 {
+ margin-top: 1.8462em;
+}
+
+.widecolumn label,
+.widecolumn .mu_register label {
+ color: #707070;
+ color: rgba(51, 51, 51, 0.7);
+ font-family: "Noto Sans", sans-serif;
+ font-size: 12px;
+ font-size: 1.2rem;
+ font-weight: 700;
+ letter-spacing: 0.04em;
+ line-height: 1.5;
+ text-transform: uppercase;
+}
+
+.widecolumn .mu_register label {
+ margin: 2em 0 0;
+}
+
+.widecolumn #key,
+.widecolumn .mu_register #blog_title,
+.widecolumn .mu_register #user_email,
+.widecolumn .mu_register #blogname,
+.widecolumn .mu_register #user_name {
+ font-size: 16px;
+ font-size: 1.6rem;
+ width: 100%;
+}
+
+.widecolumn .mu_register #blogname {
+ margin: 0;
+}
+
+.widecolumn .mu_register #blog_title,
+.widecolumn .mu_register #user_email,
+.widecolumn .mu_register #user_name {
+ margin: 0 0 0.375em;
+}
+
+.widecolumn #submit,
+.widecolumn .mu_register input[type="submit"] {
+ font-size: 12px;
+ font-size: 1.2rem;
+ margin: 0;
+ width: 100%;
+}
+
+.widecolumn .mu_register .prefix_address,
+.widecolumn .mu_register .suffix_address {
+ font-size: inherit;
+}
+
+.widecolumn .mu_register > :last-child,
+.widecolumn form > :last-child {
+ margin-bottom: 0;
+}
+
+
+/**
+ * 16.0 Media Queries
+ */
+
+/*
+ * Does the same thing as ,
+ * but in the future W3C standard way. -ms- prefix is required for IE10+ to
+ * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
+ * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
+ */
+@-ms-viewport {
+ width: device-width;
+}
+
+@viewport {
+ width: device-width;
+}
+
+/**
+ * 16.1 Mobile Large 620px
+ */
+
+@media screen and (min-width: 38.75em) {
+ ul,
+ ol {
+ margin-left: 0;
+ }
+
+ li > ul,
+ li > ol,
+ blockquote > ul,
+ blockquote > ol {
+ margin-left: 1.3333em;
+ }
+
+ blockquote {
+ margin-left: -1em;
+ }
+
+ blockquote > blockquote {
+ margin-left: 0;
+ }
+
+ .site-branding {
+ min-height: 3.2em;
+ }
+
+ .site-title {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.0909;
+ }
+
+ .site-description {
+ display: block;
+ }
+
+ .secondary {
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ margin: 7.6923% 7.6923% 0;
+ padding: 7.6923% 7.6923% 0;
+ }
+
+ .main-navigation {
+ margin-bottom: 11.1111%;
+ }
+
+ .main-navigation ul {
+ border-top: 1px solid rgba(51, 51, 51, 0.1);
+ border-bottom: 1px solid rgba(51, 51, 51, 0.1);
+ }
+
+ .main-navigation ul ul {
+ border-top: 0;
+ border-bottom: 0;
+ }
+
+ .social-navigation {
+ margin-bottom: 11.1111%;
+ }
+
+ .social-navigation {
+ margin-top: 0;
+ }
+
+ .widget-area {
+ margin-top: 0;
+ }
+
+ .widget {
+ margin-bottom: 11.1111%;
+ }
+
+ .site-main {
+ padding: 7.6923% 0;
+ }
+
+ .hentry.sticky:not(.has-post-thumbnail) {
+ padding-top: inherit;
+ }
+
+ .hentry,
+ .page-header,
+ .page-content {
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ margin: 0 7.6923%;
+ }
+
+ .hentry + .hentry,
+ .page-header + .hentry,
+ .page-header + .page-content {
+ margin-top: 7.6923%;
+ }
+
+ .hentry + .hentry {
+ border-top: 0;
+ }
+
+ .post-thumbnail {
+ margin-bottom: 2.4em;
+ }
+
+ .entry-header {
+ padding: 0 9.0909%;
+ }
+
+ .entry-content,
+ .entry-summary {
+ padding: 0 9.0909% 9.0909%;
+ }
+
+ .entry-footer {
+ padding: 4.5454% 9.0909%;
+ }
+
+ .page-header {
+ border-bottom: 0;
+ border-left: 7px solid #333;
+ padding: 3.8461% 7.6923%;
+ }
+
+ .page-title,
+ .taxonomy-description {
+ margin-left: -7px;
+ }
+
+ .page-content {
+ padding: 9.0909%;
+ }
+
+ .site-footer {
+ border-top: 0;
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ margin: 0 7.6923%;
+ padding: 3.84615% 7.6923%;
+ }
+
+ .post-navigation {
+ border-top: 0;
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ margin: 7.6923% 7.6923% 0;
+ }
+
+ .post-navigation a {
+ padding: 4.5454% 9.0909%;
+ }
+
+ .pagination {
+ border-top: 0;
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ margin: 7.6923% 7.6923% 0;
+ padding: 0;
+ }
+
+ /* restore screen-reader-text */
+ .pagination .current .screen-reader-text {
+ position: absolute !important;
+ }
+
+ .pagination .page-numbers {
+ display: inline-block;
+ }
+
+ .image-navigation {
+ padding: 0 9.0909%;
+ }
+
+ .comments-area {
+ border-top: 0;
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ margin: 7.6923% 7.6923% 0;
+ }
+
+ .comment-content ul,
+ .comment-content ol {
+ margin-left: 0;
+ }
+
+ .comment-content li > ul,
+ .comment-content li > ol,
+ .comment-content blockquote > ul,
+ .comment-content blockquote > ol {
+ margin-left: 1.3333em;
+ }
+
+ .widecolumn {
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ margin: 7.6923%;
+ }
+}
+
+
+/**
+ * 16.2 Tablet Small 740px
+ */
+
+@media screen and (min-width: 46.25em) {
+ body,
+ button,
+ input,
+ select,
+ textarea {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: 1.6471;
+ }
+
+ button,
+ input {
+ line-height: normal;
+ }
+
+ p,
+ address,
+ pre,
+ hr,
+ ul,
+ ol,
+ dl,
+ dd,
+ table {
+ margin-bottom: 1.6471em;
+ }
+
+ blockquote {
+ font-size: 20px;
+ font-size: 2rem;
+ line-height: 1.75;
+ margin-bottom: 1.75em;
+ margin-left: -1.05em;
+ padding-left: 0.85em;
+ }
+
+ blockquote p {
+ margin-bottom: 1.75em;
+ }
+
+ blockquote cite,
+ blockquote small {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: 1.6471;
+ }
+
+ pre {
+ line-height: 1.2353;
+ }
+
+ button,
+ input[type="button"],
+ input[type="reset"],
+ input[type="submit"],
+ .post-password-form input[type="submit"],
+ .widecolumn #submit,
+ .widecolumn .mu_register input[type="submit"] {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding: 0.8214em 1.6429em;
+ }
+
+ input[type="text"],
+ input[type="email"],
+ input[type="url"],
+ input[type="password"],
+ input[type="search"],
+ textarea {
+ padding: 0.5em;
+ }
+
+ .main-navigation {
+ font-size: 14px;
+ font-size: 1.4rem;
+ line-height: 1.5;
+ }
+
+ .main-navigation a {
+ padding: 1em 0;
+ }
+
+ .main-navigation ul ul {
+ margin-left: 1em;
+ }
+
+ .main-navigation .menu-item-description {
+ font-size: 14px;
+ font-size: 1.4rem;
+ line-height: 1.5;
+ }
+
+ .social-navigation ul {
+ margin-bottom: -1.4706em;
+ }
+
+ .social-navigation a {
+ height: 2.8824em;
+ width: 2.8824em;
+ }
+
+ .secondary-toggle {
+ height: 56px;
+ width: 56px;
+ }
+
+ .secondary-toggle:before {
+ line-height: 54px;
+ width: 54px;
+ }
+
+ .post-password-form label,
+ .post-navigation .meta-nav,
+ .image-navigation,
+ .comment-navigation,
+ .author-heading,
+ .author-bio,
+ .entry-footer,
+ .page-links a,
+ .page-links span,
+ .comment-metadata,
+ .pingback .edit-link,
+ .comment-list .reply,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .logged-in-as,
+ .comment-form label,
+ .comment-form .comment-form-cookies-consent label,
+ .form-allowed-tags,
+ .site-info,
+ .wp-caption-text,
+ .gallery-caption,
+ .entry-caption,
+ .widecolumn label,
+ .widecolumn .mu_register label {
+ font-size: 14px;
+ font-size: 1.4rem;
+ }
+
+ .pagination .nav-links {
+ min-height: 3.2941em;
+ }
+
+ .pagination .page-numbers {
+ line-height: 3.2941em;
+ padding: 0 0.8235em;
+ }
+
+ .pagination .prev,
+ .pagination .next {
+ height: 56px;
+ padding: 0;
+ width: 56px;
+ }
+
+ .pagination .prev:before,
+ .pagination .next:before {
+ height: 56px;
+ line-height: 56px;
+ width: 56px;
+ }
+
+ .image-navigation .nav-previous a:before,
+ .image-navigation .nav-next a:after,
+ .comment-navigation .nav-previous a:before,
+ .comment-navigation .nav-next a:after {
+ top: 2px;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4118em 1.6471em 1.6471em 0;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4118em 0 1.6471em 1.6471em;
+ }
+
+ blockquote.aligncenter,
+ .wp-caption.aligncenter,
+ img.aligncenter {
+ margin-top: 0.4118em;
+ margin-bottom: 1.6471em;
+ }
+
+ .wp-caption.alignleft,
+ .wp-caption.alignright,
+ .wp-caption.aligncenter {
+ margin-bottom: 1.2353em;
+ }
+
+ .site-branding {
+ min-height: 3.7059em;
+ padding-right: 66px;
+ }
+
+ .site-title {
+ font-size: 29px;
+ font-size: 2.9rem;
+ line-height: 1.2069;
+ }
+
+ .custom-logo {
+ max-height: 105px;
+ }
+
+ .wp-custom-logo .site-title {
+ margin-top: 0.482758621em;
+ }
+
+ .site-description {
+ font-size: 14px;
+ font-size: 1.4rem;
+ }
+
+ .widget {
+ font-size: 14px;
+ font-size: 1.4rem;
+ line-height: 1.5;
+ }
+
+ .widget p,
+ .widget address,
+ .widget hr,
+ .widget ul,
+ .widget ol,
+ .widget dl,
+ .widget dd,
+ .widget table,
+ .widget pre {
+ margin-bottom: 1.5em;
+ }
+
+ .widget li > ul,
+ .widget li > ol {
+ margin-bottom: 0;
+ }
+
+ .widget blockquote {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: 1.6471;
+ margin-bottom: 1.6471em;
+ margin-left: -1.2353em;
+ padding-left: 1em;
+ }
+
+ .widget blockquote p {
+ margin-bottom: 1.6471em;
+ }
+
+ .widget blockquote cite,
+ .widget blockquote small {
+ font-size: 14px;
+ font-size: 1.4rem;
+ line-height: 1.5;
+ }
+
+ .widget blockquote > blockquote {
+ margin-left: 0;
+ }
+
+ .widget pre {
+ line-height: 1.5;
+ padding: 0.75em;
+ }
+
+ .widget button,
+ .widget input,
+ .widget select,
+ .widget textarea {
+ line-height: 1.75;
+ }
+
+ .widget button,
+ .widget input {
+ line-height: normal;
+ }
+
+ .widget button,
+ .widget input[type="button"],
+ .widget input[type="reset"],
+ .widget input[type="submit"] {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding: 0.8214em 1.6429em;
+ }
+
+ .widget input[type="text"],
+ .widget input[type="email"],
+ .widget input[type="url"],
+ .widget input[type="password"],
+ .widget input[type="search"],
+ .widget textarea {
+ padding: 0.5625em;
+ }
+
+ .widget blockquote.alignleft,
+ .widget .wp-caption.alignleft,
+ .widget img.alignleft {
+ margin: 0.5em 1.5em 1.5em 0;
+ }
+
+ .widget blockquote.alignright,
+ .widget .wp-caption.alignright,
+ .widget img.alignright {
+ margin: 0.5em 0 1.5em 1.5em;
+ }
+
+ .widget blockquote.aligncenter,
+ .widget .wp-caption.aligncenter,
+ .widget img.aligncenter {
+ margin-top: 0.5em;
+ margin-bottom: 1.5em;
+ }
+
+ .widget .wp-caption.alignleft,
+ .widget .wp-caption.alignright,
+ .widget .wp-caption.aligncenter {
+ margin-bottom: 1em;
+ }
+
+ .widget-title {
+ margin: 0 0 1.5em;
+ }
+
+ .widget_calendar td,
+ .widget_calendar th,
+ .widget_calendar .wp-calendar-nav span {
+ line-height: 2.9286;
+ }
+
+ .widget_calendar caption {
+ margin: 0 0 1.5em;
+ }
+
+ .widget_calendar .wp-calendar-table {
+ margin-bottom: 0;
+ }
+
+ .widget_calendar .wp-calendar-nav {
+ margin: 0 0 1.5em;
+ }
+
+ .widget_archive li,
+ .widget_categories li,
+ .widget_links li,
+ .widget_meta li,
+ .widget_nav_menu li,
+ .widget_pages li,
+ .widget_recent_comments li,
+ .widget_recent_entries li {
+ padding: 0.9643em 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.9643em 0 0 1em;
+ padding-top: 0.9643em;
+ }
+
+ .widget_rss li {
+ margin-bottom: 1.5em;
+ }
+
+ .widget_rss .rss-date,
+ .widget_rss cite {
+ line-height: 1.75;
+ }
+
+ .post-thumbnail {
+ margin-bottom: 3em;
+ }
+
+ .entry-title,
+ .widecolumn h2 {
+ font-size: 35px;
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1.2em;
+ }
+
+ .entry-content h1,
+ .entry-summary h1,
+ .page-content h1,
+ .comment-content h1 {
+ font-size: 35px;
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-top: 1.6em;
+ margin-bottom: 0.8em;
+ }
+
+ .entry-content h2,
+ .entry-summary h2,
+ .page-content h2,
+ .comment-content h2 {
+ font-size: 29px;
+ font-size: 2.9rem;
+ line-height: 1.2069;
+ margin-top: 1.931em;
+ margin-bottom: 0.9655em;
+ }
+
+ .entry-content h3,
+ .entry-summary h3,
+ .page-content h3,
+ .comment-content h3 {
+ font-size: 24px;
+ font-size: 2.4rem;
+ line-height: 1.1667;
+ margin-top: 2.3333em;
+ margin-bottom: 1.1667em;
+ }
+
+ .entry-content h4,
+ .entry-summary h4,
+ .page-content h4,
+ .comment-content h4 {
+ font-size: 20px;
+ font-size: 2rem;
+ line-height: 1.4;
+ margin-top: 2.8em;
+ margin-bottom: 1.4em;
+ }
+
+ .entry-content h5,
+ .entry-content h6,
+ .entry-summary h5,
+ .entry-summary h6,
+ .page-content h5,
+ .page-content h6,
+ .comment-content h5,
+ .comment-content h6 {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: 1.2353;
+ margin-top: 3.2941em;
+ margin-bottom: 1.6471em;
+ }
+
+ .entry-content .more-link:after,
+ .entry-summary .more-link:after {
+ font-size: 24px;
+ top: 2px;
+ }
+
+ .author-info {
+ margin: 0 9.0909%;
+ padding: 9.0909% 0;
+ }
+
+ .author-info .avatar {
+ height: 42px;
+ margin: 0 1.6471em 1.6471em 0;
+ width: 42px;
+ }
+
+ .author-link:after {
+ top: 3px;
+ }
+
+ .posted-on:before,
+ .byline:before,
+ .cat-links:before,
+ .tags-links:before,
+ .comments-link:before,
+ .entry-format:before,
+ .edit-link:before,
+ .full-size-link:before {
+ top: 3px;
+ }
+
+ .taxonomy-description {
+ padding-top: 0.4118em;
+ }
+
+ .page-title,
+ .comments-title,
+ .comment-reply-title,
+ .post-navigation .post-title {
+ font-size: 24px;
+ font-size: 2.4rem;
+ line-height: 1.1667;
+ }
+
+ .page-links {
+ margin-bottom: 1.4117em;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0.2857em 0.2857em 0;
+ }
+
+ .entry-attachment {
+ margin-bottom: 1.6471em;
+ }
+
+ .format-aside .entry-title,
+ .format-image .entry-title,
+ .format-video .entry-title,
+ .format-quote .entry-title,
+ .format-gallery .entry-title,
+ .format-status .entry-title,
+ .format-link .entry-title,
+ .format-audio .entry-title,
+ .format-chat .entry-title {
+ font-size: 20px;
+ font-size: 2rem;
+ line-height: 1.4;
+ margin-bottom: 1.4em;
+ }
+
+ .format-link .entry-title a:after {
+ top: 0.0833em;
+ }
+
+ .comments-title {
+ margin-bottom: 1.4em;
+ }
+
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback {
+ padding: 1.6471em 0;
+ }
+
+ .comment-list + .comment-respond,
+ .comment-navigation + .comment-respond {
+ padding-top: 1.6471em;
+ }
+
+ .comment-list .children > li {
+ padding-left: 1.2353em;
+ }
+
+ .comment-meta {
+ position: relative;
+ }
+
+ .comment-author {
+ margin-bottom: 0;
+ }
+
+ .comment-author .avatar {
+ height: 42px;
+ margin-right: 1.64705em;
+ position: relative;
+ top: 5px;
+ width: 42px;
+ }
+
+ .comment-metadata .edit-link:before {
+ top: 2px;
+ }
+
+ .pingback .edit-link:before {
+ top: 6px;
+ }
+
+ .bypostauthor > article .fn:after {
+ top: 7px;
+ left: 6px;
+ }
+
+ .comment-content ul,
+ .comment-content ol {
+ margin-bottom: 1.6471em;
+ }
+
+ .comment-list .reply a {
+ padding: 0.4286em 0.8571em;
+ }
+
+ .comment-form,
+ .no-comments {
+ padding-top: 1.6471em;
+ }
+
+ .comment-reply-title small a:before {
+ top: -1px;
+ }
+
+ embed,
+ iframe,
+ object,
+ video {
+ margin-bottom: 1.6471em;
+ }
+
+ .wp-audio-shortcode,
+ .wp-video,
+ .wp-playlist.wp-audio-playlist {
+ font-size: 17px;
+ font-size: 1.7rem;
+ margin-bottom: 1.6471em;
+ }
+
+ .wp-caption,
+ .gallery {
+ margin-bottom: 1.6471em;
+ }
+
+ .widecolumn .mu_alert {
+ margin-bottom: 1.6471em;
+ }
+
+ .widecolumn p {
+ margin: 1.6471em 0;
+ }
+
+ .widecolumn p + h2 {
+ margin-top: 1.6em;
+ }
+
+ .widecolumn #key,
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #blogname,
+ .widecolumn .mu_register #user_name {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: normal;
+ }
+
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #user_name {
+ margin: 0 0 0.4117em;
+ }
+}
+
+
+/**
+ * 16.3 Tablet Large 880px
+ */
+
+@media screen and (min-width: 55em) {
+ body,
+ button,
+ input,
+ select,
+ textarea {
+ font-size: 19px;
+ font-size: 1.9rem;
+ line-height: 1.6842;
+ }
+
+ button,
+ input {
+ line-height: normal;
+ }
+
+ p,
+ address,
+ pre,
+ hr,
+ ul,
+ ol,
+ dl,
+ dd,
+ table {
+ margin-bottom: 1.6842em;
+ }
+
+ blockquote {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.8182;
+ margin-bottom: 1.8182em;
+ margin-left: -1.0909em;
+ padding-left: 0.9091em;
+ }
+
+ blockquote p {
+ margin-bottom: 1.8182em;
+ }
+
+ blockquote cite,
+ blockquote small {
+ font-size: 19px;
+ font-size: 1.9rem;
+ line-height: 1.6842;
+ }
+
+ pre {
+ line-height: 1.2632;
+ }
+
+ button,
+ input[type="button"],
+ input[type="reset"],
+ input[type="submit"],
+ .post-password-form input[type="submit"],
+ .widecolumn #submit,
+ .widecolumn .mu_register input[type="submit"] {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding: 0.8125em 1.625em;
+ }
+
+ input[type="text"],
+ input[type="email"],
+ input[type="url"],
+ input[type="password"],
+ input[type="search"],
+ textarea {
+ padding: 0.5278em;
+ }
+
+ .main-navigation {
+ font-size: 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ }
+
+ .main-navigation a {
+ padding: 0.75em 0;
+ }
+
+ .main-navigation .menu-item-description {
+ font-size: 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ }
+
+ .social-navigation ul {
+ margin-bottom: -1.2632em;
+ }
+
+ .social-navigation a {
+ height: 2.5263em;
+ width: 2.5263em;
+ }
+
+ .secondary-toggle {
+ height: 64px;
+ width: 64px;
+ }
+
+ .secondary-toggle:before {
+ line-height: 62px;
+ width: 62px;
+ }
+
+ .post-password-form label,
+ .post-navigation .meta-nav,
+ .comment-navigation,
+ .image-navigation,
+ .author-heading,
+ .author-bio,
+ .entry-footer,
+ .page-links a,
+ .page-links span,
+ .comment-metadata,
+ .pingback .edit-link,
+ .comment-list .reply,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .logged-in-as,
+ .comment-form label,
+ .comment-form .comment-form-cookies-consent label,
+ .form-allowed-tags,
+ .site-info,
+ .wp-caption-text,
+ .gallery-caption,
+ .entry-caption,
+ .widecolumn label,
+ .widecolumn .mu_register label {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .pagination .nav-links {
+ min-height: 3.3684em;
+ }
+
+ .pagination .page-numbers {
+ line-height: 3.3684em;
+ padding: 0 0.8421em;
+ }
+
+ .pagination .prev,
+ .pagination .next {
+ height: 64px;
+ padding: 0;
+ width: 64px;
+ }
+
+ .pagination .prev:before,
+ .pagination .next:before {
+ height: 64px;
+ line-height: 64px;
+ width: 64px;
+ }
+
+ .image-navigation .nav-previous a:before,
+ .image-navigation .nav-next a:after,
+ .comment-navigation .nav-previous a:before,
+ .comment-navigation .nav-next a:after {
+ font-size: 24px;
+ top: -1px;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4211em 1.6842em 1.6842em 0;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4211em 0 1.6842em 1.6842em;
+ }
+
+ blockquote.aligncenter,
+ .wp-caption.aligncenter,
+ img.aligncenter {
+ margin-top: 0.4211em;
+ margin-bottom: 1.6842em;
+ }
+
+ .wp-caption.alignleft,
+ .wp-caption.alignright,
+ .wp-caption.aligncenter {
+ margin-bottom: 1.2632em;
+ }
+
+ .site-branding {
+ min-height: 3.7895em;
+ padding-right: 74px;
+ }
+
+ .site-title {
+ font-size: 32px;
+ font-size: 3.2rem;
+ line-height: 1.25;
+ }
+
+ .custom-logo {
+ max-height: 104px;
+ }
+
+ .wp-custom-logo .site-title {
+ margin-top: 0.5em;
+ }
+
+ .site-description {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .widget {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .widget blockquote {
+ font-size: 19px;
+ font-size: 1.9rem;
+ line-height: 1.6842;
+ margin-bottom: 1.6842em;
+ margin-left: -1.2632em;
+ padding-left: 1.0526em;
+ }
+
+ .widget blockquote p {
+ margin-bottom: 1.6842em;
+ }
+
+ .widget blockquote cite,
+ .widget blockquote small {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .widget button,
+ .widget input,
+ .widget select,
+ .widget textarea {
+ line-height: 1.5;
+ }
+
+ .widget button,
+ .widget input {
+ line-height: normal;
+ }
+
+ .widget button,
+ .widget input[type="button"],
+ .widget input[type="reset"],
+ .widget input[type="submit"] {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding: 0.8125em 1.625em;
+ }
+
+ .widget input[type="text"],
+ .widget input[type="email"],
+ .widget input[type="url"],
+ .widget input[type="password"],
+ .widget input[type="search"],
+ .widget textarea {
+ padding: 0.75em;
+ }
+
+ .widget .wp-caption-text,
+ .widget .gallery-caption {
+ line-height: 1.5;
+ }
+
+ .widget_calendar td,
+ .widget_calendar th,
+ .widget_calendar .wp-calendar-nav span {
+ line-height: 2.9375;
+ }
+
+ .widget_archive li,
+ .widget_categories li,
+ .widget_links li,
+ .widget_meta li,
+ .widget_nav_menu li,
+ .widget_pages li,
+ .widget_recent_comments li,
+ .widget_recent_entries li {
+ padding: 0.7188em 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.7188em 0 0 1em;
+ padding-top: 0.7188em;
+ }
+
+ .widget_rss .rss-date,
+ .widget_rss cite {
+ font-size: 13px;
+ font-size: 1.3rem;
+ line-height: 1.8462;
+ }
+
+ .post-thumbnail {
+ margin-bottom: 2.9474em;
+ }
+
+ .entry-title,
+ .widecolumn h2 {
+ font-size: 39px;
+ font-size: 3.9rem;
+ line-height: 1.2308;
+ margin-bottom: 1.2308em;
+ }
+
+ .entry-content h1,
+ .entry-summary h1,
+ .page-content h1,
+ .comment-content h1 {
+ font-size: 39px;
+ font-size: 3.9rem;
+ line-height: 1.2308;
+ margin-top: 1.641em;
+ margin-bottom: 0.8205em;
+ }
+
+ .entry-content h2,
+ .entry-summary h2,
+ .page-content h2,
+ .comment-content h2 {
+ font-size: 32px;
+ font-size: 3.2rem;
+ line-height: 1.25;
+ margin-top: 2em;
+ margin-bottom: 1em;
+ }
+
+ .entry-content h3,
+ .entry-summary h3,
+ .page-content h3,
+ .comment-content h3 {
+ font-size: 27px;
+ font-size: 2.7rem;
+ line-height: 1.1852;
+ margin-top: 2.3704em;
+ margin-bottom: 1.1852em;
+ }
+
+ .entry-content h4,
+ .entry-summary h4,
+ .page-content h4,
+ .comment-content h4 {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.4545;
+ margin-top: 2.9091em;
+ margin-bottom: 1.4545em;
+ }
+
+ .entry-content h5,
+ .entry-content h6,
+ .entry-summary h5,
+ .entry-summary h6,
+ .page-content h5,
+ .page-content h6,
+ .comment-content h5,
+ .comment-content h6 {
+ font-size: 19px;
+ font-size: 1.9rem;
+ line-height: 1.2632;
+ margin-top: 3.3684em;
+ margin-bottom: 1.6842em;
+ }
+
+ .entry-content .more-link:after,
+ .entry-summary .more-link:after {
+ top: 3px;
+ }
+
+ .author-info .avatar {
+ height: 56px;
+ margin: 0 1.6842em 1.6842em 0;
+ width: 56px;
+ }
+
+ .author-link:after {
+ font-size: 24px;
+ top: 0;
+ }
+
+ .posted-on:before,
+ .byline:before,
+ .cat-links:before,
+ .tags-links:before,
+ .comments-link:before,
+ .entry-format:before,
+ .edit-link:before,
+ .full-size-link:before {
+ top: 4px;
+ }
+
+ .taxonomy-description {
+ padding-top: 0.4211em;
+ }
+
+ .page-title,
+ .comments-title,
+ .comment-reply-title,
+ .post-navigation .post-title {
+ font-size: 27px;
+ font-size: 2.7rem;
+ line-height: 1.1852;
+ }
+
+ .page-links {
+ margin-bottom: 1.4736em;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0.25em 0.25em 0;
+ }
+
+ .entry-attachment {
+ margin-bottom: 1.6842em
+ }
+
+ .format-aside .entry-title,
+ .format-image .entry-title,
+ .format-video .entry-title,
+ .format-quote .entry-title,
+ .format-gallery .entry-title,
+ .format-status .entry-title,
+ .format-link .entry-title,
+ .format-audio .entry-title,
+ .format-chat .entry-title {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.4545;
+ margin-bottom: 1.4545em;
+ }
+
+ .format-link .entry-title a:after {
+ top: 0.125em;
+ }
+
+ .comments-title {
+ margin-bottom: 1.4545em;
+ }
+
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback {
+ padding: 1.6842em 0;
+ }
+
+ .comment-list + .comment-respond,
+ .comment-navigation + .comment-respond {
+ padding-top: 1.6842em;
+ }
+
+ .comment-list .children > li {
+ padding-left: 1.4737em;
+ }
+
+ .comment-author .avatar {
+ height: 56px;
+ margin-right: 1.6842em;
+ top: 3px;
+ width: 56px;
+ }
+
+ .comment-metadata {
+ line-height: 2;
+ }
+
+ .comment-metadata .edit-link:before {
+ top: 8px;
+ }
+
+ .pingback .edit-link:before {
+ top: 8px;
+ }
+
+ .bypostauthor > article .fn:after {
+ top: 8px;
+ }
+
+ .comment-content ul,
+ .comment-content ol {
+ margin-bottom: 1.6842em;
+ }
+
+ .comment-list .reply a {
+ padding: 0.4375em 0.875em;
+ }
+
+ .comment-form,
+ .no-comments {
+ padding-top: 1.6842em;
+ }
+
+ embed,
+ iframe,
+ object,
+ video {
+ margin-bottom: 1.6842em;
+ }
+
+ .wp-audio-shortcode,
+ .wp-video,
+ .wp-playlist.wp-audio-playlist {
+ font-size: 19px;
+ font-size: 1.9rem;
+ margin-bottom: 1.6842em;
+ }
+
+ .wp-caption,
+ .gallery {
+ margin-bottom: 1.6842em;
+ }
+
+ .widecolumn .mu_alert {
+ margin-bottom: 1.6842em;
+ }
+
+ .widecolumn p {
+ margin: 1.6842em 0;
+ }
+
+ .widecolumn p + h2 {
+ margin-top: 1.641em;
+ }
+
+ .widecolumn #key,
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #blogname,
+ .widecolumn .mu_register #user_name {
+ font-size: 19px;
+ font-size: 1.9rem;
+ }
+
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #user_name {
+ margin: 0 0 0.421em;
+ }
+}
+
+
+/**
+ * 16.4 Desktop Small 955px
+ */
+
+@media screen and (min-width: 59.6875em) {
+ body:before {
+ background-color: #fff;
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
+ content: "";
+ display: block;
+ height: 100%;
+ min-height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 29.4118%;
+ z-index: 0; /* Fixes flashing bug with scrolling on Safari */
+ }
+
+ .site {
+ margin: 0 auto;
+ max-width: 1403px;
+ }
+
+ .sidebar {
+ float: left;
+ margin-right: -100%;
+ max-width: 413px;
+ position: relative;
+ width: 29.4118%;
+ }
+
+ .secondary {
+ background-color: transparent;
+ box-shadow: none;
+ display: block;
+ margin: 0;
+ padding: 0;
+ }
+
+ .site-main {
+ padding: 8.3333% 0;
+ }
+
+ .site-content {
+ display: block;
+ float: left;
+ margin-left: 29.4118%;
+ width: 70.5882%;
+ }
+
+ body {
+ font-size: 15px;
+ font-size: 1.5rem;
+ line-height: 1.6;
+ }
+
+ p,
+ address,
+ pre,
+ hr,
+ ul,
+ ol,
+ dl,
+ dd,
+ table {
+ margin-bottom: 1.6em;
+ }
+
+ blockquote {
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.6667;
+ margin-bottom: 1.6667em;
+ margin-left: -1.3333em;
+ padding-left: 1.1111em;
+ }
+
+ blockquote cite,
+ blockquote small {
+ font-size: 15px;
+ font-size: 1.5rem;
+ line-height: 1.6;
+ }
+
+ pre {
+ line-height: 1.2;
+ }
+
+ button,
+ input,
+ select,
+ textarea {
+ font-size: 16px;
+ font-size: 1.6rem;
+ line-height: 1.5;
+ }
+
+ button,
+ input {
+ line-height: normal;
+ }
+
+ button,
+ input[type="button"],
+ input[type="reset"],
+ input[type="submit"],
+ .post-password-form input[type="submit"],
+ .widecolumn #submit,
+ .widecolumn .mu_register input[type="submit"] {
+ font-size: 12px;
+ font-size: 1.2rem;
+ padding: 0.7917em 1.5833em;
+ }
+
+ input[type="text"],
+ input[type="email"],
+ input[type="url"],
+ input[type="password"],
+ input[type="search"],
+ textarea {
+ padding: 0.375em;
+ }
+
+ .main-navigation {
+ font-size: 12px;
+ font-size: 1.2rem;
+ margin: 0 20% 20%;
+ }
+
+ .main-navigation a {
+ padding: 0.5em 0;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ padding-right: 30px;
+ }
+
+ .main-navigation .menu-item-description {
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ }
+
+ .dropdown-toggle {
+ height: 24px;
+ width: 24px;
+ }
+
+ .dropdown-toggle:after {
+ font-size: 16px;
+ line-height: 24px;
+ width: 24px;
+ }
+
+ .social-navigation {
+ margin: 0 20% 20%;
+ }
+
+ .social-navigation ul {
+ margin-bottom: -1.6em;
+ }
+
+ .social-navigation li {
+ width: 25%;
+ }
+
+ .social-navigation a {
+ height: 3.2em;
+ }
+
+ .secondary-toggle {
+ display: none;
+ }
+
+ .post-password-form label,
+ .post-navigation .meta-nav,
+ .comment-navigation,
+ .image-navigation,
+ .author-heading,
+ .author-bio,
+ .entry-footer,
+ .page-links a,
+ .page-links span,
+ .comment-metadata,
+ .pingback .edit-link,
+ .comment-list .reply,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .logged-in-as,
+ .comment-form label,
+ .comment-form .comment-form-cookies-consent label,
+ .form-allowed-tags,
+ .site-info,
+ .wp-caption-text,
+ .gallery-caption,
+ .entry-caption,
+ .widecolumn label,
+ .widecolumn .mu_register label {
+ font-size: 12px;
+ font-size: 1.2rem;
+ }
+
+ .post-navigation {
+ margin: 8.3333% 8.3333% 0;
+ }
+
+ .post-navigation a {
+ padding: 5% 10%;
+ }
+
+ .pagination {
+ margin: 8.333% 8.333% 0;
+ }
+
+ .pagination .nav-links {
+ min-height: 3.2em;
+ }
+
+ .pagination .page-numbers {
+ line-height: 3.2em;
+ padding: 0 0.8em;
+ }
+
+ .pagination .prev,
+ .pagination .next {
+ height: 48px;
+ padding: 0;
+ width: 48px;
+ }
+
+ .pagination .prev:before,
+ .pagination .next:before {
+ height: 48px;
+ line-height: 48px;
+ width: 48px;
+ }
+
+ .image-navigation .nav-previous a:before,
+ .image-navigation .nav-next a:after,
+ .comment-navigation .nav-previous a:before,
+ .comment-navigation .nav-next a:after {
+ font-size: 16px;
+ top: 0;
+ }
+
+ .image-navigation {
+ padding: 0 10%;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4em 1.6em 1.6em 0;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4em 0 1.6em 1.6em;
+ }
+
+ blockquote.aligncenter,
+ .wp-caption.aligncenter,
+ img.aligncenter {
+ clear: both;
+ margin-top: 0.4em;
+ margin-bottom: 1.6em;
+ }
+
+ .wp-caption.alignleft,
+ .wp-caption.alignright,
+ .wp-caption.aligncenter {
+ margin-bottom: 1.2em;
+ }
+
+ .site-header {
+ background-color: transparent;
+ border-bottom: 0;
+ margin: 20% 0;
+ padding: 0 20%;
+ }
+
+ .site-branding {
+ min-height: 0;
+ padding: 0;
+ }
+
+ .site-title {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.3636;
+ }
+
+ .custom-logo {
+ max-height: none;
+ }
+
+ .wp-custom-logo .site-title {
+ margin-top: 0.545454545em;
+ }
+
+ .site-description {
+ font-size: 12px;
+ font-size: 1.2rem;
+ }
+
+ .widget {
+ font-size: 12px;
+ font-size: 1.2rem;
+ margin: 0 0 20%;
+ padding: 0 20%;
+ }
+
+ .widget blockquote {
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ margin-bottom: 1.5em;
+ margin-left: -1.5em;
+ padding-left: 1.1667em;
+ }
+
+ .widget blockquote p {
+ margin-bottom: 1.5em;
+ }
+
+ .widget blockquote cite,
+ .widget blockquote small {
+ font-size: 12px;
+ font-size: 1.2rem;
+ }
+
+ .widget pre {
+ padding: 0.5em;
+ }
+
+ .widget button,
+ .widget input,
+ .widget select,
+ .widget textarea {
+ font-size: 12px;
+ font-size: 1.2rem;
+ }
+
+ .widget button,
+ .widget input[type="button"],
+ .widget input[type="reset"],
+ .widget input[type="submit"] {
+ font-size: 12px;
+ font-size: 1.2rem;
+ padding: 0.5417em 1.0833em;
+ }
+
+ .widget input[type="text"],
+ .widget input[type="email"],
+ .widget input[type="url"],
+ .widget input[type="password"],
+ .widget input[type="search"],
+ .widget textarea {
+ padding: 0.4583em;
+ }
+
+ .widget .wp-caption-text,
+ .widget .gallery-caption {
+ font-size: 12px;
+ font-size: 1.2rem;
+ }
+
+ .widget_calendar td,
+ .widget_calendar th,
+ .widget_calendar .wp-calendar-nav span {
+ line-height: 1.9167;
+ }
+
+ .widget_archive li,
+ .widget_categories li,
+ .widget_links li,
+ .widget_meta li,
+ .widget_nav_menu li,
+ .widget_pages li,
+ .widget_recent_comments li,
+ .widget_recent_entries li {
+ padding: 0.4583em 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.4583em 0 0 1em;
+ padding-top: 0.4583em;
+ }
+
+ .widget_rss .rss-date,
+ .widget_rss cite {
+ font-size: 12px;
+ font-size: 1.2rem;
+ line-height: 1.5;
+ }
+
+ .hentry,
+ .page-header,
+ .page-content {
+ margin: 0 8.3333%;
+ }
+
+ .hentry {
+ padding-top: 8.3333%;
+ }
+
+ .hentry + .hentry,
+ .page-header + .hentry,
+ .page-header + .page-content {
+ margin-top: 8.3333%;
+ }
+
+ .post-thumbnail {
+ margin-bottom: 2.4em;
+ }
+
+ .entry-header {
+ padding: 0 10%;
+ }
+
+ .entry-title,
+ .widecolumn h2 {
+ font-size: 31px;
+ font-size: 3.1rem;
+ line-height: 1.1613;
+ margin-bottom: 1.1613em;
+ }
+
+ .entry-content,
+ .entry-summary {
+ padding: 0 10% 10%;
+ }
+
+ .entry-content h1,
+ .entry-summary h1,
+ .page-content h1,
+ .comment-content h1 {
+ font-size: 31px;
+ font-size: 3.1rem;
+ line-height: 1.1613;
+ margin-top: 1.5484em;
+ margin-bottom: 0.7742em;
+ }
+
+ .entry-content h2,
+ .entry-summary h2,
+ .page-content h2,
+ .comment-content h2 {
+ font-size: 26px;
+ font-size: 2.6rem;
+ line-height: 1.3846;
+ margin-top: 1.8462em;
+ margin-bottom: 0.9231em;
+ }
+
+ .entry-content h3,
+ .entry-summary h3,
+ .page-content h3,
+ .comment-content h3 {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.3636;
+ margin-top: 2.1818em;
+ margin-bottom: 1.0909em;
+ }
+
+ .entry-content h4,
+ .entry-summary h4,
+ .page-content h4,
+ .comment-content h4 {
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+ margin-top: 2.6667em;
+ margin-bottom: 1.3333em;
+ }
+
+ .entry-content h5,
+ .entry-content h6,
+ .entry-summary h5,
+ .entry-summary h6,
+ .page-content h5,
+ .page-content h6,
+ .comment-content h5,
+ .comment-content h6 {
+ font-size: 15px;
+ font-size: 1.5rem;
+ line-height: 1.2;
+ margin-top: 3.2em;
+ margin-bottom: 1.6em;
+ }
+
+ .entry-content .more-link:after,
+ .entry-summary .more-link:after {
+ font-size: 16px;
+ top: 5px;
+ }
+
+ .author-info {
+ margin: 0 10%;
+ padding: 10% 0;
+ }
+
+ .author-info .avatar {
+ height: 36px;
+ margin: 0 1.5em 1.5em 0;
+ width: 36px;
+ }
+
+ .author-link:after {
+ font-size: 16px;
+ top: 1px;
+ }
+
+ .entry-footer {
+ padding: 5% 10%;
+ }
+
+ .posted-on:before,
+ .byline:before,
+ .cat-links:before,
+ .tags-links:before,
+ .comments-link:before,
+ .entry-format:before,
+ .edit-link:before,
+ .full-size-link:before {
+ top: 0;
+ }
+
+ .page-header {
+ padding: 4.1666% 8.3333%;
+ }
+
+ .page-content {
+ padding: 8.3333%;
+ }
+
+ .taxonomy-description {
+ padding-top: 0.4em;
+ }
+
+ .page-title,
+ .comments-title,
+ .comment-reply-title,
+ .post-navigation .post-title {
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+ }
+
+ .page-links {
+ margin-bottom: 1.3333em;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0.3333em 0.3333em 0;
+ }
+
+ .entry-attachment {
+ margin-bottom: 1.6em;
+ }
+
+ .format-aside .entry-title,
+ .format-image .entry-title,
+ .format-video .entry-title,
+ .format-quote .entry-title,
+ .format-gallery .entry-title,
+ .format-status .entry-title,
+ .format-link .entry-title,
+ .format-audio .entry-title,
+ .format-chat .entry-title {
+ font-size: 18px;
+ font-size: 1.8rem;
+ line-height: 1.3333;
+ margin-bottom: 1.3333em;
+ }
+
+ .format-link .entry-title a:after {
+ top: 0;
+ }
+
+ .comments-area {
+ margin: 8.3333% 8.3333% 0;
+ padding: 8.3333%;
+ }
+
+ .comments-title {
+ margin-bottom: 1.3333em;
+ }
+
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback {
+ padding: 1.6em 0;
+ }
+
+ .comment-list + .comment-respond,
+ .comment-navigation + .comment-respond {
+ padding-top: 1.6em;
+ }
+
+ .comment-list .children > li {
+ padding-left: 0.8em;
+ }
+
+ .comment-author {
+ margin-bottom: 0.4em;
+ }
+
+ .comment-author .avatar {
+ height: 24px;
+ margin-right: 0.8em;
+ top: 0;
+ width: 24px;
+ }
+
+ .comment-metadata .edit-link:before {
+ top: 3px;
+ }
+
+ .pingback .edit-link:before {
+ top: 5px;
+ }
+
+ .bypostauthor > article .fn:after {
+ top: 5px;
+ left: 3px;
+ }
+
+ .comment-content ul,
+ .comment-content ol {
+ margin-bottom: 2em;
+ }
+
+ .comment-list .reply a {
+ padding: 0.4167em 0.8333em;
+ }
+
+ .comment-form,
+ .no-comments {
+ padding-top: 1.6em;
+ }
+
+ .comment-reply-title small a:before {
+ top: -3px;
+ }
+
+ .site-footer {
+ float: left;
+ margin: 0 0 0 35.2941%;
+ padding: 0;
+ width: 58.8235%;
+ }
+
+ .site-info {
+ padding: 5% 10%;
+ }
+
+ embed,
+ iframe,
+ object,
+ video {
+ margin-bottom: 1.6em;
+ }
+
+ .wp-audio-shortcode,
+ .wp-video,
+ .wp-playlist.wp-audio-playlist {
+ font-size: 15px;
+ font-size: 1.5rem;
+ margin-bottom: 1.6em;
+ }
+
+ .wp-caption,
+ .gallery {
+ margin-bottom: 1.6em;
+ }
+
+ .widecolumn {
+ margin: 8.3333%;
+ padding: 8.3333%;
+ }
+
+ .widecolumn .mu_alert {
+ margin-bottom: 1.6em;
+ }
+
+ .widecolumn p {
+ margin: 1.6em 0;
+ }
+
+ .widecolumn p + h2 {
+ margin-top: 1.5484em;
+ }
+
+ .widecolumn #key,
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #blogname,
+ .widecolumn .mu_register #user_name {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #user_name {
+ margin: 0 0 0.375em;
+ }
+}
+
+
+/**
+ * 16.5 Desktop Medium 1100px
+ */
+
+@media screen and (min-width: 68.75em) {
+ body,
+ button,
+ input,
+ select,
+ textarea {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: 1.6471;
+ }
+
+ button,
+ input {
+ line-height: normal;
+ }
+
+ p,
+ address,
+ pre,
+ hr,
+ ul,
+ ol,
+ dl,
+ dd,
+ table {
+ margin-bottom: 1.6471em;
+ }
+
+ blockquote {
+ font-size: 20px;
+ font-size: 2rem;
+ line-height: 1.75;
+ margin-bottom: 1.75em;
+ margin-left: -1.05em;
+ padding-left: 0.85em;
+ }
+
+ blockquote p {
+ margin-bottom: 1.75em;
+ }
+
+ blockquote cite,
+ blockquote small {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: 1.6471;
+ }
+
+ pre {
+ line-height: 1.2353;
+ }
+
+ button,
+ input[type="button"],
+ input[type="reset"],
+ input[type="submit"],
+ .post-password-form input[type="submit"],
+ .widecolumn #submit,
+ .widecolumn .mu_register input[type="submit"] {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding: 0.8214em 1.5714em;
+ }
+
+ input[type="text"],
+ input[type="email"],
+ input[type="url"],
+ input[type="password"],
+ input[type="search"],
+ textarea {
+ padding: 0.5em;
+ }
+
+ .main-navigation {
+ font-size: 14px;
+ font-size: 1.4rem;
+ }
+
+ .main-navigation a {
+ padding: 0.4643em 0;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ padding-right: 34px;
+ }
+
+ .main-navigation .menu-item-description {
+ line-height: 1.4583;
+ margin-top: 0.25em;
+ }
+
+ .dropdown-toggle {
+ height: 28px;
+ width: 28px;
+ }
+
+ .dropdown-toggle:after {
+ line-height: 28px;
+ width: 28px;
+ }
+
+ .social-navigation ul {
+ margin-bottom: -1.4706em;
+ }
+
+ .social-navigation li {
+ width: 20%;
+ }
+
+ .social-navigation a {
+ height: 2.8824em;
+ }
+
+ .post-password-form label,
+ .post-navigation .meta-nav,
+ .comment-navigation,
+ .image-navigation,
+ .author-heading,
+ .author-bio,
+ .entry-footer,
+ .page-links a,
+ .page-links span,
+ .comment-metadata,
+ .pingback .edit-link,
+ .comment-list .reply,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .logged-in-as,
+ .comment-form label,
+ .comment-form .comment-form-cookies-consent label,
+ .form-allowed-tags,
+ .site-info,
+ .wp-caption-text,
+ .gallery-caption,
+ .entry-caption,
+ .widecolumn label,
+ .widecolumn .mu_register label {
+ font-size: 14px;
+ font-size: 1.4rem;
+ }
+
+ .pagination .nav-links {
+ min-height: 3.2941em;
+ }
+
+ .pagination .page-numbers {
+ line-height: 3.2941em;
+ padding: 0 0.8235em;
+ }
+
+ .pagination .prev,
+ .pagination .next {
+ height: 56px;
+ padding: 0;
+ width: 56px;
+ }
+
+ .pagination .prev:before,
+ .pagination .next:before {
+ height: 56px;
+ line-height: 56px;
+ width: 56px;
+ }
+
+ .image-navigation .nav-previous a:before,
+ .image-navigation .nav-next a:after,
+ .comment-navigation .nav-previous a:before,
+ .comment-navigation .nav-next a:after {
+ top: 2px;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4118em 1.6471em 1.6471em 0;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4118em 0 1.6471em 1.6471em;
+ }
+
+ blockquote.aligncenter,
+ .wp-caption.aligncenter,
+ img.aligncenter {
+ margin-top: 0.4118em;
+ margin-bottom: 1.6471em;
+ }
+
+ .wp-caption.alignleft,
+ .wp-caption.alignright,
+ .wp-caption.aligncenter {
+ margin-bottom: 1.2353em;
+ }
+
+ .site-title {
+ font-size: 24px;
+ font-size: 2.4rem;
+ line-height: 1.1667;
+ }
+
+ .wp-custom-logo .site-title {
+ margin-top: 0.583333333em;
+ }
+
+ .site-description {
+ font-size: 14px;
+ font-size: 1.4rem;
+ }
+
+ .widget {
+ font-size: 14px;
+ font-size: 1.4rem;
+ }
+
+ .widget blockquote {
+ font-size: 14px;
+ font-size: 1.4rem;
+ padding-left: 1.2143em;
+ }
+
+ .widget button,
+ .widget input,
+ .widget select,
+ .widget textarea {
+ font-size: 14px;
+ font-size: 1.4rem;
+ }
+
+ .widget button,
+ .widget input[type="button"],
+ .widget input[type="reset"],
+ .widget input[type="submit"] {
+ font-size: 12px;
+ font-size: 1.2rem;
+ padding: 0.75em 1.5em;
+ }
+
+ .widget input[type="text"],
+ .widget input[type="email"],
+ .widget input[type="url"],
+ .widget input[type="password"],
+ .widget input[type="search"],
+ .widget textarea {
+ padding: 0.5em;
+ }
+
+ .widget .wp-caption-text,
+ .widget .gallery-caption {
+ line-height: 1.4583;
+ padding: 0.5833em 0;
+ }
+
+ .widget_calendar caption {
+ margin: 0 0 1.9286em;
+ }
+
+ .widget_calendar td,
+ .widget_calendar th,
+ .widget_calendar .wp-calendar-nav span {
+ line-height: 1.9286;
+ }
+
+ .widget_archive li,
+ .widget_categories li,
+ .widget_links li,
+ .widget_meta li,
+ .widget_nav_menu li,
+ .widget_pages li,
+ .widget_recent_comments li,
+ .widget_recent_entries li {
+ padding: 0.4643em 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.4643em 0 0 1em;
+ padding-top: 0.4643em;
+ }
+
+ .widget_rss .rss-date,
+ .widget_rss cite {
+ line-height: 1.75;
+ }
+
+ .post-thumbnail {
+ margin-bottom: 2.4706em;
+ }
+
+ .entry-title,
+ .widecolumn h2 {
+ font-size: 35px;
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1.2em;
+ }
+
+ .entry-content h1,
+ .entry-summary h1,
+ .page-content h1,
+ .comment-content h1 {
+ font-size: 35px;
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-top: 1.6em;
+ margin-bottom: 0.8em;
+ }
+
+ .entry-content h2,
+ .entry-summary h2,
+ .page-content h2,
+ .comment-content h2 {
+ font-size: 29px;
+ font-size: 2.9rem;
+ line-height: 1.2069;
+ margin-top: 1.931em;
+ margin-bottom: 0.9655em;
+ }
+
+ .entry-content h3,
+ .entry-summary h3,
+ .page-content h3,
+ .comment-content h3 {
+ font-size: 24px;
+ font-size: 2.4rem;
+ line-height: 1.1667;
+ margin-top: 2.3333em;
+ margin-bottom: 1.1667em;
+ }
+
+ .entry-content h4,
+ .entry-summary h4,
+ .page-content h4,
+ .comment-content h4 {
+ font-size: 20px;
+ font-size: 2rem;
+ line-height: 1.4;
+ margin-top: 2.8em;
+ margin-bottom: 1.4em;
+ }
+
+ .entry-content h5,
+ .entry-content h6,
+ .entry-summary h5,
+ .entry-summary h6,
+ .page-content h5,
+ .page-content h6,
+ .comment-content h5,
+ .comment-content h6 {
+ font-size: 17px;
+ font-size: 1.7rem;
+ line-height: 1.2353;
+ margin-top: 3.2941em;
+ margin-bottom: 1.6471em;
+ }
+
+ .entry-content .more-link:after,
+ .entry-summary .more-link:after {
+ font-size: 24px;
+ top: 2px;
+ }
+
+ .author-info .avatar {
+ height: 42px;
+ margin: 0 1.6471em 1.6471em 0;
+ width: 42px;
+ }
+
+ .author-link:after {
+ top: 3px;
+ }
+
+ .posted-on:before,
+ .byline:before,
+ .cat-links:before,
+ .tags-links:before,
+ .comments-link:before,
+ .entry-format:before,
+ .edit-link:before,
+ .full-size-link:before {
+ top: 3px;
+ }
+
+ .taxonomy-description {
+ padding-top: 0.4118em;
+ }
+
+ .page-title,
+ .comments-title,
+ .comment-reply-title,
+ .post-navigation .post-title {
+ font-size: 24px;
+ font-size: 2.4rem;
+ line-height: 1.1667;
+ }
+
+ .page-links {
+ margin-bottom: 1.4117em;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0.2857em 0.2857em 0;
+ }
+
+ .entry-attachment {
+ margin-bottom: 1.6471em;
+ }
+
+ .format-aside .entry-title,
+ .format-image .entry-title,
+ .format-video .entry-title,
+ .format-quote .entry-title,
+ .format-gallery .entry-title,
+ .format-status .entry-title,
+ .format-link .entry-title,
+ .format-audio .entry-title,
+ .format-chat .entry-title {
+ font-size: 20px;
+ font-size: 2rem;
+ line-height: 1.4;
+ margin-bottom: 1.4em;
+ }
+
+ .format-link .entry-title a:after {
+ top: 0.0833em;
+ }
+
+ .comments-title {
+ margin-bottom: 1.4em;
+ }
+
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback {
+ padding: 1.6471em 0;
+ }
+
+ .comment-list + .comment-respond,
+ .comment-navigation + .comment-respond {
+ padding-top: 1.6471em;
+ }
+
+ .comment-list .children > li {
+ padding-left: 1.1667em;
+ }
+
+ .comment-author {
+ margin-bottom: 0;
+ }
+
+ .comment-author .avatar {
+ height: 42px;
+ margin-right: 1.64705em;
+ top: 5px;
+ width: 42px;
+ }
+
+ .bypostauthor > article .fn:after {
+ top: 7px;
+ left: 6px;
+ }
+
+ .comment-metadata .edit-link:before {
+ top: 6px;
+ }
+
+ .pingback .edit-link:before {
+ top: 6px;
+ }
+
+ .comment-content ul,
+ .comment-content ol {
+ margin-bottom: 1.6471em;
+ }
+
+ .comment-list .reply a {
+ padding: 0.4286em 0.8571em;
+ }
+
+ .comment-form,
+ .no-comments {
+ padding-top: 1.6471em;
+ }
+
+ .comment-reply-title small a:before {
+ top: -1px;
+ }
+
+ embed,
+ iframe,
+ object,
+ video {
+ margin-bottom: 1.6471em;
+ }
+
+ .wp-audio-shortcode,
+ .wp-video,
+ .wp-playlist.wp-audio-playlist {
+ font-size: 17px;
+ font-size: 1.7rem;
+ margin-bottom: 1.6471em;
+ }
+
+ .wp-caption,
+ .gallery {
+ margin-bottom: 1.6471em;
+ }
+
+ .widecolumn .mu_alert {
+ margin-bottom: 1.6471em;
+ }
+
+ .widecolumn p {
+ margin: 1.6471em 0;
+ }
+
+ .widecolumn p + h2 {
+ margin-top: 1.6em;
+ }
+
+ .widecolumn #key,
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #blogname,
+ .widecolumn .mu_register #user_name {
+ font-size: 17px;
+ font-size: 1.7rem;
+ }
+
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #user_name {
+ margin: 0 0 0.4117em;
+ }
+}
+
+
+/**
+ * 16.6 Desktop Large 1240px
+ */
+
+@media screen and (min-width: 77.5em) {
+ body,
+ button,
+ input,
+ select,
+ textarea {
+ font-size: 19px;
+ font-size: 1.9rem;
+ line-height: 1.6842;
+ }
+
+ button,
+ input {
+ line-height: normal;
+ }
+
+ p,
+ address,
+ pre,
+ hr,
+ ul,
+ ol,
+ dl,
+ dd,
+ table {
+ margin-bottom: 1.6842em;
+ }
+
+ blockquote {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.8182;
+ margin-bottom: 1.8182em;
+ margin-left: -1.0909em;
+ padding-left: 0.9091em;
+ }
+
+ blockquote p {
+ margin-bottom: 1.8182em;
+ }
+
+ blockquote cite,
+ blockquote small {
+ font-size: 19px;
+ font-size: 1.9rem;
+ line-height: 1.6842;
+ }
+
+ pre {
+ line-height: 1.2632;
+ }
+
+ button,
+ input[type="button"],
+ input[type="reset"],
+ input[type="submit"],
+ .post-password-form input[type="submit"],
+ .widecolumn #submit,
+ .widecolumn .mu_register input[type="submit"] {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding: 0.8125em 1.625em;
+ }
+
+ input[type="text"],
+ input[type="email"],
+ input[type="url"],
+ input[type="password"],
+ input[type="search"],
+ textarea {
+ padding: 0.5278em;
+ }
+
+ .main-navigation {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .main-navigation a {
+ padding: 0.5em 0;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ padding-right: 38px;
+ }
+
+ .main-navigation .menu-item-description {
+ font-size: 13px;
+ font-size: 1.3rem;
+ line-height: 1.5385;
+ margin-top: 0.3077em;
+ }
+
+ .dropdown-toggle {
+ height: 32px;
+ top: 4px;
+ width: 32px;
+ }
+
+ .dropdown-toggle:after {
+ line-height: 32px;
+ width: 32px;
+ }
+
+ .social-navigation ul {
+ margin-bottom: -1.2632em;
+ }
+
+ .social-navigation a {
+ height: 2.5263em;
+ }
+
+ .post-password-form label,
+ .post-navigation .meta-nav,
+ .comment-navigation,
+ .image-navigation,
+ .author-heading,
+ .author-bio,
+ .entry-footer,
+ .page-links a,
+ .page-links span,
+ .comment-metadata,
+ .pingback .edit-link,
+ .comment-list .reply,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .logged-in-as,
+ .comment-form label,
+ .comment-form .comment-form-cookies-consent label,
+ .form-allowed-tags,
+ .site-info,
+ .wp-caption-text,
+ .gallery-caption,
+ .entry-caption,
+ .widecolumn label,
+ .widecolumn .mu_register label {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .pagination .nav-links {
+ min-height: 3.3684em;
+ }
+
+ .pagination .page-numbers {
+ line-height: 3.3684em;
+ padding: 0 0.8421em;
+ }
+
+ .pagination .prev,
+ .pagination .next {
+ height: 64px;
+ padding: 0;
+ width: 64px;
+ }
+
+ .pagination .prev:before,
+ .pagination .next:before {
+ height: 64px;
+ line-height: 64px;
+ width: 64px;
+ }
+
+ .image-navigation .nav-previous a:before,
+ .image-navigation .nav-next a:after,
+ .comment-navigation .nav-previous a:before,
+ .comment-navigation .nav-next a:after {
+ font-size: 24px;
+ top: -1px;
+ }
+
+ blockquote.alignleft,
+ .wp-caption.alignleft,
+ img.alignleft {
+ margin: 0.4211em 1.6842em 1.6842em 0;
+ }
+
+ blockquote.alignright,
+ .wp-caption.alignright,
+ img.alignright {
+ margin: 0.4211em 0 1.6842em 1.6842em;
+ }
+
+ blockquote.aligncenter,
+ .wp-caption.aligncenter,
+ img.aligncenter {
+ margin-top: 0.4211em;
+ margin-bottom: 1.6842em;
+ }
+
+ .wp-caption.alignleft,
+ .wp-caption.alignright,
+ .wp-caption.aligncenter {
+ margin-bottom: 1.2632em;
+ }
+
+ .site-title {
+ font-size: 27px;
+ font-size: 2.7rem;
+ line-height: 1.1852;
+ }
+
+ .wp-custom-logo .site-title {
+ margin-top: 0.592592593em;
+ }
+
+ .site-description {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .widget {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .widget blockquote {
+ font-size: 16px;
+ font-size: 1.6rem;
+ padding-left: 1.25em;
+ }
+
+ .widget blockquote cite,
+ .widget blockquote small {
+ font-size: 13px;
+ font-size: 1.3rem;
+ line-height: 1.8462;
+ }
+
+ .widget button,
+ .widget input,
+ .widget select,
+ .widget textarea {
+ font-size: 16px;
+ font-size: 1.6rem;
+ }
+
+ .widget button,
+ .widget input[type="button"],
+ .widget input[type="reset"],
+ .widget input[type="submit"] {
+ font-size: 13px;
+ font-size: 1.3rem;
+ padding: 0.8462em 1.6923em;
+ }
+
+ .widget input[type="text"],
+ .widget input[type="email"],
+ .widget input[type="url"],
+ .widget input[type="password"],
+ .widget input[type="search"],
+ .widget textarea {
+ padding: 0.5em;
+ }
+
+ .widget .wp-caption-text,
+ .widget .gallery-caption {
+ font-size: 13px;
+ font-size: 1.3rem;
+ line-height: 1.5385;
+ padding: 0.6154em 0;
+ }
+
+ .widget_calendar td,
+ .widget_calendar th,
+ .widget_calendar .wp-calendar-nav span {
+ line-height: 1.9375;
+ }
+
+ .widget_calendar caption {
+ margin: 0 0 1.5em;
+ }
+
+ .widget_archive li,
+ .widget_categories li,
+ .widget_links li,
+ .widget_meta li,
+ .widget_nav_menu li,
+ .widget_pages li,
+ .widget_recent_comments li,
+ .widget_recent_entries li {
+ padding: 0.4688em 0;
+ }
+
+ .widget_categories .children,
+ .widget_nav_menu .sub-menu,
+ .widget_pages .children {
+ margin: 0.4688em 0 0 1em;
+ padding-top: 0.4688em;
+ }
+
+ .widget_rss .rss-date,
+ .widget_rss cite {
+ font-size: 13px;
+ font-size: 1.3rem;
+ line-height: 1.8462;
+ }
+
+ .post-thumbnail {
+ margin-bottom: 2.9474em;
+ }
+
+ .entry-title,
+ .widecolumn h2 {
+ font-size: 39px;
+ font-size: 3.9rem;
+ line-height: 1.2308;
+ margin-bottom: 1.2308em;
+ }
+
+ .entry-content h1,
+ .entry-summary h1,
+ .page-content h1,
+ .comment-content h1 {
+ font-size: 39px;
+ font-size: 3.9rem;
+ line-height: 1.2308;
+ margin-top: 1.641em;
+ margin-bottom: 0.8205em;
+ }
+
+ .entry-content h2,
+ .entry-summary h2,
+ .page-content h2,
+ .comment-content h2 {
+ font-size: 32px;
+ font-size: 3.2rem;
+ line-height: 1.25;
+ margin-top: 2em;
+ margin-bottom: 1em;
+ }
+
+ .entry-content h3,
+ .entry-summary h3,
+ .page-content h3,
+ .comment-content h3 {
+ font-size: 27px;
+ font-size: 2.7rem;
+ line-height: 1.1852;
+ margin-top: 2.3704em;
+ margin-bottom: 1.1852em;
+ }
+
+ .entry-content h4,
+ .entry-summary h4,
+ .page-content h4,
+ .comment-content h4 {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.4545;
+ margin-top: 2.9091em;
+ margin-bottom: 1.4545em;
+ }
+
+ .entry-content h5,
+ .entry-content h6,
+ .entry-summary h5,
+ .entry-summary h6,
+ .page-content h5,
+ .page-content h6,
+ .comment-content h5,
+ .comment-content h6 {
+ font-size: 19px;
+ font-size: 1.9rem;
+ line-height: 1.2632;
+ margin-top: 3.3684em;
+ margin-bottom: 1.6842em;
+ }
+
+ .entry-content .more-link:after,
+ .entry-summary .more-link:after {
+ top: 3px;
+ }
+
+ .author-info .avatar {
+ height: 56px;
+ margin: 0 1.6842em 1.6842em 0;
+ width: 56px;
+ }
+
+ .author-link:after {
+ font-size: 24px;
+ top: 0;
+ }
+
+ .posted-on:before,
+ .byline:before,
+ .cat-links:before,
+ .tags-links:before,
+ .comments-link:before,
+ .entry-format:before,
+ .edit-link:before,
+ .full-size-link:before {
+ top: 4px;
+ }
+
+ .taxonomy-description {
+ padding-top: 0.4211em;
+ }
+
+ .page-title,
+ .comments-title,
+ .comment-reply-title,
+ .post-navigation .post-title {
+ font-size: 27px;
+ font-size: 2.7rem;
+ line-height: 1.1852;
+ }
+
+ .page-links {
+ margin-bottom: 1.4736em;
+ }
+
+ .page-links a,
+ .page-links > span {
+ margin: 0 0.25em 0.25em 0;
+ }
+
+ .entry-attachment {
+ margin-bottom: 1.6842em;
+ }
+
+ .format-aside .entry-title,
+ .format-image .entry-title,
+ .format-video .entry-title,
+ .format-quote .entry-title,
+ .format-gallery .entry-title,
+ .format-status .entry-title,
+ .format-link .entry-title,
+ .format-audio .entry-title,
+ .format-chat .entry-title {
+ font-size: 22px;
+ font-size: 2.2rem;
+ line-height: 1.4545;
+ margin-bottom: 1.4545em;
+ }
+
+ .format-link .entry-title a:after {
+ top: 3px;
+ }
+
+ .comments-title {
+ margin-bottom: 1.4545em;
+ }
+
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback {
+ padding: 1.6842em 0;
+ }
+
+ .comment-list + .comment-respond,
+ .comment-navigation + .comment-respond {
+ padding-top: 1.6842em;
+ }
+
+ .comment-list .children > li {
+ padding-left: 1.4737em;
+ }
+
+ .comment-author .avatar {
+ height: 56px;
+ margin-right: 1.6842em;
+ top: 3px;
+ width: 56px;
+ }
+
+ .bypostauthor > article .fn:after {
+ top: 8px;
+ }
+
+ .comment-metadata .edit-link:before {
+ top: 8px;
+ }
+
+ .pingback .edit-link:before {
+ top: 8px;
+ }
+
+ .comment-content ul,
+ .comment-content ol {
+ margin-bottom: 1.6842em;
+ }
+
+ .comment-list .reply a {
+ padding: 0.4375em 0.875em;
+ }
+
+ .comment-form,
+ .no-comments {
+ padding-top: 1.6842em;
+ }
+
+ embed,
+ iframe,
+ object,
+ video {
+ margin-bottom: 1.6842em;
+ }
+
+ .wp-audio-shortcode,
+ .wp-video,
+ .wp-playlist.wp-audio-playlist {
+ font-size: 19px;
+ font-size: 1.9rem;
+ margin-bottom: 1.6842em;
+ }
+
+ .wp-caption,
+ .gallery {
+ margin-bottom: 1.6842em;
+ }
+
+ .widecolumn .mu_alert {
+ margin-bottom: 1.6842em;
+ }
+
+ .widecolumn p {
+ margin: 1.6842em 0;
+ }
+
+ .widecolumn p + h2 {
+ margin-top: 1.641em;
+ }
+
+ .widecolumn #key,
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #blogname,
+ .widecolumn .mu_register #user_name {
+ font-size: 19px;
+ font-size: 1.9rem;
+ }
+
+ .widecolumn .mu_register #blog_title,
+ .widecolumn .mu_register #user_email,
+ .widecolumn .mu_register #user_name {
+ margin: 0 0 0.421em;
+ }
+}
+
+
+/**
+ * 16.7 Desktop X-Large 1403px
+ */
+
+@media screen and (min-width: 87.6875em) {
+ body:before {
+ width: -webkit-calc(50% - 289px);
+ width: calc(50% - 289px);
+ }
+}
+
+
+/**
+ * 17.0 Print
+ */
+
+@media print {
+ body {
+ background: none !important; /* Brute force since user agents all print differently. */
+ font-size: 11.25pt;
+ }
+
+ .secondary-toggle,
+ .navigation,
+ .page-links,
+ .edit-link,
+ #reply-title,
+ .comment-form,
+ .comment-edit-link,
+ .comment-list .reply a,
+ button,
+ input,
+ textarea,
+ select,
+ .widecolumn form,
+ .widecolumn .mu_register form {
+ display: none;
+ }
+
+ .site-header,
+ .site-footer,
+ .hentry,
+ .entry-footer,
+ .page-header,
+ .page-content,
+ .comments-area,
+ .widecolumn {
+ background: none !important; /* Make sure color schemes don't affect to print */
+ }
+
+ body,
+ blockquote,
+ blockquote cite,
+ blockquote small,
+ label,
+ a,
+ .site-title a,
+ .site-description,
+ .post-title,
+ .author-heading,
+ .entry-footer,
+ .entry-footer a,
+ .taxonomy-description,
+ .entry-caption,
+ .comment-author,
+ .comment-metadata,
+ .comment-metadata a,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .no-comments,
+ .site-info,
+ .site-info a,
+ .wp-caption-text,
+ .gallery-caption {
+ color: #000 !important; /* Make sure color schemes don't affect to print */
+ }
+
+ pre,
+ abbr[title],
+ table,
+ th,
+ td,
+ .site-header,
+ .site-footer,
+ .hentry + .hentry,
+ .author-info,
+ .page-header,
+ .comments-area,
+ .comment-list + .comment-respond,
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback,
+ .no-comments {
+ border-color: #eaeaea !important; /* Make sure color schemes don't affect to print */
+ }
+
+ .site {
+ margin: 0 7.6923%;
+ }
+
+ .sidebar {
+ position: relative !important; /* Make sure sticky sidebar doesn't affect to print */
+ }
+
+ .site-branding {
+ padding: 0;
+ }
+
+ .site-header {
+ padding: 7.6923% 0;
+ }
+
+ .site-description {
+ display: block;
+ }
+
+ .hentry + .hentry {
+ margin-top: 7.6923%;
+ }
+
+ .hentry.has-post-thumbnail {
+ padding-top: 7.6923%;
+ }
+
+ .sticky-post {
+ background: #000 !important;
+ color: #fff !important;
+ }
+
+ .entry-header,
+ .entry-footer {
+ padding: 0;
+ }
+
+ .entry-content,
+ .entry-summary {
+ padding: 0 0 7.6923%;
+ }
+
+ .post-thumbnail img {
+ margin: 0;
+ }
+
+ .author-info {
+ margin: 0;
+ }
+
+ .page-content {
+ padding: 7.6923% 0 0;
+ }
+
+ .page-header {
+ padding: 3.84615% 0;
+ }
+
+ .comments-area {
+ border: 0;
+ padding: 7.6923% 0 0;
+ }
+
+ .site-footer {
+ margin-top: 7.6923%;
+ padding: 3.84615% 0;
+ }
+
+ .widecolumn {
+ margin: 7.6923% 0 0;
+ padding: 0;
+ }
+}
diff --git a/static/wp-includes/css/admin-bar-rtl.css b/static/wp-includes/css/admin-bar-rtl.css
new file mode 100755
index 0000000..da21c6e
--- /dev/null
+++ b/static/wp-includes/css/admin-bar-rtl.css
@@ -0,0 +1,1119 @@
+/*! This file is auto-generated */
+html {
+ --wp-admin--admin-bar--height: 32px;
+ scroll-padding-top: var(--wp-admin--admin-bar--height);
+}
+
+#wpadminbar * {
+ height: auto;
+ width: auto;
+ margin: 0;
+ padding: 0;
+ position: static;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ font-size: 13px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 2.46153846;
+ border-radius: 0;
+ box-sizing: content-box;
+ transition: none;
+ -webkit-font-smoothing: subpixel-antialiased; /* Prevent Safari from switching to standard antialiasing on hover */
+ -moz-osx-font-smoothing: auto; /* Prevent Firefox from inheriting from themes that use other values */
+}
+
+.rtl #wpadminbar * {
+ font-family: Tahoma, sans-serif;
+}
+
+html:lang(he-il) .rtl #wpadminbar * {
+ font-family: Arial, sans-serif;
+}
+
+#wpadminbar .ab-empty-item {
+ cursor: default;
+}
+
+#wpadminbar .ab-empty-item,
+#wpadminbar a.ab-item,
+#wpadminbar > #wp-toolbar span.ab-label,
+#wpadminbar > #wp-toolbar span.noticon {
+ color: #f0f0f1;
+}
+
+#wpadminbar #wp-admin-bar-site-name a.ab-item,
+#wpadminbar #wp-admin-bar-my-sites a.ab-item {
+ white-space: nowrap;
+}
+
+#wpadminbar ul li:before,
+#wpadminbar ul li:after {
+ content: normal;
+}
+
+#wpadminbar a,
+#wpadminbar a:hover,
+#wpadminbar a img,
+#wpadminbar a img:hover {
+ border: none;
+ text-decoration: none;
+ background: none;
+ box-shadow: none;
+}
+
+#wpadminbar a:focus,
+#wpadminbar a:active,
+#wpadminbar input[type="text"],
+#wpadminbar input[type="password"],
+#wpadminbar input[type="number"],
+#wpadminbar input[type="search"],
+#wpadminbar input[type="email"],
+#wpadminbar input[type="url"],
+#wpadminbar select,
+#wpadminbar textarea,
+#wpadminbar div {
+ box-shadow: none;
+}
+
+#wpadminbar a:focus {
+ /* Inherits transparent outline only visible in Windows High Contrast mode */
+ outline-offset: -1px;
+}
+
+#wpadminbar {
+ direction: rtl;
+ color: #c3c4c7;
+ font-size: 13px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 2.46153846;
+ height: 32px;
+ position: fixed;
+ top: 0;
+ right: 0;
+ width: 100%;
+ min-width: 600px; /* match the min-width of the body in wp-admin/css/common.css */
+ z-index: 99999;
+ background: #1d2327;
+}
+
+#wpadminbar .ab-sub-wrapper,
+#wpadminbar ul,
+#wpadminbar ul li {
+ background: none;
+ clear: none;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: relative;
+ text-indent: 0;
+ z-index: 99999;
+}
+
+#wpadminbar ul#wp-admin-bar-root-default>li {
+ margin-left: 0;
+}
+
+#wpadminbar .quicklinks ul {
+ text-align: right;
+}
+
+#wpadminbar li {
+ float: right;
+}
+
+#wpadminbar .ab-empty-item {
+ outline: none;
+}
+
+#wpadminbar .quicklinks .ab-top-secondary > li {
+ float: left;
+}
+
+#wpadminbar .quicklinks a,
+#wpadminbar .quicklinks .ab-empty-item,
+#wpadminbar .shortlink-input {
+ height: 32px;
+ display: block;
+ padding: 0 10px;
+ margin: 0;
+}
+
+#wpadminbar .quicklinks > ul > li > a {
+ padding: 0 7px 0 8px;
+}
+
+#wpadminbar .menupop .ab-sub-wrapper,
+#wpadminbar .shortlink-input {
+ margin: 0;
+ padding: 0;
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
+ background: #2c3338;
+ display: none;
+ position: absolute;
+ float: none;
+}
+
+#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
+ min-width: 100%;
+}
+
+#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
+ left: 0;
+ right: auto;
+}
+
+#wpadminbar .ab-submenu {
+ padding: 6px 0;
+}
+
+#wpadminbar .selected .shortlink-input {
+ display: block;
+}
+
+#wpadminbar .quicklinks .menupop ul li {
+ float: none;
+}
+
+#wpadminbar .quicklinks .menupop ul li a strong {
+ font-weight: 600;
+}
+
+#wpadminbar .quicklinks .menupop ul li .ab-item,
+#wpadminbar .quicklinks .menupop ul li a strong,
+#wpadminbar .quicklinks .menupop.hover ul li .ab-item,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item,
+#wpadminbar .shortlink-input {
+ line-height: 2;
+ height: 26px;
+ white-space: nowrap;
+ min-width: 140px;
+}
+
+#wpadminbar .shortlink-input {
+ width: 200px;
+}
+
+#wpadminbar.nojs li:hover > .ab-sub-wrapper,
+#wpadminbar li.hover > .ab-sub-wrapper {
+ display: block;
+}
+
+#wpadminbar .menupop li:hover > .ab-sub-wrapper,
+#wpadminbar .menupop li.hover > .ab-sub-wrapper {
+ margin-right: 100%;
+ margin-top: -32px;
+}
+
+#wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper,
+#wpadminbar .ab-top-secondary .menupop li.hover > .ab-sub-wrapper {
+ margin-right: 0;
+ right: inherit;
+ left: 100%;
+}
+
+#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
+#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
+#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
+#wpadminbar .ab-top-menu > li.hover > .ab-item {
+ background: #2c3338;
+ color: #72aee6;
+}
+
+#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
+#wpadminbar > #wp-toolbar li.hover span.ab-label,
+#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
+ color: #72aee6;
+}
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
+#wpadminbar .ab-icon,
+#wpadminbar .ab-item:before,
+.wp-admin-bar-arrow {
+ position: relative;
+ float: right;
+ font: normal 20px/1 dashicons;
+ speak: never;
+ padding: 4px 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ background-image: none !important;
+ margin-left: 6px;
+}
+
+#wpadminbar .ab-icon:before,
+#wpadminbar .ab-item:before,
+#wpadminbar #adminbarsearch:before {
+ color: #a7aaad;
+ color: rgba(240, 246, 252, 0.6);
+}
+
+#wpadminbar .ab-icon:before,
+#wpadminbar .ab-item:before,
+#wpadminbar #adminbarsearch:before {
+ position: relative;
+ transition: color .1s ease-in-out;
+}
+
+#wpadminbar .ab-label {
+ display: inline-block;
+ height: 32px;
+}
+
+#wpadminbar .ab-submenu .ab-item {
+ color: #c3c4c7;
+ color: rgba(240, 246, 252, 0.7);
+}
+
+#wpadminbar .quicklinks .menupop ul li a,
+#wpadminbar .quicklinks .menupop ul li a strong,
+#wpadminbar .quicklinks .menupop.hover ul li a,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
+ color: #c3c4c7;
+ color: rgba(240, 246, 252, 0.7);
+}
+
+#wpadminbar .quicklinks .menupop ul li a:hover,
+#wpadminbar .quicklinks .menupop ul li a:focus,
+#wpadminbar .quicklinks .menupop ul li a:hover strong,
+#wpadminbar .quicklinks .menupop ul li a:focus strong,
+#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
+#wpadminbar .quicklinks .menupop.hover ul li a:hover,
+#wpadminbar .quicklinks .menupop.hover ul li a:focus,
+#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:hover,
+#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:focus,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
+#wpadminbar li:hover .ab-icon:before,
+#wpadminbar li:hover .ab-item:before,
+#wpadminbar li a:focus .ab-icon:before,
+#wpadminbar li .ab-item:focus:before,
+#wpadminbar li .ab-item:focus .ab-icon:before,
+#wpadminbar li.hover .ab-icon:before,
+#wpadminbar li.hover .ab-item:before,
+#wpadminbar li:hover #adminbarsearch:before,
+#wpadminbar li #adminbarsearch.adminbar-focused:before {
+ color: #72aee6;
+}
+
+#wpadminbar.mobile .quicklinks .ab-icon:before,
+#wpadminbar.mobile .quicklinks .ab-item:before {
+ color: #c3c4c7;
+}
+
+#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
+#wpadminbar.mobile .quicklinks .hover .ab-item:before {
+ color: #72aee6;
+}
+
+#wpadminbar .menupop .menupop > .ab-item .wp-admin-bar-arrow:before,
+#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
+ position: absolute;
+ font: normal 17px/1 dashicons;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#wpadminbar .menupop .menupop > .ab-item {
+ display: block;
+ padding-left: 2em;
+}
+
+#wpadminbar .menupop .menupop > .ab-item .wp-admin-bar-arrow:before {
+ top: 1px;
+ left: 10px;
+ padding: 4px 0;
+ content: "\f141";
+ color: inherit;
+}
+
+#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
+ padding-right: 2em;
+ padding-left: 1em;
+}
+
+#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item .wp-admin-bar-arrow:before {
+ top: 1px;
+ right: 6px;
+ content: "\f139";
+}
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
+ display: block;
+ position: relative;
+ left: auto;
+ margin: 0;
+ box-shadow: none;
+}
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #3c434a;
+}
+
+#wpadminbar .quicklinks .menupop .ab-sub-secondary > li > a:hover,
+#wpadminbar .quicklinks .menupop .ab-sub-secondary > li .ab-item:focus a {
+ color: #72aee6;
+}
+
+#wpadminbar .quicklinks a span#ab-updates {
+ background: #f0f0f1;
+ color: #2c3338;
+ display: inline;
+ padding: 2px 5px;
+ font-size: 10px;
+ font-weight: 600;
+ border-radius: 10px;
+}
+
+#wpadminbar .quicklinks a:hover span#ab-updates {
+ background: #fff;
+ color: #000;
+}
+
+#wpadminbar .ab-top-secondary {
+ float: left;
+}
+
+#wpadminbar ul li:last-child,
+#wpadminbar ul li:last-child .ab-item {
+ box-shadow: none;
+}
+
+/**
+ * Recovery Mode
+ */
+#wpadminbar #wp-admin-bar-recovery-mode {
+ color: #fff;
+ background-color: #d63638;
+}
+
+#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover >.ab-item,
+#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
+#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
+#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
+ color: #fff;
+ background-color: #d63638;
+}
+
+/**
+ * My Account
+ */
+#wp-admin-bar-my-account > ul {
+ min-width: 198px;
+}
+
+#wp-admin-bar-my-account:not(.with-avatar) > .ab-item {
+ display: inline-block;
+}
+
+#wp-admin-bar-my-account > .ab-item:before {
+ content: "\f110";
+ top: 2px;
+ float: left;
+ margin-right: 6px;
+ margin-left: 0;
+}
+
+#wp-admin-bar-my-account.with-avatar > .ab-item:before {
+ display: none;
+ content: none;
+}
+
+#wp-admin-bar-my-account.with-avatar > ul {
+ min-width: 270px;
+}
+
+#wpadminbar #wp-admin-bar-user-actions > li {
+ margin-right: 16px;
+ margin-left: 16px;
+}
+
+#wpadminbar #wp-admin-bar-user-actions.ab-submenu {
+ padding: 6px 0 12px;
+}
+
+#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
+ margin-right: 88px;
+}
+
+#wpadminbar #wp-admin-bar-user-info {
+ margin-top: 6px;
+ margin-bottom: 15px;
+ height: auto;
+ background: none;
+}
+
+#wp-admin-bar-user-info .avatar {
+ position: absolute;
+ right: -72px;
+ top: 4px;
+ width: 64px;
+ height: 64px;
+}
+
+#wpadminbar #wp-admin-bar-user-info a {
+ background: none;
+ height: auto;
+}
+
+#wpadminbar #wp-admin-bar-user-info span {
+ background: none;
+ padding: 0;
+ height: 18px;
+}
+
+#wpadminbar #wp-admin-bar-user-info .display-name,
+#wpadminbar #wp-admin-bar-user-info .username {
+ display: block;
+}
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #a7aaad;
+ font-size: 11px;
+}
+
+#wpadminbar #wp-admin-bar-my-account.with-avatar > .ab-empty-item img,
+#wpadminbar #wp-admin-bar-my-account.with-avatar > a img {
+ width: auto;
+ height: 16px;
+ padding: 0;
+ border: 1px solid #8c8f94;
+ background: #f0f0f1;
+ line-height: 1.84615384;
+ vertical-align: middle;
+ margin: -4px 6px 0 0;
+ float: none;
+ display: inline;
+}
+
+/**
+ * WP Logo
+ */
+#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
+ width: 15px;
+ height: 20px;
+ margin-left: 0;
+ padding: 6px 0 5px;
+}
+
+#wpadminbar #wp-admin-bar-wp-logo > .ab-item {
+ padding: 0 7px;
+}
+
+#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
+ content: "\f120";
+ top: 2px;
+}
+
+/*
+ * My Sites & Site Title
+ */
+#wpadminbar .quicklinks li .blavatar {
+ display: inline-block;
+ vertical-align: middle;
+ font: normal 16px/1 dashicons !important;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ color: #f0f0f1;
+}
+
+#wpadminbar .quicklinks li a:hover .blavatar,
+#wpadminbar .quicklinks li a:focus .blavatar,
+#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar {
+ color: #72aee6;
+}
+
+#wpadminbar .quicklinks li img.blavatar,
+#wpadminbar .quicklinks li div.blavatar:before {
+ height: 16px;
+ width: 16px;
+ margin: 0 -2px 2px 8px;
+}
+
+#wpadminbar .quicklinks li div.blavatar:before {
+ content: "\f120";
+ display: inline-block;
+}
+
+#wpadminbar #wp-admin-bar-appearance {
+ margin-top: -12px;
+}
+
+#wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
+#wpadminbar #wp-admin-bar-site-name > .ab-item:before {
+ content: "\f541";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-site-editor > .ab-item:before {
+ content: "\f100";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-customize > .ab-item:before {
+ content: "\f540";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-edit > .ab-item:before {
+ content: "\f464";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-site-name > .ab-item:before {
+ content: "\f226";
+}
+
+.wp-admin #wpadminbar #wp-admin-bar-site-name > .ab-item:before {
+ content: "\f102";
+}
+
+
+
+/**
+ * Comments
+ */
+#wpadminbar #wp-admin-bar-comments .ab-icon {
+ margin-left: 6px;
+}
+
+#wpadminbar #wp-admin-bar-comments .ab-icon:before {
+ content: "\f101";
+ top: 3px;
+}
+
+#wpadminbar #wp-admin-bar-comments .count-0 {
+ opacity: .5;
+}
+
+/**
+ * New Content
+ */
+#wpadminbar #wp-admin-bar-new-content .ab-icon:before {
+ content: "\f132";
+ top: 4px;
+}
+
+/**
+ * Updates
+ */
+#wpadminbar #wp-admin-bar-updates .ab-icon:before {
+ content: "\f463";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-updates.spin .ab-icon:before {
+ display: inline-block;
+ animation: rotation 2s infinite linear;
+}
+
+@media (prefers-reduced-motion: reduce) {
+ #wpadminbar #wp-admin-bar-updates.spin .ab-icon:before {
+ animation: none;
+ }
+}
+
+/**
+ * Search
+ */
+
+#wpadminbar #wp-admin-bar-search .ab-item {
+ padding: 0;
+ background: transparent;
+}
+
+#wpadminbar #adminbarsearch {
+ position: relative;
+ height: 32px;
+ padding: 0 2px;
+ z-index: 1;
+}
+
+#wpadminbar #adminbarsearch:before {
+ position: absolute;
+ top: 6px;
+ right: 5px;
+ z-index: 20;
+ font: normal 20px/1 dashicons !important;
+ content: "\f179";
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+/* The admin bar search field needs to reset many styles that might be inherited from the active Theme CSS. See ticket #40313. */
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input {
+ display: inline-block;
+ float: none;
+ position: relative;
+ z-index: 30;
+ font-size: 13px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 1.84615384;
+ text-indent: 0;
+ height: 24px;
+ width: 24px;
+ max-width: none;
+ padding: 0 24px 0 3px;
+ margin: 0;
+ color: #c3c4c7;
+ background-color: rgba(255, 255, 255, 0);
+ border: none;
+ outline: none;
+ cursor: pointer;
+ box-shadow: none;
+ box-sizing: border-box;
+ transition-duration: 400ms;
+ transition-property: width, background;
+ transition-timing-function: ease;
+}
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ z-index: 10;
+ color: #000;
+ width: 200px;
+ background-color: rgba(255, 255, 255, 0.9);
+ cursor: text;
+ border: 0;
+}
+
+#wpadminbar #adminbarsearch .adminbar-button {
+ display: none;
+}
+
+/**
+ * Customize support classes
+ */
+.no-customize-support .hide-if-no-customize,
+.customize-support .hide-if-customize,
+.no-customize-support #wpadminbar .hide-if-no-customize,
+.no-customize-support.wp-core-ui .hide-if-no-customize,
+.no-customize-support .wp-core-ui .hide-if-no-customize,
+.customize-support #wpadminbar .hide-if-customize,
+.customize-support.wp-core-ui .hide-if-customize,
+.customize-support .wp-core-ui .hide-if-customize {
+ display: none;
+}
+
+/* Skip link */
+#wpadminbar .screen-reader-text,
+#wpadminbar .screen-reader-text span {
+ 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;
+}
+
+#wpadminbar .screen-reader-shortcut {
+ position: absolute;
+ top: -1000em;
+}
+
+#wpadminbar .screen-reader-shortcut:focus {
+ right: 6px;
+ top: 7px;
+ height: auto;
+ width: auto;
+ display: block;
+ font-size: 14px;
+ font-weight: 600;
+ padding: 15px 23px 14px;
+ background: #f0f0f1;
+ color: #2271b1;
+ z-index: 100000;
+ line-height: normal;
+ text-decoration: none;
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+}
+
+@media screen and (max-width: 782px) {
+ html {
+ --wp-admin--admin-bar--height: 46px;
+ }
+
+ /* Toolbar Touchification*/
+ html #wpadminbar {
+ height: 46px;
+ min-width: 240px; /* match the min-width of the body in wp-admin/css/common.css */
+ }
+
+ #wpadminbar * {
+ font-size: 14px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 2.28571428;
+ }
+
+ #wpadminbar .quicklinks > ul > li > a,
+ #wpadminbar .quicklinks .ab-empty-item {
+ padding: 0;
+ height: 46px;
+ line-height: 3.28571428;
+ width: auto;
+ }
+
+ #wpadminbar .ab-icon {
+ font: 40px/1 dashicons !important;
+ margin: 0;
+ padding: 0;
+ width: 52px;
+ height: 46px;
+ text-align: center;
+ }
+
+ #wpadminbar .ab-icon:before {
+ text-align: center;
+ }
+
+ #wpadminbar .ab-submenu {
+ padding: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-site-name a.ab-item,
+ #wpadminbar #wp-admin-bar-my-sites a.ab-item,
+ #wpadminbar #wp-admin-bar-my-account a.ab-item {
+ text-overflow: clip;
+ }
+
+ #wpadminbar .quicklinks .menupop ul li .ab-item,
+ #wpadminbar .quicklinks .menupop ul li a strong,
+ #wpadminbar .quicklinks .menupop.hover ul li .ab-item,
+ #wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item,
+ #wpadminbar .shortlink-input {
+ line-height: 1.6;
+ }
+
+ #wpadminbar .ab-label {
+ 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;
+ }
+
+ #wpadminbar .menupop li:hover > .ab-sub-wrapper,
+ #wpadminbar .menupop li.hover > .ab-sub-wrapper {
+ margin-top: -46px;
+ }
+
+ #wpadminbar .ab-top-menu .menupop .ab-sub-wrapper .menupop > .ab-item {
+ padding-left: 30px;
+ }
+
+ #wpadminbar .menupop .menupop > .ab-item:before {
+ top: 10px;
+ left: 6px;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper .ab-item {
+ font-size: 16px;
+ padding: 8px 16px;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper a:empty {
+ display: none;
+ }
+
+ /* WP logo */
+ #wpadminbar #wp-admin-bar-wp-logo > .ab-item {
+ padding: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
+ padding: 0;
+ width: 52px;
+ height: 46px;
+ text-align: center;
+ vertical-align: top;
+ }
+
+ #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
+ font: 28px/1 dashicons !important;
+ top: -3px;
+ }
+
+ #wpadminbar .ab-icon,
+ #wpadminbar .ab-item:before {
+ padding: 0;
+ }
+
+ /* My Sites and "Site Title" menu */
+ #wpadminbar #wp-admin-bar-my-sites > .ab-item,
+ #wpadminbar #wp-admin-bar-site-name > .ab-item,
+ #wpadminbar #wp-admin-bar-site-editor > .ab-item,
+ #wpadminbar #wp-admin-bar-customize > .ab-item,
+ #wpadminbar #wp-admin-bar-edit > .ab-item,
+ #wpadminbar #wp-admin-bar-my-account > .ab-item {
+ text-indent: 100%;
+ white-space: nowrap;
+ overflow: hidden;
+ width: 52px;
+ padding: 0;
+ color: #a7aaad; /* @todo not needed? this text is hidden */
+ position: relative;
+ }
+
+ #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
+ #wpadminbar .ab-icon,
+ #wpadminbar .ab-item:before {
+ padding: 0;
+ margin-left: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-edit > .ab-item:before,
+ #wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
+ #wpadminbar #wp-admin-bar-site-name > .ab-item:before,
+ #wpadminbar #wp-admin-bar-site-editor > .ab-item:before,
+ #wpadminbar #wp-admin-bar-customize > .ab-item:before,
+ #wpadminbar #wp-admin-bar-my-account > .ab-item:before {
+ display: block;
+ text-indent: 0;
+ font: normal 32px/1 dashicons;
+ speak: never;
+ top: 7px;
+ width: 52px;
+ text-align: center;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ }
+
+ #wpadminbar #wp-admin-bar-appearance {
+ margin-top: 0;
+ }
+
+ #wpadminbar .quicklinks li .blavatar:before {
+ display: none;
+ }
+
+ /* Search */
+ #wpadminbar #wp-admin-bar-search {
+ display: none;
+ }
+
+ /* New Content */
+ #wpadminbar #wp-admin-bar-new-content .ab-icon:before {
+ top: 0;
+ line-height: 1.33333333;
+ height: 46px !important;
+ text-align: center;
+ width: 52px;
+ display: block;
+ }
+
+ /* Updates */
+ #wpadminbar #wp-admin-bar-updates {
+ text-align: center;
+ }
+
+ #wpadminbar #wp-admin-bar-updates .ab-icon:before {
+ top: 3px;
+ }
+
+ /* Comments */
+ #wpadminbar #wp-admin-bar-comments .ab-icon {
+ margin: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-comments .ab-icon:before {
+ display: block;
+ font-size: 34px;
+ height: 46px;
+ line-height: 1.38235294;
+ top: 0;
+ }
+
+ /* My Account */
+ #wpadminbar #wp-admin-bar-my-account > a {
+ position: relative;
+ white-space: nowrap;
+ text-indent: 150%; /* More than 100% indention is needed since this element has padding */
+ width: 28px;
+ padding: 0 10px;
+ overflow: hidden; /* Prevent link text from forcing horizontal scrolling on mobile */
+ }
+
+ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ position: absolute;
+ top: 13px;
+ left: 10px;
+ width: 26px;
+ height: 26px;
+ }
+
+ #wpadminbar #wp-admin-bar-user-actions.ab-submenu {
+ padding: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-user-actions.ab-submenu img.avatar {
+ display: none;
+ }
+
+ #wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
+ margin: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-user-info .display-name {
+ height: auto;
+ font-size: 16px;
+ line-height: 1.5;
+ color: #f0f0f1;
+ }
+
+ #wpadminbar #wp-admin-bar-user-info a {
+ padding-top: 4px;
+ }
+
+ #wpadminbar #wp-admin-bar-user-info .username {
+ line-height: 0.8 !important;
+ margin-bottom: -2px;
+ }
+
+ /* Show only default top level items */
+ #wp-toolbar > ul > li {
+ display: none;
+ }
+
+ #wpadminbar li#wp-admin-bar-menu-toggle,
+ #wpadminbar li#wp-admin-bar-wp-logo,
+ #wpadminbar li#wp-admin-bar-my-sites,
+ #wpadminbar li#wp-admin-bar-updates,
+ #wpadminbar li#wp-admin-bar-site-name,
+ #wpadminbar li#wp-admin-bar-site-editor,
+ #wpadminbar li#wp-admin-bar-customize,
+ #wpadminbar li#wp-admin-bar-new-content,
+ #wpadminbar li#wp-admin-bar-edit,
+ #wpadminbar li#wp-admin-bar-comments,
+ #wpadminbar li#wp-admin-bar-my-account {
+ display: block;
+ }
+
+ /* Allow dropdown list items to appear normally */
+ #wpadminbar li:hover ul li,
+ #wpadminbar li.hover ul li,
+ #wpadminbar li:hover ul li:hover ul li {
+ display: list-item;
+ }
+
+ /* Override default min-width so dropdown lists aren't stretched
+ to 100% viewport width at responsive sizes. */
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
+ min-width: -moz-fit-content;
+ min-width: fit-content;
+ }
+
+ #wpadminbar ul#wp-admin-bar-root-default > li {
+ margin-left: 0;
+ }
+
+ /* Experimental fix for touch toolbar dropdown positioning */
+ #wpadminbar .ab-top-menu,
+ #wpadminbar .ab-top-secondary,
+ #wpadminbar #wp-admin-bar-wp-logo,
+ #wpadminbar #wp-admin-bar-my-sites,
+ #wpadminbar #wp-admin-bar-site-name,
+ #wpadminbar #wp-admin-bar-updates,
+ #wpadminbar #wp-admin-bar-comments,
+ #wpadminbar #wp-admin-bar-new-content,
+ #wpadminbar #wp-admin-bar-edit,
+ #wpadminbar #wp-admin-bar-my-account {
+ position: static;
+ }
+
+ #wpadminbar #wp-admin-bar-my-account {
+ float: left;
+ }
+
+ .network-admin #wpadminbar ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account {
+ margin-left: 0;
+ }
+
+ /* Realign arrows on taller responsive submenus */
+
+ #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
+ top: 10px;
+ right: 0;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ #wpadminbar {
+ position: absolute;
+ }
+
+ #wp-responsive-overlay {
+ position: fixed;
+ top: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 400;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
+ width: 100%;
+ right: 0;
+ }
+
+ #wpadminbar .menupop .menupop > .ab-item:before {
+ display: none;
+ }
+
+ #wpadminbar #wp-admin-bar-wp-logo.menupop .ab-sub-wrapper {
+ margin-right: 0;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
+ margin: 0;
+ width: 100%;
+ top: auto;
+ right: auto;
+ position: relative;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper .ab-item {
+ font-size: 16px;
+ padding: 6px 30px 19px 15px;
+ }
+
+ #wpadminbar li:hover ul li ul li {
+ display: list-item;
+ }
+
+ #wpadminbar li#wp-admin-bar-wp-logo,
+ #wpadminbar li#wp-admin-bar-updates {
+ display: none;
+ }
+
+ /* Make submenus full-width at this size */
+
+ #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
+ position: static;
+ box-shadow: none;
+ }
+}
+
+/* Very narrow screens */
+@media screen and (max-width: 400px) {
+ #wpadminbar li#wp-admin-bar-comments {
+ display: none;
+ }
+}
diff --git a/static/wp-includes/css/admin-bar-rtl.min.css b/static/wp-includes/css/admin-bar-rtl.min.css
new file mode 100755
index 0000000..663ce13
--- /dev/null
+++ b/static/wp-includes/css/admin-bar-rtl.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+html{--wp-admin--admin-bar--height:32px;scroll-padding-top:var(--wp-admin--admin-bar--height)}#wpadminbar *{height:auto;width:auto;margin:0;padding:0;position:static;text-shadow:none;text-transform:none;letter-spacing:normal;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:2.46153846;border-radius:0;box-sizing:content-box;transition:none;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}.rtl #wpadminbar *{font-family:Tahoma,sans-serif}html:lang(he-il) .rtl #wpadminbar *{font-family:Arial,sans-serif}#wpadminbar .ab-empty-item{cursor:default}#wpadminbar .ab-empty-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#f0f0f1}#wpadminbar #wp-admin-bar-my-sites a.ab-item,#wpadminbar #wp-admin-bar-site-name a.ab-item{white-space:nowrap}#wpadminbar ul li:after,#wpadminbar ul li:before{content:normal}#wpadminbar a,#wpadminbar a img,#wpadminbar a img:hover,#wpadminbar a:hover{border:none;text-decoration:none;background:0 0;box-shadow:none}#wpadminbar a:active,#wpadminbar a:focus,#wpadminbar div,#wpadminbar input[type=email],#wpadminbar input[type=number],#wpadminbar input[type=password],#wpadminbar input[type=search],#wpadminbar input[type=text],#wpadminbar input[type=url],#wpadminbar select,#wpadminbar textarea{box-shadow:none}#wpadminbar a:focus{outline-offset:-1px}#wpadminbar{direction:rtl;color:#c3c4c7;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:2.46153846;height:32px;position:fixed;top:0;right:0;width:100%;min-width:600px;z-index:99999;background:#1d2327}#wpadminbar .ab-sub-wrapper,#wpadminbar ul,#wpadminbar ul li{background:0 0;clear:none;list-style:none;margin:0;padding:0;position:relative;text-indent:0;z-index:99999}#wpadminbar ul#wp-admin-bar-root-default>li{margin-left:0}#wpadminbar .quicklinks ul{text-align:right}#wpadminbar li{float:right}#wpadminbar .ab-empty-item{outline:0}#wpadminbar .quicklinks .ab-top-secondary>li{float:left}#wpadminbar .quicklinks .ab-empty-item,#wpadminbar .quicklinks a,#wpadminbar .shortlink-input{height:32px;display:block;padding:0 10px;margin:0}#wpadminbar .quicklinks>ul>li>a{padding:0 7px 0 8px}#wpadminbar .menupop .ab-sub-wrapper,#wpadminbar .shortlink-input{margin:0;padding:0;box-shadow:0 3px 5px rgba(0,0,0,.2);background:#2c3338;display:none;position:absolute;float:none}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper{min-width:100%}#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper{left:0;right:auto}#wpadminbar .ab-submenu{padding:6px 0}#wpadminbar .selected .shortlink-input{display:block}#wpadminbar .quicklinks .menupop ul li{float:none}#wpadminbar .quicklinks .menupop ul li a strong{font-weight:600}#wpadminbar .quicklinks .menupop ul li .ab-item,#wpadminbar .quicklinks .menupop ul li a strong,#wpadminbar .quicklinks .menupop.hover ul li .ab-item,#wpadminbar .shortlink-input,#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item{line-height:2;height:26px;white-space:nowrap;min-width:140px}#wpadminbar .shortlink-input{width:200px}#wpadminbar li.hover>.ab-sub-wrapper,#wpadminbar.nojs li:hover>.ab-sub-wrapper{display:block}#wpadminbar .menupop li.hover>.ab-sub-wrapper,#wpadminbar .menupop li:hover>.ab-sub-wrapper{margin-right:100%;margin-top:-32px}#wpadminbar .ab-top-secondary .menupop li.hover>.ab-sub-wrapper,#wpadminbar .ab-top-secondary .menupop li:hover>.ab-sub-wrapper{margin-right:0;right:inherit;left:100%}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{background:#2c3338;color:#72aee6}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label{color:#72aee6}#wpadminbar .ab-icon,#wpadminbar .ab-item:before,#wpadminbar>#wp-toolbar>#wp-admin-bar-root-default .ab-icon,.wp-admin-bar-arrow{position:relative;float:right;font:normal 20px/1 dashicons;speak:never;padding:4px 0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-image:none!important;margin-left:6px}#wpadminbar #adminbarsearch:before,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:before{color:#a7aaad;color:rgba(240,246,252,.6)}#wpadminbar #adminbarsearch:before,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:before{position:relative;transition:color .1s ease-in-out}#wpadminbar .ab-label{display:inline-block;height:32px}#wpadminbar .ab-submenu .ab-item{color:#c3c4c7;color:rgba(240,246,252,.7)}#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop ul li a strong,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:#c3c4c7;color:rgba(240,246,252,.7)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:focus,#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#72aee6}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#c3c4c7}#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#72aee6}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item:before,#wpadminbar .menupop .menupop>.ab-item .wp-admin-bar-arrow:before{position:absolute;font:normal 17px/1 dashicons;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpadminbar .menupop .menupop>.ab-item{display:block;padding-left:2em}#wpadminbar .menupop .menupop>.ab-item .wp-admin-bar-arrow:before{top:1px;left:10px;padding:4px 0;content:"\f141";color:inherit}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item{padding-right:2em;padding-left:1em}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item .wp-admin-bar-arrow:before{top:1px;right:6px;content:"\f139"}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary{display:block;position:relative;left:auto;margin:0;box-shadow:none}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#3c434a}#wpadminbar .quicklinks .menupop .ab-sub-secondary>li .ab-item:focus a,#wpadminbar .quicklinks .menupop .ab-sub-secondary>li>a:hover{color:#72aee6}#wpadminbar .quicklinks a span#ab-updates{background:#f0f0f1;color:#2c3338;display:inline;padding:2px 5px;font-size:10px;font-weight:600;border-radius:10px}#wpadminbar .quicklinks a:hover span#ab-updates{background:#fff;color:#000}#wpadminbar .ab-top-secondary{float:left}#wpadminbar ul li:last-child,#wpadminbar ul li:last-child .ab-item{box-shadow:none}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#d63638}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:#d63638}#wp-admin-bar-my-account>ul{min-width:198px}#wp-admin-bar-my-account:not(.with-avatar)>.ab-item{display:inline-block}#wp-admin-bar-my-account>.ab-item:before{content:"\f110";top:2px;float:left;margin-right:6px;margin-left:0}#wp-admin-bar-my-account.with-avatar>.ab-item:before{display:none;content:none}#wp-admin-bar-my-account.with-avatar>ul{min-width:270px}#wpadminbar #wp-admin-bar-user-actions>li{margin-right:16px;margin-left:16px}#wpadminbar #wp-admin-bar-user-actions.ab-submenu{padding:6px 0 12px}#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions>li{margin-right:88px}#wpadminbar #wp-admin-bar-user-info{margin-top:6px;margin-bottom:15px;height:auto;background:0 0}#wp-admin-bar-user-info .avatar{position:absolute;right:-72px;top:4px;width:64px;height:64px}#wpadminbar #wp-admin-bar-user-info a{background:0 0;height:auto}#wpadminbar #wp-admin-bar-user-info span{background:0 0;padding:0;height:18px}#wpadminbar #wp-admin-bar-user-info .display-name,#wpadminbar #wp-admin-bar-user-info .username{display:block}#wpadminbar #wp-admin-bar-user-info .username{color:#a7aaad;font-size:11px}#wpadminbar #wp-admin-bar-my-account.with-avatar>.ab-empty-item img,#wpadminbar #wp-admin-bar-my-account.with-avatar>a img{width:auto;height:16px;padding:0;border:1px solid #8c8f94;background:#f0f0f1;line-height:1.84615384;vertical-align:middle;margin:-4px 6px 0 0;float:none;display:inline}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon{width:15px;height:20px;margin-left:0;padding:6px 0 5px}#wpadminbar #wp-admin-bar-wp-logo>.ab-item{padding:0 7px}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon:before{content:"\f120";top:2px}#wpadminbar .quicklinks li .blavatar{display:inline-block;vertical-align:middle;font:normal 16px/1 dashicons!important;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f0f0f1}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar{color:#72aee6}#wpadminbar .quicklinks li div.blavatar:before,#wpadminbar .quicklinks li img.blavatar{height:16px;width:16px;margin:0 -2px 2px 8px}#wpadminbar .quicklinks li div.blavatar:before{content:"\f120";display:inline-block}#wpadminbar #wp-admin-bar-appearance{margin-top:-12px}#wpadminbar #wp-admin-bar-my-sites>.ab-item:before,#wpadminbar #wp-admin-bar-site-name>.ab-item:before{content:"\f541";top:2px}#wpadminbar #wp-admin-bar-site-editor>.ab-item:before{content:"\f100";top:2px}#wpadminbar #wp-admin-bar-customize>.ab-item:before{content:"\f540";top:2px}#wpadminbar #wp-admin-bar-edit>.ab-item:before{content:"\f464";top:2px}#wpadminbar #wp-admin-bar-site-name>.ab-item:before{content:"\f226"}.wp-admin #wpadminbar #wp-admin-bar-site-name>.ab-item:before{content:"\f102"}#wpadminbar #wp-admin-bar-comments .ab-icon{margin-left:6px}#wpadminbar #wp-admin-bar-comments .ab-icon:before{content:"\f101";top:3px}#wpadminbar #wp-admin-bar-comments .count-0{opacity:.5}#wpadminbar #wp-admin-bar-new-content .ab-icon:before{content:"\f132";top:4px}#wpadminbar #wp-admin-bar-updates .ab-icon:before{content:"\f463";top:2px}#wpadminbar #wp-admin-bar-updates.spin .ab-icon:before{display:inline-block;animation:rotation 2s infinite linear}@media (prefers-reduced-motion:reduce){#wpadminbar #wp-admin-bar-updates.spin .ab-icon:before{animation:none}}#wpadminbar #wp-admin-bar-search .ab-item{padding:0;background:0 0}#wpadminbar #adminbarsearch{position:relative;height:32px;padding:0 2px;z-index:1}#wpadminbar #adminbarsearch:before{position:absolute;top:6px;right:5px;z-index:20;font:normal 20px/1 dashicons!important;content:"\f179";speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input{display:inline-block;float:none;position:relative;z-index:30;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.84615384;text-indent:0;height:24px;width:24px;max-width:none;padding:0 24px 0 3px;margin:0;color:#c3c4c7;background-color:rgba(255,255,255,0);border:none;outline:0;cursor:pointer;box-shadow:none;box-sizing:border-box;transition-duration:.4s;transition-property:width,background;transition-timing-function:ease}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{z-index:10;color:#000;width:200px;background-color:rgba(255,255,255,.9);cursor:text;border:0}#wpadminbar #adminbarsearch .adminbar-button{display:none}.customize-support #wpadminbar .hide-if-customize,.customize-support .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.no-customize-support #wpadminbar .hide-if-no-customize,.no-customize-support .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize{display:none}#wpadminbar .screen-reader-text,#wpadminbar .screen-reader-text span{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}#wpadminbar .screen-reader-shortcut{position:absolute;top:-1000em}#wpadminbar .screen-reader-shortcut:focus{right:6px;top:7px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f0f0f1;color:#2271b1;z-index:100000;line-height:normal;text-decoration:none;box-shadow:0 0 2px 2px rgba(0,0,0,.6)}@media screen and (max-width:782px){html{--wp-admin--admin-bar--height:46px}html #wpadminbar{height:46px;min-width:240px}#wpadminbar *{font-size:14px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:2.28571428}#wpadminbar .quicklinks .ab-empty-item,#wpadminbar .quicklinks>ul>li>a{padding:0;height:46px;line-height:3.28571428;width:auto}#wpadminbar .ab-icon{font:40px/1 dashicons!important;margin:0;padding:0;width:52px;height:46px;text-align:center}#wpadminbar .ab-icon:before{text-align:center}#wpadminbar .ab-submenu{padding:0}#wpadminbar #wp-admin-bar-my-account a.ab-item,#wpadminbar #wp-admin-bar-my-sites a.ab-item,#wpadminbar #wp-admin-bar-site-name a.ab-item{text-overflow:clip}#wpadminbar .quicklinks .menupop ul li .ab-item,#wpadminbar .quicklinks .menupop ul li a strong,#wpadminbar .quicklinks .menupop.hover ul li .ab-item,#wpadminbar .shortlink-input,#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item{line-height:1.6}#wpadminbar .ab-label{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}#wpadminbar .menupop li.hover>.ab-sub-wrapper,#wpadminbar .menupop li:hover>.ab-sub-wrapper{margin-top:-46px}#wpadminbar .ab-top-menu .menupop .ab-sub-wrapper .menupop>.ab-item{padding-left:30px}#wpadminbar .menupop .menupop>.ab-item:before{top:10px;left:6px}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper .ab-item{font-size:16px;padding:8px 16px}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper a:empty{display:none}#wpadminbar #wp-admin-bar-wp-logo>.ab-item{padding:0}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon{padding:0;width:52px;height:46px;text-align:center;vertical-align:top}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon:before{font:28px/1 dashicons!important;top:-3px}#wpadminbar .ab-icon,#wpadminbar .ab-item:before{padding:0}#wpadminbar #wp-admin-bar-customize>.ab-item,#wpadminbar #wp-admin-bar-edit>.ab-item,#wpadminbar #wp-admin-bar-my-account>.ab-item,#wpadminbar #wp-admin-bar-my-sites>.ab-item,#wpadminbar #wp-admin-bar-site-editor>.ab-item,#wpadminbar #wp-admin-bar-site-name>.ab-item{text-indent:100%;white-space:nowrap;overflow:hidden;width:52px;padding:0;color:#a7aaad;position:relative}#wpadminbar .ab-icon,#wpadminbar .ab-item:before,#wpadminbar>#wp-toolbar>#wp-admin-bar-root-default .ab-icon{padding:0;margin-left:0}#wpadminbar #wp-admin-bar-customize>.ab-item:before,#wpadminbar #wp-admin-bar-edit>.ab-item:before,#wpadminbar #wp-admin-bar-my-account>.ab-item:before,#wpadminbar #wp-admin-bar-my-sites>.ab-item:before,#wpadminbar #wp-admin-bar-site-editor>.ab-item:before,#wpadminbar #wp-admin-bar-site-name>.ab-item:before{display:block;text-indent:0;font:normal 32px/1 dashicons;speak:never;top:7px;width:52px;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpadminbar #wp-admin-bar-appearance{margin-top:0}#wpadminbar .quicklinks li .blavatar:before{display:none}#wpadminbar #wp-admin-bar-search{display:none}#wpadminbar #wp-admin-bar-new-content .ab-icon:before{top:0;line-height:1.33333333;height:46px!important;text-align:center;width:52px;display:block}#wpadminbar #wp-admin-bar-updates{text-align:center}#wpadminbar #wp-admin-bar-updates .ab-icon:before{top:3px}#wpadminbar #wp-admin-bar-comments .ab-icon{margin:0}#wpadminbar #wp-admin-bar-comments .ab-icon:before{display:block;font-size:34px;height:46px;line-height:1.38235294;top:0}#wpadminbar #wp-admin-bar-my-account>a{position:relative;white-space:nowrap;text-indent:150%;width:28px;padding:0 10px;overflow:hidden}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{position:absolute;top:13px;left:10px;width:26px;height:26px}#wpadminbar #wp-admin-bar-user-actions.ab-submenu{padding:0}#wpadminbar #wp-admin-bar-user-actions.ab-submenu img.avatar{display:none}#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions>li{margin:0}#wpadminbar #wp-admin-bar-user-info .display-name{height:auto;font-size:16px;line-height:1.5;color:#f0f0f1}#wpadminbar #wp-admin-bar-user-info a{padding-top:4px}#wpadminbar #wp-admin-bar-user-info .username{line-height:.8!important;margin-bottom:-2px}#wp-toolbar>ul>li{display:none}#wpadminbar li#wp-admin-bar-comments,#wpadminbar li#wp-admin-bar-customize,#wpadminbar li#wp-admin-bar-edit,#wpadminbar li#wp-admin-bar-menu-toggle,#wpadminbar li#wp-admin-bar-my-account,#wpadminbar li#wp-admin-bar-my-sites,#wpadminbar li#wp-admin-bar-new-content,#wpadminbar li#wp-admin-bar-site-editor,#wpadminbar li#wp-admin-bar-site-name,#wpadminbar li#wp-admin-bar-updates,#wpadminbar li#wp-admin-bar-wp-logo{display:block}#wpadminbar li.hover ul li,#wpadminbar li:hover ul li,#wpadminbar li:hover ul li:hover ul li{display:list-item}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper{min-width:-moz-fit-content;min-width:fit-content}#wpadminbar ul#wp-admin-bar-root-default>li{margin-left:0}#wpadminbar #wp-admin-bar-comments,#wpadminbar #wp-admin-bar-edit,#wpadminbar #wp-admin-bar-my-account,#wpadminbar #wp-admin-bar-my-sites,#wpadminbar #wp-admin-bar-new-content,#wpadminbar #wp-admin-bar-site-name,#wpadminbar #wp-admin-bar-updates,#wpadminbar #wp-admin-bar-wp-logo,#wpadminbar .ab-top-menu,#wpadminbar .ab-top-secondary{position:static}#wpadminbar #wp-admin-bar-my-account{float:left}.network-admin #wpadminbar ul#wp-admin-bar-top-secondary>li#wp-admin-bar-my-account{margin-left:0}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item:before{top:10px;right:0}}@media screen and (max-width:600px){#wpadminbar{position:absolute}#wp-responsive-overlay{position:fixed;top:0;right:0;width:100%;height:100%;z-index:400}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper{width:100%;right:0}#wpadminbar .menupop .menupop>.ab-item:before{display:none}#wpadminbar #wp-admin-bar-wp-logo.menupop .ab-sub-wrapper{margin-right:0}#wpadminbar .ab-top-menu>.menupop li>.ab-sub-wrapper{margin:0;width:100%;top:auto;right:auto;position:relative}#wpadminbar .ab-top-menu>.menupop li>.ab-sub-wrapper .ab-item{font-size:16px;padding:6px 30px 19px 15px}#wpadminbar li:hover ul li ul li{display:list-item}#wpadminbar li#wp-admin-bar-updates,#wpadminbar li#wp-admin-bar-wp-logo{display:none}#wpadminbar .ab-top-menu>.menupop li>.ab-sub-wrapper{position:static;box-shadow:none}}@media screen and (max-width:400px){#wpadminbar li#wp-admin-bar-comments{display:none}}
\ No newline at end of file
diff --git a/static/wp-includes/css/admin-bar.css b/static/wp-includes/css/admin-bar.css
new file mode 100755
index 0000000..32b9520
--- /dev/null
+++ b/static/wp-includes/css/admin-bar.css
@@ -0,0 +1,1118 @@
+html {
+ --wp-admin--admin-bar--height: 32px;
+ scroll-padding-top: var(--wp-admin--admin-bar--height);
+}
+
+#wpadminbar * {
+ height: auto;
+ width: auto;
+ margin: 0;
+ padding: 0;
+ position: static;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ font-size: 13px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 2.46153846;
+ border-radius: 0;
+ box-sizing: content-box;
+ transition: none;
+ -webkit-font-smoothing: subpixel-antialiased; /* Prevent Safari from switching to standard antialiasing on hover */
+ -moz-osx-font-smoothing: auto; /* Prevent Firefox from inheriting from themes that use other values */
+}
+
+.rtl #wpadminbar * {
+ font-family: Tahoma, sans-serif;
+}
+
+html:lang(he-il) .rtl #wpadminbar * {
+ font-family: Arial, sans-serif;
+}
+
+#wpadminbar .ab-empty-item {
+ cursor: default;
+}
+
+#wpadminbar .ab-empty-item,
+#wpadminbar a.ab-item,
+#wpadminbar > #wp-toolbar span.ab-label,
+#wpadminbar > #wp-toolbar span.noticon {
+ color: #f0f0f1;
+}
+
+#wpadminbar #wp-admin-bar-site-name a.ab-item,
+#wpadminbar #wp-admin-bar-my-sites a.ab-item {
+ white-space: nowrap;
+}
+
+#wpadminbar ul li:before,
+#wpadminbar ul li:after {
+ content: normal;
+}
+
+#wpadminbar a,
+#wpadminbar a:hover,
+#wpadminbar a img,
+#wpadminbar a img:hover {
+ border: none;
+ text-decoration: none;
+ background: none;
+ box-shadow: none;
+}
+
+#wpadminbar a:focus,
+#wpadminbar a:active,
+#wpadminbar input[type="text"],
+#wpadminbar input[type="password"],
+#wpadminbar input[type="number"],
+#wpadminbar input[type="search"],
+#wpadminbar input[type="email"],
+#wpadminbar input[type="url"],
+#wpadminbar select,
+#wpadminbar textarea,
+#wpadminbar div {
+ box-shadow: none;
+}
+
+#wpadminbar a:focus {
+ /* Inherits transparent outline only visible in Windows High Contrast mode */
+ outline-offset: -1px;
+}
+
+#wpadminbar {
+ direction: ltr;
+ color: #c3c4c7;
+ font-size: 13px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 2.46153846;
+ height: 32px;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ min-width: 600px; /* match the min-width of the body in wp-admin/css/common.css */
+ z-index: 99999;
+ background: #1d2327;
+}
+
+#wpadminbar .ab-sub-wrapper,
+#wpadminbar ul,
+#wpadminbar ul li {
+ background: none;
+ clear: none;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: relative;
+ text-indent: 0;
+ z-index: 99999;
+}
+
+#wpadminbar ul#wp-admin-bar-root-default>li {
+ margin-right: 0;
+}
+
+#wpadminbar .quicklinks ul {
+ text-align: left;
+}
+
+#wpadminbar li {
+ float: left;
+}
+
+#wpadminbar .ab-empty-item {
+ outline: none;
+}
+
+#wpadminbar .quicklinks .ab-top-secondary > li {
+ float: right;
+}
+
+#wpadminbar .quicklinks a,
+#wpadminbar .quicklinks .ab-empty-item,
+#wpadminbar .shortlink-input {
+ height: 32px;
+ display: block;
+ padding: 0 10px;
+ margin: 0;
+}
+
+#wpadminbar .quicklinks > ul > li > a {
+ padding: 0 8px 0 7px;
+}
+
+#wpadminbar .menupop .ab-sub-wrapper,
+#wpadminbar .shortlink-input {
+ margin: 0;
+ padding: 0;
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
+ background: #2c3338;
+ display: none;
+ position: absolute;
+ float: none;
+}
+
+#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
+ min-width: 100%;
+}
+
+#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
+ right: 0;
+ left: auto;
+}
+
+#wpadminbar .ab-submenu {
+ padding: 6px 0;
+}
+
+#wpadminbar .selected .shortlink-input {
+ display: block;
+}
+
+#wpadminbar .quicklinks .menupop ul li {
+ float: none;
+}
+
+#wpadminbar .quicklinks .menupop ul li a strong {
+ font-weight: 600;
+}
+
+#wpadminbar .quicklinks .menupop ul li .ab-item,
+#wpadminbar .quicklinks .menupop ul li a strong,
+#wpadminbar .quicklinks .menupop.hover ul li .ab-item,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item,
+#wpadminbar .shortlink-input {
+ line-height: 2;
+ height: 26px;
+ white-space: nowrap;
+ min-width: 140px;
+}
+
+#wpadminbar .shortlink-input {
+ width: 200px;
+}
+
+#wpadminbar.nojs li:hover > .ab-sub-wrapper,
+#wpadminbar li.hover > .ab-sub-wrapper {
+ display: block;
+}
+
+#wpadminbar .menupop li:hover > .ab-sub-wrapper,
+#wpadminbar .menupop li.hover > .ab-sub-wrapper {
+ margin-left: 100%;
+ margin-top: -32px;
+}
+
+#wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper,
+#wpadminbar .ab-top-secondary .menupop li.hover > .ab-sub-wrapper {
+ margin-left: 0;
+ left: inherit;
+ right: 100%;
+}
+
+#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
+#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
+#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
+#wpadminbar .ab-top-menu > li.hover > .ab-item {
+ background: #2c3338;
+ color: #72aee6;
+}
+
+#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
+#wpadminbar > #wp-toolbar li.hover span.ab-label,
+#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
+ color: #72aee6;
+}
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
+#wpadminbar .ab-icon,
+#wpadminbar .ab-item:before,
+.wp-admin-bar-arrow {
+ position: relative;
+ float: left;
+ font: normal 20px/1 dashicons;
+ speak: never;
+ padding: 4px 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ background-image: none !important;
+ margin-right: 6px;
+}
+
+#wpadminbar .ab-icon:before,
+#wpadminbar .ab-item:before,
+#wpadminbar #adminbarsearch:before {
+ color: #a7aaad;
+ color: rgba(240, 246, 252, 0.6);
+}
+
+#wpadminbar .ab-icon:before,
+#wpadminbar .ab-item:before,
+#wpadminbar #adminbarsearch:before {
+ position: relative;
+ transition: color .1s ease-in-out;
+}
+
+#wpadminbar .ab-label {
+ display: inline-block;
+ height: 32px;
+}
+
+#wpadminbar .ab-submenu .ab-item {
+ color: #c3c4c7;
+ color: rgba(240, 246, 252, 0.7);
+}
+
+#wpadminbar .quicklinks .menupop ul li a,
+#wpadminbar .quicklinks .menupop ul li a strong,
+#wpadminbar .quicklinks .menupop.hover ul li a,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
+ color: #c3c4c7;
+ color: rgba(240, 246, 252, 0.7);
+}
+
+#wpadminbar .quicklinks .menupop ul li a:hover,
+#wpadminbar .quicklinks .menupop ul li a:focus,
+#wpadminbar .quicklinks .menupop ul li a:hover strong,
+#wpadminbar .quicklinks .menupop ul li a:focus strong,
+#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
+#wpadminbar .quicklinks .menupop.hover ul li a:hover,
+#wpadminbar .quicklinks .menupop.hover ul li a:focus,
+#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:hover,
+#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:focus,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
+#wpadminbar li:hover .ab-icon:before,
+#wpadminbar li:hover .ab-item:before,
+#wpadminbar li a:focus .ab-icon:before,
+#wpadminbar li .ab-item:focus:before,
+#wpadminbar li .ab-item:focus .ab-icon:before,
+#wpadminbar li.hover .ab-icon:before,
+#wpadminbar li.hover .ab-item:before,
+#wpadminbar li:hover #adminbarsearch:before,
+#wpadminbar li #adminbarsearch.adminbar-focused:before {
+ color: #72aee6;
+}
+
+#wpadminbar.mobile .quicklinks .ab-icon:before,
+#wpadminbar.mobile .quicklinks .ab-item:before {
+ color: #c3c4c7;
+}
+
+#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
+#wpadminbar.mobile .quicklinks .hover .ab-item:before {
+ color: #72aee6;
+}
+
+#wpadminbar .menupop .menupop > .ab-item .wp-admin-bar-arrow:before,
+#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
+ position: absolute;
+ font: normal 17px/1 dashicons;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#wpadminbar .menupop .menupop > .ab-item {
+ display: block;
+ padding-right: 2em;
+}
+
+#wpadminbar .menupop .menupop > .ab-item .wp-admin-bar-arrow:before {
+ top: 1px;
+ right: 10px;
+ padding: 4px 0;
+ content: "\f139";
+ color: inherit;
+}
+
+#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
+ padding-left: 2em;
+ padding-right: 1em;
+}
+
+#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item .wp-admin-bar-arrow:before {
+ top: 1px;
+ left: 6px;
+ content: "\f141";
+}
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
+ display: block;
+ position: relative;
+ right: auto;
+ margin: 0;
+ box-shadow: none;
+}
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #3c434a;
+}
+
+#wpadminbar .quicklinks .menupop .ab-sub-secondary > li > a:hover,
+#wpadminbar .quicklinks .menupop .ab-sub-secondary > li .ab-item:focus a {
+ color: #72aee6;
+}
+
+#wpadminbar .quicklinks a span#ab-updates {
+ background: #f0f0f1;
+ color: #2c3338;
+ display: inline;
+ padding: 2px 5px;
+ font-size: 10px;
+ font-weight: 600;
+ border-radius: 10px;
+}
+
+#wpadminbar .quicklinks a:hover span#ab-updates {
+ background: #fff;
+ color: #000;
+}
+
+#wpadminbar .ab-top-secondary {
+ float: right;
+}
+
+#wpadminbar ul li:last-child,
+#wpadminbar ul li:last-child .ab-item {
+ box-shadow: none;
+}
+
+/**
+ * Recovery Mode
+ */
+#wpadminbar #wp-admin-bar-recovery-mode {
+ color: #fff;
+ background-color: #d63638;
+}
+
+#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover >.ab-item,
+#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
+#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
+#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
+ color: #fff;
+ background-color: #d63638;
+}
+
+/**
+ * My Account
+ */
+#wp-admin-bar-my-account > ul {
+ min-width: 198px;
+}
+
+#wp-admin-bar-my-account:not(.with-avatar) > .ab-item {
+ display: inline-block;
+}
+
+#wp-admin-bar-my-account > .ab-item:before {
+ content: "\f110";
+ top: 2px;
+ float: right;
+ margin-left: 6px;
+ margin-right: 0;
+}
+
+#wp-admin-bar-my-account.with-avatar > .ab-item:before {
+ display: none;
+ content: none;
+}
+
+#wp-admin-bar-my-account.with-avatar > ul {
+ min-width: 270px;
+}
+
+#wpadminbar #wp-admin-bar-user-actions > li {
+ margin-left: 16px;
+ margin-right: 16px;
+}
+
+#wpadminbar #wp-admin-bar-user-actions.ab-submenu {
+ padding: 6px 0 12px;
+}
+
+#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
+ margin-left: 88px;
+}
+
+#wpadminbar #wp-admin-bar-user-info {
+ margin-top: 6px;
+ margin-bottom: 15px;
+ height: auto;
+ background: none;
+}
+
+#wp-admin-bar-user-info .avatar {
+ position: absolute;
+ left: -72px;
+ top: 4px;
+ width: 64px;
+ height: 64px;
+}
+
+#wpadminbar #wp-admin-bar-user-info a {
+ background: none;
+ height: auto;
+}
+
+#wpadminbar #wp-admin-bar-user-info span {
+ background: none;
+ padding: 0;
+ height: 18px;
+}
+
+#wpadminbar #wp-admin-bar-user-info .display-name,
+#wpadminbar #wp-admin-bar-user-info .username {
+ display: block;
+}
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #a7aaad;
+ font-size: 11px;
+}
+
+#wpadminbar #wp-admin-bar-my-account.with-avatar > .ab-empty-item img,
+#wpadminbar #wp-admin-bar-my-account.with-avatar > a img {
+ width: auto;
+ height: 16px;
+ padding: 0;
+ border: 1px solid #8c8f94;
+ background: #f0f0f1;
+ line-height: 1.84615384;
+ vertical-align: middle;
+ margin: -4px 0 0 6px;
+ float: none;
+ display: inline;
+}
+
+/**
+ * WP Logo
+ */
+#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
+ width: 15px;
+ height: 20px;
+ margin-right: 0;
+ padding: 6px 0 5px;
+}
+
+#wpadminbar #wp-admin-bar-wp-logo > .ab-item {
+ padding: 0 7px;
+}
+
+#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
+ content: "\f120";
+ top: 2px;
+}
+
+/*
+ * My Sites & Site Title
+ */
+#wpadminbar .quicklinks li .blavatar {
+ display: inline-block;
+ vertical-align: middle;
+ font: normal 16px/1 dashicons !important;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ color: #f0f0f1;
+}
+
+#wpadminbar .quicklinks li a:hover .blavatar,
+#wpadminbar .quicklinks li a:focus .blavatar,
+#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar {
+ color: #72aee6;
+}
+
+#wpadminbar .quicklinks li img.blavatar,
+#wpadminbar .quicklinks li div.blavatar:before {
+ height: 16px;
+ width: 16px;
+ margin: 0 8px 2px -2px;
+}
+
+#wpadminbar .quicklinks li div.blavatar:before {
+ content: "\f120";
+ display: inline-block;
+}
+
+#wpadminbar #wp-admin-bar-appearance {
+ margin-top: -12px;
+}
+
+#wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
+#wpadminbar #wp-admin-bar-site-name > .ab-item:before {
+ content: "\f541";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-site-editor > .ab-item:before {
+ content: "\f100";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-customize > .ab-item:before {
+ content: "\f540";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-edit > .ab-item:before {
+ content: "\f464";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-site-name > .ab-item:before {
+ content: "\f226";
+}
+
+.wp-admin #wpadminbar #wp-admin-bar-site-name > .ab-item:before {
+ content: "\f102";
+}
+
+
+
+/**
+ * Comments
+ */
+#wpadminbar #wp-admin-bar-comments .ab-icon {
+ margin-right: 6px;
+}
+
+#wpadminbar #wp-admin-bar-comments .ab-icon:before {
+ content: "\f101";
+ top: 3px;
+}
+
+#wpadminbar #wp-admin-bar-comments .count-0 {
+ opacity: .5;
+}
+
+/**
+ * New Content
+ */
+#wpadminbar #wp-admin-bar-new-content .ab-icon:before {
+ content: "\f132";
+ top: 4px;
+}
+
+/**
+ * Updates
+ */
+#wpadminbar #wp-admin-bar-updates .ab-icon:before {
+ content: "\f463";
+ top: 2px;
+}
+
+#wpadminbar #wp-admin-bar-updates.spin .ab-icon:before {
+ display: inline-block;
+ animation: rotation 2s infinite linear;
+}
+
+@media (prefers-reduced-motion: reduce) {
+ #wpadminbar #wp-admin-bar-updates.spin .ab-icon:before {
+ animation: none;
+ }
+}
+
+/**
+ * Search
+ */
+
+#wpadminbar #wp-admin-bar-search .ab-item {
+ padding: 0;
+ background: transparent;
+}
+
+#wpadminbar #adminbarsearch {
+ position: relative;
+ height: 32px;
+ padding: 0 2px;
+ z-index: 1;
+}
+
+#wpadminbar #adminbarsearch:before {
+ position: absolute;
+ top: 6px;
+ left: 5px;
+ z-index: 20;
+ font: normal 20px/1 dashicons !important;
+ content: "\f179";
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+/* The admin bar search field needs to reset many styles that might be inherited from the active Theme CSS. See ticket #40313. */
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input {
+ display: inline-block;
+ float: none;
+ position: relative;
+ z-index: 30;
+ font-size: 13px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 1.84615384;
+ text-indent: 0;
+ height: 24px;
+ width: 24px;
+ max-width: none;
+ padding: 0 3px 0 24px;
+ margin: 0;
+ color: #c3c4c7;
+ background-color: rgba(255, 255, 255, 0);
+ border: none;
+ outline: none;
+ cursor: pointer;
+ box-shadow: none;
+ box-sizing: border-box;
+ transition-duration: 400ms;
+ transition-property: width, background;
+ transition-timing-function: ease;
+}
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ z-index: 10;
+ color: #000;
+ width: 200px;
+ background-color: rgba(255, 255, 255, 0.9);
+ cursor: text;
+ border: 0;
+}
+
+#wpadminbar #adminbarsearch .adminbar-button {
+ display: none;
+}
+
+/**
+ * Customize support classes
+ */
+.no-customize-support .hide-if-no-customize,
+.customize-support .hide-if-customize,
+.no-customize-support #wpadminbar .hide-if-no-customize,
+.no-customize-support.wp-core-ui .hide-if-no-customize,
+.no-customize-support .wp-core-ui .hide-if-no-customize,
+.customize-support #wpadminbar .hide-if-customize,
+.customize-support.wp-core-ui .hide-if-customize,
+.customize-support .wp-core-ui .hide-if-customize {
+ display: none;
+}
+
+/* Skip link */
+#wpadminbar .screen-reader-text,
+#wpadminbar .screen-reader-text span {
+ 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;
+}
+
+#wpadminbar .screen-reader-shortcut {
+ position: absolute;
+ top: -1000em;
+}
+
+#wpadminbar .screen-reader-shortcut:focus {
+ left: 6px;
+ top: 7px;
+ height: auto;
+ width: auto;
+ display: block;
+ font-size: 14px;
+ font-weight: 600;
+ padding: 15px 23px 14px;
+ background: #f0f0f1;
+ color: #2271b1;
+ z-index: 100000;
+ line-height: normal;
+ text-decoration: none;
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+}
+
+@media screen and (max-width: 782px) {
+ html {
+ --wp-admin--admin-bar--height: 46px;
+ }
+
+ /* Toolbar Touchification*/
+ html #wpadminbar {
+ height: 46px;
+ min-width: 240px; /* match the min-width of the body in wp-admin/css/common.css */
+ }
+
+ #wpadminbar * {
+ font-size: 14px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 2.28571428;
+ }
+
+ #wpadminbar .quicklinks > ul > li > a,
+ #wpadminbar .quicklinks .ab-empty-item {
+ padding: 0;
+ height: 46px;
+ line-height: 3.28571428;
+ width: auto;
+ }
+
+ #wpadminbar .ab-icon {
+ font: 40px/1 dashicons !important;
+ margin: 0;
+ padding: 0;
+ width: 52px;
+ height: 46px;
+ text-align: center;
+ }
+
+ #wpadminbar .ab-icon:before {
+ text-align: center;
+ }
+
+ #wpadminbar .ab-submenu {
+ padding: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-site-name a.ab-item,
+ #wpadminbar #wp-admin-bar-my-sites a.ab-item,
+ #wpadminbar #wp-admin-bar-my-account a.ab-item {
+ text-overflow: clip;
+ }
+
+ #wpadminbar .quicklinks .menupop ul li .ab-item,
+ #wpadminbar .quicklinks .menupop ul li a strong,
+ #wpadminbar .quicklinks .menupop.hover ul li .ab-item,
+ #wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item,
+ #wpadminbar .shortlink-input {
+ line-height: 1.6;
+ }
+
+ #wpadminbar .ab-label {
+ 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;
+ }
+
+ #wpadminbar .menupop li:hover > .ab-sub-wrapper,
+ #wpadminbar .menupop li.hover > .ab-sub-wrapper {
+ margin-top: -46px;
+ }
+
+ #wpadminbar .ab-top-menu .menupop .ab-sub-wrapper .menupop > .ab-item {
+ padding-right: 30px;
+ }
+
+ #wpadminbar .menupop .menupop > .ab-item:before {
+ top: 10px;
+ right: 6px;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper .ab-item {
+ font-size: 16px;
+ padding: 8px 16px;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper a:empty {
+ display: none;
+ }
+
+ /* WP logo */
+ #wpadminbar #wp-admin-bar-wp-logo > .ab-item {
+ padding: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
+ padding: 0;
+ width: 52px;
+ height: 46px;
+ text-align: center;
+ vertical-align: top;
+ }
+
+ #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
+ font: 28px/1 dashicons !important;
+ top: -3px;
+ }
+
+ #wpadminbar .ab-icon,
+ #wpadminbar .ab-item:before {
+ padding: 0;
+ }
+
+ /* My Sites and "Site Title" menu */
+ #wpadminbar #wp-admin-bar-my-sites > .ab-item,
+ #wpadminbar #wp-admin-bar-site-name > .ab-item,
+ #wpadminbar #wp-admin-bar-site-editor > .ab-item,
+ #wpadminbar #wp-admin-bar-customize > .ab-item,
+ #wpadminbar #wp-admin-bar-edit > .ab-item,
+ #wpadminbar #wp-admin-bar-my-account > .ab-item {
+ text-indent: 100%;
+ white-space: nowrap;
+ overflow: hidden;
+ width: 52px;
+ padding: 0;
+ color: #a7aaad; /* @todo not needed? this text is hidden */
+ position: relative;
+ }
+
+ #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
+ #wpadminbar .ab-icon,
+ #wpadminbar .ab-item:before {
+ padding: 0;
+ margin-right: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-edit > .ab-item:before,
+ #wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
+ #wpadminbar #wp-admin-bar-site-name > .ab-item:before,
+ #wpadminbar #wp-admin-bar-site-editor > .ab-item:before,
+ #wpadminbar #wp-admin-bar-customize > .ab-item:before,
+ #wpadminbar #wp-admin-bar-my-account > .ab-item:before {
+ display: block;
+ text-indent: 0;
+ font: normal 32px/1 dashicons;
+ speak: never;
+ top: 7px;
+ width: 52px;
+ text-align: center;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ }
+
+ #wpadminbar #wp-admin-bar-appearance {
+ margin-top: 0;
+ }
+
+ #wpadminbar .quicklinks li .blavatar:before {
+ display: none;
+ }
+
+ /* Search */
+ #wpadminbar #wp-admin-bar-search {
+ display: none;
+ }
+
+ /* New Content */
+ #wpadminbar #wp-admin-bar-new-content .ab-icon:before {
+ top: 0;
+ line-height: 1.33333333;
+ height: 46px !important;
+ text-align: center;
+ width: 52px;
+ display: block;
+ }
+
+ /* Updates */
+ #wpadminbar #wp-admin-bar-updates {
+ text-align: center;
+ }
+
+ #wpadminbar #wp-admin-bar-updates .ab-icon:before {
+ top: 3px;
+ }
+
+ /* Comments */
+ #wpadminbar #wp-admin-bar-comments .ab-icon {
+ margin: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-comments .ab-icon:before {
+ display: block;
+ font-size: 34px;
+ height: 46px;
+ line-height: 1.38235294;
+ top: 0;
+ }
+
+ /* My Account */
+ #wpadminbar #wp-admin-bar-my-account > a {
+ position: relative;
+ white-space: nowrap;
+ text-indent: 150%; /* More than 100% indention is needed since this element has padding */
+ width: 28px;
+ padding: 0 10px;
+ overflow: hidden; /* Prevent link text from forcing horizontal scrolling on mobile */
+ }
+
+ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ position: absolute;
+ top: 13px;
+ right: 10px;
+ width: 26px;
+ height: 26px;
+ }
+
+ #wpadminbar #wp-admin-bar-user-actions.ab-submenu {
+ padding: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-user-actions.ab-submenu img.avatar {
+ display: none;
+ }
+
+ #wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
+ margin: 0;
+ }
+
+ #wpadminbar #wp-admin-bar-user-info .display-name {
+ height: auto;
+ font-size: 16px;
+ line-height: 1.5;
+ color: #f0f0f1;
+ }
+
+ #wpadminbar #wp-admin-bar-user-info a {
+ padding-top: 4px;
+ }
+
+ #wpadminbar #wp-admin-bar-user-info .username {
+ line-height: 0.8 !important;
+ margin-bottom: -2px;
+ }
+
+ /* Show only default top level items */
+ #wp-toolbar > ul > li {
+ display: none;
+ }
+
+ #wpadminbar li#wp-admin-bar-menu-toggle,
+ #wpadminbar li#wp-admin-bar-wp-logo,
+ #wpadminbar li#wp-admin-bar-my-sites,
+ #wpadminbar li#wp-admin-bar-updates,
+ #wpadminbar li#wp-admin-bar-site-name,
+ #wpadminbar li#wp-admin-bar-site-editor,
+ #wpadminbar li#wp-admin-bar-customize,
+ #wpadminbar li#wp-admin-bar-new-content,
+ #wpadminbar li#wp-admin-bar-edit,
+ #wpadminbar li#wp-admin-bar-comments,
+ #wpadminbar li#wp-admin-bar-my-account {
+ display: block;
+ }
+
+ /* Allow dropdown list items to appear normally */
+ #wpadminbar li:hover ul li,
+ #wpadminbar li.hover ul li,
+ #wpadminbar li:hover ul li:hover ul li {
+ display: list-item;
+ }
+
+ /* Override default min-width so dropdown lists aren't stretched
+ to 100% viewport width at responsive sizes. */
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
+ min-width: -moz-fit-content;
+ min-width: fit-content;
+ }
+
+ #wpadminbar ul#wp-admin-bar-root-default > li {
+ margin-right: 0;
+ }
+
+ /* Experimental fix for touch toolbar dropdown positioning */
+ #wpadminbar .ab-top-menu,
+ #wpadminbar .ab-top-secondary,
+ #wpadminbar #wp-admin-bar-wp-logo,
+ #wpadminbar #wp-admin-bar-my-sites,
+ #wpadminbar #wp-admin-bar-site-name,
+ #wpadminbar #wp-admin-bar-updates,
+ #wpadminbar #wp-admin-bar-comments,
+ #wpadminbar #wp-admin-bar-new-content,
+ #wpadminbar #wp-admin-bar-edit,
+ #wpadminbar #wp-admin-bar-my-account {
+ position: static;
+ }
+
+ #wpadminbar #wp-admin-bar-my-account {
+ float: right;
+ }
+
+ .network-admin #wpadminbar ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account {
+ margin-right: 0;
+ }
+
+ /* Realign arrows on taller responsive submenus */
+
+ #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
+ top: 10px;
+ left: 0;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ #wpadminbar {
+ position: absolute;
+ }
+
+ #wp-responsive-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 400;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
+ width: 100%;
+ left: 0;
+ }
+
+ #wpadminbar .menupop .menupop > .ab-item:before {
+ display: none;
+ }
+
+ #wpadminbar #wp-admin-bar-wp-logo.menupop .ab-sub-wrapper {
+ margin-left: 0;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
+ margin: 0;
+ width: 100%;
+ top: auto;
+ left: auto;
+ position: relative;
+ }
+
+ #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper .ab-item {
+ font-size: 16px;
+ padding: 6px 15px 19px 30px;
+ }
+
+ #wpadminbar li:hover ul li ul li {
+ display: list-item;
+ }
+
+ #wpadminbar li#wp-admin-bar-wp-logo,
+ #wpadminbar li#wp-admin-bar-updates {
+ display: none;
+ }
+
+ /* Make submenus full-width at this size */
+
+ #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
+ position: static;
+ box-shadow: none;
+ }
+}
+
+/* Very narrow screens */
+@media screen and (max-width: 400px) {
+ #wpadminbar li#wp-admin-bar-comments {
+ display: none;
+ }
+}
diff --git a/static/wp-includes/css/admin-bar.min.css b/static/wp-includes/css/admin-bar.min.css
new file mode 100755
index 0000000..07d92fe
--- /dev/null
+++ b/static/wp-includes/css/admin-bar.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+html{--wp-admin--admin-bar--height:32px;scroll-padding-top:var(--wp-admin--admin-bar--height)}#wpadminbar *{height:auto;width:auto;margin:0;padding:0;position:static;text-shadow:none;text-transform:none;letter-spacing:normal;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:2.46153846;border-radius:0;box-sizing:content-box;transition:none;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}.rtl #wpadminbar *{font-family:Tahoma,sans-serif}html:lang(he-il) .rtl #wpadminbar *{font-family:Arial,sans-serif}#wpadminbar .ab-empty-item{cursor:default}#wpadminbar .ab-empty-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#f0f0f1}#wpadminbar #wp-admin-bar-my-sites a.ab-item,#wpadminbar #wp-admin-bar-site-name a.ab-item{white-space:nowrap}#wpadminbar ul li:after,#wpadminbar ul li:before{content:normal}#wpadminbar a,#wpadminbar a img,#wpadminbar a img:hover,#wpadminbar a:hover{border:none;text-decoration:none;background:0 0;box-shadow:none}#wpadminbar a:active,#wpadminbar a:focus,#wpadminbar div,#wpadminbar input[type=email],#wpadminbar input[type=number],#wpadminbar input[type=password],#wpadminbar input[type=search],#wpadminbar input[type=text],#wpadminbar input[type=url],#wpadminbar select,#wpadminbar textarea{box-shadow:none}#wpadminbar a:focus{outline-offset:-1px}#wpadminbar{direction:ltr;color:#c3c4c7;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:2.46153846;height:32px;position:fixed;top:0;left:0;width:100%;min-width:600px;z-index:99999;background:#1d2327}#wpadminbar .ab-sub-wrapper,#wpadminbar ul,#wpadminbar ul li{background:0 0;clear:none;list-style:none;margin:0;padding:0;position:relative;text-indent:0;z-index:99999}#wpadminbar ul#wp-admin-bar-root-default>li{margin-right:0}#wpadminbar .quicklinks ul{text-align:left}#wpadminbar li{float:left}#wpadminbar .ab-empty-item{outline:0}#wpadminbar .quicklinks .ab-top-secondary>li{float:right}#wpadminbar .quicklinks .ab-empty-item,#wpadminbar .quicklinks a,#wpadminbar .shortlink-input{height:32px;display:block;padding:0 10px;margin:0}#wpadminbar .quicklinks>ul>li>a{padding:0 8px 0 7px}#wpadminbar .menupop .ab-sub-wrapper,#wpadminbar .shortlink-input{margin:0;padding:0;box-shadow:0 3px 5px rgba(0,0,0,.2);background:#2c3338;display:none;position:absolute;float:none}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper{min-width:100%}#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper{right:0;left:auto}#wpadminbar .ab-submenu{padding:6px 0}#wpadminbar .selected .shortlink-input{display:block}#wpadminbar .quicklinks .menupop ul li{float:none}#wpadminbar .quicklinks .menupop ul li a strong{font-weight:600}#wpadminbar .quicklinks .menupop ul li .ab-item,#wpadminbar .quicklinks .menupop ul li a strong,#wpadminbar .quicklinks .menupop.hover ul li .ab-item,#wpadminbar .shortlink-input,#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item{line-height:2;height:26px;white-space:nowrap;min-width:140px}#wpadminbar .shortlink-input{width:200px}#wpadminbar li.hover>.ab-sub-wrapper,#wpadminbar.nojs li:hover>.ab-sub-wrapper{display:block}#wpadminbar .menupop li.hover>.ab-sub-wrapper,#wpadminbar .menupop li:hover>.ab-sub-wrapper{margin-left:100%;margin-top:-32px}#wpadminbar .ab-top-secondary .menupop li.hover>.ab-sub-wrapper,#wpadminbar .ab-top-secondary .menupop li:hover>.ab-sub-wrapper{margin-left:0;left:inherit;right:100%}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{background:#2c3338;color:#72aee6}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label{color:#72aee6}#wpadminbar .ab-icon,#wpadminbar .ab-item:before,#wpadminbar>#wp-toolbar>#wp-admin-bar-root-default .ab-icon,.wp-admin-bar-arrow{position:relative;float:left;font:normal 20px/1 dashicons;speak:never;padding:4px 0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-image:none!important;margin-right:6px}#wpadminbar #adminbarsearch:before,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:before{color:#a7aaad;color:rgba(240,246,252,.6)}#wpadminbar #adminbarsearch:before,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:before{position:relative;transition:color .1s ease-in-out}#wpadminbar .ab-label{display:inline-block;height:32px}#wpadminbar .ab-submenu .ab-item{color:#c3c4c7;color:rgba(240,246,252,.7)}#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop ul li a strong,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:#c3c4c7;color:rgba(240,246,252,.7)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:focus,#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#72aee6}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#c3c4c7}#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#72aee6}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item:before,#wpadminbar .menupop .menupop>.ab-item .wp-admin-bar-arrow:before{position:absolute;font:normal 17px/1 dashicons;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpadminbar .menupop .menupop>.ab-item{display:block;padding-right:2em}#wpadminbar .menupop .menupop>.ab-item .wp-admin-bar-arrow:before{top:1px;right:10px;padding:4px 0;content:"\f139";color:inherit}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item{padding-left:2em;padding-right:1em}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item .wp-admin-bar-arrow:before{top:1px;left:6px;content:"\f141"}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary{display:block;position:relative;right:auto;margin:0;box-shadow:none}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#3c434a}#wpadminbar .quicklinks .menupop .ab-sub-secondary>li .ab-item:focus a,#wpadminbar .quicklinks .menupop .ab-sub-secondary>li>a:hover{color:#72aee6}#wpadminbar .quicklinks a span#ab-updates{background:#f0f0f1;color:#2c3338;display:inline;padding:2px 5px;font-size:10px;font-weight:600;border-radius:10px}#wpadminbar .quicklinks a:hover span#ab-updates{background:#fff;color:#000}#wpadminbar .ab-top-secondary{float:right}#wpadminbar ul li:last-child,#wpadminbar ul li:last-child .ab-item{box-shadow:none}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#d63638}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:#d63638}#wp-admin-bar-my-account>ul{min-width:198px}#wp-admin-bar-my-account:not(.with-avatar)>.ab-item{display:inline-block}#wp-admin-bar-my-account>.ab-item:before{content:"\f110";top:2px;float:right;margin-left:6px;margin-right:0}#wp-admin-bar-my-account.with-avatar>.ab-item:before{display:none;content:none}#wp-admin-bar-my-account.with-avatar>ul{min-width:270px}#wpadminbar #wp-admin-bar-user-actions>li{margin-left:16px;margin-right:16px}#wpadminbar #wp-admin-bar-user-actions.ab-submenu{padding:6px 0 12px}#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions>li{margin-left:88px}#wpadminbar #wp-admin-bar-user-info{margin-top:6px;margin-bottom:15px;height:auto;background:0 0}#wp-admin-bar-user-info .avatar{position:absolute;left:-72px;top:4px;width:64px;height:64px}#wpadminbar #wp-admin-bar-user-info a{background:0 0;height:auto}#wpadminbar #wp-admin-bar-user-info span{background:0 0;padding:0;height:18px}#wpadminbar #wp-admin-bar-user-info .display-name,#wpadminbar #wp-admin-bar-user-info .username{display:block}#wpadminbar #wp-admin-bar-user-info .username{color:#a7aaad;font-size:11px}#wpadminbar #wp-admin-bar-my-account.with-avatar>.ab-empty-item img,#wpadminbar #wp-admin-bar-my-account.with-avatar>a img{width:auto;height:16px;padding:0;border:1px solid #8c8f94;background:#f0f0f1;line-height:1.84615384;vertical-align:middle;margin:-4px 0 0 6px;float:none;display:inline}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon{width:15px;height:20px;margin-right:0;padding:6px 0 5px}#wpadminbar #wp-admin-bar-wp-logo>.ab-item{padding:0 7px}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon:before{content:"\f120";top:2px}#wpadminbar .quicklinks li .blavatar{display:inline-block;vertical-align:middle;font:normal 16px/1 dashicons!important;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f0f0f1}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar{color:#72aee6}#wpadminbar .quicklinks li div.blavatar:before,#wpadminbar .quicklinks li img.blavatar{height:16px;width:16px;margin:0 8px 2px -2px}#wpadminbar .quicklinks li div.blavatar:before{content:"\f120";display:inline-block}#wpadminbar #wp-admin-bar-appearance{margin-top:-12px}#wpadminbar #wp-admin-bar-my-sites>.ab-item:before,#wpadminbar #wp-admin-bar-site-name>.ab-item:before{content:"\f541";top:2px}#wpadminbar #wp-admin-bar-site-editor>.ab-item:before{content:"\f100";top:2px}#wpadminbar #wp-admin-bar-customize>.ab-item:before{content:"\f540";top:2px}#wpadminbar #wp-admin-bar-edit>.ab-item:before{content:"\f464";top:2px}#wpadminbar #wp-admin-bar-site-name>.ab-item:before{content:"\f226"}.wp-admin #wpadminbar #wp-admin-bar-site-name>.ab-item:before{content:"\f102"}#wpadminbar #wp-admin-bar-comments .ab-icon{margin-right:6px}#wpadminbar #wp-admin-bar-comments .ab-icon:before{content:"\f101";top:3px}#wpadminbar #wp-admin-bar-comments .count-0{opacity:.5}#wpadminbar #wp-admin-bar-new-content .ab-icon:before{content:"\f132";top:4px}#wpadminbar #wp-admin-bar-updates .ab-icon:before{content:"\f463";top:2px}#wpadminbar #wp-admin-bar-updates.spin .ab-icon:before{display:inline-block;animation:rotation 2s infinite linear}@media (prefers-reduced-motion:reduce){#wpadminbar #wp-admin-bar-updates.spin .ab-icon:before{animation:none}}#wpadminbar #wp-admin-bar-search .ab-item{padding:0;background:0 0}#wpadminbar #adminbarsearch{position:relative;height:32px;padding:0 2px;z-index:1}#wpadminbar #adminbarsearch:before{position:absolute;top:6px;left:5px;z-index:20;font:normal 20px/1 dashicons!important;content:"\f179";speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input{display:inline-block;float:none;position:relative;z-index:30;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.84615384;text-indent:0;height:24px;width:24px;max-width:none;padding:0 3px 0 24px;margin:0;color:#c3c4c7;background-color:rgba(255,255,255,0);border:none;outline:0;cursor:pointer;box-shadow:none;box-sizing:border-box;transition-duration:.4s;transition-property:width,background;transition-timing-function:ease}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{z-index:10;color:#000;width:200px;background-color:rgba(255,255,255,.9);cursor:text;border:0}#wpadminbar #adminbarsearch .adminbar-button{display:none}.customize-support #wpadminbar .hide-if-customize,.customize-support .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.no-customize-support #wpadminbar .hide-if-no-customize,.no-customize-support .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize{display:none}#wpadminbar .screen-reader-text,#wpadminbar .screen-reader-text span{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}#wpadminbar .screen-reader-shortcut{position:absolute;top:-1000em}#wpadminbar .screen-reader-shortcut:focus{left:6px;top:7px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f0f0f1;color:#2271b1;z-index:100000;line-height:normal;text-decoration:none;box-shadow:0 0 2px 2px rgba(0,0,0,.6)}@media screen and (max-width:782px){html{--wp-admin--admin-bar--height:46px}html #wpadminbar{height:46px;min-width:240px}#wpadminbar *{font-size:14px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:2.28571428}#wpadminbar .quicklinks .ab-empty-item,#wpadminbar .quicklinks>ul>li>a{padding:0;height:46px;line-height:3.28571428;width:auto}#wpadminbar .ab-icon{font:40px/1 dashicons!important;margin:0;padding:0;width:52px;height:46px;text-align:center}#wpadminbar .ab-icon:before{text-align:center}#wpadminbar .ab-submenu{padding:0}#wpadminbar #wp-admin-bar-my-account a.ab-item,#wpadminbar #wp-admin-bar-my-sites a.ab-item,#wpadminbar #wp-admin-bar-site-name a.ab-item{text-overflow:clip}#wpadminbar .quicklinks .menupop ul li .ab-item,#wpadminbar .quicklinks .menupop ul li a strong,#wpadminbar .quicklinks .menupop.hover ul li .ab-item,#wpadminbar .shortlink-input,#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item{line-height:1.6}#wpadminbar .ab-label{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}#wpadminbar .menupop li.hover>.ab-sub-wrapper,#wpadminbar .menupop li:hover>.ab-sub-wrapper{margin-top:-46px}#wpadminbar .ab-top-menu .menupop .ab-sub-wrapper .menupop>.ab-item{padding-right:30px}#wpadminbar .menupop .menupop>.ab-item:before{top:10px;right:6px}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper .ab-item{font-size:16px;padding:8px 16px}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper a:empty{display:none}#wpadminbar #wp-admin-bar-wp-logo>.ab-item{padding:0}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon{padding:0;width:52px;height:46px;text-align:center;vertical-align:top}#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon:before{font:28px/1 dashicons!important;top:-3px}#wpadminbar .ab-icon,#wpadminbar .ab-item:before{padding:0}#wpadminbar #wp-admin-bar-customize>.ab-item,#wpadminbar #wp-admin-bar-edit>.ab-item,#wpadminbar #wp-admin-bar-my-account>.ab-item,#wpadminbar #wp-admin-bar-my-sites>.ab-item,#wpadminbar #wp-admin-bar-site-editor>.ab-item,#wpadminbar #wp-admin-bar-site-name>.ab-item{text-indent:100%;white-space:nowrap;overflow:hidden;width:52px;padding:0;color:#a7aaad;position:relative}#wpadminbar .ab-icon,#wpadminbar .ab-item:before,#wpadminbar>#wp-toolbar>#wp-admin-bar-root-default .ab-icon{padding:0;margin-right:0}#wpadminbar #wp-admin-bar-customize>.ab-item:before,#wpadminbar #wp-admin-bar-edit>.ab-item:before,#wpadminbar #wp-admin-bar-my-account>.ab-item:before,#wpadminbar #wp-admin-bar-my-sites>.ab-item:before,#wpadminbar #wp-admin-bar-site-editor>.ab-item:before,#wpadminbar #wp-admin-bar-site-name>.ab-item:before{display:block;text-indent:0;font:normal 32px/1 dashicons;speak:never;top:7px;width:52px;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wpadminbar #wp-admin-bar-appearance{margin-top:0}#wpadminbar .quicklinks li .blavatar:before{display:none}#wpadminbar #wp-admin-bar-search{display:none}#wpadminbar #wp-admin-bar-new-content .ab-icon:before{top:0;line-height:1.33333333;height:46px!important;text-align:center;width:52px;display:block}#wpadminbar #wp-admin-bar-updates{text-align:center}#wpadminbar #wp-admin-bar-updates .ab-icon:before{top:3px}#wpadminbar #wp-admin-bar-comments .ab-icon{margin:0}#wpadminbar #wp-admin-bar-comments .ab-icon:before{display:block;font-size:34px;height:46px;line-height:1.38235294;top:0}#wpadminbar #wp-admin-bar-my-account>a{position:relative;white-space:nowrap;text-indent:150%;width:28px;padding:0 10px;overflow:hidden}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{position:absolute;top:13px;right:10px;width:26px;height:26px}#wpadminbar #wp-admin-bar-user-actions.ab-submenu{padding:0}#wpadminbar #wp-admin-bar-user-actions.ab-submenu img.avatar{display:none}#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions>li{margin:0}#wpadminbar #wp-admin-bar-user-info .display-name{height:auto;font-size:16px;line-height:1.5;color:#f0f0f1}#wpadminbar #wp-admin-bar-user-info a{padding-top:4px}#wpadminbar #wp-admin-bar-user-info .username{line-height:.8!important;margin-bottom:-2px}#wp-toolbar>ul>li{display:none}#wpadminbar li#wp-admin-bar-comments,#wpadminbar li#wp-admin-bar-customize,#wpadminbar li#wp-admin-bar-edit,#wpadminbar li#wp-admin-bar-menu-toggle,#wpadminbar li#wp-admin-bar-my-account,#wpadminbar li#wp-admin-bar-my-sites,#wpadminbar li#wp-admin-bar-new-content,#wpadminbar li#wp-admin-bar-site-editor,#wpadminbar li#wp-admin-bar-site-name,#wpadminbar li#wp-admin-bar-updates,#wpadminbar li#wp-admin-bar-wp-logo{display:block}#wpadminbar li.hover ul li,#wpadminbar li:hover ul li,#wpadminbar li:hover ul li:hover ul li{display:list-item}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper{min-width:-moz-fit-content;min-width:fit-content}#wpadminbar ul#wp-admin-bar-root-default>li{margin-right:0}#wpadminbar #wp-admin-bar-comments,#wpadminbar #wp-admin-bar-edit,#wpadminbar #wp-admin-bar-my-account,#wpadminbar #wp-admin-bar-my-sites,#wpadminbar #wp-admin-bar-new-content,#wpadminbar #wp-admin-bar-site-name,#wpadminbar #wp-admin-bar-updates,#wpadminbar #wp-admin-bar-wp-logo,#wpadminbar .ab-top-menu,#wpadminbar .ab-top-secondary{position:static}#wpadminbar #wp-admin-bar-my-account{float:right}.network-admin #wpadminbar ul#wp-admin-bar-top-secondary>li#wp-admin-bar-my-account{margin-right:0}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item:before{top:10px;left:0}}@media screen and (max-width:600px){#wpadminbar{position:absolute}#wp-responsive-overlay{position:fixed;top:0;left:0;width:100%;height:100%;z-index:400}#wpadminbar .ab-top-menu>.menupop>.ab-sub-wrapper{width:100%;left:0}#wpadminbar .menupop .menupop>.ab-item:before{display:none}#wpadminbar #wp-admin-bar-wp-logo.menupop .ab-sub-wrapper{margin-left:0}#wpadminbar .ab-top-menu>.menupop li>.ab-sub-wrapper{margin:0;width:100%;top:auto;left:auto;position:relative}#wpadminbar .ab-top-menu>.menupop li>.ab-sub-wrapper .ab-item{font-size:16px;padding:6px 15px 19px 30px}#wpadminbar li:hover ul li ul li{display:list-item}#wpadminbar li#wp-admin-bar-updates,#wpadminbar li#wp-admin-bar-wp-logo{display:none}#wpadminbar .ab-top-menu>.menupop li>.ab-sub-wrapper{position:static;box-shadow:none}}@media screen and (max-width:400px){#wpadminbar li#wp-admin-bar-comments{display:none}}
\ No newline at end of file
diff --git a/static/wp-includes/css/buttons-rtl.css b/static/wp-includes/css/buttons-rtl.css
new file mode 100755
index 0000000..e8312d1
--- /dev/null
+++ b/static/wp-includes/css/buttons-rtl.css
@@ -0,0 +1,402 @@
+/*! This file is auto-generated */
+/* ----------------------------------------------------------------------------
+
+NOTE: If you edit this file, you should make sure that the CSS rules for
+buttons in the following files are updated.
+
+* jquery-ui-dialog.css
+* editor.css
+
+WordPress-style Buttons
+=======================
+Create a button by adding the `.button` class to an element. For backward
+compatibility, we support several other classes (such as `.button-secondary`),
+but these will *not* work with the stackable classes described below.
+
+Button Styles
+-------------
+To display a primary button style, add the `.button-primary` class to a button.
+
+Button Sizes
+------------
+Adjust a button's size by adding the `.button-large` or `.button-small` class.
+
+Button States
+-------------
+Lock the state of a button by adding the name of the pseudoclass as
+an actual class (e.g. `.hover` for `:hover`).
+
+
+TABLE OF CONTENTS:
+------------------
+ 1.0 - Button Layouts
+ 2.0 - Default Button Style
+ 3.0 - Primary Button Style
+ 4.0 - Button Groups
+ 5.0 - Responsive Button Styles
+
+---------------------------------------------------------------------------- */
+
+/* ----------------------------------------------------------------------------
+ 1.0 - Button Layouts
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button,
+.wp-core-ui .button-primary,
+.wp-core-ui .button-secondary {
+ display: inline-block;
+ text-decoration: none;
+ font-size: 13px;
+ line-height: 2.15384615; /* 28px */
+ min-height: 30px;
+ margin: 0;
+ padding: 0 10px;
+ cursor: pointer;
+ border-width: 1px;
+ border-style: solid;
+ -webkit-appearance: none;
+ border-radius: 3px;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+
+/* Remove the dotted border on :focus and the extra padding in Firefox */
+.wp-core-ui button::-moz-focus-inner,
+.wp-core-ui input[type="reset"]::-moz-focus-inner,
+.wp-core-ui input[type="button"]::-moz-focus-inner,
+.wp-core-ui input[type="submit"]::-moz-focus-inner {
+ border-width: 0;
+ border-style: none;
+ padding: 0;
+}
+
+.wp-core-ui .button.button-large,
+.wp-core-ui .button-group.button-large .button {
+ min-height: 32px;
+ line-height: 2.30769231; /* 30px */
+ padding: 0 12px;
+}
+
+.wp-core-ui .button.button-small,
+.wp-core-ui .button-group.button-small .button {
+ min-height: 26px;
+ line-height: 2.18181818; /* 24px */
+ padding: 0 8px;
+ font-size: 11px;
+}
+
+.wp-core-ui .button.button-hero,
+.wp-core-ui .button-group.button-hero .button {
+ font-size: 14px;
+ min-height: 46px;
+ line-height: 3.14285714;
+ padding: 0 36px;
+}
+
+.wp-core-ui .button.hidden {
+ display: none;
+}
+
+/* Style Reset buttons as simple text links */
+
+.wp-core-ui input[type="reset"],
+.wp-core-ui input[type="reset"]:hover,
+.wp-core-ui input[type="reset"]:active,
+.wp-core-ui input[type="reset"]:focus {
+ background: none;
+ border: none;
+ box-shadow: none;
+ padding: 0 2px 1px;
+ width: auto;
+}
+
+/* ----------------------------------------------------------------------------
+ 2.0 - Default Button Style
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button,
+.wp-core-ui .button-secondary {
+ color: #2271b1;
+ border-color: #2271b1;
+ background: #f6f7f7;
+ vertical-align: top;
+}
+
+.wp-core-ui p .button {
+ vertical-align: baseline;
+}
+
+.wp-core-ui .button.hover,
+.wp-core-ui .button:hover,
+.wp-core-ui .button-secondary:hover{
+ background: #f0f0f1;
+ border-color: #0a4b78;
+ color: #0a4b78;
+}
+
+.wp-core-ui .button.focus,
+.wp-core-ui .button:focus,
+.wp-core-ui .button-secondary:focus {
+ background: #f6f7f7;
+ border-color: #3582c4;
+ color: #0a4b78;
+ box-shadow: 0 0 0 1px #3582c4;
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ /* Reset inherited offset from Gutenberg */
+ outline-offset: 0;
+}
+
+/* :active state */
+.wp-core-ui .button:active,
+.wp-core-ui .button-secondary:active {
+ background: #f6f7f7;
+ border-color: #8c8f94;
+ box-shadow: none;
+}
+
+/* pressed state e.g. a selected setting */
+.wp-core-ui .button.active,
+.wp-core-ui .button.active:hover {
+ background-color: #dcdcde;
+ color: #135e96;
+ border-color: #0a4b78;
+ box-shadow: inset 0 2px 5px -3px #0a4b78;
+}
+
+.wp-core-ui .button.active:focus {
+ border-color: #3582c4;
+ box-shadow:
+ inset 0 2px 5px -3px #0a4b78,
+ 0 0 0 1px #3582c4;
+}
+
+.wp-core-ui .button[disabled],
+.wp-core-ui .button:disabled,
+.wp-core-ui .button.disabled,
+.wp-core-ui .button-secondary[disabled],
+.wp-core-ui .button-secondary:disabled,
+.wp-core-ui .button-secondary.disabled,
+.wp-core-ui .button-disabled {
+ color: #a7aaad !important;
+ border-color: #dcdcde !important;
+ background: #f6f7f7 !important;
+ box-shadow: none !important;
+ cursor: default;
+ transform: none !important;
+}
+
+/* Buttons that look like links, for a cross of good semantics with the visual */
+.wp-core-ui .button-link {
+ margin: 0;
+ padding: 0;
+ box-shadow: none;
+ border: 0;
+ border-radius: 0;
+ background: none;
+ cursor: pointer;
+ text-align: right;
+ /* Mimics the default link style in common.css */
+ color: #2271b1;
+ text-decoration: underline;
+ transition-property: border, background, color;
+ transition-duration: .05s;
+ transition-timing-function: ease-in-out;
+}
+
+.wp-core-ui .button-link:hover,
+.wp-core-ui .button-link:active {
+ color: #135e96;
+}
+
+.wp-core-ui .button-link:focus {
+ color: #043959;
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.wp-core-ui .button-link-delete {
+ color: #d63638;
+}
+
+.wp-core-ui .button-link-delete:hover,
+.wp-core-ui .button-link-delete:focus {
+ color: #d63638;
+ background: transparent;
+}
+
+.wp-core-ui .button-link-delete:disabled {
+ /* overrides the default buttons disabled background */
+ background: transparent !important;
+}
+
+
+/* ----------------------------------------------------------------------------
+ 3.0 - Primary Button Style
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button-primary {
+ background: #2271b1;
+ border-color: #2271b1;
+ color: #fff;
+ text-decoration: none;
+ text-shadow: none;
+}
+
+.wp-core-ui .button-primary.hover,
+.wp-core-ui .button-primary:hover,
+.wp-core-ui .button-primary.focus,
+.wp-core-ui .button-primary:focus {
+ background: #135e96;
+ border-color: #135e96;
+ color: #fff;
+}
+
+.wp-core-ui .button-primary.focus,
+.wp-core-ui .button-primary:focus {
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 0 3px #2271b1;
+}
+
+.wp-core-ui .button-primary.active,
+.wp-core-ui .button-primary.active:hover,
+.wp-core-ui .button-primary.active:focus,
+.wp-core-ui .button-primary:active {
+ background: #135e96;
+ border-color: #135e96;
+ box-shadow: none;
+ color: #fff;
+}
+
+.wp-core-ui .button-primary[disabled],
+.wp-core-ui .button-primary:disabled,
+.wp-core-ui .button-primary-disabled,
+.wp-core-ui .button-primary.disabled {
+ color: #a7aaad !important;
+ background: #f6f7f7 !important;
+ border-color: #dcdcde !important;
+ box-shadow: none !important;
+ text-shadow: none !important;
+ cursor: default;
+}
+
+/* ----------------------------------------------------------------------------
+ 4.0 - Button Groups
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button-group {
+ position: relative;
+ display: inline-block;
+ white-space: nowrap;
+ font-size: 0;
+ vertical-align: middle;
+}
+
+.wp-core-ui .button-group > .button {
+ display: inline-block;
+ border-radius: 0;
+ margin-left: -1px;
+}
+
+.wp-core-ui .button-group > .button:first-child {
+ border-radius: 0 3px 3px 0;
+}
+
+.wp-core-ui .button-group > .button:last-child {
+ border-radius: 3px 0 0 3px;
+}
+
+.wp-core-ui .button-group > .button-primary + .button {
+ border-right: 0;
+}
+
+.wp-core-ui .button-group > .button:focus {
+ position: relative;
+ z-index: 1;
+}
+
+/* pressed state e.g. a selected setting */
+.wp-core-ui .button-group > .button.active {
+ background-color: #dcdcde;
+ color: #135e96;
+ border-color: #0a4b78;
+ box-shadow: inset 0 2px 5px -3px #0a4b78;
+}
+
+.wp-core-ui .button-group > .button.active:focus {
+ border-color: #3582c4;
+ box-shadow:
+ inset 0 2px 5px -3px #0a4b78,
+ 0 0 0 1px #3582c4;
+}
+
+/* ----------------------------------------------------------------------------
+ 5.0 - Responsive Button Styles
+---------------------------------------------------------------------------- */
+
+@media screen and (max-width: 782px) {
+
+ .wp-core-ui .button,
+ .wp-core-ui .button.button-large,
+ .wp-core-ui .button.button-small,
+ input#publish,
+ input#save-post,
+ a.preview {
+ padding: 0 14px;
+ line-height: 2.71428571; /* 38px */
+ font-size: 14px;
+ vertical-align: middle;
+ min-height: 40px;
+ margin-bottom: 4px;
+ }
+
+ /* Copy attachment URL button in the legacy edit media page. */
+ .wp-core-ui .copy-to-clipboard-container .copy-attachment-url {
+ margin-bottom: 0;
+ }
+
+ #media-upload.wp-core-ui .button {
+ padding: 0 10px 1px;
+ min-height: 24px;
+ line-height: 22px;
+ font-size: 13px;
+ }
+
+ .media-frame.mode-grid .bulk-select .button {
+ margin-bottom: 0;
+ }
+
+ /* Publish Metabox Options */
+ .wp-core-ui .save-post-status.button {
+ position: relative;
+ margin: 0 10px 0 14px; /* 14px right margin to match all other buttons */
+ }
+
+ /* Reset responsive styles in Press This, Customizer */
+
+ .wp-core-ui.wp-customizer .button {
+ font-size: 13px;
+ line-height: 2.15384615; /* 28px */
+ min-height: 30px;
+ margin: 0;
+ vertical-align: inherit;
+ }
+
+ .media-modal-content .media-toolbar-primary .media-button {
+ margin-top: 10px;
+ margin-right: 5px;
+ }
+
+ /* Reset responsive styles on Log in button on iframed login form */
+
+ .interim-login .button.button-large {
+ min-height: 30px;
+ line-height: 2;
+ padding: 0 12px 2px;
+ }
+
+}
diff --git a/static/wp-includes/css/buttons-rtl.min.css b/static/wp-includes/css/buttons-rtl.min.css
new file mode 100755
index 0000000..91d1750
--- /dev/null
+++ b/static/wp-includes/css/buttons-rtl.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.wp-core-ui .button,.wp-core-ui .button-primary,.wp-core-ui .button-secondary{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wp-core-ui button::-moz-focus-inner,.wp-core-ui input[type=button]::-moz-focus-inner,.wp-core-ui input[type=reset]::-moz-focus-inner,.wp-core-ui input[type=submit]::-moz-focus-inner{border-width:0;border-style:none;padding:0}.wp-core-ui .button-group.button-large .button,.wp-core-ui .button.button-large{min-height:32px;line-height:2.30769231;padding:0 12px}.wp-core-ui .button-group.button-small .button,.wp-core-ui .button.button-small{min-height:26px;line-height:2.18181818;padding:0 8px;font-size:11px}.wp-core-ui .button-group.button-hero .button,.wp-core-ui .button.button-hero{font-size:14px;min-height:46px;line-height:3.14285714;padding:0 36px}.wp-core-ui .button.hidden{display:none}.wp-core-ui input[type=reset],.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:focus,.wp-core-ui input[type=reset]:hover{background:0 0;border:none;box-shadow:none;padding:0 2px 1px;width:auto}.wp-core-ui .button,.wp-core-ui .button-secondary{color:#2271b1;border-color:#2271b1;background:#f6f7f7;vertical-align:top}.wp-core-ui p .button{vertical-align:baseline}.wp-core-ui .button-secondary:hover,.wp-core-ui .button.hover,.wp-core-ui .button:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}.wp-core-ui .button-secondary:focus,.wp-core-ui .button.focus,.wp-core-ui .button:focus{background:#f6f7f7;border-color:#3582c4;color:#0a4b78;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent;outline-offset:0}.wp-core-ui .button-secondary:active,.wp-core-ui .button:active{background:#f6f7f7;border-color:#8c8f94;box-shadow:none}.wp-core-ui .button.active,.wp-core-ui .button.active:hover{background-color:#dcdcde;color:#135e96;border-color:#0a4b78;box-shadow:inset 0 2px 5px -3px #0a4b78}.wp-core-ui .button.active:focus{border-color:#3582c4;box-shadow:inset 0 2px 5px -3px #0a4b78,0 0 0 1px #3582c4}.wp-core-ui .button-disabled,.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled,.wp-core-ui .button-secondary[disabled],.wp-core-ui .button.disabled,.wp-core-ui .button:disabled,.wp-core-ui .button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;cursor:default;transform:none!important}.wp-core-ui .button-link{margin:0;padding:0;box-shadow:none;border:0;border-radius:0;background:0 0;cursor:pointer;text-align:right;color:#2271b1;text-decoration:underline;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover{color:#135e96}.wp-core-ui .button-link:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent}.wp-core-ui .button-link-delete{color:#d63638}.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:#d63638;background:0 0}.wp-core-ui .button-link-delete:disabled{background:0 0!important}.wp-core-ui .button-primary{background:#2271b1;border-color:#2271b1;color:#fff;text-decoration:none;text-shadow:none}.wp-core-ui .button-primary.focus,.wp-core-ui .button-primary.hover,.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#135e96;border-color:#135e96;color:#fff}.wp-core-ui .button-primary.focus,.wp-core-ui .button-primary:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px #2271b1}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover,.wp-core-ui .button-primary:active{background:#135e96;border-color:#135e96;box-shadow:none;color:#fff}.wp-core-ui .button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#a7aaad!important;background:#f6f7f7!important;border-color:#dcdcde!important;box-shadow:none!important;text-shadow:none!important;cursor:default}.wp-core-ui .button-group{position:relative;display:inline-block;white-space:nowrap;font-size:0;vertical-align:middle}.wp-core-ui .button-group>.button{display:inline-block;border-radius:0;margin-left:-1px}.wp-core-ui .button-group>.button:first-child{border-radius:0 3px 3px 0}.wp-core-ui .button-group>.button:last-child{border-radius:3px 0 0 3px}.wp-core-ui .button-group>.button-primary+.button{border-right:0}.wp-core-ui .button-group>.button:focus{position:relative;z-index:1}.wp-core-ui .button-group>.button.active{background-color:#dcdcde;color:#135e96;border-color:#0a4b78;box-shadow:inset 0 2px 5px -3px #0a4b78}.wp-core-ui .button-group>.button.active:focus{border-color:#3582c4;box-shadow:inset 0 2px 5px -3px #0a4b78,0 0 0 1px #3582c4}@media screen and (max-width:782px){.wp-core-ui .button,.wp-core-ui .button.button-large,.wp-core-ui .button.button-small,a.preview,input#publish,input#save-post{padding:0 14px;line-height:2.71428571;font-size:14px;vertical-align:middle;min-height:40px;margin-bottom:4px}.wp-core-ui .copy-to-clipboard-container .copy-attachment-url{margin-bottom:0}#media-upload.wp-core-ui .button{padding:0 10px 1px;min-height:24px;line-height:22px;font-size:13px}.media-frame.mode-grid .bulk-select .button{margin-bottom:0}.wp-core-ui .save-post-status.button{position:relative;margin:0 10px 0 14px}.wp-core-ui.wp-customizer .button{font-size:13px;line-height:2.15384615;min-height:30px;margin:0;vertical-align:inherit}.media-modal-content .media-toolbar-primary .media-button{margin-top:10px;margin-right:5px}.interim-login .button.button-large{min-height:30px;line-height:2;padding:0 12px 2px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/buttons.css b/static/wp-includes/css/buttons.css
new file mode 100755
index 0000000..6da6da5
--- /dev/null
+++ b/static/wp-includes/css/buttons.css
@@ -0,0 +1,401 @@
+/* ----------------------------------------------------------------------------
+
+NOTE: If you edit this file, you should make sure that the CSS rules for
+buttons in the following files are updated.
+
+* jquery-ui-dialog.css
+* editor.css
+
+WordPress-style Buttons
+=======================
+Create a button by adding the `.button` class to an element. For backward
+compatibility, we support several other classes (such as `.button-secondary`),
+but these will *not* work with the stackable classes described below.
+
+Button Styles
+-------------
+To display a primary button style, add the `.button-primary` class to a button.
+
+Button Sizes
+------------
+Adjust a button's size by adding the `.button-large` or `.button-small` class.
+
+Button States
+-------------
+Lock the state of a button by adding the name of the pseudoclass as
+an actual class (e.g. `.hover` for `:hover`).
+
+
+TABLE OF CONTENTS:
+------------------
+ 1.0 - Button Layouts
+ 2.0 - Default Button Style
+ 3.0 - Primary Button Style
+ 4.0 - Button Groups
+ 5.0 - Responsive Button Styles
+
+---------------------------------------------------------------------------- */
+
+/* ----------------------------------------------------------------------------
+ 1.0 - Button Layouts
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button,
+.wp-core-ui .button-primary,
+.wp-core-ui .button-secondary {
+ display: inline-block;
+ text-decoration: none;
+ font-size: 13px;
+ line-height: 2.15384615; /* 28px */
+ min-height: 30px;
+ margin: 0;
+ padding: 0 10px;
+ cursor: pointer;
+ border-width: 1px;
+ border-style: solid;
+ -webkit-appearance: none;
+ border-radius: 3px;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+
+/* Remove the dotted border on :focus and the extra padding in Firefox */
+.wp-core-ui button::-moz-focus-inner,
+.wp-core-ui input[type="reset"]::-moz-focus-inner,
+.wp-core-ui input[type="button"]::-moz-focus-inner,
+.wp-core-ui input[type="submit"]::-moz-focus-inner {
+ border-width: 0;
+ border-style: none;
+ padding: 0;
+}
+
+.wp-core-ui .button.button-large,
+.wp-core-ui .button-group.button-large .button {
+ min-height: 32px;
+ line-height: 2.30769231; /* 30px */
+ padding: 0 12px;
+}
+
+.wp-core-ui .button.button-small,
+.wp-core-ui .button-group.button-small .button {
+ min-height: 26px;
+ line-height: 2.18181818; /* 24px */
+ padding: 0 8px;
+ font-size: 11px;
+}
+
+.wp-core-ui .button.button-hero,
+.wp-core-ui .button-group.button-hero .button {
+ font-size: 14px;
+ min-height: 46px;
+ line-height: 3.14285714;
+ padding: 0 36px;
+}
+
+.wp-core-ui .button.hidden {
+ display: none;
+}
+
+/* Style Reset buttons as simple text links */
+
+.wp-core-ui input[type="reset"],
+.wp-core-ui input[type="reset"]:hover,
+.wp-core-ui input[type="reset"]:active,
+.wp-core-ui input[type="reset"]:focus {
+ background: none;
+ border: none;
+ box-shadow: none;
+ padding: 0 2px 1px;
+ width: auto;
+}
+
+/* ----------------------------------------------------------------------------
+ 2.0 - Default Button Style
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button,
+.wp-core-ui .button-secondary {
+ color: #2271b1;
+ border-color: #2271b1;
+ background: #f6f7f7;
+ vertical-align: top;
+}
+
+.wp-core-ui p .button {
+ vertical-align: baseline;
+}
+
+.wp-core-ui .button.hover,
+.wp-core-ui .button:hover,
+.wp-core-ui .button-secondary:hover{
+ background: #f0f0f1;
+ border-color: #0a4b78;
+ color: #0a4b78;
+}
+
+.wp-core-ui .button.focus,
+.wp-core-ui .button:focus,
+.wp-core-ui .button-secondary:focus {
+ background: #f6f7f7;
+ border-color: #3582c4;
+ color: #0a4b78;
+ box-shadow: 0 0 0 1px #3582c4;
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ /* Reset inherited offset from Gutenberg */
+ outline-offset: 0;
+}
+
+/* :active state */
+.wp-core-ui .button:active,
+.wp-core-ui .button-secondary:active {
+ background: #f6f7f7;
+ border-color: #8c8f94;
+ box-shadow: none;
+}
+
+/* pressed state e.g. a selected setting */
+.wp-core-ui .button.active,
+.wp-core-ui .button.active:hover {
+ background-color: #dcdcde;
+ color: #135e96;
+ border-color: #0a4b78;
+ box-shadow: inset 0 2px 5px -3px #0a4b78;
+}
+
+.wp-core-ui .button.active:focus {
+ border-color: #3582c4;
+ box-shadow:
+ inset 0 2px 5px -3px #0a4b78,
+ 0 0 0 1px #3582c4;
+}
+
+.wp-core-ui .button[disabled],
+.wp-core-ui .button:disabled,
+.wp-core-ui .button.disabled,
+.wp-core-ui .button-secondary[disabled],
+.wp-core-ui .button-secondary:disabled,
+.wp-core-ui .button-secondary.disabled,
+.wp-core-ui .button-disabled {
+ color: #a7aaad !important;
+ border-color: #dcdcde !important;
+ background: #f6f7f7 !important;
+ box-shadow: none !important;
+ cursor: default;
+ transform: none !important;
+}
+
+/* Buttons that look like links, for a cross of good semantics with the visual */
+.wp-core-ui .button-link {
+ margin: 0;
+ padding: 0;
+ box-shadow: none;
+ border: 0;
+ border-radius: 0;
+ background: none;
+ cursor: pointer;
+ text-align: left;
+ /* Mimics the default link style in common.css */
+ color: #2271b1;
+ text-decoration: underline;
+ transition-property: border, background, color;
+ transition-duration: .05s;
+ transition-timing-function: ease-in-out;
+}
+
+.wp-core-ui .button-link:hover,
+.wp-core-ui .button-link:active {
+ color: #135e96;
+}
+
+.wp-core-ui .button-link:focus {
+ color: #043959;
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.wp-core-ui .button-link-delete {
+ color: #d63638;
+}
+
+.wp-core-ui .button-link-delete:hover,
+.wp-core-ui .button-link-delete:focus {
+ color: #d63638;
+ background: transparent;
+}
+
+.wp-core-ui .button-link-delete:disabled {
+ /* overrides the default buttons disabled background */
+ background: transparent !important;
+}
+
+
+/* ----------------------------------------------------------------------------
+ 3.0 - Primary Button Style
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button-primary {
+ background: #2271b1;
+ border-color: #2271b1;
+ color: #fff;
+ text-decoration: none;
+ text-shadow: none;
+}
+
+.wp-core-ui .button-primary.hover,
+.wp-core-ui .button-primary:hover,
+.wp-core-ui .button-primary.focus,
+.wp-core-ui .button-primary:focus {
+ background: #135e96;
+ border-color: #135e96;
+ color: #fff;
+}
+
+.wp-core-ui .button-primary.focus,
+.wp-core-ui .button-primary:focus {
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 0 3px #2271b1;
+}
+
+.wp-core-ui .button-primary.active,
+.wp-core-ui .button-primary.active:hover,
+.wp-core-ui .button-primary.active:focus,
+.wp-core-ui .button-primary:active {
+ background: #135e96;
+ border-color: #135e96;
+ box-shadow: none;
+ color: #fff;
+}
+
+.wp-core-ui .button-primary[disabled],
+.wp-core-ui .button-primary:disabled,
+.wp-core-ui .button-primary-disabled,
+.wp-core-ui .button-primary.disabled {
+ color: #a7aaad !important;
+ background: #f6f7f7 !important;
+ border-color: #dcdcde !important;
+ box-shadow: none !important;
+ text-shadow: none !important;
+ cursor: default;
+}
+
+/* ----------------------------------------------------------------------------
+ 4.0 - Button Groups
+---------------------------------------------------------------------------- */
+
+.wp-core-ui .button-group {
+ position: relative;
+ display: inline-block;
+ white-space: nowrap;
+ font-size: 0;
+ vertical-align: middle;
+}
+
+.wp-core-ui .button-group > .button {
+ display: inline-block;
+ border-radius: 0;
+ margin-right: -1px;
+}
+
+.wp-core-ui .button-group > .button:first-child {
+ border-radius: 3px 0 0 3px;
+}
+
+.wp-core-ui .button-group > .button:last-child {
+ border-radius: 0 3px 3px 0;
+}
+
+.wp-core-ui .button-group > .button-primary + .button {
+ border-left: 0;
+}
+
+.wp-core-ui .button-group > .button:focus {
+ position: relative;
+ z-index: 1;
+}
+
+/* pressed state e.g. a selected setting */
+.wp-core-ui .button-group > .button.active {
+ background-color: #dcdcde;
+ color: #135e96;
+ border-color: #0a4b78;
+ box-shadow: inset 0 2px 5px -3px #0a4b78;
+}
+
+.wp-core-ui .button-group > .button.active:focus {
+ border-color: #3582c4;
+ box-shadow:
+ inset 0 2px 5px -3px #0a4b78,
+ 0 0 0 1px #3582c4;
+}
+
+/* ----------------------------------------------------------------------------
+ 5.0 - Responsive Button Styles
+---------------------------------------------------------------------------- */
+
+@media screen and (max-width: 782px) {
+
+ .wp-core-ui .button,
+ .wp-core-ui .button.button-large,
+ .wp-core-ui .button.button-small,
+ input#publish,
+ input#save-post,
+ a.preview {
+ padding: 0 14px;
+ line-height: 2.71428571; /* 38px */
+ font-size: 14px;
+ vertical-align: middle;
+ min-height: 40px;
+ margin-bottom: 4px;
+ }
+
+ /* Copy attachment URL button in the legacy edit media page. */
+ .wp-core-ui .copy-to-clipboard-container .copy-attachment-url {
+ margin-bottom: 0;
+ }
+
+ #media-upload.wp-core-ui .button {
+ padding: 0 10px 1px;
+ min-height: 24px;
+ line-height: 22px;
+ font-size: 13px;
+ }
+
+ .media-frame.mode-grid .bulk-select .button {
+ margin-bottom: 0;
+ }
+
+ /* Publish Metabox Options */
+ .wp-core-ui .save-post-status.button {
+ position: relative;
+ margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */
+ }
+
+ /* Reset responsive styles in Press This, Customizer */
+
+ .wp-core-ui.wp-customizer .button {
+ font-size: 13px;
+ line-height: 2.15384615; /* 28px */
+ min-height: 30px;
+ margin: 0;
+ vertical-align: inherit;
+ }
+
+ .media-modal-content .media-toolbar-primary .media-button {
+ margin-top: 10px;
+ margin-left: 5px;
+ }
+
+ /* Reset responsive styles on Log in button on iframed login form */
+
+ .interim-login .button.button-large {
+ min-height: 30px;
+ line-height: 2;
+ padding: 0 12px 2px;
+ }
+
+}
diff --git a/static/wp-includes/css/buttons.min.css b/static/wp-includes/css/buttons.min.css
new file mode 100755
index 0000000..38ec0f2
--- /dev/null
+++ b/static/wp-includes/css/buttons.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.wp-core-ui .button,.wp-core-ui .button-primary,.wp-core-ui .button-secondary{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wp-core-ui button::-moz-focus-inner,.wp-core-ui input[type=button]::-moz-focus-inner,.wp-core-ui input[type=reset]::-moz-focus-inner,.wp-core-ui input[type=submit]::-moz-focus-inner{border-width:0;border-style:none;padding:0}.wp-core-ui .button-group.button-large .button,.wp-core-ui .button.button-large{min-height:32px;line-height:2.30769231;padding:0 12px}.wp-core-ui .button-group.button-small .button,.wp-core-ui .button.button-small{min-height:26px;line-height:2.18181818;padding:0 8px;font-size:11px}.wp-core-ui .button-group.button-hero .button,.wp-core-ui .button.button-hero{font-size:14px;min-height:46px;line-height:3.14285714;padding:0 36px}.wp-core-ui .button.hidden{display:none}.wp-core-ui input[type=reset],.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:focus,.wp-core-ui input[type=reset]:hover{background:0 0;border:none;box-shadow:none;padding:0 2px 1px;width:auto}.wp-core-ui .button,.wp-core-ui .button-secondary{color:#2271b1;border-color:#2271b1;background:#f6f7f7;vertical-align:top}.wp-core-ui p .button{vertical-align:baseline}.wp-core-ui .button-secondary:hover,.wp-core-ui .button.hover,.wp-core-ui .button:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}.wp-core-ui .button-secondary:focus,.wp-core-ui .button.focus,.wp-core-ui .button:focus{background:#f6f7f7;border-color:#3582c4;color:#0a4b78;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent;outline-offset:0}.wp-core-ui .button-secondary:active,.wp-core-ui .button:active{background:#f6f7f7;border-color:#8c8f94;box-shadow:none}.wp-core-ui .button.active,.wp-core-ui .button.active:hover{background-color:#dcdcde;color:#135e96;border-color:#0a4b78;box-shadow:inset 0 2px 5px -3px #0a4b78}.wp-core-ui .button.active:focus{border-color:#3582c4;box-shadow:inset 0 2px 5px -3px #0a4b78,0 0 0 1px #3582c4}.wp-core-ui .button-disabled,.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled,.wp-core-ui .button-secondary[disabled],.wp-core-ui .button.disabled,.wp-core-ui .button:disabled,.wp-core-ui .button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;cursor:default;transform:none!important}.wp-core-ui .button-link{margin:0;padding:0;box-shadow:none;border:0;border-radius:0;background:0 0;cursor:pointer;text-align:left;color:#2271b1;text-decoration:underline;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover{color:#135e96}.wp-core-ui .button-link:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:1px solid transparent}.wp-core-ui .button-link-delete{color:#d63638}.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:#d63638;background:0 0}.wp-core-ui .button-link-delete:disabled{background:0 0!important}.wp-core-ui .button-primary{background:#2271b1;border-color:#2271b1;color:#fff;text-decoration:none;text-shadow:none}.wp-core-ui .button-primary.focus,.wp-core-ui .button-primary.hover,.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#135e96;border-color:#135e96;color:#fff}.wp-core-ui .button-primary.focus,.wp-core-ui .button-primary:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px #2271b1}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover,.wp-core-ui .button-primary:active{background:#135e96;border-color:#135e96;box-shadow:none;color:#fff}.wp-core-ui .button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#a7aaad!important;background:#f6f7f7!important;border-color:#dcdcde!important;box-shadow:none!important;text-shadow:none!important;cursor:default}.wp-core-ui .button-group{position:relative;display:inline-block;white-space:nowrap;font-size:0;vertical-align:middle}.wp-core-ui .button-group>.button{display:inline-block;border-radius:0;margin-right:-1px}.wp-core-ui .button-group>.button:first-child{border-radius:3px 0 0 3px}.wp-core-ui .button-group>.button:last-child{border-radius:0 3px 3px 0}.wp-core-ui .button-group>.button-primary+.button{border-left:0}.wp-core-ui .button-group>.button:focus{position:relative;z-index:1}.wp-core-ui .button-group>.button.active{background-color:#dcdcde;color:#135e96;border-color:#0a4b78;box-shadow:inset 0 2px 5px -3px #0a4b78}.wp-core-ui .button-group>.button.active:focus{border-color:#3582c4;box-shadow:inset 0 2px 5px -3px #0a4b78,0 0 0 1px #3582c4}@media screen and (max-width:782px){.wp-core-ui .button,.wp-core-ui .button.button-large,.wp-core-ui .button.button-small,a.preview,input#publish,input#save-post{padding:0 14px;line-height:2.71428571;font-size:14px;vertical-align:middle;min-height:40px;margin-bottom:4px}.wp-core-ui .copy-to-clipboard-container .copy-attachment-url{margin-bottom:0}#media-upload.wp-core-ui .button{padding:0 10px 1px;min-height:24px;line-height:22px;font-size:13px}.media-frame.mode-grid .bulk-select .button{margin-bottom:0}.wp-core-ui .save-post-status.button{position:relative;margin:0 14px 0 10px}.wp-core-ui.wp-customizer .button{font-size:13px;line-height:2.15384615;min-height:30px;margin:0;vertical-align:inherit}.media-modal-content .media-toolbar-primary .media-button{margin-top:10px;margin-left:5px}.interim-login .button.button-large{min-height:30px;line-height:2;padding:0 12px 2px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/customize-preview-rtl.css b/static/wp-includes/css/customize-preview-rtl.css
new file mode 100755
index 0000000..0a99492
--- /dev/null
+++ b/static/wp-includes/css/customize-preview-rtl.css
@@ -0,0 +1,167 @@
+/*! This file is auto-generated */
+.customize-partial-refreshing {
+ opacity: 0.25;
+ transition: opacity 0.25s;
+ cursor: progress;
+}
+
+/* Override highlight when refreshing */
+.customize-partial-refreshing.widget-customizer-highlighted-widget {
+ box-shadow: none;
+}
+
+/* Make shortcut buttons essentially invisible */
+.widget .customize-partial-edit-shortcut,
+.customize-partial-edit-shortcut {
+ position: absolute;
+ float: right;
+ width: 1px; /* required to have a size to be focusable in Safari */
+ height: 1px;
+ padding: 0;
+ margin: -1px -1px 0 0;
+ border: 0;
+ background: transparent;
+ color: transparent;
+ box-shadow: none;
+ outline: none;
+ z-index: 5;
+}
+
+/**
+ * Styles for the actual shortcut
+ *
+ * Note that some properties are overly verbose to prevent theme interference.
+ */
+.widget .customize-partial-edit-shortcut button,
+.customize-partial-edit-shortcut button {
+ position: absolute;
+ right: -30px;
+ top: 2px;
+ color: #fff;
+ width: 30px;
+ height: 30px;
+ min-width: 30px;
+ min-height: 30px;
+ line-height: 1 !important;
+ font-size: 18px;
+ z-index: 5;
+ background: #3582c4 !important;
+ border-radius: 50%;
+ border: 2px solid #fff;
+ box-shadow: 0 2px 1px rgba(60, 67, 74, 0.15);
+ text-align: center;
+ cursor: pointer;
+ box-sizing: border-box;
+ padding: 3px;
+ animation-fill-mode: both;
+ animation-duration: .4s;
+ opacity: 0;
+ pointer-events: none;
+ text-shadow:
+ 0 -1px 1px #135e96,
+ -1px 0 1px #135e96,
+ 0 1px 1px #135e96,
+ 1px 0 1px #135e96;
+}
+.wp-custom-header .customize-partial-edit-shortcut button {
+ right: 2px
+}
+
+.customize-partial-edit-shortcut button svg {
+ fill: #fff;
+ min-width: 20px;
+ min-height: 20px;
+ width: 20px;
+ height: 20px;
+ margin: auto;
+}
+
+.customize-partial-edit-shortcut button:hover {
+ background: #4f94d4 !important; /* matches primary buttons */
+}
+
+.customize-partial-edit-shortcut button:focus {
+ box-shadow: 0 0 0 2px #4f94d4;
+}
+
+body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button {
+ animation-name: customize-partial-edit-shortcut-bounce-appear;
+ pointer-events: auto;
+}
+body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button {
+ animation-name: customize-partial-edit-shortcut-bounce-disappear;
+ pointer-events: none;
+}
+
+.page-sidebar-collapsed .customize-partial-edit-shortcut button,
+.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button {
+ visibility: hidden;
+}
+
+@keyframes customize-partial-edit-shortcut-bounce-appear {
+ from, 20%, 40%, 60%, 80%, to {
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
+ }
+ 0% {
+ opacity: 0;
+ transform: scale3d(.3, .3, .3);
+ }
+ 20% {
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+ 40% {
+ transform: scale3d(.9, .9, .9);
+ }
+ 60% {
+ opacity: 1;
+ transform: scale3d(1.03, 1.03, 1.03);
+ }
+ 80% {
+ transform: scale3d(.97, .97, .97);
+ }
+ to {
+ opacity: 1;
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+@keyframes customize-partial-edit-shortcut-bounce-disappear {
+ from, 20%, 40%, 60%, 80%, to {
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
+ }
+ 0% {
+ opacity: 1;
+ transform: scale3d(1, 1, 1);
+ }
+ 20% {
+ transform: scale3d(.97, .97, .97);
+ }
+ 40% {
+ opacity: 1;
+ transform: scale3d(1.03, 1.03, 1.03);
+ }
+ 60% {
+ transform: scale3d(.9, .9, .9);
+ }
+ 80% {
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+ to {
+ opacity: 0;
+ transform: scale3d(.3, .3, .3);
+ }
+}
+
+@media screen and (max-width: 800px) {
+ .widget .customize-partial-edit-shortcut button,
+ .customize-partial-edit-shortcut button {
+ right: -32px;
+ }
+}
+
+@media screen and (max-width: 320px) {
+ .widget .customize-partial-edit-shortcut button,
+ .customize-partial-edit-shortcut button {
+ right: -30px;
+ }
+}
diff --git a/static/wp-includes/css/customize-preview-rtl.min.css b/static/wp-includes/css/customize-preview-rtl.min.css
new file mode 100755
index 0000000..cfbb910
--- /dev/null
+++ b/static/wp-includes/css/customize-preview-rtl.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.customize-partial-refreshing{opacity:.25;transition:opacity .25s;cursor:progress}.customize-partial-refreshing.widget-customizer-highlighted-widget{box-shadow:none}.customize-partial-edit-shortcut,.widget .customize-partial-edit-shortcut{position:absolute;float:right;width:1px;height:1px;padding:0;margin:-1px -1px 0 0;border:0;background:0 0;color:transparent;box-shadow:none;outline:0;z-index:5}.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{position:absolute;right:-30px;top:2px;color:#fff;width:30px;height:30px;min-width:30px;min-height:30px;line-height:1!important;font-size:18px;z-index:5;background:#3582c4!important;border-radius:50%;border:2px solid #fff;box-shadow:0 2px 1px rgba(60,67,74,.15);text-align:center;cursor:pointer;box-sizing:border-box;padding:3px;animation-fill-mode:both;animation-duration:.4s;opacity:0;pointer-events:none;text-shadow:0 -1px 1px #135e96,-1px 0 1px #135e96,0 1px 1px #135e96,1px 0 1px #135e96}.wp-custom-header .customize-partial-edit-shortcut button{right:2px}.customize-partial-edit-shortcut button svg{fill:#fff;min-width:20px;min-height:20px;width:20px;height:20px;margin:auto}.customize-partial-edit-shortcut button:hover{background:#4f94d4!important}.customize-partial-edit-shortcut button:focus{box-shadow:0 0 0 2px #4f94d4}body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-appear;pointer-events:auto}body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-disappear;pointer-events:none}.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button,.page-sidebar-collapsed .customize-partial-edit-shortcut button{visibility:hidden}@keyframes customize-partial-edit-shortcut-bounce-appear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes customize-partial-edit-shortcut-bounce-disappear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:1;transform:scale3d(1,1,1)}20%{transform:scale3d(.97,.97,.97)}40%{opacity:1;transform:scale3d(1.03,1.03,1.03)}60%{transform:scale3d(.9,.9,.9)}80%{transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}@media screen and (max-width:800px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{right:-32px}}@media screen and (max-width:320px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{right:-30px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/customize-preview.css b/static/wp-includes/css/customize-preview.css
new file mode 100755
index 0000000..6bdf302
--- /dev/null
+++ b/static/wp-includes/css/customize-preview.css
@@ -0,0 +1,166 @@
+.customize-partial-refreshing {
+ opacity: 0.25;
+ transition: opacity 0.25s;
+ cursor: progress;
+}
+
+/* Override highlight when refreshing */
+.customize-partial-refreshing.widget-customizer-highlighted-widget {
+ box-shadow: none;
+}
+
+/* Make shortcut buttons essentially invisible */
+.widget .customize-partial-edit-shortcut,
+.customize-partial-edit-shortcut {
+ position: absolute;
+ float: left;
+ width: 1px; /* required to have a size to be focusable in Safari */
+ height: 1px;
+ padding: 0;
+ margin: -1px 0 0 -1px;
+ border: 0;
+ background: transparent;
+ color: transparent;
+ box-shadow: none;
+ outline: none;
+ z-index: 5;
+}
+
+/**
+ * Styles for the actual shortcut
+ *
+ * Note that some properties are overly verbose to prevent theme interference.
+ */
+.widget .customize-partial-edit-shortcut button,
+.customize-partial-edit-shortcut button {
+ position: absolute;
+ left: -30px;
+ top: 2px;
+ color: #fff;
+ width: 30px;
+ height: 30px;
+ min-width: 30px;
+ min-height: 30px;
+ line-height: 1 !important;
+ font-size: 18px;
+ z-index: 5;
+ background: #3582c4 !important;
+ border-radius: 50%;
+ border: 2px solid #fff;
+ box-shadow: 0 2px 1px rgba(60, 67, 74, 0.15);
+ text-align: center;
+ cursor: pointer;
+ box-sizing: border-box;
+ padding: 3px;
+ animation-fill-mode: both;
+ animation-duration: .4s;
+ opacity: 0;
+ pointer-events: none;
+ text-shadow:
+ 0 -1px 1px #135e96,
+ 1px 0 1px #135e96,
+ 0 1px 1px #135e96,
+ -1px 0 1px #135e96;
+}
+.wp-custom-header .customize-partial-edit-shortcut button {
+ left: 2px
+}
+
+.customize-partial-edit-shortcut button svg {
+ fill: #fff;
+ min-width: 20px;
+ min-height: 20px;
+ width: 20px;
+ height: 20px;
+ margin: auto;
+}
+
+.customize-partial-edit-shortcut button:hover {
+ background: #4f94d4 !important; /* matches primary buttons */
+}
+
+.customize-partial-edit-shortcut button:focus {
+ box-shadow: 0 0 0 2px #4f94d4;
+}
+
+body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button {
+ animation-name: customize-partial-edit-shortcut-bounce-appear;
+ pointer-events: auto;
+}
+body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button {
+ animation-name: customize-partial-edit-shortcut-bounce-disappear;
+ pointer-events: none;
+}
+
+.page-sidebar-collapsed .customize-partial-edit-shortcut button,
+.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button {
+ visibility: hidden;
+}
+
+@keyframes customize-partial-edit-shortcut-bounce-appear {
+ from, 20%, 40%, 60%, 80%, to {
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
+ }
+ 0% {
+ opacity: 0;
+ transform: scale3d(.3, .3, .3);
+ }
+ 20% {
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+ 40% {
+ transform: scale3d(.9, .9, .9);
+ }
+ 60% {
+ opacity: 1;
+ transform: scale3d(1.03, 1.03, 1.03);
+ }
+ 80% {
+ transform: scale3d(.97, .97, .97);
+ }
+ to {
+ opacity: 1;
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+@keyframes customize-partial-edit-shortcut-bounce-disappear {
+ from, 20%, 40%, 60%, 80%, to {
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
+ }
+ 0% {
+ opacity: 1;
+ transform: scale3d(1, 1, 1);
+ }
+ 20% {
+ transform: scale3d(.97, .97, .97);
+ }
+ 40% {
+ opacity: 1;
+ transform: scale3d(1.03, 1.03, 1.03);
+ }
+ 60% {
+ transform: scale3d(.9, .9, .9);
+ }
+ 80% {
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+ to {
+ opacity: 0;
+ transform: scale3d(.3, .3, .3);
+ }
+}
+
+@media screen and (max-width: 800px) {
+ .widget .customize-partial-edit-shortcut button,
+ .customize-partial-edit-shortcut button {
+ left: -32px;
+ }
+}
+
+@media screen and (max-width: 320px) {
+ .widget .customize-partial-edit-shortcut button,
+ .customize-partial-edit-shortcut button {
+ left: -30px;
+ }
+}
diff --git a/static/wp-includes/css/customize-preview.min.css b/static/wp-includes/css/customize-preview.min.css
new file mode 100755
index 0000000..f3b5d31
--- /dev/null
+++ b/static/wp-includes/css/customize-preview.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.customize-partial-refreshing{opacity:.25;transition:opacity .25s;cursor:progress}.customize-partial-refreshing.widget-customizer-highlighted-widget{box-shadow:none}.customize-partial-edit-shortcut,.widget .customize-partial-edit-shortcut{position:absolute;float:left;width:1px;height:1px;padding:0;margin:-1px 0 0 -1px;border:0;background:0 0;color:transparent;box-shadow:none;outline:0;z-index:5}.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{position:absolute;left:-30px;top:2px;color:#fff;width:30px;height:30px;min-width:30px;min-height:30px;line-height:1!important;font-size:18px;z-index:5;background:#3582c4!important;border-radius:50%;border:2px solid #fff;box-shadow:0 2px 1px rgba(60,67,74,.15);text-align:center;cursor:pointer;box-sizing:border-box;padding:3px;animation-fill-mode:both;animation-duration:.4s;opacity:0;pointer-events:none;text-shadow:0 -1px 1px #135e96,1px 0 1px #135e96,0 1px 1px #135e96,-1px 0 1px #135e96}.wp-custom-header .customize-partial-edit-shortcut button{left:2px}.customize-partial-edit-shortcut button svg{fill:#fff;min-width:20px;min-height:20px;width:20px;height:20px;margin:auto}.customize-partial-edit-shortcut button:hover{background:#4f94d4!important}.customize-partial-edit-shortcut button:focus{box-shadow:0 0 0 2px #4f94d4}body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-appear;pointer-events:auto}body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-disappear;pointer-events:none}.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button,.page-sidebar-collapsed .customize-partial-edit-shortcut button{visibility:hidden}@keyframes customize-partial-edit-shortcut-bounce-appear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes customize-partial-edit-shortcut-bounce-disappear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:1;transform:scale3d(1,1,1)}20%{transform:scale3d(.97,.97,.97)}40%{opacity:1;transform:scale3d(1.03,1.03,1.03)}60%{transform:scale3d(.9,.9,.9)}80%{transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}@media screen and (max-width:800px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{left:-32px}}@media screen and (max-width:320px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{left:-30px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dashicons.css b/static/wp-includes/css/dashicons.css
new file mode 100755
index 0000000..6eeff47
--- /dev/null
+++ b/static/wp-includes/css/dashicons.css
@@ -0,0 +1,1440 @@
+/**
+ * DO NOT EDIT THIS FILE DIRECTLY
+ * This file is automatically built using a build process
+ * If you need to fix errors, see https://github.com/WordPress/dashicons
+ */
+
+/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
+@font-face {
+ font-family: dashicons;
+ src: url("../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800");
+ src: url("../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix") format("embedded-opentype"),
+ url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAHvwAAsAAAAA3EgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAAQAAAAFZAuk8lY21hcAAAAXwAAAk/AAAU9l+BPsxnbHlmAAAKvAAAYwIAAKlAcWTMRWhlYWQAAG3AAAAALwAAADYXkmaRaGhlYQAAbfAAAAAfAAAAJAQ3A0hobXR4AABuEAAAACUAAAVQpgT/9mxvY2EAAG44AAACqgAAAqps5EEYbWF4cAAAcOQAAAAfAAAAIAJvAKBuYW1lAABxBAAAATAAAAIiwytf8nBvc3QAAHI0AAAJvAAAEhojMlz2eJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/Mc4gYGVgYOBhzGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHD4yfHVnAnH1mBgZGIE0CDMAAI/zCGl4nN3Y93/eVRnG8c/9JE2bstLdQIF0N8x0t8w0pSMt0BZKS5ml7F32lrL3hlKmCxEQtzjAhQMRRcEJijhQQWV4vgNBGV4nl3+B/mbTd8+reeVJvuc859znvgL0A5pkO2nW3xcJ8qee02ej7/NNDOz7fHPTw/r/LnTo60ale4ooWov2orOYXXQXPWVr2V52lrPL3qq3WlmtqlZXx1bnVFdVd9TNdWvdXnfWk+tZ9dx6wfvvQ6KgaCraio6iq+/VUbaVHWVX2V0trJb2vXpNtbZaV91YU7fUbXVH3VVPrbvrefnV//WfYJc4M86OS2N9PBCP9n08FS/E6w0agxtDG2P6ProaPY3ljaMaJzVOb1ze2NC4s3Ff46G+VzfRQn8GsBEbM4RN2YQtGMVlMY2v8COGai0Hxm6MjEWxOBZGb+zJArbidjajjUGxJHbgUzwYG/EJPsNDfJLFsYzpXM6Pmcd8Ps1BvB8LGEE7W7KSzdmGA9ifgzmau7ibcUxkB7bnHhZxb+xDgw/yYb7GU/yQp2NgDI9xMZ61sWVsFZtHkxb5+ZgQE2NSdMYmDOM5HmZrfs6H+Cbf4bt8m28xhb2YyjQWciDHxk7RGg2W8DFWxbyYE20cx/GcwImcxKmxWYyIGXr3l7MPp/MAn+PzfIFH+Co/4296Q2v+wdvRHP1iQIyKMTE2ZsZesW8QSzmHi7mFK7iWsziTs7mIG/gAl3Irl3Az13A117GeC7iSdVzIjdzGMXycP/ITfskv+B5PRk/MjT1iCPuyLAbF4Jgds2Jj7uOj7MmX+DI78hfejBa6+Kxmekp0s5TBXM/kiNg29uaNmM5p0c6fmMmMGMbLMZS/8w2+zh78lPFMYFvt9Ul0Moax/IA/s5P2+hy6mcXO7EoPu7F7bM1feSR25wzuZAN3xBasiJGxDSfH9pzLeVzF7NgxtmM0+/FK7MLrvBNTeZSXYlP+wO/5J//SV/2O3/Iiv+EFfs2veDf68xHOj53p5Yt8n72ZG6MZzhoO5wgO4VCO5CgOY3VM4S1epYxdYzKP8QSPx3xu4v7o4Fmdydbo4j1eo+IZbdaW/+Gc/L/82Tj/0zbS/4kVue5YrmzpP3L1Sw3T+SY1mU46qdl05kn9TKef1GL5J6T+popAGmCqDaRWU5UgDTTVC9JGpspB2ti4TOMmpmpC2tRUV0ibmSoMqc1Ua0iDLFfwNNhypU5DTJWINNTQGqRhFos0DrdYrHGExUKNIy16Nbabqhhpc1M9I21hqmykUaYaR9rSyM+7lZGfd2sjP2+HxRKNo01VkTTGVB9JY40HNY6zyGs23lQ9SRNMdZQ00VRRSZNMtZXUaeQ5bmOqt6RtTZWXtJ2pBpO2N1Vj0g6mukza0VShSV2mWk2abKrapClGvtumWuS1mmbkNZ5u5HWdYeQ1m2mq+KRZRl7v2UZ+9p1M9wFpZ9PNQNrFdEeQdjXdFqTdTPcGaXfTDULqNvK6zjHy+vUYed5zjbwee5juHNI8I++f+ca9GheYbiTSQiOfp17TLUVaZLqvSItNNxdpT9MdRtrLdJuR9jae1rjEIu/tpRZ5/y6zyHPZxyLvkX2NtRqXW+R13s8i780VFnmdV1rkc7+/5SKRVhnPazzAIu+7Ay3yuh1kkffdwRZ53x1ikc/0oUY+f6tNNxTpMNOtTFpj5LNyuOmmJh1hurNJR5pub9JRpnucdLTpRicdY7rbSceabnnScUbep8cbeb1PMPKePdHIe/YkI7+fJxt53muN/L1Psch781SLXPNOs8h74HQjv4dnmLoL0plGXuOzLPL+Otsi781zLHINOdfI8zjPyPM438jzuMDI8/iAkedxoZGfcZ1FrlEXWeSzebFFPpeXGLlWXWrkfXSZkffa5Uae3xWmjoh0pak3Il1l6pJIV5v6JdI1ps6JdK2phyJdZ+qmSNeb+irSDaYOi3Sjqdci3WTqukg3G29rvMUi3123WuQ74jaLfEett8j1+3aLXIM3WOQafIdFrk93WuQ9c5dFPmd3W75G0z2mbi8/ah/1fRRh6gDV85t6QYpmU1dI0c/UH1K0mDpFiv6mnpFigKl7pGg19ZEUbaaOkmKQqbekGGzqMimGmPpNiqGmzpNimKkHpRhu6kYpRpj6UoqRpg6Vot3Uq1J0mLpWitGm/pVijKmTpRhr6mkpxpm6W4rxpj6XYoKp46WYaOp9KSaZumCKTlM/TNFl6owpJpt6ZIoppm6ZYqrxpMZpFqrvxXQL1fdihoXqezHTIq/TLFOnTTHbUJ0tui3yGvdYaH3LsNDXlQ0Lvb5sMnXplM2mfp2yn6lzp2wx9fCU/U3dPOUAU19P2Wrq8CnbTL0+5SDjTY2DLXe95RBTEqAcasoElMMs195yuKH6VY4wJQbKkabsQNlu5O/dYcoTlKMNrXs5xiKvwVgL9RblOFPuoBxvvKFxgimLUE40VCvLSRb5Z3aakgpllymzUE429J6VUyzynKYaL2ucZpHnPd2UcihnmPIO5UxT8qGcZcpAlLNNaYiy28jPPsfIz95j5DnOtfybg3IPI89jnpHnMd/I67TAyOu00JSzKHtNiYtqoSl7UfWaUhjVUlMeo1pmSmZU+5gyGtW+prRGtdyU26j2MyU4qhWmLEe10lBvVK0y5Tuq1aakR7XGcq2uDrfIX3+EKQdSHWlKhFRHmbIh1dGGamh1jCkvUh1r5GdZa6E9V51iSpNUpxq6d6vTTAmT6nRT1qQ6w5Qnqc405U+qswy9l9XZFjo71TmmdEq1zpRTqS4y8jpdbLyi8RKLvP6XmvIs1WXGOxovN2VcqitMaZfqSuMljVeZEjDVjaYsTHWTKRVT3WzKx1S3mJIy1a3WN8fbTOmZar0pR1PdbkrUVBtM2ZrqDlPKztdlH+Vt6jAlb+qG8a7GJlMap2425XLqFkN9Rt3flNWpB5hSO3WrKb9Tt5mSPPUgU6anHmzozNRDTDmfeqgp8VMPM2V/6uGG9lw9wtCeq0ca6i/rdkP9Zd1haC/Wow3txXqMoV6zHmtof9fjLFRH6vHGWxonGK9qnGiUGidZ6EzVnRaqR3WX8ZjGycYTGqcaj2ucZqFaUE839N7XM4z7Nc60yPOYZTyrsdvybyfrOUZe7x6L/PPnGu9pnGe8pnG+UWlcYDzzb8iLsxoAeJysvQmcJMdZJ5qRlZmR91F5VWXdZ/bd0511zEzP9PSMPKOrS5JHEpJGI0uyRbUk27KMMMuitVU25lgW+cAyuGt3f17A2Muaw6bHwMIzC5g15jFlMNcaA7vAmp41ZtnfW1h48PbVvC8is46eGZnj97qrIiMjj7i/+H9HfMWwDPyh/wddZTRmnWEaYbfj+cl/F4dYcErIc7BgIAHDv9ftdDtnEASbkL7ZRS98qimf8DXL84pOsbr/qTWMc6Io59OWVFC0WiVfkDTFUbEr5kQX/8mnmgpniLqtmTzGQ7gb0rGH4Q5NKuTLdU0pSJZZUDHOY0yKFpfvV9CvMCpjQGyziBwdVddQaxvZbYyY7uVO5/Jzlzvdy898EP0KjXYuv/mxzvi3Pvt68ih9fohGTJph7GjTKyBHWEa4Xas2T6NWZ3DoFYteNIjcYhGNiu4VtzgY0MMk7y+iX2fKTASxTrsTNsMmruIN2hg4aZJtRFql20GdbvLv+cW4vdBvI4RYLKqYU+or9XVPVZRUyg/8SMnUcjl//ICnYlHgJT29YkoCVvOrC+iHUqwoSIKEkODnc7WMlgm8IMOynpI51lipj39AdxQ/LemylrKkak3J8VxS1hHUM2SOQT/WBOzjUMBurd0McdhthrV21OmGXb/TbUeu53d97PkR3uy0mlXB8dDoONYXOgte0At8OOq42xWMhU7o5XuBB0ddOP6l8urqzurqKOeH8Q30CT/YTZ44flzQQ5LwArltZ5UUKUXL9Qvo5xmJ0UkfICgWlMdvR9h3K22/XXPRMMx99KO5X+i3hsPx1VEfNZPzaGF/f/+lwWD6nq+i/8x4TJU5DnFoYQPpCAYs1MBATRiW28hLkVMyWh2vg7sevWWNpdd8GMzeJvqsaxhu6J7IP2uW18xnsU5OTvz2PxctX/xO0fTVZ0VI8o6fWIb7FtzjhWetyir693AP3KjjZ821svlsnpwYxvhL/1z0TYRpGNFUT9eXZ7dWSLE5WvZr6BpjM3lmielA/7RbzWUU1nCtKsCI9KLKZifc9Byh2mx1/MiKI9EmNA+G7pqcop6hLFf71WXZMGTEKMYw12i0m83RgISBgHv9KI4dXpGNKDJkOBifbLbJXeH4L+nd7LvelXuExqBYUjzJ0G8yPKPADHOZHIz2BrPIQPch2lMGCtswWqCjfHJeilMbPgwtGpArFdKNb37zm+3BINj7+n5/t4XpyX+n4XjQv4r6/auDFmq10H1PPGE///zWQw/bly61lpf3Hn88/fzzaRpGj1y69Ah8dyL4S8b076P/RtuN9jiGDjfYGoznDkw7bzZ8fyJrWdnCPfVjvWYv+6tprZA5dy7UHSfvOOjnsufOZgua+aD4ePQfG68twK3fQi7knckcJ/QhRdqia1UsPnIrVjREzPhwdJ2JBqg3Pggi1EvG4GfRLzMYWqkGcWiITpHF0Dow14GqkG46g9qtbscnFwyE7rv/2P1CxuF+079W0kqFzFNlpewpZSx9FpJtHt+P3gd3YN7xW4VrriaJZcWDW96QLVQvQbKdEe5PaNgfoD9mYDghyKxJhzWZSJTINGOiHHY9Os6Rsv6D6+6G5Vi8trZ9B3ayaU/W5LSB79hedzbSdppHB2s/sK5xEN1wyS1GWtYkP51x8e3bSfp0zo3QFRgXy8ztMGqtVrNWqQquFY/YRkSG7DKi4/M0qpFBugXV72x6rj9/VkDzd7bRyFDGB3QM9xTjOpNVDEPJirI4jQwCcjXACg5IEon0UYukja9C+F2GazQFDFWHyMsk8shNKZN5N2IRrB0R8wBzGVaAqo6cItrcRq015OsIr6Gw021WsQALXgER6t6EZux2Qph7ReRvdrpeClK7HZg/zRDuhgMl8ckS6cGITAG9F3Cne7j97Pb2s28nwTt535RWSrwh2YLEsaInNyqcqAeSXpDa60GR5QwO/x92iuU5JImKUMAqdLaPc4WgYpXltMln3DvfbZQk00McyyRvheCjVh6XI81SBFGxJA1xWgbZnosUxcgG9omKKWrjrzielrUlQ8EplktxUr6TFnguldILS0iqr4Tn0JsESTM4RWFg1s/aaAFWjlPMG29oJRtinS40BtS0RhpICGmjkVUvJO2jo2YXmsrzyaXmOnLXYCKQxvPIdCUDFK7FLUf+BZc0IcS2WeiAuTZTeUlkeV3lUq7Ga6JTNNQ0JxliKFsPWTlWQk7uQmpTcQRsBxBWNZ9nWVZjOY7n0rwoaBiX/BrmIDGFrbKSYhGbUrx7X3/M9eebcPxLWEKiyIoFQ0urCPE4lTJVhDmfFwsZS87ZXAlaS4BLLMe77xQMSYYsDF7UeFbiBMnzcx5b9FRXF6DAdU8xpAa09tqWZTptaE5rrk3TTIYpAK1YYNZgDJ5gdpjzzC5zkXmYeYx5A/PMDW3NR55fa3bbMLIAXvm1dujWyFgjIYZvJPiRW2v6pAlDWELJ9D+N4ABXyHUYpPCGELoJQpKSglO4kzyJ55p6/Ndnkdg1vti0RV6V2Mdqtwui3XyMlZpnOaMrBo9dlB4l1565wEP6ZQTpKfO4yCLpuJFqrqn+sfL/8tXVcnlV9TdKf+lrq+Vj8038f9eqlR+7z2hoeq1aO/8N9xla4w3na9Xz9Ur1wvnqbffqDc249x5I1b8hSa7Wq9VKfa9e8JbPFurL4/9aK3or54q1JW9Kh2h7nmTuuGl84s5kbIUwKEndaSQeeHS0wsgssnS+kqGKJ3fPtUjwNGAuXUqrvMilMvbpNdYo2Xb/LCBRjktrupgXZFHXontdG/NVuRMoJtAkTeXE1JGx9fndlapnq1jGHAFfkrxoq2pu+96Uk81nChYrcDbisF7K6apsqvfV1pqXli1d0hVBlmd49zfQFxgHxg1DAE6yqjRhvmAfIA3vJase+nj2Qvm77E7T/pimbZ4t3XXHXbI+/jD2DMMDBJTV9Y/Zzbb9L8rnN3XlrjvvKu18GhsE/Uzz+RlY9xxY6xlUJQ2yDjO5s+l7CdjHXUDbBTqDq+RiGzB3hBjH0CSBSwmW07MtPgUTQjWcC4VOOVerHrv/WLWaK7ZLyNYVW7e0Zr5czjc1S7cV/dx6tZPfwRIviryEdwrtygSffwHquwXHJmE0CKILm8YU2QHJIFgWlxCBr9toHU0uzI4Avj+j+2njkW2T41Kav6Zxosw5mllWXjl5SbtvLS3sfFAVRN5NYSWluT6HZdYIntR5AX1GEwT99QHQwxQGTKqlZIFzBcxrr2wL6bX7tEsnX1GrmuZwsshpGz45GKcfUhyfFF2gnYbRb1F0WwT0vcXcyzDtShv4AjZcY3G74ls1i9cJAWwDCoXx522jNehZD+gfjM5tBHO9SwhqkRDOW6QhZvtU67zjpHffsHmdObyKHta6gSqaq25g38/JmIUVBF30o4zAszLPLVRsJSVLbErncmdLgsBKAt9ZDdI0zY6w6dkPvKm1cVtGw8F4iPq/EdiaID1hibLW5VNIkgUkKk8akoBkmUdQXM3iWUHm/K6t80iCvJBQtHI8yytceYoTrgBOSAEygkXFrrQrqF1xMRx7qA95RACkaGQAseGwH83G+uQ5QBcVyydPHoyHMMyuMwckgFv5G95vAB6kediAOhsRBPDlJ3kdHqJsD/7G1+Yy3IuG0X70NcpaQNOyQqZHizp5Zjh5pgsd2k3yPdwfAZOyD+hkfPUK5DKXx/T+Btwfwt0ufNHBfmv6wLWoFTGvXj9aL8imFlGIHZevB+HhoNdLyrgfDYd/R91c0qoDWq8oadoj/RDjpF9DP8eYwFvdxzwKJRZqMOXJKh7BEg/TrNuMuX/AcQnPGwJMAoq6eQYR8ttuwVivEaLhRICaYKDDNexWAQH4ruN1XU9nARG2W+jDd97/lsspjl16+vjqgw0eL6dDI4VYw0hjWQC8YhhfcRd0Q4ZJVeU4nWP5XC3dyJR4vAJPuYEmppaW/Ry7cInlJEvWjG8tdRCXaoRBFgkpX+RUJMC6X5M5xGqNFrLSrsyyJU7Scj3ADRmF1dM1zPOsZrCaZfKmGGaUbO2fyWo2rVjmMsOIU16atKMJPFEWaHEFuCI6RslIwW6U8GptwLpd4K3dyZe0+WjcR3vjq6h1rUdY4ZNucbhH/0hahIZwuRf0epSfjqKimw32WnvBXjDpw2uzsYMIk1yxKg3CYR2OW1n6dDBEw1arB3MkCBIaegXKKxIZhwUcAhDKw1Y/OjiI+lCYUT84OAj6zFQecgXtkVFnEylAOBgM4EbUHwyyBwezewaoRWYo8DhosNdH0f7+7BrhCURaNpoVnuWBgiTb6b17cC9P3kNuTXJBcZ7Te3pQHpZKn1APhvPe1x/Np9uuhLRSEYribCaVO5oH4YF8PKRZJDlMrtP3A8CGyYr60/cnbdaoWbQa4bT004xuarMG5X6TCgxvarMeyecM8g/2+gfD4Q3pCEco2BtBHae079MwroDTtr2YlfO9WIBEVgmSoBOWhEJt36OAu0kQ9e9hFokqm0qrvl4IZN8vFng+W1jffMtl11akU43mDm4sSorI1xcUBf1ECnNKWjYV0ZSCjKDywtnOyehksZRqbyxF6/c73idMFKQ9RxcKlj2hR59Evw6UKAPlC2kJfbIA+6SJ12FMYJ+MfsLUhZMItJ/fjRp+F4e1b9D1Vmlrq9TS9ai8tVV+dOnUqQdObS3HEqRzlfbZ+s74z8qdnfoO+mfxfeT+cgT3/+KpB7fg5mwsRMqfUL/3xHee0D54ImmzX4dylZglIg9gdZagO8p9bLNrrE4Hmb/N4ma7u0EkFd0memzzJI4uv3mjvqktSQvFxgMXQn717gcu2Mdekteyl9+8LaJstvcC4tBPwtkbTuIgfbKeK22aNr0Nbm5m7v1gZvOk8EdY4V988WIHsTOaPQLqKQIuNQFHQf/CZOVxFEbJl5AKBOtYfzzid8SI38HwFccjSrtHe9ksjCHyd53IF2MsgT6PPg84YoFpM+cASbyRoKIEruKQoB0ikY3FskB6IblBZbFwreUTmEi6gkoHZidCtZtgSALunG6z1gFcAo8ChiQUXgBSHTkEVaInK2mP01Sd812loe1oWtrQ9ee0hvIRT+fG/zMSTE67y+QcQXiO1yX+OUFbmkQ5/RMQkYXnBD3FvVkWRbG44KQkvZ7VBEtkFcWtB/UsSnNekE2pluundX0HOADHAG7gLZr2MU7XT7R4XrvPFPQXBI17q6Bq3HMCWhLIgcYvvJVX9NRbgHgbb5btpbyIFUkLmpqAjaLipoNcY4Yr/jX0jUAkJg1YjmqwBLVblC1YQ1XBdQBmFaCVSIetIcS4xX7xxaUqAt4x7Zt8dZnNuyjyC0Cb3eJvbNW6MiuximXBlBK7jeN+KO/siM052jAkXB8iazX5EqFeBfKroUGvD6uOjvq6gvot+NOV0UjRp/Laa/Ac4Pxuxa3A6mi1OhHQeiLR6loE4xNJy2aHiqBg6pTJUTGMbWA94NOLVkuoVVodDwHVP4ICgqvHhzwVnKPp+2FCo8hK3r6FrBp5e1RBwyh+5+EhkbCgAGDX3tz7pu1I3nECxiJjAxyB8rnwOSr3EWoTAVByrIaThDYVAfkTMd0oWi/6+cAtFt0A8tA0CKJJJFgtR0PZIBwKOjyIiuue1ysuFUmSfJyjwp9WHHLHyWEvW149OKAMjZHMHbJmS4zP1OnseRuUmXR1t9PuNP1OE2oOk8GLNrudIxxkqhpLdoC9idUL3dm923AVGKFOd9PBG0QgC8QYLpK51N10McFDRC5C2CcBw6vpC18omTkO4ccE3TVyHBYs3TO01e7j3e7jz5Ggu3B7lrO4Uuvhpx9utR5eFXTHDDiZswyn+GjzfMbyMR8UzaKt8Szp6nwG81kvqBRE4XgtYxpcfmV1c/2e9fV70JNL3Ubt7Z4gCx/JlV1rJe2kTbSc5APB+IVCjnf5Ns0IgrfTu2yPrSOpnGM5JH9T2t/2bKyzqRTiX0wvV8sriqyXuML6Pa+7Z500a6KIgeGgAhJqAq06xewyj9+gjfHnmxQfvYKLMFbwNnCQTUzGARkPRP9A5RxRi1A3gw3pCghgdcLOI+bC286ff9t3k+DCuefPnn3+3SQ4t/XU1tZT30SCZ1y7FOpBZeVyaWVle2XlHs0xVMyzbNk1sqrU6XQaviXyLMpxItZVU9FYJnkhBFryQgiyyQshWFHxRjnwhIVcaSUgL91eGRiCqaU1Q+3kHXiZ224j18w5vl0PfJrfhHZfgbki0hm9GNNuuxVCq0B9u5MIbpOpUIgT5+I+UKcbphE8MFHFbVJYsA3tOtE2uXHznkZTdd1hVjZNx9gL6BzaiydGcuhvLPhlL/DK/sKG7S6JtqfaVaJFEpcWDkxHXZIqtmYcu/j6i8d0wy5Ljqc66CCTkwuuacjJ8b2PKIYpHw3M/Lp+xvR9c3eXhGf09eOer6WwxAkCJ+GUtvoWIWWxAD78Xn49l1vP93zFklhRSgkz3oOsoz5TY9aJlHkiR25S4gHw2sGU3vAVEtYqFHbPxxNqBDdCSHiMLn0DunTF9DxzkfXMwPTYRTgZ/+85IXKdKFAM5ToJtymVySe35uEE9aCxME8qxWPSdnFD9uLDruEZk4sQnfAMA6iHDr2/ypxmzjLnmTuZHh0DzXUK59xkJMyfpqgmKB4FUFs6JubPw66LzyDXQPER/6Eqaqqii6q/6g1VUVdUTVS9Vf8VQ45IdSLZGNKQnh9GwBomH/QmM5t2LctNZ82sbWePnI3/dkQeGZFXTGMfCSL6DzglaMF3uq78FNRznWpkiEIG10IhFov7BE/4AvbbaywlpmSF7dJlF2gw+u6qFBiR95rcbV7HCKSaZbP8Yg4bUbCqOCvbq7a8FrRNKb/IszZ6In1XzQvYwSCV82p3WxIyjcoZ05OffJ+49ZqtWg0C8QOvF7PmTsUwETO3Xo0YjeqLAOz4wK/FiNoOuyGGDyBXDGwPYo7dv1Qe991cUC81R48/rpwU/lCNxMcfln/gY2i0Uy6PD1HgZJy86Yy/4+7b5cpz2jdmxNvvVJ5+dkoT0RfRLzH3MA8xTzDPMS8y38F8ANAGUeKtI4d0sJEIvdsT+NUlgxNaCNqDDtFooh1JjvFAjm8g497zw8nS2Z3QTaLFJAMDhhGMEz8eLXESzJPO5Nyfi6Nf8FbP+KIqpSVbIpyApIr+mVXPdNI1lq8EelPiyJoMa00LviTKSaEWVDm2mguuSSYZ9A/FS/N5HtYm+Ka4gHuNxO3CJBd2BfzILtG5kKBEcQgJ/sbfWfW1Zt41RYUXVNF0cw3NX93xZU1eP6nq1ZMuLDuwxGvkWS0O4ZQ1BPdkVVdPrpvWU/F8i+LDBzgVgA+f2hGwCAhzCyuiqOAohkMJLTlEf0TXKTIHATtTxEygMqxDs5NOi5g1kI6aImPPwfz81IQGRYpSVt5PFHLvV9BptaS+T/VJ3HwjSXvjGlHlvZ8E4y8roqpIiiA5hlhFv6Mo71dLPrl2WonvgOD736iUfRWeou/wS+p70jnbteyMHeh+fiq/eRl9gXHpCsKQqUREr2GXcDmeTway3zQQgTCwWgKxCCn2wB7KfmN6uflAczn9gn6ieSbKamo6WN/4pgyAtoWglmnuOIG90/R8M0QXf6Pu2bZX/0Imh+6ub7iKId6lvmOFy6653x14q17AF1zgZyhdZpk5mZTP5IDzqgE/uAyzP2K6zBZzhmEIYvVr7Wjyxf+AOJGYUElWP4r2WsB8R6NXj/SJwAr+WKZHDtGA4OnWII7T8HCfxOZli7/KNJg1qm+Pp2IN+y4O292wGuumCBtAFk8CCrsA9SiAaaIDzcooQdpeNIMgveza2YyMJZF385X1zQvbJfOgHqqNVkMN790pe0Vd5FIrlV4+36uspDhDlUwtY+1g4BV0jNGLJ+85duy+4zP53K8yAZUUE9kKnqAeKMMWonpcWlLCS4fT4lw8HgTH12F9S/mF4nJYDJeLBT8lOO47F+FvUhbE9Or1nuo7DX+bZI7gK2z7DccX0ouL/+ekGNNyjKActzN3Q+uQpqkRAUsVC3F7dD1SlHYLmKcuEUEkIIOQNShTZ9KcIVGdxv8wZXwoNBqaWb2EspcvZ08WskG5ura4uFYtB+O/MhqczYsqLyqGnQHWTeMaJUfLcBxiBfNZU2ARx2U0Z29ra+tQF1KpzusuHw+8E3eIooAR9JUo3tE5rwoZK6jwgoB5nLJM1RRULKT0QFP8ghmGZsFXtEBPCXgleOWV6Ti4hgYwgksQq8zsLU4jAKExiCCWQJDkuUT2TMgf6kPI6+p4qOq6ivqqjgZFl16C4IAkDhRdVxiqtKH2A7GsZImi4/PMa5lLzOvi/CbacuC/mqmbpCYz8cnXuBTjQapXnyZ2iWxhcJ2hBSThoWbZvp3Wjhx6WhoIDJxNDukgnX7O9h04rUCib1vZ67Cqo9F8ZcffBhfgcxluBJj7UHw4uCExk7Gz/vdoaUe5RILjSfpDpEm0ZC3+EtCN0hF6cRsdc/cy98d8qXV0DXRrFBWRvqkK/lzcJis5kIstRMThkYtviE8oC3Dc437PL/l9+B7GK8NBfKBkBpjwPSApyWFICQsajgdokCVwLkvDHbKE7ZD1aBobfwuRm1+jJCdLiU1Aw2iCBW6u6z+sfu2K241VCvQb1wMwaB/A5y3qMWwNSbn30d7fUe5XDg+zV+gfMzcfRolNDWBnGJ90EsTygW6UmhrVDO5WDVMZP6uYhnp3rx9RId4pmOHq+DeUdFpBa6oZjQ9OPXgKPvP2IsSWhtjbkXpYNVxzuxPbpmEPDa5Fg2ul1dUzq6sIyDaMvqB1OEpMxhKbDfRtgKhX6FxiGk6i8OzW1lhCtWsTdEwbNIrDuB0rVMHmT5lMtAMtCA14eRGv7VTD4zhtFx1NbGzWL9Y3G6LmFMb/QzpXcyv4E9B+Jd//KHAJ8MRT1cgTcadZtCu6k200suTr6EW3VKvLQtknAww+Ezz8x+h/EK1fN5HeAl1M7EO2UaxXpclNCgmbVIabcHaYGlRgYi9IFYRHokKUvufC3T1b05S8bsmOKWmeKuCMVlJ9N49QvaaJMse5Ws4GUq+noctLxYqb9pfrHOIlrr6SNhdKHMvLXDFsWOkFs1qK2mWvUijIImfpHAZ4Y2IuhQQ97aTLnKcVlBNphfV0gDKqKRlmRpJUtbyaSUkim8qs5ooLHitjlnXDO7bOMsxMXzECxFWFsc90owln1rYSRo6M/gqu4ckYiKaD4XDCgFF+pacYaLd/qMVd8Fcm6TiPCngUxNBDdLDnQdrkMyfnGhLrLbtC5psPE4hIzPoHrSsB6sH46rUOZ7wmKWuBacIsPU70OVQoUaWrF4YjDjuzczQpKD81zZtE0EglUNXUntXKgdBJERSr7qJ9hYLk8X9SiA7e+P4YM0doS8joZPEwssIPy2k9lCRidqr5+DvRIIa2B0f4y+lcGs3rEOk/mVOjvagf7cWKpGB8OBrN8T5lZgNijoCtCmE3OpSB9qnoipySo1tEKQt7iZghJLo+jEaaMn7Hm3hoVtSAZRVfNjwT0IuibTwoQEcsKjD0LqKPKg43/sSPSjIhNxxvquxH1LTpp1Ip3h7/S1T4PrgCTDebxuy75nEY0c9QCSkwhW7oRlPhEGI2Lh4bXdm4+OT9x47dj5iDYxc3hleOkZMnL27EfDXLoDFgz1Wmw5xktplzzAXmLoKOPaoogVkkEDRPBN3rKBFzA49HzeLaa6gGM6wm+EnHbRoIkBU++kUbNaOUV50sQimOrWP8VdEVfxnjP8Oup7/DAGjCskjVJE9Vc/eLtIt+KP2D6V+efn/A/lz6B230V3WWwJmMq+bKel104QX4l+FVXxXP6S8Zdk5VPUnTUIpNWSLtZwueege84aW571zfEz6mfoOczY4lbLG0DZgC7APLsoEdxBx/Xbf7uudJcHzpwtLShQdIkEml0Au9LNRslFyEYLyfXIXgO1MIdS6++CKvzPPQQ8CGZYbYPLeILBSTgErN3RjMAB8adgkf/SJ/aqmwoRpK0EzVVtp1BFh7/Zcu1teerKPAkJdOl7N8Iyezwma13ulcaH3gtfW119fn5m3lVXLZQu1al8xlSsdvzOZS74UXdh+BrG7OBK70IKN52pCDY+vVq4Lenjq1VNzQZW2uEqsoSFn80mngZ2flvz2a0pFfR78FfXMnc5H5ZrLSUeUCwWik3JR+ABV0CblI6lJt8gQwd6iomTAePiH1XWroFQe+12k3G1N8Rwu8jNzYaN2jGgtPoAnkCpEeVJv/SpRVCTCwkTZYRVUV1kjDoiAi2VnLK36KXauH95cKWSwWyk+t5DVdFRSFNWXTcPzU+K+XycJ9SknBQ1gWJUmRiLxZSxsp8i6k5SWJZWWlgHlN0bEti4Yo29iQDf4Zt1jAjeWF16TTWi57d2OhWDf8vJk2RU1CuiCzrO8ET8bI4EXexrqi8bgAr+NkKS/y8Ir4dbM1hPQTBh4TRl03AcyNmA2HlZ2qRKKQtK4LLdkvekRnMx4V3QM4/H7YbofLGVtR7MyAkNknHRKOogc2Lzu5x4LpuP499HuA0pcSucBUnRZLBKhdEZ/YLPqxgeMZFKLPOW17HeYrdjEeiI6YFkVjzR5/ryMJMi9aaddVV1Tbeddl9DnbXktjnIZ7B6KYxq5ordvta44NN7hu2hJ5WZDgxjm6OIhtX7qRVbPh29sn5iSxrQbDHFnfBBhlDbdrAfFEzHAI38ceG1997LEb7kF8G1t+G42uT25CLbiJTeSTwyQ/K7JIfkQ91aOmKOQ7zY/cR/TlGoqLMiSq7CltuEJl3Izt4nal7eO23+66FTfsuoMIZff2gmh8bW8P9XrNj0a93WiYHGfl3Kd2DaQmoVuzIrdLjAuAyx+h05fHo8uXX3wRRS++OF8vYnNDauW3ocxtPBoOye2foVV78cXxVXL35P4gtgWwI8igFu0NBlAUgpjn8SkP6//5yT0NOvWcmIslmpxONyIrB2FxiRiTMr01eiWWvU8vRERwQHM4L+sZ03XNjC6zKSnFcjyyrbKlOarKcXII8A1WEJIuiaqoKBBIHCfxyNLzcel+l5PTQe11tSAtcwDmZFZK1zohAAaJk2XuPQs5XUQSL6UEUbWWLFUUUpLMs6KeY+b3FxApzXGCme3KBNcLFNcjAEaNVoxOyXaCmOndjBUwcTI98XHFrRxHL2tOWh0/r9g2+nZiEQUcuqSnc7pK2M20qSmiwPNQFNWsmyoU5o/pCDq0lfHvahabVtGiYo9HZOjsyTKVoV4h3PKeqXmmY8LH00wRK6L024SeitN+0RgPOChih0w0jncTvSjBZ3S1A1pgT9DXzVASd+NNEtNNFJXplZiZ2ew8gXbcDF3+Mp+K4dmjMTz7TzFoe+nrAMTtxXG0HV96m0GNKfu5czW6uh6vnUPZOK0VI7X48563EdnAcnc+rRe/ipnTTYqMA/U7BjzwvWRVn4h2gYUltmEA7dq41enW4tr6sN633VildpqqJWEMzieRIRmtEXNBmob6MTm3KFvaymcCQFYPXYaA6nWOXfTXgslJZUW+HDhZ7uyjxy4iJibTsQgtCoptR89oduFPdV/vaRkdTnoQfZOgZ/QenEBSFATaos8WbXJhrn4yrLRrgNFuI/jM/sdXJZo2jU+b5fDvXZnvi9tgiUgIUf8fWpW4IQ56u7ukSvP1Kty6XjdXA99Y1VvXi3Q5Dif1+sjRysxquXFDvaBve7uzer3jSEX6R2s5uLFeQOppxebHoworLtmRdPv8eHSPjsOv3Vc39e1kHP6T/datqzep08asnnNjMLh15eZ6aXC0nrfspzv//+mnkFrI/YO7yVy+K3359D+2n966Ak9vz+tGVVqvM6SP5sD/TS0f/p0JlNuaFPrviqK+nsmRYkJweLTM/Vl94KDvkavwTQ5zmG5ELSfrsxVpAmgr7QQq0/WJJ9KvCPdQn0gEBhHZFQTs/gDO0MPjq8HhIdkzdJ2RgezKQUAPRH177cqVYX+ebyFtlbmRYwrn9X4zLumne71o8jnCHR3OXWDm94hhRidWjxE1zfXJDI7aaC8aX23t9waDHuCk0WjY2h8O52wlfx19nuzIRMTGhAzGyVZaujuhGAvbO/EOrm0YeGRnG6zFnSb6abVQvuvsome7fNrAAPEVwRZ5XledQOSB3xZct1sweMPJp5csQUYve7aTquzUC13XJdt9eDlnqzrPi46gmIIi6K7g2h5b2jElKTOzF/499AcUE9qw2vrddRb7tu8JBkv3sX6k8smqUflk/csPKEj+fz9Z/3NTrXxf5ROQ9ok6Wn5AKcrj+if/pyKlZjj+t9FvA75KA11h7JpVadfIrDIQAL12t9M00Bnk9wHBjtBTFTEjQc/uYXa44791EQ3GBxG6rSKyOBiPhn0p8z3+zlsXJ+/9CXQA8zvZQ0oKCJjdI8w80eqip85LCI/eWxzh3On35t+z9978e9EPn5ey4ucL7/m8iO57X/59PwVp0zk1s7WmVltk/PHJEfWvoiygnmx8AJJElFM0ZL7W8/7k+egwsUPv3/T4qz3vJ/mTIzo4PCRm+TS84fGkLd4JmNiAFi5BG1sxO0j2FhAGF7djARyONqk9xPAb26eDohds3Vaq5YNMEC4eD/KQDG29WmlilgsLK4vvvssK08eXfG8OcxP73ijG9RExFjscDK6h4bXeXr/HzMsJeGppTq17bbJBAx/2+9nhsEdD1O+TXb3XGXqY42euUJ4c4He35nb9ShcazweEj6M2DiuY8DgfOHmy3C8/Me4/AYc4joYQR/c/MYbjXvnECQieQP1JfGqL99FYZkLkXgImwnSK5qlQD2YbEa/HWnmAxcxGlNaX9l/XsOwHP/CAbTYe23dVU7Qi9E3d9kYtl4P1qBquv+be+25bDytwpiuGWdlod0lW/LQuRN4d750FnsKtQaZhF/OkLn7Kx1C5CqlleDAcDvZKx59Ezl7pyeOl6taTpfEIolvE2rhfevLE7f3SiSfR7ZXHT5T6EH183qZfjTWZM/IPND0kBnbAqBLBBg4JGoY+BwbWxYkQoYoOEmIOwfcvqJahGJpXMCuNUsNwdbGJ9ayuZ+eXBUXRXeD2bdmo2MWs5RuKIt0rBCqQ+ilWv5aMXzIbParNrBIZCLByRBsTEaaw1iDR5Bslx95h0O9H8LnOHB7AMA/6ox4Z4kE224suPULgZ6/V2o0ich7N2viGvREomW0TXUk8a8jWiMM+0G6YNjD69qiqprXfn7Ph/hcxL4lgduBaN+rCF31L546O8aMmDWHSRdFhazpPR/Pz1AbWaP4/Fr/Ofw8I7qYqoUR/fm0qv/0a+nNi4U/XP3d+G0H89V/lGtF4VZI42RUAte/3okE0aME36s8njAbZEcpCFAHbPOj3e63p3+DatdHBwX6U/O3GqXM6Irpyo1o83rYQVVeR5Zou5TROkZIPLHzv58vtYrFd1kzbjD+BZJrmAI1K7TPt0r5smjKKSDge0XgPbtm72mdmtnNXoG3uZy4zTzBPMU8TqSCwpDCHHYOsuLVuwpOvI+KBoSoQDwcdv0kn9wakwwwgUu4OoXs4hhk+NTskeLUauqS4rdRml7wL+3w0Gz9okDJYIcUv3rFSYgWWZ/mUgkUeiYhs+dwQZRXWUlW3dZno1JEp8KoIHDyHeJlXeMzLoRdxnJOuyOO/uEb/UImFl/Apll9Mp4speI6XOY4kpFhR5j8mcgKv6ByWDZ7VeJ5Np1iOg7U9xad53VRQTby3n9XCYAj/8+0j0l26K8xF5uuodg37Z4iBFSE5wDtSC8GYPGB/mxJAWCbjy5RC+ARguBMMBotEtQntMls/yObSIVRDFdGdh4flFc1ICRw2LFnFqqCoQiplZGFZqtimo8tY5g1Fw1hXFQXrWEs7nqbJWgXWvV4/0CQsn4+CD6WRCvVUDRWzgqDzgiBAPY3A2AzuVjXF4FOqKFiCiVOcLViGrCHE6lYwoTNXbk1nanStxDAN/HbUoAQg/taS40EfZnJACA2aIzTDbJbqbG9FaGZ+Qip/nxGPBv+h3C6V2mUFWHzTIQZSAYxqMth32qUPUYvqiNhIjqlFHSJqnSlNGQFV02FmrRAkAxO8O7WP7t6kjiUG6sTBAqGh6PRt15nXnIplF98XkhePhyQMddRqXd1toVEvCHqJCimAq6NJQaxTp34Q5vvgpjJs3FQG2yJSZ5pWmxkvECM/+ER+Fz5HCvJFkv/4qk7LQ/A7NGgQtDeAqLeywZEijUdxWU6bSdm+eGUwgA+UK6Y5vwj02SaWMd3YCAawMNGDJtvQbpH2F6bipA1htVbbqi2K/Gajsvz5I0nCRrO8/GN5R4fpV7qQ3sy3tm5b74aVm1LmcP5PMQ6lez6RuydapdMo1isR/yLraCY4Rs/lTfPfGavGCcMgh3d9RBS72MM/hHFXdNF35Q0fUOq/M83jptfx4RZj/NUfwi7cgz8ieriLGeYfTm9LqP2Po7ejPpHxTuwVfo0iyHVYh04z54m0jQoEu82YZwZWpK3Htrg4CmHFhPXSfRWsSYhzaeLjgerUQvS9kiTIkrNateoVPy06kp/Jfil3Incyp291ukHBsDSjUHY8y9DN51Z0PiU+lbUsy8gBzgxGffTv2RTnynY901zEXorLHy9++3C4/Jah75oWh9i05tg7y7KnBAuWEtTVjPbBwSgY9qaY4RfQPcxZ5nbmXqCWl+gukK5LhbhhLbYUBsRZIx5YyO49GNWAUagI1IUujwgl3fTxGtQfMCSQRbjQwNE6EqANKN7CG7Uo1sW00AdlS0n7lbSRyvCFbLeeyRknjVwmU83k/LXVtCJhA7MVVpDKa46EbcnVJPbuu1lJHf8FnxMF7vmirJvWG1euoI3AND/LpVzsWAVRdTI7O8vLO8HOzk4KnnbgMVNN27KbEgzFChzZeFB3PNNcQqIvv2ZZzc5kO1eO4I7ZvsUb7O9mOxXjmRh/kn2wxDqmNYzxTDxG3011NDK8L0rVUtBqYa2L7j/2TKt/LP9G5WJzQLTRvfDtszVrSNcsl1oHNMnO/Yl2iyxKr3rycqz7P3Z4uHOLGDXNhngU7N8UmckC9tCArhpMbE8fxob11JS+7RIlej+qd9JOlCn+01LmEA2+pxHabu0D37taDsPS6k9CreM16Kvoq0wGkFsRZmebOQ6YbZtJvA8JOCSKI6AGbBi7H+J9IJEh9qncKPE85MdGp10+hPEGc8NPXBApVmc5JD6InNOWqBInRON3jYatfjQcjT5t2rXEBVH9lBValVUT8ZOL8DzxMKSK1lJIvBHZZ7qmQtwRnYWLo71+9H7rVB1Ol08c92q2uWCuViw3uUSqZE3Xuq+FS2M7LdJ6sKpaBMFHKEGdeA6B3ur4atfQsAcYfdi7zgSICbLDLDlcnQY3JaBREIwH2SzqZ8nfYBCQv2gaBJBCLkQ0IAlTe5QW1VHBcLATtb/XmNgE1SaRQXGpCB9EfH9B7HPxgSgWybEYX40/UxpN+O7V2H9Tbc6WMCSepoghQpVujiTD7QyRe3Q7RL2CDj1zvE/sItCe6VWEFPf0U5hPSannO93nUxLLC089zbGACP/Nv9FfPiSWFST4G0HhnngaCyn28Y2Nx9mUgJ9+glMEWX3nO9Up//1nUJ4i0foR7TAAiAZVQhPvCWTbaIklXpIcYE6uUqvGFoTC8ONEc8Rx3/+ulKygL78orvn/xXPFbyFH3737z19QMM8idPLjHIul2Xy6RnmnLJXkQVZQe8iIbIci0h1i0+T5bwBacGz8o8e+9CM8p1ji+78Hp+UUj4ZrX1yDzx+8hzMNln/DG3jWMDlmprcibUp8pBCL5xvsM3HNnbnCinzsu8R1WDds+0csNT9HNooVXV3t95vN3d2g2QS0V/SuEiMbCHp7RDlTFJ97GQAEDEDC/vfm91onvPuNuUOX3jq/198ql4/Nv1yYe7cNrVaClX31VvU7WquwDaOnOzXAO1LHg4Np5a6tFVumQsSt+nwJRvsvzJUhu9N01rZjqeyRtl6lnmhuUdupT6nmvD+pkHqcetW2/zNZTAluvoJNB+sKruRd2RexxApuz1X8b71VSw1EMSO5haqgati2hGreEVhJlDKKc5fLp47Nt+N8uX06Sm5uw5Aywt1XHx3RAHjiW3ZZfWOwVt07Miom+CHWp2aYPPWGdpPvq6ltWIUg9PkTdGjI4z71bjWUjfEg0Sg+NL7WmkUjRHcc0fvQd8XweH9/NInM2U0RDwRE5mwBE2ABKxAbLSFA2f3+Z56rf/zj9efQQexfY9R6rv4jP1J/jpm3uxJjz4cuGVrdmk109Ras/+7hKHpv/V8+HUXja6NWHx2MgnvfW/9X15ledICy0Wxv/ltgnXCJhQKgpBpxbbaF2k1qggkF+t27t+U7BMltZspL0Zkz0c/euZYW5bOpaLVz51TWNzoq/4/fc+Q1bqIGuAu9SQYm8um2eFpLl61iY7nd/iUJBvlIk8evyNqHt0PDOM4uh6vbH9ZkcjMzlR9cozbYs9VsTgcevxxROQpdyNp8cjzaDeNhtheMxlchoC7KhhOWZrx/7doIWEVgbAOqEpjKGr9EfXW0EwV6CbnYBbK/jtq9bKWy9sBapZId2F7FVNHLEcY8/URXDlK8qesvMUd9oLiJZ5H2xLmYK8Q29oOol615axvBci1YzrY3/GaEBuPBcCQiRGzjpZHKIowRO6Fpv0/bnOiZAXGRJk42GtamGw4npsfxcuFDF8T8RVXwYYwLc9fDVvOAF7NYga+KfUPP6IaPVwOgKuXVK7kG6zgQdRzURC9L3M6OgCfhA1aWpabyB2zWeoCTtOE+NTAfrODNmr+gf5ycfVxf8Gubc3Nusp+e+kCxcMUmIrCEC/a7tQBd3R+PdmOTleFwNBigw/FoHwE22AOIEAT9wax/rqFDsjrajQ4dCZOFBLsJY0NOWp0DRBRKd7XbDds+5KNqo9Vq2I6OPhmxpjL+xUa7fVdL+v7oT8orcJP0W3TQsdPy2gTXIjqSp15FY5vXqbdRN0zSUeC6tR7BG+6+V9wnR+haIEaoX7fXe72iS82X+nD0iru7RW9A/JDO2iZLLVepZcS85TZ1vRdvHid7GMh+nInRg9+ZGH3U2nPmHhEdrFYtFgah4SYVJnxKMWkE3a2YY6AC42sDArnLfgToQ1Q0M30trco8x6KUIGt2ThfZg6yp/AkamuRheHLTJA+Td30eZRPE/obEBGQ0VGVL1VXNkLWspsH7/0Qxs8yN9it5gq9vmrvAv9jTOk0MWax5Q5aNJJHET6Lv1tNpffyNEKLvGA8PYhTXS+xYYpvjcqAJsRFLuhyoGB0mD+jk4fEe5YFI3ywXi29U1UKmamfoXlHlIAqyUA9LVgNtNhYIP019aR2VU2DhFsKLJPH3bC3j2EJ7cWm51ky72tZyuPl/pbWMm8btxcWVatN2tJOQ9jOVjMnzfOOie9KpNlc333R2Nbw5aUoHr1GOq0g9wZ6IuXqHQlLil3KCLaKbIvgm6xrEvP3EsWMn/pYEcmyV/a0mtb3+1rhrfyVOPD3ZtX9scbh4jAZX5+2048/LyViKzWemcghSXonRAK3HfnbKk96HFbfjE7EDkT0kX7oLBBLpytoy3toKoh7wAoP4m+2Nh4P9/XgBRmhfNqgnKOIM6pDu3tijugB9ui6lKDerQ97OdN1oQh+ukN2tRJND1gu+WwPs6TZCtwuMHZSBOGMCxMHDlIJruBuWUNtAUXRwcO1g/PPN3mgA4SAMd0Kylg6Je48BAmwRhOGl5g4gkBHx+bHTHAwGcEsvbGrhdQZSgMEJw72wCbfuNBlmTlYnQPs4VLtE9EhUywYMZjuFY4UZ0ZeF3YPB2vnwjs+t3RGeX3shPL88WPub82uDtTvQaEDT4CokXmdCmkqun791HvFbqRTHjXiaU60SZ/xQ/Q54+PAOchh/jh5QH95Wh1zopTpNe4WGNH1ajy8AhiO7Y1p0X+YaIltTqf/kif57M1n1yJ4JHFtD0UXan3Bw3UkEfZ+y4A/9BSVv6IJjFKywqGfyvl5sWkXTEXTjMMgG8PkuzdHgs6Hbmmbr6AXbcezl4+2HdMWUSxnJMKRMSbIU/aH28TVyf9CUyY36kkwe02bryK9Su3rCC0fUPRu1BNz0u2sTWR1x/NAOm+gzP/88PruweZ5FpRPVldpWcEez+7rjx1/XPXlpg2VRc3dhg0XnN6tbdVQ8HuSpi4bo0ZO6fSPunOCYmyihn3jbnXjdnUcwPzdE/f2IBEcx6FXicIy6KUtoxK+gnwZezqO+h7aoTRPphk3Cy1UpcUqi/iya6naASpQQ2f0XwhG6Yh016XaCTY+wDtUw3vjyeU5R9WqgiIVq4bmU5BU8GWcL2T/kZIhKOFPIpsv6xrObRpkvheUP5ay8Vs1xOXVpVZY/v7qkQryqF6x8ipPRe6wl3Swu1TKZRb2ezdYLjmNMIuOrz60fP77+nJZOf6HZeVLU1ccW1hFaX3hM1cUnuk2OQ9P++1P0acK5Evam2wwnGwW6jWSfTgmh/1h/pO7p2W/6DuyKJYBS2a2ve+ZMLjACAb2u/lDdrQQ//M0Yl7CHxw1UzihZo4pn42OQ6BVnohIL7Qx24IOG3/7t44Nv+zbUm9z7m+iniFSqETt0IO7EBRxvUiDGIIg5vbESZHmvcTK7Ydsb2ZMNj49WNu4Klhc31h/Mr7GuabrsWv7rHl9cno6ZrwB+JLLcJnOK2WFi6+ZmTUcYcJxHBFFF1EWdFo+hwl0dxTYmJaBJmJiVLyPcKRHXA9Q7jgEx9LOiL28vLd35YpU3iivLIrIyEjovjr9S3Siu35nl3iyzsKrLP+hlsmWv8swpJ1A948xb65zGcdo39JdOoR/BeNtAd52RHbRQWBYzFpLQHVLmv1Tya+cyubuPSzkZ462ymc2UoxMBi9BWJDg8l5b6p2bt+jGYd4T3qlHLeWgwuljVKvGGd0IuCAlJPNpQvczLGmvYx9Yck9WIxen4kIRH01AAYb9TDguFsNKO+eOjZ3M8xRXoV5vKJtaZNvFEVqPMZsw9UP0rifsRkVq2a7hG3PzRG1LUIiKm1f2IiKei+uOVKKilmkHA5s08e3U3G/2vrS3zkUfWaNine5kHgGL3Bg89NLhvZ+e+QR85J7dKlx55Zetk6ZFLTOKvO1m74vWK9PhrmDuYXWgnQH54G51JdShhYl0yX1Ob3UQrhsNqst2ZjLRN4PFZYltb86catEpswEKEwsPrPE5xKUBMlibqIo8QD7yGrH4BVq2HambOEARRti090DXNteH8Cl1nqR050KT3pDAvi5LiG4KsYl6y4Iy7LYA1OrvumTm9TFwtAZCEA8eX9ZyVy2ZbQbBLQ2amoxgm9Tye1JPWkZ+rI3ZcH+rI/z3rF9dtfI0XWS7FskJaEzWoHM8Cw6IibvBdNSOvAypU0lA1Q42rdo2oqMbDPmp9IytysiTCYCfV4mSoFlSu3/d8K9DLQOFT8FIWsTypk9mmcsoomPn1A6iYBpyTgXokBr/JIgejBLgE14/a6LDfG/X7vYNe0OvvEcVln353s70DGBxTO/b/hr4wkXGiCTLmyUwn9NqfuBhFfbJl84FT4//e8JZfe5e3dPHXGq9d9u66uOShZ5eoseJ97sW73KWLd3qfdV2SfufFGSaH8hIZMSkzQ9iFCX1LAZ8KIxwwETq82rp6taUFO/0+YvqxGQbqUysMgqC1S/B3JX4fC2+E9+nJ+1y6grWJNV0jCv2KW8E1n2V68RvGf3Hl0gF5ySNXLqGA5HH1atT/KOTDTMpHfRIpVL5WINgI8G3UBva15jegrGTrrU81pyG8+mAzbYenzq/dhj4MXXk4gjwGdOPzoGY7ndtPPPRpwI6IOYyg3Ye3fD8MpG4NqI8LQKVRARIPhbdJa7SJkhZ9aPPibasXtkLbGr8L3gNvi3q7WZLBQw+duL3j2LcdEhwYXWd6B4dztlCERy1TlF4ku/aoUr4bIwoyeKvE+W3b3wZOf6e9eeLEZnvn1NPlc97ZxuLtS0u3LzbOumv7xypvQIfl4jMvPVMsd9fDQm3p9tfevlQtNltXFpeJK/fpfCIyf6IVyUOei8TrHBAHq0IaCapjQ9tFrSaBFt2IjCkSa0z4A79dpdCn5hL3iK1oPAImda/4K9lRH3irQTARnN+xVHV2nMryoIeYXg+qi6gXNeDUe3DDjw0GWcJSLRf7kQrQVR0cobVE4lakPgcJ919z426MqA3MdDt8mwCfLl+JI4BAI+LXNEK98egwLgM/Pgx61Ifs+BrxbHatFaEgGl27thdzgsPg6uHh/iA7OpzDXfP6EIZwGpXEFw/5lQMojEX3mcM3QFfHwAn/E806JH4ziRM/9OPjd6M9V01bX0e3NDPEX0WrNcfbphLvWUSSVpt6cwmPOiKj9qqx7ephq0VMChzTlM88e/r0s+8gwZmZndZg2I/1vv3kGgTjvZm117wNbqyBu8Ff14RoUGXYnFnsxWR/w7xJbLIt4vfpuJ3ZJSvQW1Q6SqSDber6DvD6vI2yPZ9lqtKuHLaojVQwZ3Fc26pWty6Q4H2EZIyoMdLw2MU3kKsQoFZ16/aT1erJ27eq40E0zf/aLH9Ec3ZpKV69SVNkngZfqwC/g/ooujH/8dVZ/sRajWSfmvYr6dUGxF8917myIeaWfem3dnfhgw5v3ZUoS662ZjxCbLtvUf8dj8/R/+5NrFJYrVVrsEoKxLGHAyslcTOyOfmdmtOIuO2lflH82GqKTHEiqSJiXmo/hc4vnFyAT/30w6fhk48R0rfxSsOu5l2OaIpYyc3X7EaxYdf0nJqk6HrNafyHSrXzb6OGkU4bS2s0gpgCedtCYYW87fQ5GFe+bm6wqqfpVbtRpm+VyCt4NWfU7Dp5K+SDWfTDD0SNSiW9mv232dU0jczJjq7QmevNpAczjokH6h/GprkxTOwRFxeJuwv0CIEsPeKRs2Wq6BXVRAe6MvGqoejR6KB/kCW/SzHf9vN+munOPbdGdvCliB6bWAYOBsPBYH9vbx8iRCUOqOMQBYAhYIkcZPeYmdyX+KWlnmuJ/qJHXENf37t6de/rmek974cxVmY249nr0p9ioro+6uuMCG/XETVmhelFfylmOblEZJGICc+FmgxcsmQofcWQgDeW9PBccygqWFcjVcOKiA6b50K35GUcMafEv8Ch5EQn45VcuHP8rOdppqppqjkb95+lbaASayxS7yk18yk8aAEj4cceL+gPPuz0ek07lwuD4IO7u5axZJg9362UTkUo/45cMwefH14ef/l7CmkTmVbpe35soxAIQmaCdY/qYTaZDtVNM93Eo8pEJ2O/qj7m1U/meefTt1TT3DoaxGx1/CTaT1xURf1JZO+mlCkt/gVKi4Gvb3TnPA9M3WP4XUCxuN0FjrRXNOxmu5E2i7GQ7dQDb//Xg8FzK5/4kFhMB81mkC6Kr4sla99SvdZqRYetxs/M7VUgFhdMvHFusr948ttdbeqhcSrkW7qw5JgFPg8sLa4aeb5gOpBUb7XuaMEiQKLVYpbznZVsdsXxuWyxWofEc9Gdrdads30EQ+rDr0G1nFN9w43aTuAvE5cEAqZaICKvHgQAUANqpMRA+HxLkTW/6CtqnQALFOwunzq1vGvKB+QWCK6c4GzZ8H1DTade3CWqvKP7P25c6Y7smD+yTX5G+I/s/zhIEiEgr535+OGovFCj2gmP0n1ikU2czPlRiKkKMpwL8WZn4lDMm3YxivbGV0e9Xn+ttLbWmwahlWFZJRIExGZMIpRWFDTaGwMHtNfTokALslor0LKBFmUh7GctqZzPFVUjd1qxFPgc6QdSznBWMpsaa0FXJP7gNgnl77rEHwmV/06KFAjcmyVeTOmOUxLNnmoLsmsZzrQc4799Nyc4rPIQ6xQcrOsPmlspXpALjnskb5lqLEnedOcNMMdk8w3NBFZPokXr9bIA1+LXjg+jVra3u9vLEl/47JE6TGswKeG0KDf2i3iTLUvyLNmoQ/oGDu1KgY3oL46F8SnlCumrgyEU62DYv870gXL3h0Qem+RFbNN7wMP1qIQQeNxsNjtlUxPsOilveqJ7nLU8LP0YuLtoHU0NnBIUOalTdBVeF5BsYgrzTb3ecNbk1/b3iVH2bgLKWq0ezdg8UvfY/3SGovo6tRA+xrQSnjkpS8IDT8ye8T8gTgt6hVjutIbQd7cKp+XtxYY5weRADXeyyaFFTXQSu6pb9dut+izZm3PLzor3ydOd7jd1VkRzh0+CESZ9RNH9pH9u9L5JdIOTfsmaco+6pZHN3WiuQ3bJEkkCYxDbm8Vj/0voT6Hl6a9/IM8lkAuo3zLy49W4G1InmWvUp8A2S382rDbdZY4SQXgsjqT7VgSq+YVFAn1BRGbJ4QSW437sBBZ6AkZBCUmu5Boidr6S4kTRWWmWTiJD9bBWMSpGSVMLpXIFi5Ysp0RdMLHBC5hV0dPFUn6zIrDoZXiIexkhUbJP5DPSd7MpjhX0WvRTnB60/FxUNlROWlp4rlD8NJvCtptRZAfuwHrG9SWNme1Lmf0mBvm9CvhaEMT2g/R72LrSQkyrNWunQeLzIHmmTdS709+nSL4D4vRv2Jo8wzIzPzhobkSwzJiZfNGAWJb19nu9adlumc9c2QiLPslnQncIT0E8m8576XXILqLYtjX5TbPpKkY3FRCNRBTzlXt3diMiY6ToIOrcBVMW1jbyczzBfqL1LbknHpTbMTBoyw+eIHeSBU425n1uD+O9hnZEERWgS7qnpj/dX4j6rcmuw6ntOrV+I7tUYocOwbT96Lp4grlAfa6R4daKf2SAuAQC6A/zihhUT2BCvGOCyoY9wrbEG4zCr8GqIsNSeJ7jMId5T/dFQ7WKjmmnTCWPNVUUZcOVVTFQjGw671mSIknp5pw37GOvPXbstU+QAAWcwkqSxPIoxaZLoizW65zlO4Gh6CleFDOqLEtq3lCMapiy5HyQwemfnXN2/a7kPRBMeCUYO4Q3aMLMJL5aGJj3tZkfGFzp6ogKSbdTAI1ifY5PpYaJNDHWeJxh6fJNnUOF2wgnu6uaLGNvVLMLiizbBWH8v38HGBcO8RiqiPkUYWJMDav4eSOjlyt6RlczYtEtitbXFxYXTzgStE3tm4NGAB90MB5VN3Ie51pfxqpgpiSR5wVJ4kSZ/MzY9xe0rEH8S2iFlIBSKcSxiycXbcPSA2z7j6RzuUa8Hk1kSteI1S+iFJxsUq3RbXyJQx0iYuzv0k9yRMzcCTlO5UUx9o5R9x3MffHMOOKfeIJr7NhbzYQvmf9hS/ITJlMWdRLBAEMAoTVRZMixW3fZiJItBUW3l02/Jp3tTawWg/FwP3F6Hx8+1HxHkzt5z0mY9onrMOPhZJPBwQiaOJ3NpqGtIVr88eEwwe5yfHAdxyatha5fT2jLg8SieWKtMTHhIG3390qbbGSeWX5Mtti4aEQZKrqrORjM4tlBMIsX3SNX3OJBvL6QIIpeJe4V58+KM19oL6GXKJ3E8Q+tEh0EeunRR+uPXmo8+mjj0qPoUXICMXKePPN+9H76zOwRH3Ue7V56tPMo/SDmUvfR5KQ7R6M4uks0rMH9qYqNtOhj6dCJUC8C8vSXP59NnNjE938efYZ6xmTs2Mx+YqvRrBIv+kVWmFjbC24tNvAgW5boXeQH3cjJnNDq91XRV2Tdz3sFP68s7VUMO7+ZZg0j1a6kzSXPGZTy6yvrGf/ia/RaaSGzoivloFbIWLvvi80Q0Gc4uRDU7bSbzmxkPC5dWm7Ki2fl7IWdS7ed7iw2TG6znc+kjdA2pEztKzETlrTXf0Z/NLMC1xFg/DUU/8YsoZ9Ev0jdkNFfJ9OpR0JiSknEfcLcD0iiK+RHS69kzuxkORJ7h3XM00TPe4cIK/s7sO7hd5DfRLI075h1xV8pplKSIAJUkDhhA/1s9ty5zKcyluFxmXPnsi9ZoiKI/hn/JWy4+CX6hvQxT00Lsmh9yttZQYjYinnEGT7LTuTB8Z52smO+CphxkzkJa2XicYvs3bYwHcg1ss3D9WPbPfpzR4m7kgiWVeLHInnkFQdWSjwYod4fO6YTrJnOM3mnXrcLj0fArvbGh1f671UURTeGARBFFBHndZ8x3GzfMdN2oZ93fEDB/eCwf9DSfWNeB6TQX8Ob+FaF9bwzdQrTnZDiKU2mJk8b9Ffrmq1pavemyBNoZ5Xyewcxth7Eh2/U72k2GqFurpbfnphjxheGiVuX43fEKv07/igmJ4uEaOn6rrbgWLv3aGZ5NRunKEcOE/nRj9P1qAR88gnqxW4zBoFk6BNOvTZ/LhRRl6ZT/8Tk1xNasfcywrV1af0hsglnpD3Qhm/qkpL2TaB096UV2TD9tCKxWvbXMpaZNn0I/rzqmemaZ1oXsyeaTbMVbBrLzRNoMZ8NPNMuZHKuadummw/yacu1wiDIZ/J2LpfN2fn7cu28HbRzmdWz+YrjVPJnV2e6qK8CN7ZKf5c5bMZChhLC5PfBsDBxtEx6hPiy9r1EDNHthHzYjB0flBBqCxKSexoPy9/eWz3V1mEJ9PDJJ+RA1OzierH0fEkgysazpiYI4vjTvMKyWk9RZR71BVmT79EQq/IvvbVYXCs5mhjI5x4RfQANSlp137oIC7LmnU1rqiF8mVdEXu3JrMTP6ZmJVQpxCk3kMV7shjkhUXQPqQDknSxe1NOxD3BJ2IjlKVNVDeI7C82wkBFSKS7lS8VK1C1kvUzN8K1UpqyoYglLiCtqLMZSOR1uV5fvRCPPOb9QaJssp6T5VP6+fLFSXFkuVVnHlI9V7TTWraxjvhhusmilLgYZzVi6cP9tzdk+n2sJxiW/17wxQ8eEV2pQ59aT7Q7dNjD8SZzKYhKGEIDHgBiTjkbou4e8IJpuobCQZweKnCkUlgrSXw/39sjG5thBd1RAgvC2VGGxkEm/lH+Eh0jB/QQW9ycOCvAN5crRPZvNoyXr3rCGElOjG4qztxc7ByXBww8+COdzpWjNfqPgSivqTX0rXP9bsqij65AzkX516CrY7ayxbeJklRrgEacblPoSQweINRtUMo5jt/BklhGXb5fvXbtX4GxX+aenT2Zydo4XO7nC+XvWz36b7Av02vhXVQmXFL+olp7M5opa8b+it5MLvs29DT9xbFM3RJUXtkvwVHThqzIn3Lt+kfNrWjmfeT0846slLGrOl5O18XfR7yZ+S4pIZ9fYbdZLzRQqLnplMZ9/7Zve9FoaXtjb24XWeGVhkgDh+CdJ2u7MB8KVxB5lakYV/+5gC7iCfRKZYcVYj3PDvQPqzqRHQvrz60k5D9BvQo9ukV9Bi61nyc+UEY0zZZfohshOy16DOnhxnCyMUJnkPuIDF118RobZyeoax4qOya2dW/OfwWmzVn3k4ddkMlUSF5/JWNaxc2czJZwVBMMRKsqHn5EDJ5XK6LLJif9fZVce3MZ13vft9fbGsVgssABxElyKBEGRi0MSKZKSTOowoYOU4viWFQW04qN2bcty3ThIrXQSJemRNrXJmcTNjNI2mTRNQ9e5HWfGaTIxWTfH1E3SNskfISepp+00bqedNlDf9xYAQcpuEhDcA8Du2337ju/4fb8vFMyMlg6Rw/QI4rK2feiWm7MXpGCIHHfwwO5QKJa5rYAjmiCV3w6X7ev/LVInJrn6GkVF5wHLRBE4E4gmUhCxnfedHpyYJ0IrGaHIx76wCzZ3PyFQgYahT1DAaWNBUtFg3BFZQ74cEQKnJZV9uIElXMPKU1oE/YFisMNIwQsKvoto22z4QVFhizza/wBPtHG8T8M8i5qacu38haQiTYZknNd1vfVtU1X+XlYKvIJ5vh+LX7R/KEoC0JxvPYcl8sx8zz/opmAuGOvopLjDlowaw1lH17PDRAFtm6hRI1+TPhw0ZfxNqZYnSmfIl7d79M5NonWCN8sPD3cxEOpOoTZqlA58oCn6/SSKfiM3NpaT5URr4zWulItls7uz4oIcMAVWilt4UUMbu2fH2ETrZ6hZcN+XG83liA60KNsJHoUMaVHs9Uv740UnCo0pgCeR/AOgpkbDxzo6Bxju/TGMy9NO4kcyes2ms7JSr9dpMAT4bzxE1zevkVfZcTbidaceX1taMtSmZjSblMK9tbnaqC/He3yaOvUiwUzWZgH2XMgf5ULxHqllF1t+go4K3qYFQMC97Qv9jGYoopTFAVaXjegsGw6usudOnDjH1g11BcwDEjtYHWQl1UAK2VFZ0HJV4/6Q7rp66Ey9fvpKOn3ldH2dkuaphgvmftdQmS285ia1NfYD43KHZRyC+4EBIUVqCFJ11cZyogCW3zEy2Lr06sto1Wk1nNxEPhGLJfITuda652RGEDOScepOmYhkmyjukc8VhfzG84byI4teZiQ/5N1r5zwv18uhCFbeuK9jYhpBWxE8oj/kBfIBmeSJlrm+1GjWyWNprdf7kgkPrSw1+/qcBmrMe+tgeNlT8p6dh6W3dV/PUZbfObCiFWiyKKKm1+xu4B45f87COUxT10W9LrXVFBK64p/o5lw/jzHwcUd9wnwiqaP1hCmFxMnJyCEzEY4YcoA/LLLOwao+4OiSQD2tmtFaD8fDZjy0OlgYyvM8i1E6m0sJAU0PR2Jh1vx5xGGJHHNXUA+RsyhSWLjfNRIFQ9Jy4CLOaWI0Arz6kfDhBG/zEstaPG8JUtGMmWY83KujQ+5lsPCAZcdHtFl536yy3lxebg7t3z/UbFImX6LlLjXqk2cmvV2HFw/vYnb6n/v+P/8zGLvfwO/81NobuZzXy+UeW0KFPA1S+fmyWxvvAMZhMBjIV3q8WFY7brxa8yi8nfQatBJ3pXu1v+KDXKJQqAyIz1p5O1k8UEzadnJyqK+kXZIGY+kSO7KatOPWF7iBSqGQUAKfC98rufFMsZghx18yRp3hyaRtpUYyqeJWG/wa6asxmuHPTyFGkTlE4vTAfGMRlRJ3A+meOLGndtvZX7ulfmNx5L0njr79qDtb63tPNJMZyWS8++64rVKrF4tH528+8vjherI6W0gXM5liuvusPoEe83OYUrLod3/ySP+930KXyOqebzLXj2FbGBLgiWmz4gCEXKDpYdvoQWCMoTTe15jGNWZpjYzpS8sNSHBCptzmChG7INLodfiizB0I4I1l1CBTOqB+nS2gb3dM/wJ6kWJ9aLYm38QHiTMByQOeY2qUJlM0blfVOKrllYQsa6GgpIdVFIo7CU1WHVEcvDWbMM3qkaOyUzlWLh9DH+x/yy4JS5om6URNCLKqqcmBgiRYejZx9EjVNJ93biyXb+yx/W6ir9I4yAWwkUNu0xJHZDKDx5ZIx5ApDhi9uS5lJx6APMIAWqhN8bVKlQaKGxzpfyUOPSOLTloWiZ6i2rZqhUMa6a4Xb+AUJ5MLu244l3HODJQHyPsHnV+aejSmm+Gg3v1l1nRdM5tx0L1GOiwaOKzJrCCw5PbDCpKUeTHgWAFOkriA5TzuwMkGFjq/lDhB4CQtGJE7vzTArG5YTi9XrkKxbrgCSFWYNbisH4JH7pj08339uwvCrYubyPFazX+fGz6OvMY80sPF2ePC8damt+v3kKO5nXb4FdLGcsBlQEc6MsS7PszDbjO9g4kSR4HuHT1EU61yD9gHR0YOxB7gIL/CAftBjnswSnMtZGR5wiEbzoQs05+SjTD5aJtcCFwo7exynk+Q20n70k5sBUgSxGAciiT7+vOlbNWJSIoSMIimaYQ0Q5RmZjImWud5BcwTT9x2aDgq84KkaEEzGk9lC7tKXrwnhsYvc88vUyqRCqgKWaGfUYIGCuT+RRfT5AXyx+fdvkG1KUdDTjgS/IUXuC6Sx2wn85Ks6Opqvr8vGQnrPXMhpihBpkblkZBne2be9tN9h1bK5aWlZPWO6gLZWFkrt9YgnL28Vka0X3T0uKXtfA01wETCyEHGCpgW3LZ61ERMa9UjR5NRYoW81tbiK/S11Cay6fhY1tt4GDK/dOIufTSMSXOX45U10K5g8fyK02jsCHek1L0bzW6//TZ6nNosimC9A32Y2ifG/HwC2/c5PytVbsDFKbRqpbAWDMZNnPoLsqkHgk4Y99UOP2LnzHOXzpk5+xH0OMRtc6yg0QQJ3c3WRxZvUPfMze1Rb1hktuLt6j5eBmVtL+si5xrTnEdME9UhC/MWD6hG7t0hsuQQ1Yl7GdMKNmlNRFrAFGTZJZ0AUwUuIdut1mxjO1X+qwNx9awxhtSzanwgPfaUDzD8vL/3T+0ve0AF/+h/c9L/Ztn3C0X8vWn/O6Y37kZjksxuyK+6bQY3aZwJzrngqoGomFzeDz2hjkH4KIV8hbaEqDGRqliI2XKrDLIav+uOosYLwvjSqBhFiOV1sfS2iqCznL7vsbLAs7uPHPIkncfSxNHFKlE3VHLnW96U73I8a6u6IsgooDnqqMjxCS3IYsGQw4E0r1eSokB2gwYXEsUsFxSDvXGRMmVqI0o2rtmQMzqNIHqq5pLxor58oW9lpe/Ccn3y0VPRS5eipx5FG8vmox+bn//Yo+bZS4FbL09OXr41sM2fIZP1652j50hme/mB68u/ruzryu2WuYQ2YPyDgGmfW8Emcw8djsA5RpPb+sGzzY1YOh27CZHZABuYTAlvJvvo6gF0UHDjenxAOHhQTqSseNxKJeSDB4UB8qHbnZ8pxjgDyHaTUpO0GUq2rfYjN0vUPNuPOvDHwAimnWzHBnYCpYCzY1FvER2n2WjqWoDHmO8bTfWsEjpiVNXMZMydS8h/nvnvZnOVlRVRDhCVxrK6a8Uga5PtznPALAXcqFkM+b/JI5qGCof8VPX19Y8Ui1L/mG2P9RNBdn39PGxJwyUp2+ufBD4q0GhrgocLOD8NilbErnkBMhdMsW7FRcm/bG14q8h55tjMC+dXB35wZOq5wfHKYhEJiFknL6f0/mK9fvzAxdJv9wfM+tLeOuePCazexrF3cQaFHuuKANw4vkmb/kP8LLr7jjuKd97ZepHVWk8/SV/oSOu7yP3M7aXbyfu30EutCvr4uSz5Q3e3nn6jcswt6GeFI+Vw5NxmT1lXaTF/y2ovwsmvXqYv9IxfSOuP/FJaT6O7aUlMx6epd/Py5WmkYq3i2jXLBVBDIV+hhAi4za1vV/wF1/XsYPtqNns1k3nx56+hVy+LzpMJ8cknw4EnY9LlPzx52l08OXhywV04iVAGZ7OZuey/wFUcdHCiVEpgB909GQ5MTMSk4dbayUV38ZR7cmFw4WR3Lnuduu5UNOC423Vda/8DjyI6d6z/GHm3PuxX9lXyvnyZ3PhL/3PsWO7YsavtuoZXevONyzE7FU1Kg7ouANEfYG5BCidlfdwv5uOklM/RUuh5XyL1fSstp/VZeqOkFCRups91sAedcvJg9doiEoY7cfOu75vP+rYKTARy9NcnT5HacxdOu6dPts6yWkbLjpQyRqvyTObLz2c/hF76PlTvqQH4waknoMir8GzbD3grN19n/n69SGgPN3oS2aL+awyR/HdSFvgggGYvNo6HvGzIs5DbRfUjZ/Uas4rm/UBntA57DR+gD4cp7fH0Web1eCwpd+UWw0+W4pp6GX86fJUwU6O11eYyIOfja2hto0FEmaVVb7WBVsHj3IToIZrdse60Xz0cnB32P1obvuW4G2sP8F4/dsTyGpThxnKaQP6BRgF061B87+YmWqW5QppNuvIcL16OM1v8optML6YXemqe8lRQ+1LFz1JJlHJvjb4o5eZa69m4nx+XeUPeLdQmL+itE6DWo2FINLPG0vIKWllvEJHLN29Tsl/for2lQ1Dew1rOHSsh6kZspzkeo7ZICwL9DES6mfd5Dqsyx9m2VlcNjxcl/NOqdFzkDaRC3kw+oipzVtBQg1dlLG9ID6uSsrzRLueb6G8oVzdEooylECWtAm92hPJVg+uPaC9EciKPE831lhN3egpq/QcA+7olWW863VvSFiZjkwmSeyozpyh+HVcofxAu1KJTRCusQQZ2opzSFOxpSHdadW24JAOBQdknyjajnp2tULtQxcO2P0f72WLsqECd8nYbjcAyTmQgELac1hOO6RrhiIO4vKBpX9FiQp5Xta+IghL69AsS5vJcAL8giWyeVURuVQ+hFhDIWAl8VNFNfV03LaG1oeHoN1RpHWvo9qMIEwUSH3nPESk86OKjrR+fJeecI+c+q8f4OVZdn+MMfBfGHFlLZwXc+rpSnycC4fFIgguqDd009REpFGlI6pExSVUZzccksAy1rk0SufAYqaMLzGPMO5h3Me+HDMOICNrbasuuQqhXClXdqJ0nX9ljUbBY1+xodZQdENMsBnbHUVJrmIi3JXB7TIP67Vo2iDKAcNlWlX5iajKliBGPTOJubXwggPJVXIaDa9TBDZioaSC8qgG1/vX1+5+Bwol6H/n3ckEkqkTU5Fk9wiocy8WiPMdLyKU7feHSWayjsPZgVRM4PlQYQsGArpypCImtur8vMXlm8k8LLKcYkZzKIz4mChGpGEveU+REpRS3kryOLib6AgENXTyCw4MD+OiVw7CWjv5wsJ7sP0n+P6KlWVEPBlUcSl7gkISwjESWHxq/wGEkG3g6bDRN7+whIyDbpczxBVbkpZvNkDV/IxkJj1tunwsgrRkdiWhw8jw5Hkn7zPAldWQ6KAUi2T3OkHZKE/jbT53osdP7/D1EDiUaf0XEFbGQtYjqWq2R0eSOM7ehQGsF8u989p7n7Oqx6k+ei9fqnsUI0AbomGuTUW+IuZHaS3zrJ6aRpltYEwvna/ZOd1pHtEkh0i3y5CkRnYw844FpEBRJLybKj0caCHJcLYrto/uHzSOUd2Q1mnqo7Dy0SrfJ4uWFvlMZLqQH8xKRsYKjlrU7RDbkfEgPsdMRsYpNhOqKNLvqNfwjrMaN4+0tGGyTtVoylA9gmY/JIU0LKXHSrwL9wbFwOh1GW3YhP38qxcWjnuwAYFLHHo1Jz3L+/bnIq2tGazWg1PlCqXCuztux6D3IsYPKZ+UAi1YMzXHUAFyAahhvbv1cNnSlq289T8qR20wTjIlDEHjp1SqkdQN/Lp1CwN8wG14olW78/fzM0p4TqDTT37/U34/WD7W+tWvXu1793oTnvXbo/PnzbT3hQ+ScSZBycvtRO+d2Bzxo0yzclRJC569IH7CyWesD2ZFUKrXvSjTDZp9R6umRdNVOp+1/rmaybNay0+1z/hh9nuYMaDt3wBMDCIASaq/2k+5fQjSVeFsHt6s1EVfRj81kOrNvZuH4QV054KV2y7Kk6dmhSNS09fxb93E1N9KvZxJqKoF+py+izUzOFIaG0CDqTyJOLOeQivRd49FimVUVtxY0cDAX5np4nCLQDinrrg+HtDqub+8XGax77dUWZCjazmO+lawHxqZ2PqYA3aCggTEfPADADtB+0MbUhScuTNHFhs9IslxMjxeL4+liysr1KZqAsVIwg+FIwMJKSFZTOSuFmOn2MVMX/tcnjHwMCzQImRcCMsZCbcrdw/E35PL9g/E8x7+tUibn6eHA+xh6npEoPvRXvWDml7/KL/0ql7aFl++jviDfGJ9vp5z1x4VuhmPb7c12STGrHoRedLJwBtQVRdHIdWqKghwaWUFDLwLqKuW9UQPP1gRTBSJD1RRqW/UCY1WIcm7BzBztEGPgPPBTe5RsCcxB0Fpq3gekqcFkKThszw0W58dx5eZbXrhlQpnc9hlyBrxY1EumB+eGl5a8JXc8Fh3ry5C9bpmvoj/3ywQ3hw0oRz9altyjmSM9BbCOPvUOWHSEkflxsXrLLZPy1GBid3A4PtdXrO/4BH1i8PBwo+GOx63xvkzrz3r3tu51hXKlGDRyFuCUHTP8OjjLl8uoXF4BgG4ZoLq9MWMgEQL7yYHrueRciGmnkm1HNezh++jYwl3KZk7NvtXadlnfoWjmryFN0kBw1qTWa5Kmfd/PJrMUMcJkCgsb7eQqncPimpSZL89nwH4PR6742X0fTYnxIAyfwbjIbOnnKzTGIANZddpBJBQuXwu5eAcglFxZE1STphpYXlqKb0E1UNP3Nj8C7g4PMqWqyzSurjdHt+lza/aesGaHoK12ZxWi6qx2MnGnzjyEmIe2tUOIVr+uhgsVG22krBY9B6pbqdYmZNmDvWuwHF3rxtX/hFwHsCdVGGCpoeZnPzcjRQvUgIii3fntHJBSiF0nZHnABToN9J1d75w9vG84JwR3zUxd2bcrwuu8JP2dnDDNhIknLmRHj8ad0b27+wL60dHsBaTv24vxULaqRvb1JbTBTEqwBFWbkU044At7xw/GUm5yLOmM9nFmvxE7OL53e2xv8PrY3lo+jboOnR7j5Bl5Xt4jh/tNM99r5Py3j370TXI6HE6He2UXwIWADuOLE6EsUYRq21AiXn0DxR0H8mHHEcRdtJqbNC+208MZDOcJv4HuZvco1O3H4dEo8X+dAdZj/43WKY4XNDey+l7n4/jMDNMbH4D99olcM2+6BaFL9wqmXeo6pvBScFd8WfM0MiKD/uW3SPV3k6KujJ2KxU6NKbqYRMx8axP1B5aWHKxKkopX9g6U2N2uu5stDfTmhghQK/Pw6/TocWgJVNraomKjzj/gXO7tu+vDJzKZE2+CxR2+rdgDAoS1FcRAv6GX+Mpgf2FwsNA/OE95TFOfcRzQXfV2m+/lPfRjf/Yy+8k4c4w5/jq8lURV7rAgUibEzkwGiiTIlu62D3b+ghILNenFN4HcEtVbq04dkBWt74oYaqvYaCw3my90d1Z7v2mgOh2DVsFsMbVU92Otm34tO06zLikSeTvA0y8B0Fvq+tL+Af2EtHXIIUw1EIuMmbXqOK65RJD9VL8k3U8eWagkWVeu9F8Jox/1Y0u6/79QsyT96D2FK9Wtdv0yepm0xxnauylOiegwIFURVYrmeWx7mSjR5XgUlKMIpgRHbXoqGAVonAT6ZOqu++4c51JCZF4qVybHR8e4xWCc19Rw3/SQxUckrAtExTBY4O7lOTYQicdkng3zAr8LeHHvJwfsu+u+UVyPCMk0OdkH4xxiOTU1FXfTFiY6dpYXWSwqLOaJKqsIWAjziLUENgA6wrVrRE9EpE4OMHVmkbl5h0wluHBLeSI8uv6kPOADTMm1+4ghdxwUaaLagXg5NiBGvTS7uwKoTJo4AgGgqJam37LM7MUrF2dnH3nvxdnW125KibwoWnEjkH7rRPFkOqAbAi8LRliWj8tYEHlBjMYC0QFR4EU7+3Vwkyb2l1/ZN2d+52Aunybda5ac6+J7HyGLG37KIkNHLBrdk0myimapmhTEMdeuJexXWJZog0QE4lAwyN6kISuUdscnpt+WkpIPHBofeueqJm/ZHeHxAhaiztzE3M68ZUdt7EwINl6FqhlGb1w1/i9yo2QmgpqhiFWX9ISCCRXTrZdH3kduAxbXeqRL7XhCILVgRnWj75aKeyShq7rIyZwWlKRZDD4CnnzpRE2R54Ro3wOHeIE0klit9am7vOmXJ1IZJ4GYufaJZx9BxS1xt/XMt1hdQ2hoPBlHsmIqmhTgonlrLBZ5gWUNA0RGsjz+pU/roXA8Xrz/zp+2fuacnyyd+GNV6vSBT1P8WIGMyRTeFvEA0AqT7TRbpWg4sPnYkIIA7AZf4owJ0n53zXCcwO1ThZlvcBwrwsYBdJqV+QkB8wvoQUUSZu/nRUF5YIXDnPLrD/ErAmkMT22LzTV3IlXyfrRBzxx1JLeYO3g5t80J98WHM1NPx5iOb+bD6Ema69bGcDj6zdwH4Rj0ZOyVhzP7u+X9CUWfQsQTOMpyFIIcafficT+djEDkgq9KyUpipP/USS1CpunOTlKSrjHvQpeSkgBJW/iItv/i/vaOlNw7PfFuyDXwfwVB8YUAAHicY2BkYGAA4lWM4ubx/DZfGbiZGEDgtpnQKRj9/9f//0y8TCCVHAxgaQAQawqVAHicY2BkYGBiAAI9Job/v/5/ZuJlYGRAAYwhAF9SBIQAeJxjYGBgYBrFo3gUD0H8/z8Zen4NvLtpHR7khAt1wh4A/0IMmAAAAAAAAAAAUABwAI4A5AEwAVQBsgIAAk4CgAKWAtIDDgNuBAAEqgVSBcgF/AZABqAHIgc+B1IHeAeSB6oHwgfmCAIIigjICOII+AkKCRgJLglACUwJYAlwCXwJkgmkCbAJvAoKClYKnArGC2oLoAu8C+wMDgxkDRINpA5ADqQPGA9mD5wQZhDGEQwRbBG2EfoScBKgEywTohP4FCYUSBSgFSAVYBV2FcwV5BYwFlAWyhcIFzwXbheaGEIYdBi8GNAY4hj0GQgZFhk2GU4ZZhl2GeIaQhqyGyIbjhv6HGIczh0sHWQdkh2uHf4eJh5SHngemB64HtgfCB8cHzgfZh+eH9AgGCBQIHQgjCCsIQohQiHSIkwihCK2IvgjRCOGI8Ij+iRqJOglFCUsJWoljiX6JmgmlCbcJxInPid+J6wn9ChQKIoozCjsKQ4pLiliKZwpwCnoKkQqbCqcKtIrQiuiK+YsPix6LM4tAC0yLZAtxi34LnAuoC62LuAvTC+ML9gwTDC0MNoxDDE0MVwxjDG+MfQyQjKCMrAy7jMaM1oznDPYNGA0ljS8NM41GDVONbQ16DYiNmQ2kjbmNyQ3SDdeN6A33Dg6OHI4ojkcOTY5UDlqOYQ5yDniOfA6bjroOww7fjvmPAA8GjwyPJg8/D1OPbY+ID6APtw/KD9mP8A/6D/+QBRAckDYQQRBQEGEQdhCGEJEQrpC3EMOQ1pDkEOiQ9BD7kQ0RKxE1EUKRURFnkXARehGEEZURmZGvEcoR1BHaEeKR75IIEhASHBIpEjYSSZJWkmOSchJ8koQSk5KgEqkSs5LAks4S8hMrEzKTUBNdE2eTchOEk40TpRO4E8gT1pPlk+wUBBQQlBkUIZQ3FEKUS5RYFGaUd5SUlJ2UtxTYlP4VDJUWFRqVKAAAHicY2BkYGAMYZjCIMgAAkxAzAWEDAz/wXwGACE9AhEAeJxtkE1OwzAQhV/6h2glVIGExM5iwQaR/iy66AHafRfZp6nTpEriyHEr9QKcgDNwBk7AkjNwFF7CKAuoR7K/efPGIxvAGJ/wUC8P181erw6umP1ylzQW7pEfhPsY4VF4QP1FeIhnLIRHuEPIG7xefdstnHAHN3gV7lJ/E+6R34X7uMeH8ID6l/AQAb6FR3jyFruwStLIFNVG749ZaNu8hUDbKjWFmvnTVlvrQtvQ6Z3anlV12s+di1VsTa5WpnA6y4wqrTnoyPmJc+VyMolF9yOTY8d3VUiQIoJBQd5AY48jMlbshfp/JWCH5Zk2ucIMPqYXfGv6isYb8gc1HQpbnLlXOHHmnKpDzDymxyAnrZre2p0xDJWyqR2oRNR9Tqi7SiwxYcR//H4zPf8B3ldh6nicbVcFdOO4Fu1Vw1Camd2dZeYsdJaZmeEzKbaSaCtbXktum/3MzMzMzMzMzMzMzP9JtpN0zu85je99kp+fpEeaY3P5X3Xu//7hJjDMo4IqaqijgSZaaKODLhawiCUsYwXbsB07sAf2xF7Yib2xD/bFftgfB+BAHISDcQgOxWE4HEfgSByFo3EMjkUPx+F4nIATsYpdOAkn4xScitNwOs7AmTgLZ+McnIvzcD4uwIW4CBfjElyKy3A5rsCVuApX4xpci+twPW7AjWTlzbgdbo874I64E+6Mu+CuuBvujnuAo48AIQQGGGIEiVuwBoUIMTQS3IoUBhYZ1rGBTYxxG+6Je+HeuA/ui/vh/ngAHogH4cF4CB6Kh+HheAQeiUfh0XgMHovH4fF4Ap6IJ+HJeAqeiqfh6XgGnoln4dl4Dp6L5+H5eAFeiBfhxXgJXoqX4eV4BV6JV+HVeA1ei9fh9XgD3og34c14C96Kt+HteAfeiXfh3XgP3ov34f34AD6ID+HD+Ag+io/h4/gEPolP4dP4DD6Lz+Hz+AK+iC/hy/gKvoqv4ev4Br6Jb+Hb+A6+i+/h+/gBfogf4cf4CX6Kn+Hn+AV+iV/h1/gNfovf4ff4A/6IP+HP+Av+ir/h7/gH/ol/4d/4D/7L5hgYY/OswqqsxuqswZqsxdqsw7psgS2yJbbMVtg2tp3tYHuwPdlebCfbm+3D9mX7sf3ZAexAdhA7mB3CDmWHscPZEexIdhQ7mh3DjmU9dhw7np3ATmSrbBc7iZ3MTmGnstPY6ewMdiY7i53NzmHnsvPY+ewCdiG7iF3MLmGXssvY5ewKdiW7il3NrmHXsuvY9ewGdiO7id08t8TDSMY9niSCpzwOxEIuCLRSPDFTGkUitqaYHmTG6kjeJtJuLhiKWKQyaOVspCPRzqGS8ZopcCRCyRcLnCkrjbSiUBALu6HTtUJBwoflQKKyoYxNOaCNLUwywloZD01JSVePK7u4la7uxne1prwwy2qtShMzI1LT4DJNFI9Flat+FnW4kkNaM61fpEs5GWRK9TZkaEetXKDEwBYw1rFYzGHiprmhpRmeyuHItnOBx8V7pE7UeMRv03GTx1yNrQxMnafBSK7TOaSp3uiFeiPOV7mFrramvJjpvjozs6TlTMeLIW+DG1vaja+2ZwSdHGeJG+nOktWVCQuzRMmAW9EoRfM8tTW+wdPQ1Po8WMuSSp/Ha5W+ECn9KNXtKx2s9UIx4OQSjb7Wa05pxYGVfhaGMtCx6fHAynVpx3tMRf1+kgpjekoP9c4ZMaHxdGTbdMQ5cRaTkqWpbKDTLDLLM4JUijg0M1OGqc4S05kKkmhmfipoyWJ2vtUJHdyM7TalhZOrNvqZVCGBdj8zMiYLIx4vlDghz9Nxt6QbmgZr/cxaHbcCroJMcavTDkGyj6dukxoloQmRSLmT1XI4H/CUIJ2CrdDDTbViqNNxKxgR7fFU8GYO++59jyhYRSFMJCElk76mo6sG7oza9JuFPcPXRdjJMR235n44CxcCHYqesdwZRKcd6MFAiA4lEp2SumBNpHUiWRSbLm2LTSnqes4lliaMDsN5ysJEkHAKyOlsCsrx4oTRzgtulyfcrJG5pG/7Fkmhc2UiXHc2CDJueXdR3A70ukh7MqL00wy5GfnVd0JueZ8byh9huDghYjPRqZ1yGW3lqYhIW3fC16XYaJSsHgqzRo5SD6WJpDENF7luL5uh80eK/LUWZUs6Ep6SLR66pFhxaMX9aOcBlDaKtDQrcrG9PCvIM04h6WsVdkpMXrC2oyD+/CYRvDiRxs5/Jwrz1O+cpFtIaCPozEv1I6GSckTGIVm3PGGUXG2kUzEZt2ResFCwW0izHIzL1a1JG4xETNGQbwWJlJ18VFMetao5YaUSnVn3zXI/Eipqw5Qno+WJwFAhsGLTbpVQ8Znsyq2ZtmLPguTHSF4UcV9vSlvo66UGCl2lyFZyvVJiU7km7Igyx3BUqqWTV6I0zFngQ6NcQqbKoYx2LXWh2J0IXBUt1axTmdAN+qJMjDRNEXGpXOC3Jmi16mFbRH0R9ngWSt3NcVGmi5FkpK1uFZgKayH2H+iIzUCkifVuWxGb0jbIYpFSXeoMeCDKPN0oSYOCPXThVxtIRRMrA8WHlYHWYSffvB43pHhCnFXtgpA32YUCD7lSIh2X83wslsQfTLcglGlsZsohb3TVEbPgirMJUiF8bdw2Q906nKw6pCRpakOth0o0h6kM/TpreaqvjTh1O2l9JLjL1lV6UhEbyZA8qznSWTpU3JjKyEaqRm+SPibDlre0F6Q66eQw34cdBaHjor4olVTdyeu3zUgp5VC8c7WcyyhjU/j5Ar2yRZKX4VlR/k3jLGhP4WrLxd1mL3C5S8YD7YLC+VPFkU4ehj0+IOO6Bek7Bxe1nDXpYV3URDVqASlJ0WNMKprOJG9EU7nffqb6DeeZ5JgxiUzuLB2qFdxK7Te/UZKFvMqX2aUW8ZQKQte3hL2ix2kXzLlGK8cuJxWTig5hoWA6yFxHupxT6ZKg7xFEITHUAvDQjISwhS4XcsUnvLc0IzGkzEDdWoM0Zc7cZglWJ2hXxaFWJN3Jusn1SNLeWFGlfjEzzYhEY+9THlVctqjH5F60ha2iqyUnqsXaO0qs2zohTxxQFhZpI+EqsuSazYRT/XcFdz4JB23C3q8pu1cSYU3Vf7mZ+GUKaoFdJfQ77jdrSv3CFoueuedzkggbxL1nNEuwWnGommh6uenKFplD4eiSQBFXTd9B2ZE09ST1n3XPdR6MG0mqwyywpkn3hdDfAmqpoF7HVuiha3nCbDgz6Voh51Njqr5naBiyJ8yU6ObRqBPnGKZmhDv/pqGS4lv01gStVj0kgRTKB1othzSZjHbOUTOKlmxa1Eql1u9SjQqqooMwNGPeaFM3iXZ1pUULo2IVJXbc9pDiUwlS5fCIq0HNl91xleoblSiT0SGMROqPrTlhiz6Lu+tRHkFLU54H0YwgFEpQIc0Frh2efcPxLW/4/t2/UfMCO08e1KB/3121Le2nJBeTXDWdJ+ftgPdpO8qivvHNf7PAWdJ2iyHXcebXC1yxtFdtKuexUT4qq4TNqGY3XK1tuwcZmL+R4woVI72dmmZKUobTmoPANdbusrC7sEZlimK8lSUhz+9atRzWii5x3YVv03uoP+YJWp3CXQSN7EtFXXqd+raYQmdpQyhq3X375Vc9EZS30pVSoMiV6G5Jm7pcilxK8re9HaWE7llDtzEurqevbqTuhkiXkWFjg8qRoRtx1zUF+U3C+cCEVTbJqvo4z7bz9Ky79Jj1xdzc/wARDj0u") format("woff"),
+ url("../fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800") format("truetype");
+ font-weight: 400;
+ font-style: normal;
+}
+/* stylelint-enable */
+
+
+.dashicons,
+.dashicons-before:before {
+ font-family: dashicons;
+ display: inline-block;
+ line-height: 1;
+ font-weight: 400;
+ font-style: normal;
+ speak: never;
+ text-decoration: inherit;
+ text-transform: none;
+ text-rendering: auto;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ width: 20px;
+ height: 20px;
+ font-size: 20px;
+ vertical-align: top;
+ text-align: center;
+ transition: color 0.1s ease-in;
+}
+
+/* Icons */
+
+.dashicons-admin-appearance:before {
+ content: "\f100";
+}
+
+.dashicons-admin-collapse:before {
+ content: "\f148";
+}
+
+.dashicons-admin-comments:before {
+ content: "\f101";
+}
+
+.dashicons-admin-customizer:before {
+ content: "\f540";
+}
+
+.dashicons-admin-generic:before {
+ content: "\f111";
+}
+
+.dashicons-admin-home:before {
+ content: "\f102";
+}
+
+.dashicons-admin-links:before {
+ content: "\f103";
+}
+
+.dashicons-admin-media:before {
+ content: "\f104";
+}
+
+.dashicons-admin-multisite:before {
+ content: "\f541";
+}
+
+.dashicons-admin-network:before {
+ content: "\f112";
+}
+
+.dashicons-admin-page:before {
+ content: "\f105";
+}
+
+.dashicons-admin-plugins:before {
+ content: "\f106";
+}
+
+.dashicons-admin-post:before {
+ content: "\f109";
+}
+
+.dashicons-admin-settings:before {
+ content: "\f108";
+}
+
+.dashicons-admin-site-alt:before {
+ content: "\f11d";
+}
+
+.dashicons-admin-site-alt2:before {
+ content: "\f11e";
+}
+
+.dashicons-admin-site-alt3:before {
+ content: "\f11f";
+}
+
+.dashicons-admin-site:before {
+ content: "\f319";
+}
+
+.dashicons-admin-tools:before {
+ content: "\f107";
+}
+
+.dashicons-admin-users:before {
+ content: "\f110";
+}
+
+.dashicons-airplane:before {
+ content: "\f15f";
+}
+
+.dashicons-album:before {
+ content: "\f514";
+}
+
+.dashicons-align-center:before {
+ content: "\f134";
+}
+
+.dashicons-align-full-width:before {
+ content: "\f114";
+}
+
+.dashicons-align-left:before {
+ content: "\f135";
+}
+
+.dashicons-align-none:before {
+ content: "\f138";
+}
+
+.dashicons-align-pull-left:before {
+ content: "\f10a";
+}
+
+.dashicons-align-pull-right:before {
+ content: "\f10b";
+}
+
+.dashicons-align-right:before {
+ content: "\f136";
+}
+
+.dashicons-align-wide:before {
+ content: "\f11b";
+}
+
+.dashicons-amazon:before {
+ content: "\f162";
+}
+
+.dashicons-analytics:before {
+ content: "\f183";
+}
+
+.dashicons-archive:before {
+ content: "\f480";
+}
+
+.dashicons-arrow-down-alt:before {
+ content: "\f346";
+}
+
+.dashicons-arrow-down-alt2:before {
+ content: "\f347";
+}
+
+.dashicons-arrow-down:before {
+ content: "\f140";
+}
+
+.dashicons-arrow-left-alt:before {
+ content: "\f340";
+}
+
+.dashicons-arrow-left-alt2:before {
+ content: "\f341";
+}
+
+.dashicons-arrow-left:before {
+ content: "\f141";
+}
+
+.dashicons-arrow-right-alt:before {
+ content: "\f344";
+}
+
+.dashicons-arrow-right-alt2:before {
+ content: "\f345";
+}
+
+.dashicons-arrow-right:before {
+ content: "\f139";
+}
+
+.dashicons-arrow-up-alt:before {
+ content: "\f342";
+}
+
+.dashicons-arrow-up-alt2:before {
+ content: "\f343";
+}
+
+.dashicons-arrow-up-duplicate:before {
+ content: "\f143";
+}
+
+.dashicons-arrow-up:before {
+ content: "\f142";
+}
+
+.dashicons-art:before {
+ content: "\f309";
+}
+
+.dashicons-awards:before {
+ content: "\f313";
+}
+
+.dashicons-backup:before {
+ content: "\f321";
+}
+
+.dashicons-bank:before {
+ content: "\f16a";
+}
+
+.dashicons-beer:before {
+ content: "\f16c";
+}
+
+.dashicons-bell:before {
+ content: "\f16d";
+}
+
+.dashicons-block-default:before {
+ content: "\f12b";
+}
+
+.dashicons-book-alt:before {
+ content: "\f331";
+}
+
+.dashicons-book:before {
+ content: "\f330";
+}
+
+.dashicons-buddicons-activity:before {
+ content: "\f452";
+}
+
+.dashicons-buddicons-bbpress-logo:before {
+ content: "\f477";
+}
+
+.dashicons-buddicons-buddypress-logo:before {
+ content: "\f448";
+}
+
+.dashicons-buddicons-community:before {
+ content: "\f453";
+}
+
+.dashicons-buddicons-forums:before {
+ content: "\f449";
+}
+
+.dashicons-buddicons-friends:before {
+ content: "\f454";
+}
+
+.dashicons-buddicons-groups:before {
+ content: "\f456";
+}
+
+.dashicons-buddicons-pm:before {
+ content: "\f457";
+}
+
+.dashicons-buddicons-replies:before {
+ content: "\f451";
+}
+
+.dashicons-buddicons-topics:before {
+ content: "\f450";
+}
+
+.dashicons-buddicons-tracking:before {
+ content: "\f455";
+}
+
+.dashicons-building:before {
+ content: "\f512";
+}
+
+.dashicons-businessman:before {
+ content: "\f338";
+}
+
+.dashicons-businessperson:before {
+ content: "\f12e";
+}
+
+.dashicons-businesswoman:before {
+ content: "\f12f";
+}
+
+.dashicons-button:before {
+ content: "\f11a";
+}
+
+.dashicons-calculator:before {
+ content: "\f16e";
+}
+
+.dashicons-calendar-alt:before {
+ content: "\f508";
+}
+
+.dashicons-calendar:before {
+ content: "\f145";
+}
+
+.dashicons-camera-alt:before {
+ content: "\f129";
+}
+
+.dashicons-camera:before {
+ content: "\f306";
+}
+
+.dashicons-car:before {
+ content: "\f16b";
+}
+
+.dashicons-carrot:before {
+ content: "\f511";
+}
+
+.dashicons-cart:before {
+ content: "\f174";
+}
+
+.dashicons-category:before {
+ content: "\f318";
+}
+
+.dashicons-chart-area:before {
+ content: "\f239";
+}
+
+.dashicons-chart-bar:before {
+ content: "\f185";
+}
+
+.dashicons-chart-line:before {
+ content: "\f238";
+}
+
+.dashicons-chart-pie:before {
+ content: "\f184";
+}
+
+.dashicons-clipboard:before {
+ content: "\f481";
+}
+
+.dashicons-clock:before {
+ content: "\f469";
+}
+
+.dashicons-cloud-saved:before {
+ content: "\f137";
+}
+
+.dashicons-cloud-upload:before {
+ content: "\f13b";
+}
+
+.dashicons-cloud:before {
+ content: "\f176";
+}
+
+.dashicons-code-standards:before {
+ content: "\f13a";
+}
+
+.dashicons-coffee:before {
+ content: "\f16f";
+}
+
+.dashicons-color-picker:before {
+ content: "\f131";
+}
+
+.dashicons-columns:before {
+ content: "\f13c";
+}
+
+.dashicons-controls-back:before {
+ content: "\f518";
+}
+
+.dashicons-controls-forward:before {
+ content: "\f519";
+}
+
+.dashicons-controls-pause:before {
+ content: "\f523";
+}
+
+.dashicons-controls-play:before {
+ content: "\f522";
+}
+
+.dashicons-controls-repeat:before {
+ content: "\f515";
+}
+
+.dashicons-controls-skipback:before {
+ content: "\f516";
+}
+
+.dashicons-controls-skipforward:before {
+ content: "\f517";
+}
+
+.dashicons-controls-volumeoff:before {
+ content: "\f520";
+}
+
+.dashicons-controls-volumeon:before {
+ content: "\f521";
+}
+
+.dashicons-cover-image:before {
+ content: "\f13d";
+}
+
+.dashicons-dashboard:before {
+ content: "\f226";
+}
+
+.dashicons-database-add:before {
+ content: "\f170";
+}
+
+.dashicons-database-export:before {
+ content: "\f17a";
+}
+
+.dashicons-database-import:before {
+ content: "\f17b";
+}
+
+.dashicons-database-remove:before {
+ content: "\f17c";
+}
+
+.dashicons-database-view:before {
+ content: "\f17d";
+}
+
+.dashicons-database:before {
+ content: "\f17e";
+}
+
+.dashicons-desktop:before {
+ content: "\f472";
+}
+
+.dashicons-dismiss:before {
+ content: "\f153";
+}
+
+.dashicons-download:before {
+ content: "\f316";
+}
+
+.dashicons-drumstick:before {
+ content: "\f17f";
+}
+
+.dashicons-edit-large:before {
+ content: "\f327";
+}
+
+.dashicons-edit-page:before {
+ content: "\f186";
+}
+
+.dashicons-edit:before {
+ content: "\f464";
+}
+
+.dashicons-editor-aligncenter:before {
+ content: "\f207";
+}
+
+.dashicons-editor-alignleft:before {
+ content: "\f206";
+}
+
+.dashicons-editor-alignright:before {
+ content: "\f208";
+}
+
+.dashicons-editor-bold:before {
+ content: "\f200";
+}
+
+.dashicons-editor-break:before {
+ content: "\f474";
+}
+
+.dashicons-editor-code-duplicate:before {
+ content: "\f494";
+}
+
+.dashicons-editor-code:before {
+ content: "\f475";
+}
+
+.dashicons-editor-contract:before {
+ content: "\f506";
+}
+
+.dashicons-editor-customchar:before {
+ content: "\f220";
+}
+
+.dashicons-editor-expand:before {
+ content: "\f211";
+}
+
+.dashicons-editor-help:before {
+ content: "\f223";
+}
+
+.dashicons-editor-indent:before {
+ content: "\f222";
+}
+
+.dashicons-editor-insertmore:before {
+ content: "\f209";
+}
+
+.dashicons-editor-italic:before {
+ content: "\f201";
+}
+
+.dashicons-editor-justify:before {
+ content: "\f214";
+}
+
+.dashicons-editor-kitchensink:before {
+ content: "\f212";
+}
+
+.dashicons-editor-ltr:before {
+ content: "\f10c";
+}
+
+.dashicons-editor-ol-rtl:before {
+ content: "\f12c";
+}
+
+.dashicons-editor-ol:before {
+ content: "\f204";
+}
+
+.dashicons-editor-outdent:before {
+ content: "\f221";
+}
+
+.dashicons-editor-paragraph:before {
+ content: "\f476";
+}
+
+.dashicons-editor-paste-text:before {
+ content: "\f217";
+}
+
+.dashicons-editor-paste-word:before {
+ content: "\f216";
+}
+
+.dashicons-editor-quote:before {
+ content: "\f205";
+}
+
+.dashicons-editor-removeformatting:before {
+ content: "\f218";
+}
+
+.dashicons-editor-rtl:before {
+ content: "\f320";
+}
+
+.dashicons-editor-spellcheck:before {
+ content: "\f210";
+}
+
+.dashicons-editor-strikethrough:before {
+ content: "\f224";
+}
+
+.dashicons-editor-table:before {
+ content: "\f535";
+}
+
+.dashicons-editor-textcolor:before {
+ content: "\f215";
+}
+
+.dashicons-editor-ul:before {
+ content: "\f203";
+}
+
+.dashicons-editor-underline:before {
+ content: "\f213";
+}
+
+.dashicons-editor-unlink:before {
+ content: "\f225";
+}
+
+.dashicons-editor-video:before {
+ content: "\f219";
+}
+
+.dashicons-ellipsis:before {
+ content: "\f11c";
+}
+
+.dashicons-email-alt:before {
+ content: "\f466";
+}
+
+.dashicons-email-alt2:before {
+ content: "\f467";
+}
+
+.dashicons-email:before {
+ content: "\f465";
+}
+
+.dashicons-embed-audio:before {
+ content: "\f13e";
+}
+
+.dashicons-embed-generic:before {
+ content: "\f13f";
+}
+
+.dashicons-embed-photo:before {
+ content: "\f144";
+}
+
+.dashicons-embed-post:before {
+ content: "\f146";
+}
+
+.dashicons-embed-video:before {
+ content: "\f149";
+}
+
+.dashicons-excerpt-view:before {
+ content: "\f164";
+}
+
+.dashicons-exit:before {
+ content: "\f14a";
+}
+
+.dashicons-external:before {
+ content: "\f504";
+}
+
+.dashicons-facebook-alt:before {
+ content: "\f305";
+}
+
+.dashicons-facebook:before {
+ content: "\f304";
+}
+
+.dashicons-feedback:before {
+ content: "\f175";
+}
+
+.dashicons-filter:before {
+ content: "\f536";
+}
+
+.dashicons-flag:before {
+ content: "\f227";
+}
+
+.dashicons-food:before {
+ content: "\f187";
+}
+
+.dashicons-format-aside:before {
+ content: "\f123";
+}
+
+.dashicons-format-audio:before {
+ content: "\f127";
+}
+
+.dashicons-format-chat:before {
+ content: "\f125";
+}
+
+.dashicons-format-gallery:before {
+ content: "\f161";
+}
+
+.dashicons-format-image:before {
+ content: "\f128";
+}
+
+.dashicons-format-quote:before {
+ content: "\f122";
+}
+
+.dashicons-format-status:before {
+ content: "\f130";
+}
+
+.dashicons-format-video:before {
+ content: "\f126";
+}
+
+.dashicons-forms:before {
+ content: "\f314";
+}
+
+.dashicons-fullscreen-alt:before {
+ content: "\f188";
+}
+
+.dashicons-fullscreen-exit-alt:before {
+ content: "\f189";
+}
+
+.dashicons-games:before {
+ content: "\f18a";
+}
+
+.dashicons-google:before {
+ content: "\f18b";
+}
+
+.dashicons-googleplus:before {
+ content: "\f462";
+}
+
+.dashicons-grid-view:before {
+ content: "\f509";
+}
+
+.dashicons-groups:before {
+ content: "\f307";
+}
+
+.dashicons-hammer:before {
+ content: "\f308";
+}
+
+.dashicons-heading:before {
+ content: "\f10e";
+}
+
+.dashicons-heart:before {
+ content: "\f487";
+}
+
+.dashicons-hidden:before {
+ content: "\f530";
+}
+
+.dashicons-hourglass:before {
+ content: "\f18c";
+}
+
+.dashicons-html:before {
+ content: "\f14b";
+}
+
+.dashicons-id-alt:before {
+ content: "\f337";
+}
+
+.dashicons-id:before {
+ content: "\f336";
+}
+
+.dashicons-image-crop:before {
+ content: "\f165";
+}
+
+.dashicons-image-filter:before {
+ content: "\f533";
+}
+
+.dashicons-image-flip-horizontal:before {
+ content: "\f169";
+}
+
+.dashicons-image-flip-vertical:before {
+ content: "\f168";
+}
+
+.dashicons-image-rotate-left:before {
+ content: "\f166";
+}
+
+.dashicons-image-rotate-right:before {
+ content: "\f167";
+}
+
+.dashicons-image-rotate:before {
+ content: "\f531";
+}
+
+.dashicons-images-alt:before {
+ content: "\f232";
+}
+
+.dashicons-images-alt2:before {
+ content: "\f233";
+}
+
+.dashicons-index-card:before {
+ content: "\f510";
+}
+
+.dashicons-info-outline:before {
+ content: "\f14c";
+}
+
+.dashicons-info:before {
+ content: "\f348";
+}
+
+.dashicons-insert-after:before {
+ content: "\f14d";
+}
+
+.dashicons-insert-before:before {
+ content: "\f14e";
+}
+
+.dashicons-insert:before {
+ content: "\f10f";
+}
+
+.dashicons-instagram:before {
+ content: "\f12d";
+}
+
+.dashicons-laptop:before {
+ content: "\f547";
+}
+
+.dashicons-layout:before {
+ content: "\f538";
+}
+
+.dashicons-leftright:before {
+ content: "\f229";
+}
+
+.dashicons-lightbulb:before {
+ content: "\f339";
+}
+
+.dashicons-linkedin:before {
+ content: "\f18d";
+}
+
+.dashicons-list-view:before {
+ content: "\f163";
+}
+
+.dashicons-location-alt:before {
+ content: "\f231";
+}
+
+.dashicons-location:before {
+ content: "\f230";
+}
+
+.dashicons-lock-duplicate:before {
+ content: "\f315";
+}
+
+.dashicons-lock:before {
+ content: "\f160";
+}
+
+.dashicons-marker:before {
+ content: "\f159";
+}
+
+.dashicons-media-archive:before {
+ content: "\f501";
+}
+
+.dashicons-media-audio:before {
+ content: "\f500";
+}
+
+.dashicons-media-code:before {
+ content: "\f499";
+}
+
+.dashicons-media-default:before {
+ content: "\f498";
+}
+
+.dashicons-media-document:before {
+ content: "\f497";
+}
+
+.dashicons-media-interactive:before {
+ content: "\f496";
+}
+
+.dashicons-media-spreadsheet:before {
+ content: "\f495";
+}
+
+.dashicons-media-text:before {
+ content: "\f491";
+}
+
+.dashicons-media-video:before {
+ content: "\f490";
+}
+
+.dashicons-megaphone:before {
+ content: "\f488";
+}
+
+.dashicons-menu-alt:before {
+ content: "\f228";
+}
+
+.dashicons-menu-alt2:before {
+ content: "\f329";
+}
+
+.dashicons-menu-alt3:before {
+ content: "\f349";
+}
+
+.dashicons-menu:before {
+ content: "\f333";
+}
+
+.dashicons-microphone:before {
+ content: "\f482";
+}
+
+.dashicons-migrate:before {
+ content: "\f310";
+}
+
+.dashicons-minus:before {
+ content: "\f460";
+}
+
+.dashicons-money-alt:before {
+ content: "\f18e";
+}
+
+.dashicons-money:before {
+ content: "\f526";
+}
+
+.dashicons-move:before {
+ content: "\f545";
+}
+
+.dashicons-nametag:before {
+ content: "\f484";
+}
+
+.dashicons-networking:before {
+ content: "\f325";
+}
+
+.dashicons-no-alt:before {
+ content: "\f335";
+}
+
+.dashicons-no:before {
+ content: "\f158";
+}
+
+.dashicons-open-folder:before {
+ content: "\f18f";
+}
+
+.dashicons-palmtree:before {
+ content: "\f527";
+}
+
+.dashicons-paperclip:before {
+ content: "\f546";
+}
+
+.dashicons-pdf:before {
+ content: "\f190";
+}
+
+.dashicons-performance:before {
+ content: "\f311";
+}
+
+.dashicons-pets:before {
+ content: "\f191";
+}
+
+.dashicons-phone:before {
+ content: "\f525";
+}
+
+.dashicons-pinterest:before {
+ content: "\f192";
+}
+
+.dashicons-playlist-audio:before {
+ content: "\f492";
+}
+
+.dashicons-playlist-video:before {
+ content: "\f493";
+}
+
+.dashicons-plugins-checked:before {
+ content: "\f485";
+}
+
+.dashicons-plus-alt:before {
+ content: "\f502";
+}
+
+.dashicons-plus-alt2:before {
+ content: "\f543";
+}
+
+.dashicons-plus:before {
+ content: "\f132";
+}
+
+.dashicons-podio:before {
+ content: "\f19c";
+}
+
+.dashicons-portfolio:before {
+ content: "\f322";
+}
+
+.dashicons-post-status:before {
+ content: "\f173";
+}
+
+.dashicons-pressthis:before {
+ content: "\f157";
+}
+
+.dashicons-printer:before {
+ content: "\f193";
+}
+
+.dashicons-privacy:before {
+ content: "\f194";
+}
+
+.dashicons-products:before {
+ content: "\f312";
+}
+
+.dashicons-randomize:before {
+ content: "\f503";
+}
+
+.dashicons-reddit:before {
+ content: "\f195";
+}
+
+.dashicons-redo:before {
+ content: "\f172";
+}
+
+.dashicons-remove:before {
+ content: "\f14f";
+}
+
+.dashicons-rest-api:before {
+ content: "\f124";
+}
+
+.dashicons-rss:before {
+ content: "\f303";
+}
+
+.dashicons-saved:before {
+ content: "\f15e";
+}
+
+.dashicons-schedule:before {
+ content: "\f489";
+}
+
+.dashicons-screenoptions:before {
+ content: "\f180";
+}
+
+.dashicons-search:before {
+ content: "\f179";
+}
+
+.dashicons-share-alt:before {
+ content: "\f240";
+}
+
+.dashicons-share-alt2:before {
+ content: "\f242";
+}
+
+.dashicons-share:before {
+ content: "\f237";
+}
+
+.dashicons-shield-alt:before {
+ content: "\f334";
+}
+
+.dashicons-shield:before {
+ content: "\f332";
+}
+
+.dashicons-shortcode:before {
+ content: "\f150";
+}
+
+.dashicons-slides:before {
+ content: "\f181";
+}
+
+.dashicons-smartphone:before {
+ content: "\f470";
+}
+
+.dashicons-smiley:before {
+ content: "\f328";
+}
+
+.dashicons-sort:before {
+ content: "\f156";
+}
+
+.dashicons-sos:before {
+ content: "\f468";
+}
+
+.dashicons-spotify:before {
+ content: "\f196";
+}
+
+.dashicons-star-empty:before {
+ content: "\f154";
+}
+
+.dashicons-star-filled:before {
+ content: "\f155";
+}
+
+.dashicons-star-half:before {
+ content: "\f459";
+}
+
+.dashicons-sticky:before {
+ content: "\f537";
+}
+
+.dashicons-store:before {
+ content: "\f513";
+}
+
+.dashicons-superhero-alt:before {
+ content: "\f197";
+}
+
+.dashicons-superhero:before {
+ content: "\f198";
+}
+
+.dashicons-table-col-after:before {
+ content: "\f151";
+}
+
+.dashicons-table-col-before:before {
+ content: "\f152";
+}
+
+.dashicons-table-col-delete:before {
+ content: "\f15a";
+}
+
+.dashicons-table-row-after:before {
+ content: "\f15b";
+}
+
+.dashicons-table-row-before:before {
+ content: "\f15c";
+}
+
+.dashicons-table-row-delete:before {
+ content: "\f15d";
+}
+
+.dashicons-tablet:before {
+ content: "\f471";
+}
+
+.dashicons-tag:before {
+ content: "\f323";
+}
+
+.dashicons-tagcloud:before {
+ content: "\f479";
+}
+
+.dashicons-testimonial:before {
+ content: "\f473";
+}
+
+.dashicons-text-page:before {
+ content: "\f121";
+}
+
+.dashicons-text:before {
+ content: "\f478";
+}
+
+.dashicons-thumbs-down:before {
+ content: "\f542";
+}
+
+.dashicons-thumbs-up:before {
+ content: "\f529";
+}
+
+.dashicons-tickets-alt:before {
+ content: "\f524";
+}
+
+.dashicons-tickets:before {
+ content: "\f486";
+}
+
+.dashicons-tide:before {
+ content: "\f10d";
+}
+
+.dashicons-translation:before {
+ content: "\f326";
+}
+
+.dashicons-trash:before {
+ content: "\f182";
+}
+
+.dashicons-twitch:before {
+ content: "\f199";
+}
+
+.dashicons-twitter-alt:before {
+ content: "\f302";
+}
+
+.dashicons-twitter:before {
+ content: "\f301";
+}
+
+.dashicons-undo:before {
+ content: "\f171";
+}
+
+.dashicons-universal-access-alt:before {
+ content: "\f507";
+}
+
+.dashicons-universal-access:before {
+ content: "\f483";
+}
+
+.dashicons-unlock:before {
+ content: "\f528";
+}
+
+.dashicons-update-alt:before {
+ content: "\f113";
+}
+
+.dashicons-update:before {
+ content: "\f463";
+}
+
+.dashicons-upload:before {
+ content: "\f317";
+}
+
+.dashicons-vault:before {
+ content: "\f178";
+}
+
+.dashicons-video-alt:before {
+ content: "\f234";
+}
+
+.dashicons-video-alt2:before {
+ content: "\f235";
+}
+
+.dashicons-video-alt3:before {
+ content: "\f236";
+}
+
+.dashicons-visibility:before {
+ content: "\f177";
+}
+
+.dashicons-warning:before {
+ content: "\f534";
+}
+
+.dashicons-welcome-add-page:before {
+ content: "\f133";
+}
+
+.dashicons-welcome-comments:before {
+ content: "\f117";
+}
+
+.dashicons-welcome-learn-more:before {
+ content: "\f118";
+}
+
+.dashicons-welcome-view-site:before {
+ content: "\f115";
+}
+
+.dashicons-welcome-widgets-menus:before {
+ content: "\f116";
+}
+
+.dashicons-welcome-write-blog:before {
+ content: "\f119";
+}
+
+.dashicons-whatsapp:before {
+ content: "\f19a";
+}
+
+.dashicons-wordpress-alt:before {
+ content: "\f324";
+}
+
+.dashicons-wordpress:before {
+ content: "\f120";
+}
+
+.dashicons-xing:before {
+ content: "\f19d";
+}
+
+.dashicons-yes-alt:before {
+ content: "\f12a";
+}
+
+.dashicons-yes:before {
+ content: "\f147";
+}
+
+.dashicons-youtube:before {
+ content: "\f19b";
+}
+
+/* Additional CSS classes, manually added to the CSS template file */
+
+.dashicons-editor-distractionfree:before {
+ content: "\f211";
+}
+
+/* This is a typo, but was previously released. It should remain for backward compatibility. See https://core.trac.wordpress.org/ticket/30832. */
+.dashicons-exerpt-view:before {
+ content: "\f164";
+}
+
+.dashicons-format-links:before {
+ content: "\f103";
+}
+
+.dashicons-format-standard:before {
+ content: "\f109";
+}
+
+.dashicons-post-trash:before {
+ content: "\f182";
+}
+
+.dashicons-share1:before {
+ content: "\f237";
+}
+
+.dashicons-welcome-edit-page:before {
+ content: "\f119";
+}
diff --git a/static/wp-includes/css/dashicons.min.css b/static/wp-includes/css/dashicons.min.css
new file mode 100755
index 0000000..25af7b0
--- /dev/null
+++ b/static/wp-includes/css/dashicons.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+@font-face{font-family:dashicons;src:url("../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800");src:url("../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix") format("embedded-opentype"),url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAHvwAAsAAAAA3EgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAAQAAAAFZAuk8lY21hcAAAAXwAAAk/AAAU9l+BPsxnbHlmAAAKvAAAYwIAAKlAcWTMRWhlYWQAAG3AAAAALwAAADYXkmaRaGhlYQAAbfAAAAAfAAAAJAQ3A0hobXR4AABuEAAAACUAAAVQpgT/9mxvY2EAAG44AAACqgAAAqps5EEYbWF4cAAAcOQAAAAfAAAAIAJvAKBuYW1lAABxBAAAATAAAAIiwytf8nBvc3QAAHI0AAAJvAAAEhojMlz2eJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/Mc4gYGVgYOBhzGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHD4yfHVnAnH1mBgZGIE0CDMAAI/zCGl4nN3Y93/eVRnG8c/9JE2bstLdQIF0N8x0t8w0pSMt0BZKS5ml7F32lrL3hlKmCxEQtzjAhQMRRcEJijhQQWV4vgNBGV4nl3+B/mbTd8+reeVJvuc859znvgL0A5pkO2nW3xcJ8qee02ej7/NNDOz7fHPTw/r/LnTo60ale4ooWov2orOYXXQXPWVr2V52lrPL3qq3WlmtqlZXx1bnVFdVd9TNdWvdXnfWk+tZ9dx6wfvvQ6KgaCraio6iq+/VUbaVHWVX2V0trJb2vXpNtbZaV91YU7fUbXVH3VVPrbvrefnV//WfYJc4M86OS2N9PBCP9n08FS/E6w0agxtDG2P6ProaPY3ljaMaJzVOb1ze2NC4s3Ff46G+VzfRQn8GsBEbM4RN2YQtGMVlMY2v8COGai0Hxm6MjEWxOBZGb+zJArbidjajjUGxJHbgUzwYG/EJPsNDfJLFsYzpXM6Pmcd8Ps1BvB8LGEE7W7KSzdmGA9ifgzmau7ibcUxkB7bnHhZxb+xDgw/yYb7GU/yQp2NgDI9xMZ61sWVsFZtHkxb5+ZgQE2NSdMYmDOM5HmZrfs6H+Cbf4bt8m28xhb2YyjQWciDHxk7RGg2W8DFWxbyYE20cx/GcwImcxKmxWYyIGXr3l7MPp/MAn+PzfIFH+Co/4296Q2v+wdvRHP1iQIyKMTE2ZsZesW8QSzmHi7mFK7iWsziTs7mIG/gAl3Irl3Az13A117GeC7iSdVzIjdzGMXycP/ITfskv+B5PRk/MjT1iCPuyLAbF4Jgds2Jj7uOj7MmX+DI78hfejBa6+Kxmekp0s5TBXM/kiNg29uaNmM5p0c6fmMmMGMbLMZS/8w2+zh78lPFMYFvt9Ul0Moax/IA/s5P2+hy6mcXO7EoPu7F7bM1feSR25wzuZAN3xBasiJGxDSfH9pzLeVzF7NgxtmM0+/FK7MLrvBNTeZSXYlP+wO/5J//SV/2O3/Iiv+EFfs2veDf68xHOj53p5Yt8n72ZG6MZzhoO5wgO4VCO5CgOY3VM4S1epYxdYzKP8QSPx3xu4v7o4Fmdydbo4j1eo+IZbdaW/+Gc/L/82Tj/0zbS/4kVue5YrmzpP3L1Sw3T+SY1mU46qdl05kn9TKef1GL5J6T+popAGmCqDaRWU5UgDTTVC9JGpspB2ti4TOMmpmpC2tRUV0ibmSoMqc1Ua0iDLFfwNNhypU5DTJWINNTQGqRhFos0DrdYrHGExUKNIy16Nbabqhhpc1M9I21hqmykUaYaR9rSyM+7lZGfd2sjP2+HxRKNo01VkTTGVB9JY40HNY6zyGs23lQ9SRNMdZQ00VRRSZNMtZXUaeQ5bmOqt6RtTZWXtJ2pBpO2N1Vj0g6mukza0VShSV2mWk2abKrapClGvtumWuS1mmbkNZ5u5HWdYeQ1m2mq+KRZRl7v2UZ+9p1M9wFpZ9PNQNrFdEeQdjXdFqTdTPcGaXfTDULqNvK6zjHy+vUYed5zjbwee5juHNI8I++f+ca9GheYbiTSQiOfp17TLUVaZLqvSItNNxdpT9MdRtrLdJuR9jae1rjEIu/tpRZ5/y6zyHPZxyLvkX2NtRqXW+R13s8i780VFnmdV1rkc7+/5SKRVhnPazzAIu+7Ay3yuh1kkffdwRZ53x1ikc/0oUY+f6tNNxTpMNOtTFpj5LNyuOmmJh1hurNJR5pub9JRpnucdLTpRicdY7rbSceabnnScUbep8cbeb1PMPKePdHIe/YkI7+fJxt53muN/L1Psch781SLXPNOs8h74HQjv4dnmLoL0plGXuOzLPL+Otsi781zLHINOdfI8zjPyPM438jzuMDI8/iAkedxoZGfcZ1FrlEXWeSzebFFPpeXGLlWXWrkfXSZkffa5Uae3xWmjoh0pak3Il1l6pJIV5v6JdI1ps6JdK2phyJdZ+qmSNeb+irSDaYOi3Sjqdci3WTqukg3G29rvMUi3123WuQ74jaLfEett8j1+3aLXIM3WOQafIdFrk93WuQ9c5dFPmd3W75G0z2mbi8/ah/1fRRh6gDV85t6QYpmU1dI0c/UH1K0mDpFiv6mnpFigKl7pGg19ZEUbaaOkmKQqbekGGzqMimGmPpNiqGmzpNimKkHpRhu6kYpRpj6UoqRpg6Vot3Uq1J0mLpWitGm/pVijKmTpRhr6mkpxpm6W4rxpj6XYoKp46WYaOp9KSaZumCKTlM/TNFl6owpJpt6ZIoppm6ZYqrxpMZpFqrvxXQL1fdihoXqezHTIq/TLFOnTTHbUJ0tui3yGvdYaH3LsNDXlQ0Lvb5sMnXplM2mfp2yn6lzp2wx9fCU/U3dPOUAU19P2Wrq8CnbTL0+5SDjTY2DLXe95RBTEqAcasoElMMs195yuKH6VY4wJQbKkabsQNlu5O/dYcoTlKMNrXs5xiKvwVgL9RblOFPuoBxvvKFxgimLUE40VCvLSRb5Z3aakgpllymzUE429J6VUyzynKYaL2ucZpHnPd2UcihnmPIO5UxT8qGcZcpAlLNNaYiy28jPPsfIz95j5DnOtfybg3IPI89jnpHnMd/I67TAyOu00JSzKHtNiYtqoSl7UfWaUhjVUlMeo1pmSmZU+5gyGtW+prRGtdyU26j2MyU4qhWmLEe10lBvVK0y5Tuq1aakR7XGcq2uDrfIX3+EKQdSHWlKhFRHmbIh1dGGamh1jCkvUh1r5GdZa6E9V51iSpNUpxq6d6vTTAmT6nRT1qQ6w5Qnqc405U+qswy9l9XZFjo71TmmdEq1zpRTqS4y8jpdbLyi8RKLvP6XmvIs1WXGOxovN2VcqitMaZfqSuMljVeZEjDVjaYsTHWTKRVT3WzKx1S3mJIy1a3WN8fbTOmZar0pR1PdbkrUVBtM2ZrqDlPKztdlH+Vt6jAlb+qG8a7GJlMap2425XLqFkN9Rt3flNWpB5hSO3WrKb9Tt5mSPPUgU6anHmzozNRDTDmfeqgp8VMPM2V/6uGG9lw9wtCeq0ca6i/rdkP9Zd1haC/Wow3txXqMoV6zHmtof9fjLFRH6vHGWxonGK9qnGiUGidZ6EzVnRaqR3WX8ZjGycYTGqcaj2ucZqFaUE839N7XM4z7Nc60yPOYZTyrsdvybyfrOUZe7x6L/PPnGu9pnGe8pnG+UWlcYDzzb8iLsxoAeJysvQmcJMdZJ5qRlZmR91F5VWXdZ/bd0511zEzP9PSMPKOrS5JHEpJGI0uyRbUk27KMMMuitVU25lgW+cAyuGt3f17A2Muaw6bHwMIzC5g15jFlMNcaA7vAmp41ZtnfW1h48PbVvC8is46eGZnj97qrIiMjj7i/+H9HfMWwDPyh/wddZTRmnWEaYbfj+cl/F4dYcErIc7BgIAHDv9ftdDtnEASbkL7ZRS98qimf8DXL84pOsbr/qTWMc6Io59OWVFC0WiVfkDTFUbEr5kQX/8mnmgpniLqtmTzGQ7gb0rGH4Q5NKuTLdU0pSJZZUDHOY0yKFpfvV9CvMCpjQGyziBwdVddQaxvZbYyY7uVO5/Jzlzvdy898EP0KjXYuv/mxzvi3Pvt68ih9fohGTJph7GjTKyBHWEa4Xas2T6NWZ3DoFYteNIjcYhGNiu4VtzgY0MMk7y+iX2fKTASxTrsTNsMmruIN2hg4aZJtRFql20GdbvLv+cW4vdBvI4RYLKqYU+or9XVPVZRUyg/8SMnUcjl//ICnYlHgJT29YkoCVvOrC+iHUqwoSIKEkODnc7WMlgm8IMOynpI51lipj39AdxQ/LemylrKkak3J8VxS1hHUM2SOQT/WBOzjUMBurd0McdhthrV21OmGXb/TbUeu53d97PkR3uy0mlXB8dDoONYXOgte0At8OOq42xWMhU7o5XuBB0ddOP6l8urqzurqKOeH8Q30CT/YTZ44flzQQ5LwArltZ5UUKUXL9Qvo5xmJ0UkfICgWlMdvR9h3K22/XXPRMMx99KO5X+i3hsPx1VEfNZPzaGF/f/+lwWD6nq+i/8x4TJU5DnFoYQPpCAYs1MBATRiW28hLkVMyWh2vg7sevWWNpdd8GMzeJvqsaxhu6J7IP2uW18xnsU5OTvz2PxctX/xO0fTVZ0VI8o6fWIb7FtzjhWetyir693AP3KjjZ821svlsnpwYxvhL/1z0TYRpGNFUT9eXZ7dWSLE5WvZr6BpjM3lmielA/7RbzWUU1nCtKsCI9KLKZifc9Byh2mx1/MiKI9EmNA+G7pqcop6hLFf71WXZMGTEKMYw12i0m83RgISBgHv9KI4dXpGNKDJkOBifbLbJXeH4L+nd7LvelXuExqBYUjzJ0G8yPKPADHOZHIz2BrPIQPch2lMGCtswWqCjfHJeilMbPgwtGpArFdKNb37zm+3BINj7+n5/t4XpyX+n4XjQv4r6/auDFmq10H1PPGE///zWQw/bly61lpf3Hn88/fzzaRpGj1y69Ah8dyL4S8b076P/RtuN9jiGDjfYGoznDkw7bzZ8fyJrWdnCPfVjvWYv+6tprZA5dy7UHSfvOOjnsufOZgua+aD4ePQfG68twK3fQi7knckcJ/QhRdqia1UsPnIrVjREzPhwdJ2JBqg3Pggi1EvG4GfRLzMYWqkGcWiITpHF0Dow14GqkG46g9qtbscnFwyE7rv/2P1CxuF+079W0kqFzFNlpewpZSx9FpJtHt+P3gd3YN7xW4VrriaJZcWDW96QLVQvQbKdEe5PaNgfoD9mYDghyKxJhzWZSJTINGOiHHY9Os6Rsv6D6+6G5Vi8trZ9B3ayaU/W5LSB79hedzbSdppHB2s/sK5xEN1wyS1GWtYkP51x8e3bSfp0zo3QFRgXy8ztMGqtVrNWqQquFY/YRkSG7DKi4/M0qpFBugXV72x6rj9/VkDzd7bRyFDGB3QM9xTjOpNVDEPJirI4jQwCcjXACg5IEon0UYukja9C+F2GazQFDFWHyMsk8shNKZN5N2IRrB0R8wBzGVaAqo6cItrcRq015OsIr6Gw021WsQALXgER6t6EZux2Qph7ReRvdrpeClK7HZg/zRDuhgMl8ckS6cGITAG9F3Cne7j97Pb2s28nwTt535RWSrwh2YLEsaInNyqcqAeSXpDa60GR5QwO/x92iuU5JImKUMAqdLaPc4WgYpXltMln3DvfbZQk00McyyRvheCjVh6XI81SBFGxJA1xWgbZnosUxcgG9omKKWrjrzielrUlQ8EplktxUr6TFnguldILS0iqr4Tn0JsESTM4RWFg1s/aaAFWjlPMG29oJRtinS40BtS0RhpICGmjkVUvJO2jo2YXmsrzyaXmOnLXYCKQxvPIdCUDFK7FLUf+BZc0IcS2WeiAuTZTeUlkeV3lUq7Ga6JTNNQ0JxliKFsPWTlWQk7uQmpTcQRsBxBWNZ9nWVZjOY7n0rwoaBiX/BrmIDGFrbKSYhGbUrx7X3/M9eebcPxLWEKiyIoFQ0urCPE4lTJVhDmfFwsZS87ZXAlaS4BLLMe77xQMSYYsDF7UeFbiBMnzcx5b9FRXF6DAdU8xpAa09tqWZTptaE5rrk3TTIYpAK1YYNZgDJ5gdpjzzC5zkXmYeYx5A/PMDW3NR55fa3bbMLIAXvm1dujWyFgjIYZvJPiRW2v6pAlDWELJ9D+N4ABXyHUYpPCGELoJQpKSglO4kzyJ55p6/Ndnkdg1vti0RV6V2Mdqtwui3XyMlZpnOaMrBo9dlB4l1565wEP6ZQTpKfO4yCLpuJFqrqn+sfL/8tXVcnlV9TdKf+lrq+Vj8038f9eqlR+7z2hoeq1aO/8N9xla4w3na9Xz9Ur1wvnqbffqDc249x5I1b8hSa7Wq9VKfa9e8JbPFurL4/9aK3or54q1JW9Kh2h7nmTuuGl84s5kbIUwKEndaSQeeHS0wsgssnS+kqGKJ3fPtUjwNGAuXUqrvMilMvbpNdYo2Xb/LCBRjktrupgXZFHXontdG/NVuRMoJtAkTeXE1JGx9fndlapnq1jGHAFfkrxoq2pu+96Uk81nChYrcDbisF7K6apsqvfV1pqXli1d0hVBlmd49zfQFxgHxg1DAE6yqjRhvmAfIA3vJase+nj2Qvm77E7T/pimbZ4t3XXHXbI+/jD2DMMDBJTV9Y/Zzbb9L8rnN3XlrjvvKu18GhsE/Uzz+RlY9xxY6xlUJQ2yDjO5s+l7CdjHXUDbBTqDq+RiGzB3hBjH0CSBSwmW07MtPgUTQjWcC4VOOVerHrv/WLWaK7ZLyNYVW7e0Zr5czjc1S7cV/dx6tZPfwRIviryEdwrtygSffwHquwXHJmE0CKILm8YU2QHJIFgWlxCBr9toHU0uzI4Avj+j+2njkW2T41Kav6Zxosw5mllWXjl5SbtvLS3sfFAVRN5NYSWluT6HZdYIntR5AX1GEwT99QHQwxQGTKqlZIFzBcxrr2wL6bX7tEsnX1GrmuZwsshpGz45GKcfUhyfFF2gnYbRb1F0WwT0vcXcyzDtShv4AjZcY3G74ls1i9cJAWwDCoXx522jNehZD+gfjM5tBHO9SwhqkRDOW6QhZvtU67zjpHffsHmdObyKHta6gSqaq25g38/JmIUVBF30o4zAszLPLVRsJSVLbErncmdLgsBKAt9ZDdI0zY6w6dkPvKm1cVtGw8F4iPq/EdiaID1hibLW5VNIkgUkKk8akoBkmUdQXM3iWUHm/K6t80iCvJBQtHI8yytceYoTrgBOSAEygkXFrrQrqF1xMRx7qA95RACkaGQAseGwH83G+uQ5QBcVyydPHoyHMMyuMwckgFv5G95vAB6kediAOhsRBPDlJ3kdHqJsD/7G1+Yy3IuG0X70NcpaQNOyQqZHizp5Zjh5pgsd2k3yPdwfAZOyD+hkfPUK5DKXx/T+Btwfwt0ufNHBfmv6wLWoFTGvXj9aL8imFlGIHZevB+HhoNdLyrgfDYd/R91c0qoDWq8oadoj/RDjpF9DP8eYwFvdxzwKJRZqMOXJKh7BEg/TrNuMuX/AcQnPGwJMAoq6eQYR8ttuwVivEaLhRICaYKDDNexWAQH4ruN1XU9nARG2W+jDd97/lsspjl16+vjqgw0eL6dDI4VYw0hjWQC8YhhfcRd0Q4ZJVeU4nWP5XC3dyJR4vAJPuYEmppaW/Ry7cInlJEvWjG8tdRCXaoRBFgkpX+RUJMC6X5M5xGqNFrLSrsyyJU7Scj3ADRmF1dM1zPOsZrCaZfKmGGaUbO2fyWo2rVjmMsOIU16atKMJPFEWaHEFuCI6RslIwW6U8GptwLpd4K3dyZe0+WjcR3vjq6h1rUdY4ZNucbhH/0hahIZwuRf0epSfjqKimw32WnvBXjDpw2uzsYMIk1yxKg3CYR2OW1n6dDBEw1arB3MkCBIaegXKKxIZhwUcAhDKw1Y/OjiI+lCYUT84OAj6zFQecgXtkVFnEylAOBgM4EbUHwyyBwezewaoRWYo8DhosNdH0f7+7BrhCURaNpoVnuWBgiTb6b17cC9P3kNuTXJBcZ7Te3pQHpZKn1APhvPe1x/Np9uuhLRSEYribCaVO5oH4YF8PKRZJDlMrtP3A8CGyYr60/cnbdaoWbQa4bT004xuarMG5X6TCgxvarMeyecM8g/2+gfD4Q3pCEco2BtBHae079MwroDTtr2YlfO9WIBEVgmSoBOWhEJt36OAu0kQ9e9hFokqm0qrvl4IZN8vFng+W1jffMtl11akU43mDm4sSorI1xcUBf1ECnNKWjYV0ZSCjKDywtnOyehksZRqbyxF6/c73idMFKQ9RxcKlj2hR59Evw6UKAPlC2kJfbIA+6SJ12FMYJ+MfsLUhZMItJ/fjRp+F4e1b9D1Vmlrq9TS9ai8tVV+dOnUqQdObS3HEqRzlfbZ+s74z8qdnfoO+mfxfeT+cgT3/+KpB7fg5mwsRMqfUL/3xHee0D54ImmzX4dylZglIg9gdZagO8p9bLNrrE4Hmb/N4ma7u0EkFd0memzzJI4uv3mjvqktSQvFxgMXQn717gcu2Mdekteyl9+8LaJstvcC4tBPwtkbTuIgfbKeK22aNr0Nbm5m7v1gZvOk8EdY4V988WIHsTOaPQLqKQIuNQFHQf/CZOVxFEbJl5AKBOtYfzzid8SI38HwFccjSrtHe9ksjCHyd53IF2MsgT6PPg84YoFpM+cASbyRoKIEruKQoB0ikY3FskB6IblBZbFwreUTmEi6gkoHZidCtZtgSALunG6z1gFcAo8ChiQUXgBSHTkEVaInK2mP01Sd812loe1oWtrQ9ee0hvIRT+fG/zMSTE67y+QcQXiO1yX+OUFbmkQ5/RMQkYXnBD3FvVkWRbG44KQkvZ7VBEtkFcWtB/UsSnNekE2pluundX0HOADHAG7gLZr2MU7XT7R4XrvPFPQXBI17q6Bq3HMCWhLIgcYvvJVX9NRbgHgbb5btpbyIFUkLmpqAjaLipoNcY4Yr/jX0jUAkJg1YjmqwBLVblC1YQ1XBdQBmFaCVSIetIcS4xX7xxaUqAt4x7Zt8dZnNuyjyC0Cb3eJvbNW6MiuximXBlBK7jeN+KO/siM052jAkXB8iazX5EqFeBfKroUGvD6uOjvq6gvot+NOV0UjRp/Laa/Ac4Pxuxa3A6mi1OhHQeiLR6loE4xNJy2aHiqBg6pTJUTGMbWA94NOLVkuoVVodDwHVP4ICgqvHhzwVnKPp+2FCo8hK3r6FrBp5e1RBwyh+5+EhkbCgAGDX3tz7pu1I3nECxiJjAxyB8rnwOSr3EWoTAVByrIaThDYVAfkTMd0oWi/6+cAtFt0A8tA0CKJJJFgtR0PZIBwKOjyIiuue1ysuFUmSfJyjwp9WHHLHyWEvW149OKAMjZHMHbJmS4zP1OnseRuUmXR1t9PuNP1OE2oOk8GLNrudIxxkqhpLdoC9idUL3dm923AVGKFOd9PBG0QgC8QYLpK51N10McFDRC5C2CcBw6vpC18omTkO4ccE3TVyHBYs3TO01e7j3e7jz5Ggu3B7lrO4Uuvhpx9utR5eFXTHDDiZswyn+GjzfMbyMR8UzaKt8Szp6nwG81kvqBRE4XgtYxpcfmV1c/2e9fV70JNL3Ubt7Z4gCx/JlV1rJe2kTbSc5APB+IVCjnf5Ns0IgrfTu2yPrSOpnGM5JH9T2t/2bKyzqRTiX0wvV8sriqyXuML6Pa+7Z500a6KIgeGgAhJqAq06xewyj9+gjfHnmxQfvYKLMFbwNnCQTUzGARkPRP9A5RxRi1A3gw3pCghgdcLOI+bC286ff9t3k+DCuefPnn3+3SQ4t/XU1tZT30SCZ1y7FOpBZeVyaWVle2XlHs0xVMyzbNk1sqrU6XQaviXyLMpxItZVU9FYJnkhBFryQgiyyQshWFHxRjnwhIVcaSUgL91eGRiCqaU1Q+3kHXiZ224j18w5vl0PfJrfhHZfgbki0hm9GNNuuxVCq0B9u5MIbpOpUIgT5+I+UKcbphE8MFHFbVJYsA3tOtE2uXHznkZTdd1hVjZNx9gL6BzaiydGcuhvLPhlL/DK/sKG7S6JtqfaVaJFEpcWDkxHXZIqtmYcu/j6i8d0wy5Ljqc66CCTkwuuacjJ8b2PKIYpHw3M/Lp+xvR9c3eXhGf09eOer6WwxAkCJ+GUtvoWIWWxAD78Xn49l1vP93zFklhRSgkz3oOsoz5TY9aJlHkiR25S4gHw2sGU3vAVEtYqFHbPxxNqBDdCSHiMLn0DunTF9DxzkfXMwPTYRTgZ/+85IXKdKFAM5ToJtymVySe35uEE9aCxME8qxWPSdnFD9uLDruEZk4sQnfAMA6iHDr2/ypxmzjLnmTuZHh0DzXUK59xkJMyfpqgmKB4FUFs6JubPw66LzyDXQPER/6Eqaqqii6q/6g1VUVdUTVS9Vf8VQ45IdSLZGNKQnh9GwBomH/QmM5t2LctNZ82sbWePnI3/dkQeGZFXTGMfCSL6DzglaMF3uq78FNRznWpkiEIG10IhFov7BE/4AvbbaywlpmSF7dJlF2gw+u6qFBiR95rcbV7HCKSaZbP8Yg4bUbCqOCvbq7a8FrRNKb/IszZ6In1XzQvYwSCV82p3WxIyjcoZ05OffJ+49ZqtWg0C8QOvF7PmTsUwETO3Xo0YjeqLAOz4wK/FiNoOuyGGDyBXDGwPYo7dv1Qe991cUC81R48/rpwU/lCNxMcfln/gY2i0Uy6PD1HgZJy86Yy/4+7b5cpz2jdmxNvvVJ5+dkoT0RfRLzH3MA8xTzDPMS8y38F8ANAGUeKtI4d0sJEIvdsT+NUlgxNaCNqDDtFooh1JjvFAjm8g497zw8nS2Z3QTaLFJAMDhhGMEz8eLXESzJPO5Nyfi6Nf8FbP+KIqpSVbIpyApIr+mVXPdNI1lq8EelPiyJoMa00LviTKSaEWVDm2mguuSSYZ9A/FS/N5HtYm+Ka4gHuNxO3CJBd2BfzILtG5kKBEcQgJ/sbfWfW1Zt41RYUXVNF0cw3NX93xZU1eP6nq1ZMuLDuwxGvkWS0O4ZQ1BPdkVVdPrpvWU/F8i+LDBzgVgA+f2hGwCAhzCyuiqOAohkMJLTlEf0TXKTIHATtTxEygMqxDs5NOi5g1kI6aImPPwfz81IQGRYpSVt5PFHLvV9BptaS+T/VJ3HwjSXvjGlHlvZ8E4y8roqpIiiA5hlhFv6Mo71dLPrl2WonvgOD736iUfRWeou/wS+p70jnbteyMHeh+fiq/eRl9gXHpCsKQqUREr2GXcDmeTway3zQQgTCwWgKxCCn2wB7KfmN6uflAczn9gn6ieSbKamo6WN/4pgyAtoWglmnuOIG90/R8M0QXf6Pu2bZX/0Imh+6ub7iKId6lvmOFy6653x14q17AF1zgZyhdZpk5mZTP5IDzqgE/uAyzP2K6zBZzhmEIYvVr7Wjyxf+AOJGYUElWP4r2WsB8R6NXj/SJwAr+WKZHDtGA4OnWII7T8HCfxOZli7/KNJg1qm+Pp2IN+y4O292wGuumCBtAFk8CCrsA9SiAaaIDzcooQdpeNIMgveza2YyMJZF385X1zQvbJfOgHqqNVkMN790pe0Vd5FIrlV4+36uspDhDlUwtY+1g4BV0jNGLJ+85duy+4zP53K8yAZUUE9kKnqAeKMMWonpcWlLCS4fT4lw8HgTH12F9S/mF4nJYDJeLBT8lOO47F+FvUhbE9Or1nuo7DX+bZI7gK2z7DccX0ouL/+ekGNNyjKActzN3Q+uQpqkRAUsVC3F7dD1SlHYLmKcuEUEkIIOQNShTZ9KcIVGdxv8wZXwoNBqaWb2EspcvZ08WskG5ura4uFYtB+O/MhqczYsqLyqGnQHWTeMaJUfLcBxiBfNZU2ARx2U0Z29ra+tQF1KpzusuHw+8E3eIooAR9JUo3tE5rwoZK6jwgoB5nLJM1RRULKT0QFP8ghmGZsFXtEBPCXgleOWV6Ti4hgYwgksQq8zsLU4jAKExiCCWQJDkuUT2TMgf6kPI6+p4qOq6ivqqjgZFl16C4IAkDhRdVxiqtKH2A7GsZImi4/PMa5lLzOvi/CbacuC/mqmbpCYz8cnXuBTjQapXnyZ2iWxhcJ2hBSThoWbZvp3Wjhx6WhoIDJxNDukgnX7O9h04rUCib1vZ67Cqo9F8ZcffBhfgcxluBJj7UHw4uCExk7Gz/vdoaUe5RILjSfpDpEm0ZC3+EtCN0hF6cRsdc/cy98d8qXV0DXRrFBWRvqkK/lzcJis5kIstRMThkYtviE8oC3Dc437PL/l9+B7GK8NBfKBkBpjwPSApyWFICQsajgdokCVwLkvDHbKE7ZD1aBobfwuRm1+jJCdLiU1Aw2iCBW6u6z+sfu2K241VCvQb1wMwaB/A5y3qMWwNSbn30d7fUe5XDg+zV+gfMzcfRolNDWBnGJ90EsTygW6UmhrVDO5WDVMZP6uYhnp3rx9RId4pmOHq+DeUdFpBa6oZjQ9OPXgKPvP2IsSWhtjbkXpYNVxzuxPbpmEPDa5Fg2ul1dUzq6sIyDaMvqB1OEpMxhKbDfRtgKhX6FxiGk6i8OzW1lhCtWsTdEwbNIrDuB0rVMHmT5lMtAMtCA14eRGv7VTD4zhtFx1NbGzWL9Y3G6LmFMb/QzpXcyv4E9B+Jd//KHAJ8MRT1cgTcadZtCu6k200suTr6EW3VKvLQtknAww+Ezz8x+h/EK1fN5HeAl1M7EO2UaxXpclNCgmbVIabcHaYGlRgYi9IFYRHokKUvufC3T1b05S8bsmOKWmeKuCMVlJ9N49QvaaJMse5Ws4GUq+noctLxYqb9pfrHOIlrr6SNhdKHMvLXDFsWOkFs1qK2mWvUijIImfpHAZ4Y2IuhQQ97aTLnKcVlBNphfV0gDKqKRlmRpJUtbyaSUkim8qs5ooLHitjlnXDO7bOMsxMXzECxFWFsc90owln1rYSRo6M/gqu4ckYiKaD4XDCgFF+pacYaLd/qMVd8Fcm6TiPCngUxNBDdLDnQdrkMyfnGhLrLbtC5psPE4hIzPoHrSsB6sH46rUOZ7wmKWuBacIsPU70OVQoUaWrF4YjDjuzczQpKD81zZtE0EglUNXUntXKgdBJERSr7qJ9hYLk8X9SiA7e+P4YM0doS8joZPEwssIPy2k9lCRidqr5+DvRIIa2B0f4y+lcGs3rEOk/mVOjvagf7cWKpGB8OBrN8T5lZgNijoCtCmE3OpSB9qnoipySo1tEKQt7iZghJLo+jEaaMn7Hm3hoVtSAZRVfNjwT0IuibTwoQEcsKjD0LqKPKg43/sSPSjIhNxxvquxH1LTpp1Ip3h7/S1T4PrgCTDebxuy75nEY0c9QCSkwhW7oRlPhEGI2Lh4bXdm4+OT9x47dj5iDYxc3hleOkZMnL27EfDXLoDFgz1Wmw5xktplzzAXmLoKOPaoogVkkEDRPBN3rKBFzA49HzeLaa6gGM6wm+EnHbRoIkBU++kUbNaOUV50sQimOrWP8VdEVfxnjP8Oup7/DAGjCskjVJE9Vc/eLtIt+KP2D6V+efn/A/lz6B230V3WWwJmMq+bKel104QX4l+FVXxXP6S8Zdk5VPUnTUIpNWSLtZwueege84aW571zfEz6mfoOczY4lbLG0DZgC7APLsoEdxBx/Xbf7uudJcHzpwtLShQdIkEml0Au9LNRslFyEYLyfXIXgO1MIdS6++CKvzPPQQ8CGZYbYPLeILBSTgErN3RjMAB8adgkf/SJ/aqmwoRpK0EzVVtp1BFh7/Zcu1teerKPAkJdOl7N8Iyezwma13ulcaH3gtfW119fn5m3lVXLZQu1al8xlSsdvzOZS74UXdh+BrG7OBK70IKN52pCDY+vVq4Lenjq1VNzQZW2uEqsoSFn80mngZ2flvz2a0pFfR78FfXMnc5H5ZrLSUeUCwWik3JR+ABV0CblI6lJt8gQwd6iomTAePiH1XWroFQe+12k3G1N8Rwu8jNzYaN2jGgtPoAnkCpEeVJv/SpRVCTCwkTZYRVUV1kjDoiAi2VnLK36KXauH95cKWSwWyk+t5DVdFRSFNWXTcPzU+K+XycJ9SknBQ1gWJUmRiLxZSxsp8i6k5SWJZWWlgHlN0bEti4Yo29iQDf4Zt1jAjeWF16TTWi57d2OhWDf8vJk2RU1CuiCzrO8ET8bI4EXexrqi8bgAr+NkKS/y8Ir4dbM1hPQTBh4TRl03AcyNmA2HlZ2qRKKQtK4LLdkvekRnMx4V3QM4/H7YbofLGVtR7MyAkNknHRKOogc2Lzu5x4LpuP499HuA0pcSucBUnRZLBKhdEZ/YLPqxgeMZFKLPOW17HeYrdjEeiI6YFkVjzR5/ryMJMi9aaddVV1Tbeddl9DnbXktjnIZ7B6KYxq5ordvta44NN7hu2hJ5WZDgxjm6OIhtX7qRVbPh29sn5iSxrQbDHFnfBBhlDbdrAfFEzHAI38ceG1997LEb7kF8G1t+G42uT25CLbiJTeSTwyQ/K7JIfkQ91aOmKOQ7zY/cR/TlGoqLMiSq7CltuEJl3Izt4nal7eO23+66FTfsuoMIZff2gmh8bW8P9XrNj0a93WiYHGfl3Kd2DaQmoVuzIrdLjAuAyx+h05fHo8uXX3wRRS++OF8vYnNDauW3ocxtPBoOye2foVV78cXxVXL35P4gtgWwI8igFu0NBlAUgpjn8SkP6//5yT0NOvWcmIslmpxONyIrB2FxiRiTMr01eiWWvU8vRERwQHM4L+sZ03XNjC6zKSnFcjyyrbKlOarKcXII8A1WEJIuiaqoKBBIHCfxyNLzcel+l5PTQe11tSAtcwDmZFZK1zohAAaJk2XuPQs5XUQSL6UEUbWWLFUUUpLMs6KeY+b3FxApzXGCme3KBNcLFNcjAEaNVoxOyXaCmOndjBUwcTI98XHFrRxHL2tOWh0/r9g2+nZiEQUcuqSnc7pK2M20qSmiwPNQFNWsmyoU5o/pCDq0lfHvahabVtGiYo9HZOjsyTKVoV4h3PKeqXmmY8LH00wRK6L024SeitN+0RgPOChih0w0jncTvSjBZ3S1A1pgT9DXzVASd+NNEtNNFJXplZiZ2ew8gXbcDF3+Mp+K4dmjMTz7TzFoe+nrAMTtxXG0HV96m0GNKfu5czW6uh6vnUPZOK0VI7X48563EdnAcnc+rRe/ipnTTYqMA/U7BjzwvWRVn4h2gYUltmEA7dq41enW4tr6sN633VildpqqJWEMzieRIRmtEXNBmob6MTm3KFvaymcCQFYPXYaA6nWOXfTXgslJZUW+HDhZ7uyjxy4iJibTsQgtCoptR89oduFPdV/vaRkdTnoQfZOgZ/QenEBSFATaos8WbXJhrn4yrLRrgNFuI/jM/sdXJZo2jU+b5fDvXZnvi9tgiUgIUf8fWpW4IQ56u7ukSvP1Kty6XjdXA99Y1VvXi3Q5Dif1+sjRysxquXFDvaBve7uzer3jSEX6R2s5uLFeQOppxebHoworLtmRdPv8eHSPjsOv3Vc39e1kHP6T/datqzep08asnnNjMLh15eZ6aXC0nrfspzv//+mnkFrI/YO7yVy+K3359D+2n966Ak9vz+tGVVqvM6SP5sD/TS0f/p0JlNuaFPrviqK+nsmRYkJweLTM/Vl94KDvkavwTQ5zmG5ELSfrsxVpAmgr7QQq0/WJJ9KvCPdQn0gEBhHZFQTs/gDO0MPjq8HhIdkzdJ2RgezKQUAPRH177cqVYX+ebyFtlbmRYwrn9X4zLumne71o8jnCHR3OXWDm94hhRidWjxE1zfXJDI7aaC8aX23t9waDHuCk0WjY2h8O52wlfx19nuzIRMTGhAzGyVZaujuhGAvbO/EOrm0YeGRnG6zFnSb6abVQvuvsome7fNrAAPEVwRZ5XledQOSB3xZct1sweMPJp5csQUYve7aTquzUC13XJdt9eDlnqzrPi46gmIIi6K7g2h5b2jElKTOzF/499AcUE9qw2vrddRb7tu8JBkv3sX6k8smqUflk/csPKEj+fz9Z/3NTrXxf5ROQ9ok6Wn5AKcrj+if/pyKlZjj+t9FvA75KA11h7JpVadfIrDIQAL12t9M00Bnk9wHBjtBTFTEjQc/uYXa44791EQ3GBxG6rSKyOBiPhn0p8z3+zlsXJ+/9CXQA8zvZQ0oKCJjdI8w80eqip85LCI/eWxzh3On35t+z9978e9EPn5ey4ucL7/m8iO57X/59PwVp0zk1s7WmVltk/PHJEfWvoiygnmx8AJJElFM0ZL7W8/7k+egwsUPv3/T4qz3vJ/mTIzo4PCRm+TS84fGkLd4JmNiAFi5BG1sxO0j2FhAGF7djARyONqk9xPAb26eDohds3Vaq5YNMEC4eD/KQDG29WmlilgsLK4vvvssK08eXfG8OcxP73ijG9RExFjscDK6h4bXeXr/HzMsJeGppTq17bbJBAx/2+9nhsEdD1O+TXb3XGXqY42euUJ4c4He35nb9ShcazweEj6M2DiuY8DgfOHmy3C8/Me4/AYc4joYQR/c/MYbjXvnECQieQP1JfGqL99FYZkLkXgImwnSK5qlQD2YbEa/HWnmAxcxGlNaX9l/XsOwHP/CAbTYe23dVU7Qi9E3d9kYtl4P1qBquv+be+25bDytwpiuGWdlod0lW/LQuRN4d750FnsKtQaZhF/OkLn7Kx1C5CqlleDAcDvZKx59Ezl7pyeOl6taTpfEIolvE2rhfevLE7f3SiSfR7ZXHT5T6EH183qZfjTWZM/IPND0kBnbAqBLBBg4JGoY+BwbWxYkQoYoOEmIOwfcvqJahGJpXMCuNUsNwdbGJ9ayuZ+eXBUXRXeD2bdmo2MWs5RuKIt0rBCqQ+ilWv5aMXzIbParNrBIZCLByRBsTEaaw1iDR5Bslx95h0O9H8LnOHB7AMA/6ox4Z4kE224suPULgZ6/V2o0ich7N2viGvREomW0TXUk8a8jWiMM+0G6YNjD69qiqprXfn7Ph/hcxL4lgduBaN+rCF31L546O8aMmDWHSRdFhazpPR/Pz1AbWaP4/Fr/Ofw8I7qYqoUR/fm0qv/0a+nNi4U/XP3d+G0H89V/lGtF4VZI42RUAte/3okE0aME36s8njAbZEcpCFAHbPOj3e63p3+DatdHBwX6U/O3GqXM6Irpyo1o83rYQVVeR5Zou5TROkZIPLHzv58vtYrFd1kzbjD+BZJrmAI1K7TPt0r5smjKKSDge0XgPbtm72mdmtnNXoG3uZy4zTzBPMU8TqSCwpDCHHYOsuLVuwpOvI+KBoSoQDwcdv0kn9wakwwwgUu4OoXs4hhk+NTskeLUauqS4rdRml7wL+3w0Gz9okDJYIcUv3rFSYgWWZ/mUgkUeiYhs+dwQZRXWUlW3dZno1JEp8KoIHDyHeJlXeMzLoRdxnJOuyOO/uEb/UImFl/Apll9Mp4speI6XOY4kpFhR5j8mcgKv6ByWDZ7VeJ5Np1iOg7U9xad53VRQTby3n9XCYAj/8+0j0l26K8xF5uuodg37Z4iBFSE5wDtSC8GYPGB/mxJAWCbjy5RC+ARguBMMBotEtQntMls/yObSIVRDFdGdh4flFc1ICRw2LFnFqqCoQiplZGFZqtimo8tY5g1Fw1hXFQXrWEs7nqbJWgXWvV4/0CQsn4+CD6WRCvVUDRWzgqDzgiBAPY3A2AzuVjXF4FOqKFiCiVOcLViGrCHE6lYwoTNXbk1nanStxDAN/HbUoAQg/taS40EfZnJACA2aIzTDbJbqbG9FaGZ+Qip/nxGPBv+h3C6V2mUFWHzTIQZSAYxqMth32qUPUYvqiNhIjqlFHSJqnSlNGQFV02FmrRAkAxO8O7WP7t6kjiUG6sTBAqGh6PRt15nXnIplF98XkhePhyQMddRqXd1toVEvCHqJCimAq6NJQaxTp34Q5vvgpjJs3FQG2yJSZ5pWmxkvECM/+ER+Fz5HCvJFkv/4qk7LQ/A7NGgQtDeAqLeywZEijUdxWU6bSdm+eGUwgA+UK6Y5vwj02SaWMd3YCAawMNGDJtvQbpH2F6bipA1htVbbqi2K/Gajsvz5I0nCRrO8/GN5R4fpV7qQ3sy3tm5b74aVm1LmcP5PMQ6lez6RuydapdMo1isR/yLraCY4Rs/lTfPfGavGCcMgh3d9RBS72MM/hHFXdNF35Q0fUOq/M83jptfx4RZj/NUfwi7cgz8ieriLGeYfTm9LqP2Po7ejPpHxTuwVfo0iyHVYh04z54m0jQoEu82YZwZWpK3Htrg4CmHFhPXSfRWsSYhzaeLjgerUQvS9kiTIkrNateoVPy06kp/Jfil3Incyp291ukHBsDSjUHY8y9DN51Z0PiU+lbUsy8gBzgxGffTv2RTnynY901zEXorLHy9++3C4/Jah75oWh9i05tg7y7KnBAuWEtTVjPbBwSgY9qaY4RfQPcxZ5nbmXqCWl+gukK5LhbhhLbYUBsRZIx5YyO49GNWAUagI1IUujwgl3fTxGtQfMCSQRbjQwNE6EqANKN7CG7Uo1sW00AdlS0n7lbSRyvCFbLeeyRknjVwmU83k/LXVtCJhA7MVVpDKa46EbcnVJPbuu1lJHf8FnxMF7vmirJvWG1euoI3AND/LpVzsWAVRdTI7O8vLO8HOzk4KnnbgMVNN27KbEgzFChzZeFB3PNNcQqIvv2ZZzc5kO1eO4I7ZvsUb7O9mOxXjmRh/kn2wxDqmNYzxTDxG3011NDK8L0rVUtBqYa2L7j/2TKt/LP9G5WJzQLTRvfDtszVrSNcsl1oHNMnO/Yl2iyxKr3rycqz7P3Z4uHOLGDXNhngU7N8UmckC9tCArhpMbE8fxob11JS+7RIlej+qd9JOlCn+01LmEA2+pxHabu0D37taDsPS6k9CreM16Kvoq0wGkFsRZmebOQ6YbZtJvA8JOCSKI6AGbBi7H+J9IJEh9qncKPE85MdGp10+hPEGc8NPXBApVmc5JD6InNOWqBInRON3jYatfjQcjT5t2rXEBVH9lBValVUT8ZOL8DzxMKSK1lJIvBHZZ7qmQtwRnYWLo71+9H7rVB1Ol08c92q2uWCuViw3uUSqZE3Xuq+FS2M7LdJ6sKpaBMFHKEGdeA6B3ur4atfQsAcYfdi7zgSICbLDLDlcnQY3JaBREIwH2SzqZ8nfYBCQv2gaBJBCLkQ0IAlTe5QW1VHBcLATtb/XmNgE1SaRQXGpCB9EfH9B7HPxgSgWybEYX40/UxpN+O7V2H9Tbc6WMCSepoghQpVujiTD7QyRe3Q7RL2CDj1zvE/sItCe6VWEFPf0U5hPSannO93nUxLLC089zbGACP/Nv9FfPiSWFST4G0HhnngaCyn28Y2Nx9mUgJ9+glMEWX3nO9Up//1nUJ4i0foR7TAAiAZVQhPvCWTbaIklXpIcYE6uUqvGFoTC8ONEc8Rx3/+ulKygL78orvn/xXPFbyFH3737z19QMM8idPLjHIul2Xy6RnmnLJXkQVZQe8iIbIci0h1i0+T5bwBacGz8o8e+9CM8p1ji+78Hp+UUj4ZrX1yDzx+8hzMNln/DG3jWMDlmprcibUp8pBCL5xvsM3HNnbnCinzsu8R1WDds+0csNT9HNooVXV3t95vN3d2g2QS0V/SuEiMbCHp7RDlTFJ97GQAEDEDC/vfm91onvPuNuUOX3jq/198ql4/Nv1yYe7cNrVaClX31VvU7WquwDaOnOzXAO1LHg4Np5a6tFVumQsSt+nwJRvsvzJUhu9N01rZjqeyRtl6lnmhuUdupT6nmvD+pkHqcetW2/zNZTAluvoJNB+sKruRd2RexxApuz1X8b71VSw1EMSO5haqgati2hGreEVhJlDKKc5fLp47Nt+N8uX06Sm5uw5Aywt1XHx3RAHjiW3ZZfWOwVt07Miom+CHWp2aYPPWGdpPvq6ltWIUg9PkTdGjI4z71bjWUjfEg0Sg+NL7WmkUjRHcc0fvQd8XweH9/NInM2U0RDwRE5mwBE2ABKxAbLSFA2f3+Z56rf/zj9efQQexfY9R6rv4jP1J/jpm3uxJjz4cuGVrdmk109Ras/+7hKHpv/V8+HUXja6NWHx2MgnvfW/9X15ledICy0Wxv/ltgnXCJhQKgpBpxbbaF2k1qggkF+t27t+U7BMltZspL0Zkz0c/euZYW5bOpaLVz51TWNzoq/4/fc+Q1bqIGuAu9SQYm8um2eFpLl61iY7nd/iUJBvlIk8evyNqHt0PDOM4uh6vbH9ZkcjMzlR9cozbYs9VsTgcevxxROQpdyNp8cjzaDeNhtheMxlchoC7KhhOWZrx/7doIWEVgbAOqEpjKGr9EfXW0EwV6CbnYBbK/jtq9bKWy9sBapZId2F7FVNHLEcY8/URXDlK8qesvMUd9oLiJZ5H2xLmYK8Q29oOol615axvBci1YzrY3/GaEBuPBcCQiRGzjpZHKIowRO6Fpv0/bnOiZAXGRJk42GtamGw4npsfxcuFDF8T8RVXwYYwLc9fDVvOAF7NYga+KfUPP6IaPVwOgKuXVK7kG6zgQdRzURC9L3M6OgCfhA1aWpabyB2zWeoCTtOE+NTAfrODNmr+gf5ycfVxf8Gubc3Nusp+e+kCxcMUmIrCEC/a7tQBd3R+PdmOTleFwNBigw/FoHwE22AOIEAT9wax/rqFDsjrajQ4dCZOFBLsJY0NOWp0DRBRKd7XbDds+5KNqo9Vq2I6OPhmxpjL+xUa7fVdL+v7oT8orcJP0W3TQsdPy2gTXIjqSp15FY5vXqbdRN0zSUeC6tR7BG+6+V9wnR+haIEaoX7fXe72iS82X+nD0iru7RW9A/JDO2iZLLVepZcS85TZ1vRdvHid7GMh+nInRg9+ZGH3U2nPmHhEdrFYtFgah4SYVJnxKMWkE3a2YY6AC42sDArnLfgToQ1Q0M30trco8x6KUIGt2ThfZg6yp/AkamuRheHLTJA+Td30eZRPE/obEBGQ0VGVL1VXNkLWspsH7/0Qxs8yN9it5gq9vmrvAv9jTOk0MWax5Q5aNJJHET6Lv1tNpffyNEKLvGA8PYhTXS+xYYpvjcqAJsRFLuhyoGB0mD+jk4fEe5YFI3ywXi29U1UKmamfoXlHlIAqyUA9LVgNtNhYIP019aR2VU2DhFsKLJPH3bC3j2EJ7cWm51ky72tZyuPl/pbWMm8btxcWVatN2tJOQ9jOVjMnzfOOie9KpNlc333R2Nbw5aUoHr1GOq0g9wZ6IuXqHQlLil3KCLaKbIvgm6xrEvP3EsWMn/pYEcmyV/a0mtb3+1rhrfyVOPD3ZtX9scbh4jAZX5+2048/LyViKzWemcghSXonRAK3HfnbKk96HFbfjE7EDkT0kX7oLBBLpytoy3toKoh7wAoP4m+2Nh4P9/XgBRmhfNqgnKOIM6pDu3tijugB9ui6lKDerQ97OdN1oQh+ukN2tRJND1gu+WwPs6TZCtwuMHZSBOGMCxMHDlIJruBuWUNtAUXRwcO1g/PPN3mgA4SAMd0Kylg6Je48BAmwRhOGl5g4gkBHx+bHTHAwGcEsvbGrhdQZSgMEJw72wCbfuNBlmTlYnQPs4VLtE9EhUywYMZjuFY4UZ0ZeF3YPB2vnwjs+t3RGeX3shPL88WPub82uDtTvQaEDT4CokXmdCmkqun791HvFbqRTHjXiaU60SZ/xQ/Q54+PAOchh/jh5QH95Wh1zopTpNe4WGNH1ajy8AhiO7Y1p0X+YaIltTqf/kif57M1n1yJ4JHFtD0UXan3Bw3UkEfZ+y4A/9BSVv6IJjFKywqGfyvl5sWkXTEXTjMMgG8PkuzdHgs6Hbmmbr6AXbcezl4+2HdMWUSxnJMKRMSbIU/aH28TVyf9CUyY36kkwe02bryK9Su3rCC0fUPRu1BNz0u2sTWR1x/NAOm+gzP/88PruweZ5FpRPVldpWcEez+7rjx1/XPXlpg2VRc3dhg0XnN6tbdVQ8HuSpi4bo0ZO6fSPunOCYmyihn3jbnXjdnUcwPzdE/f2IBEcx6FXicIy6KUtoxK+gnwZezqO+h7aoTRPphk3Cy1UpcUqi/iya6naASpQQ2f0XwhG6Yh016XaCTY+wDtUw3vjyeU5R9WqgiIVq4bmU5BU8GWcL2T/kZIhKOFPIpsv6xrObRpkvheUP5ay8Vs1xOXVpVZY/v7qkQryqF6x8ipPRe6wl3Swu1TKZRb2ezdYLjmNMIuOrz60fP77+nJZOf6HZeVLU1ccW1hFaX3hM1cUnuk2OQ9P++1P0acK5Evam2wwnGwW6jWSfTgmh/1h/pO7p2W/6DuyKJYBS2a2ve+ZMLjACAb2u/lDdrQQ//M0Yl7CHxw1UzihZo4pn42OQ6BVnohIL7Qx24IOG3/7t44Nv+zbUm9z7m+iniFSqETt0IO7EBRxvUiDGIIg5vbESZHmvcTK7Ydsb2ZMNj49WNu4Klhc31h/Mr7GuabrsWv7rHl9cno6ZrwB+JLLcJnOK2WFi6+ZmTUcYcJxHBFFF1EWdFo+hwl0dxTYmJaBJmJiVLyPcKRHXA9Q7jgEx9LOiL28vLd35YpU3iivLIrIyEjovjr9S3Siu35nl3iyzsKrLP+hlsmWv8swpJ1A948xb65zGcdo39JdOoR/BeNtAd52RHbRQWBYzFpLQHVLmv1Tya+cyubuPSzkZ462ymc2UoxMBi9BWJDg8l5b6p2bt+jGYd4T3qlHLeWgwuljVKvGGd0IuCAlJPNpQvczLGmvYx9Yck9WIxen4kIRH01AAYb9TDguFsNKO+eOjZ3M8xRXoV5vKJtaZNvFEVqPMZsw9UP0rifsRkVq2a7hG3PzRG1LUIiKm1f2IiKei+uOVKKilmkHA5s08e3U3G/2vrS3zkUfWaNine5kHgGL3Bg89NLhvZ+e+QR85J7dKlx55Zetk6ZFLTOKvO1m74vWK9PhrmDuYXWgnQH54G51JdShhYl0yX1Ob3UQrhsNqst2ZjLRN4PFZYltb86catEpswEKEwsPrPE5xKUBMlibqIo8QD7yGrH4BVq2HambOEARRti090DXNteH8Cl1nqR050KT3pDAvi5LiG4KsYl6y4Iy7LYA1OrvumTm9TFwtAZCEA8eX9ZyVy2ZbQbBLQ2amoxgm9Tye1JPWkZ+rI3ZcH+rI/z3rF9dtfI0XWS7FskJaEzWoHM8Cw6IibvBdNSOvAypU0lA1Q42rdo2oqMbDPmp9IytysiTCYCfV4mSoFlSu3/d8K9DLQOFT8FIWsTypk9mmcsoomPn1A6iYBpyTgXokBr/JIgejBLgE14/a6LDfG/X7vYNe0OvvEcVln353s70DGBxTO/b/hr4wkXGiCTLmyUwn9NqfuBhFfbJl84FT4//e8JZfe5e3dPHXGq9d9u66uOShZ5eoseJ97sW73KWLd3qfdV2SfufFGSaH8hIZMSkzQ9iFCX1LAZ8KIxwwETq82rp6taUFO/0+YvqxGQbqUysMgqC1S/B3JX4fC2+E9+nJ+1y6grWJNV0jCv2KW8E1n2V68RvGf3Hl0gF5ySNXLqGA5HH1atT/KOTDTMpHfRIpVL5WINgI8G3UBva15jegrGTrrU81pyG8+mAzbYenzq/dhj4MXXk4gjwGdOPzoGY7ndtPPPRpwI6IOYyg3Ye3fD8MpG4NqI8LQKVRARIPhbdJa7SJkhZ9aPPibasXtkLbGr8L3gNvi3q7WZLBQw+duL3j2LcdEhwYXWd6B4dztlCERy1TlF4ku/aoUr4bIwoyeKvE+W3b3wZOf6e9eeLEZnvn1NPlc97ZxuLtS0u3LzbOumv7xypvQIfl4jMvPVMsd9fDQm3p9tfevlQtNltXFpeJK/fpfCIyf6IVyUOei8TrHBAHq0IaCapjQ9tFrSaBFt2IjCkSa0z4A79dpdCn5hL3iK1oPAImda/4K9lRH3irQTARnN+xVHV2nMryoIeYXg+qi6gXNeDUe3DDjw0GWcJSLRf7kQrQVR0cobVE4lakPgcJ919z426MqA3MdDt8mwCfLl+JI4BAI+LXNEK98egwLgM/Pgx61Ifs+BrxbHatFaEgGl27thdzgsPg6uHh/iA7OpzDXfP6EIZwGpXEFw/5lQMojEX3mcM3QFfHwAn/E806JH4ziRM/9OPjd6M9V01bX0e3NDPEX0WrNcfbphLvWUSSVpt6cwmPOiKj9qqx7ephq0VMChzTlM88e/r0s+8gwZmZndZg2I/1vv3kGgTjvZm117wNbqyBu8Ff14RoUGXYnFnsxWR/w7xJbLIt4vfpuJ3ZJSvQW1Q6SqSDber6DvD6vI2yPZ9lqtKuHLaojVQwZ3Fc26pWty6Q4H2EZIyoMdLw2MU3kKsQoFZ16/aT1erJ27eq40E0zf/aLH9Ec3ZpKV69SVNkngZfqwC/g/ooujH/8dVZ/sRajWSfmvYr6dUGxF8917myIeaWfem3dnfhgw5v3ZUoS662ZjxCbLtvUf8dj8/R/+5NrFJYrVVrsEoKxLGHAyslcTOyOfmdmtOIuO2lflH82GqKTHEiqSJiXmo/hc4vnFyAT/30w6fhk48R0rfxSsOu5l2OaIpYyc3X7EaxYdf0nJqk6HrNafyHSrXzb6OGkU4bS2s0gpgCedtCYYW87fQ5GFe+bm6wqqfpVbtRpm+VyCt4NWfU7Dp5K+SDWfTDD0SNSiW9mv232dU0jczJjq7QmevNpAczjokH6h/GprkxTOwRFxeJuwv0CIEsPeKRs2Wq6BXVRAe6MvGqoejR6KB/kCW/SzHf9vN+munOPbdGdvCliB6bWAYOBsPBYH9vbx8iRCUOqOMQBYAhYIkcZPeYmdyX+KWlnmuJ/qJHXENf37t6de/rmek974cxVmY249nr0p9ioro+6uuMCG/XETVmhelFfylmOblEZJGICc+FmgxcsmQofcWQgDeW9PBccygqWFcjVcOKiA6b50K35GUcMafEv8Ch5EQn45VcuHP8rOdppqppqjkb95+lbaASayxS7yk18yk8aAEj4cceL+gPPuz0ek07lwuD4IO7u5axZJg9362UTkUo/45cMwefH14ef/l7CmkTmVbpe35soxAIQmaCdY/qYTaZDtVNM93Eo8pEJ2O/qj7m1U/meefTt1TT3DoaxGx1/CTaT1xURf1JZO+mlCkt/gVKi4Gvb3TnPA9M3WP4XUCxuN0FjrRXNOxmu5E2i7GQ7dQDb//Xg8FzK5/4kFhMB81mkC6Kr4sla99SvdZqRYetxs/M7VUgFhdMvHFusr948ttdbeqhcSrkW7qw5JgFPg8sLa4aeb5gOpBUb7XuaMEiQKLVYpbznZVsdsXxuWyxWofEc9Gdrdads30EQ+rDr0G1nFN9w43aTuAvE5cEAqZaICKvHgQAUANqpMRA+HxLkTW/6CtqnQALFOwunzq1vGvKB+QWCK6c4GzZ8H1DTade3CWqvKP7P25c6Y7smD+yTX5G+I/s/zhIEiEgr535+OGovFCj2gmP0n1ikU2czPlRiKkKMpwL8WZn4lDMm3YxivbGV0e9Xn+ttLbWmwahlWFZJRIExGZMIpRWFDTaGwMHtNfTokALslor0LKBFmUh7GctqZzPFVUjd1qxFPgc6QdSznBWMpsaa0FXJP7gNgnl77rEHwmV/06KFAjcmyVeTOmOUxLNnmoLsmsZzrQc4799Nyc4rPIQ6xQcrOsPmlspXpALjnskb5lqLEnedOcNMMdk8w3NBFZPokXr9bIA1+LXjg+jVra3u9vLEl/47JE6TGswKeG0KDf2i3iTLUvyLNmoQ/oGDu1KgY3oL46F8SnlCumrgyEU62DYv870gXL3h0Qem+RFbNN7wMP1qIQQeNxsNjtlUxPsOilveqJ7nLU8LP0YuLtoHU0NnBIUOalTdBVeF5BsYgrzTb3ecNbk1/b3iVH2bgLKWq0ezdg8UvfY/3SGovo6tRA+xrQSnjkpS8IDT8ye8T8gTgt6hVjutIbQd7cKp+XtxYY5weRADXeyyaFFTXQSu6pb9dut+izZm3PLzor3ydOd7jd1VkRzh0+CESZ9RNH9pH9u9L5JdIOTfsmaco+6pZHN3WiuQ3bJEkkCYxDbm8Vj/0voT6Hl6a9/IM8lkAuo3zLy49W4G1InmWvUp8A2S382rDbdZY4SQXgsjqT7VgSq+YVFAn1BRGbJ4QSW437sBBZ6AkZBCUmu5Boidr6S4kTRWWmWTiJD9bBWMSpGSVMLpXIFi5Ysp0RdMLHBC5hV0dPFUn6zIrDoZXiIexkhUbJP5DPSd7MpjhX0WvRTnB60/FxUNlROWlp4rlD8NJvCtptRZAfuwHrG9SWNme1Lmf0mBvm9CvhaEMT2g/R72LrSQkyrNWunQeLzIHmmTdS709+nSL4D4vRv2Jo8wzIzPzhobkSwzJiZfNGAWJb19nu9adlumc9c2QiLPslnQncIT0E8m8576XXILqLYtjX5TbPpKkY3FRCNRBTzlXt3diMiY6ToIOrcBVMW1jbyczzBfqL1LbknHpTbMTBoyw+eIHeSBU425n1uD+O9hnZEERWgS7qnpj/dX4j6rcmuw6ntOrV+I7tUYocOwbT96Lp4grlAfa6R4daKf2SAuAQC6A/zihhUT2BCvGOCyoY9wrbEG4zCr8GqIsNSeJ7jMId5T/dFQ7WKjmmnTCWPNVUUZcOVVTFQjGw671mSIknp5pw37GOvPXbstU+QAAWcwkqSxPIoxaZLoizW65zlO4Gh6CleFDOqLEtq3lCMapiy5HyQwemfnXN2/a7kPRBMeCUYO4Q3aMLMJL5aGJj3tZkfGFzp6ogKSbdTAI1ifY5PpYaJNDHWeJxh6fJNnUOF2wgnu6uaLGNvVLMLiizbBWH8v38HGBcO8RiqiPkUYWJMDav4eSOjlyt6RlczYtEtitbXFxYXTzgStE3tm4NGAB90MB5VN3Ie51pfxqpgpiSR5wVJ4kSZ/MzY9xe0rEH8S2iFlIBSKcSxiycXbcPSA2z7j6RzuUa8Hk1kSteI1S+iFJxsUq3RbXyJQx0iYuzv0k9yRMzcCTlO5UUx9o5R9x3MffHMOOKfeIJr7NhbzYQvmf9hS/ITJlMWdRLBAEMAoTVRZMixW3fZiJItBUW3l02/Jp3tTawWg/FwP3F6Hx8+1HxHkzt5z0mY9onrMOPhZJPBwQiaOJ3NpqGtIVr88eEwwe5yfHAdxyatha5fT2jLg8SieWKtMTHhIG3390qbbGSeWX5Mtti4aEQZKrqrORjM4tlBMIsX3SNX3OJBvL6QIIpeJe4V58+KM19oL6GXKJ3E8Q+tEh0EeunRR+uPXmo8+mjj0qPoUXICMXKePPN+9H76zOwRH3Ue7V56tPMo/SDmUvfR5KQ7R6M4uks0rMH9qYqNtOhj6dCJUC8C8vSXP59NnNjE938efYZ6xmTs2Mx+YqvRrBIv+kVWmFjbC24tNvAgW5boXeQH3cjJnNDq91XRV2Tdz3sFP68s7VUMO7+ZZg0j1a6kzSXPGZTy6yvrGf/ia/RaaSGzoivloFbIWLvvi80Q0Gc4uRDU7bSbzmxkPC5dWm7Ki2fl7IWdS7ed7iw2TG6znc+kjdA2pEztKzETlrTXf0Z/NLMC1xFg/DUU/8YsoZ9Ev0jdkNFfJ9OpR0JiSknEfcLcD0iiK+RHS69kzuxkORJ7h3XM00TPe4cIK/s7sO7hd5DfRLI075h1xV8pplKSIAJUkDhhA/1s9ty5zKcyluFxmXPnsi9ZoiKI/hn/JWy4+CX6hvQxT00Lsmh9yttZQYjYinnEGT7LTuTB8Z52smO+CphxkzkJa2XicYvs3bYwHcg1ss3D9WPbPfpzR4m7kgiWVeLHInnkFQdWSjwYod4fO6YTrJnOM3mnXrcLj0fArvbGh1f671UURTeGARBFFBHndZ8x3GzfMdN2oZ93fEDB/eCwf9DSfWNeB6TQX8Ob+FaF9bwzdQrTnZDiKU2mJk8b9Ffrmq1pavemyBNoZ5Xyewcxth7Eh2/U72k2GqFurpbfnphjxheGiVuX43fEKv07/igmJ4uEaOn6rrbgWLv3aGZ5NRunKEcOE/nRj9P1qAR88gnqxW4zBoFk6BNOvTZ/LhRRl6ZT/8Tk1xNasfcywrV1af0hsglnpD3Qhm/qkpL2TaB096UV2TD9tCKxWvbXMpaZNn0I/rzqmemaZ1oXsyeaTbMVbBrLzRNoMZ8NPNMuZHKuadummw/yacu1wiDIZ/J2LpfN2fn7cu28HbRzmdWz+YrjVPJnV2e6qK8CN7ZKf5c5bMZChhLC5PfBsDBxtEx6hPiy9r1EDNHthHzYjB0flBBqCxKSexoPy9/eWz3V1mEJ9PDJJ+RA1OzierH0fEkgysazpiYI4vjTvMKyWk9RZR71BVmT79EQq/IvvbVYXCs5mhjI5x4RfQANSlp137oIC7LmnU1rqiF8mVdEXu3JrMTP6ZmJVQpxCk3kMV7shjkhUXQPqQDknSxe1NOxD3BJ2IjlKVNVDeI7C82wkBFSKS7lS8VK1C1kvUzN8K1UpqyoYglLiCtqLMZSOR1uV5fvRCPPOb9QaJssp6T5VP6+fLFSXFkuVVnHlI9V7TTWraxjvhhusmilLgYZzVi6cP9tzdk+n2sJxiW/17wxQ8eEV2pQ59aT7Q7dNjD8SZzKYhKGEIDHgBiTjkbou4e8IJpuobCQZweKnCkUlgrSXw/39sjG5thBd1RAgvC2VGGxkEm/lH+Eh0jB/QQW9ycOCvAN5crRPZvNoyXr3rCGElOjG4qztxc7ByXBww8+COdzpWjNfqPgSivqTX0rXP9bsqij65AzkX516CrY7ayxbeJklRrgEacblPoSQweINRtUMo5jt/BklhGXb5fvXbtX4GxX+aenT2Zydo4XO7nC+XvWz36b7Av02vhXVQmXFL+olp7M5opa8b+it5MLvs29DT9xbFM3RJUXtkvwVHThqzIn3Lt+kfNrWjmfeT0846slLGrOl5O18XfR7yZ+S4pIZ9fYbdZLzRQqLnplMZ9/7Zve9FoaXtjb24XWeGVhkgDh+CdJ2u7MB8KVxB5lakYV/+5gC7iCfRKZYcVYj3PDvQPqzqRHQvrz60k5D9BvQo9ukV9Bi61nyc+UEY0zZZfohshOy16DOnhxnCyMUJnkPuIDF118RobZyeoax4qOya2dW/OfwWmzVn3k4ddkMlUSF5/JWNaxc2czJZwVBMMRKsqHn5EDJ5XK6LLJif9fZVce3MZ13vft9fbGsVgssABxElyKBEGRi0MSKZKSTOowoYOU4viWFQW04qN2bcty3ThIrXQSJemRNrXJmcTNjNI2mTRNQ9e5HWfGaTIxWTfH1E3SNskfISepp+00bqedNlDf9xYAQcpuEhDcA8Du2337ju/4fb8vFMyMlg6Rw/QI4rK2feiWm7MXpGCIHHfwwO5QKJa5rYAjmiCV3w6X7ev/LVInJrn6GkVF5wHLRBE4E4gmUhCxnfedHpyYJ0IrGaHIx76wCzZ3PyFQgYahT1DAaWNBUtFg3BFZQ74cEQKnJZV9uIElXMPKU1oE/YFisMNIwQsKvoto22z4QVFhizza/wBPtHG8T8M8i5qacu38haQiTYZknNd1vfVtU1X+XlYKvIJ5vh+LX7R/KEoC0JxvPYcl8sx8zz/opmAuGOvopLjDlowaw1lH17PDRAFtm6hRI1+TPhw0ZfxNqZYnSmfIl7d79M5NonWCN8sPD3cxEOpOoTZqlA58oCn6/SSKfiM3NpaT5URr4zWulItls7uz4oIcMAVWilt4UUMbu2fH2ETrZ6hZcN+XG83liA60KNsJHoUMaVHs9Uv740UnCo0pgCeR/AOgpkbDxzo6Bxju/TGMy9NO4kcyes2ms7JSr9dpMAT4bzxE1zevkVfZcTbidaceX1taMtSmZjSblMK9tbnaqC/He3yaOvUiwUzWZgH2XMgf5ULxHqllF1t+go4K3qYFQMC97Qv9jGYoopTFAVaXjegsGw6usudOnDjH1g11BcwDEjtYHWQl1UAK2VFZ0HJV4/6Q7rp66Ey9fvpKOn3ldH2dkuaphgvmftdQmS285ia1NfYD43KHZRyC+4EBIUVqCFJ11cZyogCW3zEy2Lr06sto1Wk1nNxEPhGLJfITuda652RGEDOScepOmYhkmyjukc8VhfzG84byI4teZiQ/5N1r5zwv18uhCFbeuK9jYhpBWxE8oj/kBfIBmeSJlrm+1GjWyWNprdf7kgkPrSw1+/qcBmrMe+tgeNlT8p6dh6W3dV/PUZbfObCiFWiyKKKm1+xu4B45f87COUxT10W9LrXVFBK64p/o5lw/jzHwcUd9wnwiqaP1hCmFxMnJyCEzEY4YcoA/LLLOwao+4OiSQD2tmtFaD8fDZjy0OlgYyvM8i1E6m0sJAU0PR2Jh1vx5xGGJHHNXUA+RsyhSWLjfNRIFQ9Jy4CLOaWI0Arz6kfDhBG/zEstaPG8JUtGMmWY83KujQ+5lsPCAZcdHtFl536yy3lxebg7t3z/UbFImX6LlLjXqk2cmvV2HFw/vYnb6n/v+P/8zGLvfwO/81NobuZzXy+UeW0KFPA1S+fmyWxvvAMZhMBjIV3q8WFY7brxa8yi8nfQatBJ3pXu1v+KDXKJQqAyIz1p5O1k8UEzadnJyqK+kXZIGY+kSO7KatOPWF7iBSqGQUAKfC98rufFMsZghx18yRp3hyaRtpUYyqeJWG/wa6asxmuHPTyFGkTlE4vTAfGMRlRJ3A+meOLGndtvZX7ulfmNx5L0njr79qDtb63tPNJMZyWS8++64rVKrF4tH528+8vjherI6W0gXM5liuvusPoEe83OYUrLod3/ySP+930KXyOqebzLXj2FbGBLgiWmz4gCEXKDpYdvoQWCMoTTe15jGNWZpjYzpS8sNSHBCptzmChG7INLodfiizB0I4I1l1CBTOqB+nS2gb3dM/wJ6kWJ9aLYm38QHiTMByQOeY2qUJlM0blfVOKrllYQsa6GgpIdVFIo7CU1WHVEcvDWbMM3qkaOyUzlWLh9DH+x/yy4JS5om6URNCLKqqcmBgiRYejZx9EjVNJ93biyXb+yx/W6ir9I4yAWwkUNu0xJHZDKDx5ZIx5ApDhi9uS5lJx6APMIAWqhN8bVKlQaKGxzpfyUOPSOLTloWiZ6i2rZqhUMa6a4Xb+AUJ5MLu244l3HODJQHyPsHnV+aejSmm+Gg3v1l1nRdM5tx0L1GOiwaOKzJrCCw5PbDCpKUeTHgWAFOkriA5TzuwMkGFjq/lDhB4CQtGJE7vzTArG5YTi9XrkKxbrgCSFWYNbisH4JH7pj08339uwvCrYubyPFazX+fGz6OvMY80sPF2ePC8damt+v3kKO5nXb4FdLGcsBlQEc6MsS7PszDbjO9g4kSR4HuHT1EU61yD9gHR0YOxB7gIL/CAftBjnswSnMtZGR5wiEbzoQs05+SjTD5aJtcCFwo7exynk+Q20n70k5sBUgSxGAciiT7+vOlbNWJSIoSMIimaYQ0Q5RmZjImWud5BcwTT9x2aDgq84KkaEEzGk9lC7tKXrwnhsYvc88vUyqRCqgKWaGfUYIGCuT+RRfT5AXyx+fdvkG1KUdDTjgS/IUXuC6Sx2wn85Ks6Opqvr8vGQnrPXMhpihBpkblkZBne2be9tN9h1bK5aWlZPWO6gLZWFkrt9YgnL28Vka0X3T0uKXtfA01wETCyEHGCpgW3LZ61ERMa9UjR5NRYoW81tbiK/S11Cay6fhY1tt4GDK/dOIufTSMSXOX45U10K5g8fyK02jsCHek1L0bzW6//TZ6nNosimC9A32Y2ifG/HwC2/c5PytVbsDFKbRqpbAWDMZNnPoLsqkHgk4Y99UOP2LnzHOXzpk5+xH0OMRtc6yg0QQJ3c3WRxZvUPfMze1Rb1hktuLt6j5eBmVtL+si5xrTnEdME9UhC/MWD6hG7t0hsuQQ1Yl7GdMKNmlNRFrAFGTZJZ0AUwUuIdut1mxjO1X+qwNx9awxhtSzanwgPfaUDzD8vL/3T+0ve0AF/+h/c9L/Ztn3C0X8vWn/O6Y37kZjksxuyK+6bQY3aZwJzrngqoGomFzeDz2hjkH4KIV8hbaEqDGRqliI2XKrDLIav+uOosYLwvjSqBhFiOV1sfS2iqCznL7vsbLAs7uPHPIkncfSxNHFKlE3VHLnW96U73I8a6u6IsgooDnqqMjxCS3IYsGQw4E0r1eSokB2gwYXEsUsFxSDvXGRMmVqI0o2rtmQMzqNIHqq5pLxor58oW9lpe/Ccn3y0VPRS5eipx5FG8vmox+bn//Yo+bZS4FbL09OXr41sM2fIZP1652j50hme/mB68u/ruzryu2WuYQ2YPyDgGmfW8Emcw8djsA5RpPb+sGzzY1YOh27CZHZABuYTAlvJvvo6gF0UHDjenxAOHhQTqSseNxKJeSDB4UB8qHbnZ8pxjgDyHaTUpO0GUq2rfYjN0vUPNuPOvDHwAimnWzHBnYCpYCzY1FvER2n2WjqWoDHmO8bTfWsEjpiVNXMZMydS8h/nvnvZnOVlRVRDhCVxrK6a8Uga5PtznPALAXcqFkM+b/JI5qGCof8VPX19Y8Ui1L/mG2P9RNBdn39PGxJwyUp2+ufBD4q0GhrgocLOD8NilbErnkBMhdMsW7FRcm/bG14q8h55tjMC+dXB35wZOq5wfHKYhEJiFknL6f0/mK9fvzAxdJv9wfM+tLeOuePCazexrF3cQaFHuuKANw4vkmb/kP8LLr7jjuKd97ZepHVWk8/SV/oSOu7yP3M7aXbyfu30EutCvr4uSz5Q3e3nn6jcswt6GeFI+Vw5NxmT1lXaTF/y2ovwsmvXqYv9IxfSOuP/FJaT6O7aUlMx6epd/Py5WmkYq3i2jXLBVBDIV+hhAi4za1vV/wF1/XsYPtqNns1k3nx56+hVy+LzpMJ8cknw4EnY9LlPzx52l08OXhywV04iVAGZ7OZuey/wFUcdHCiVEpgB909GQ5MTMSk4dbayUV38ZR7cmFw4WR3Lnuduu5UNOC423Vda/8DjyI6d6z/GHm3PuxX9lXyvnyZ3PhL/3PsWO7YsavtuoZXevONyzE7FU1Kg7ouANEfYG5BCidlfdwv5uOklM/RUuh5XyL1fSstp/VZeqOkFCRups91sAedcvJg9doiEoY7cfOu75vP+rYKTARy9NcnT5HacxdOu6dPts6yWkbLjpQyRqvyTObLz2c/hF76PlTvqQH4waknoMir8GzbD3grN19n/n69SGgPN3oS2aL+awyR/HdSFvgggGYvNo6HvGzIs5DbRfUjZ/Uas4rm/UBntA57DR+gD4cp7fH0Web1eCwpd+UWw0+W4pp6GX86fJUwU6O11eYyIOfja2hto0FEmaVVb7WBVsHj3IToIZrdse60Xz0cnB32P1obvuW4G2sP8F4/dsTyGpThxnKaQP6BRgF061B87+YmWqW5QppNuvIcL16OM1v8optML6YXemqe8lRQ+1LFz1JJlHJvjb4o5eZa69m4nx+XeUPeLdQmL+itE6DWo2FINLPG0vIKWllvEJHLN29Tsl/for2lQ1Dew1rOHSsh6kZspzkeo7ZICwL9DES6mfd5Dqsyx9m2VlcNjxcl/NOqdFzkDaRC3kw+oipzVtBQg1dlLG9ID6uSsrzRLueb6G8oVzdEooylECWtAm92hPJVg+uPaC9EciKPE831lhN3egpq/QcA+7olWW863VvSFiZjkwmSeyozpyh+HVcofxAu1KJTRCusQQZ2opzSFOxpSHdadW24JAOBQdknyjajnp2tULtQxcO2P0f72WLsqECd8nYbjcAyTmQgELac1hOO6RrhiIO4vKBpX9FiQp5Xta+IghL69AsS5vJcAL8giWyeVURuVQ+hFhDIWAl8VNFNfV03LaG1oeHoN1RpHWvo9qMIEwUSH3nPESk86OKjrR+fJeecI+c+q8f4OVZdn+MMfBfGHFlLZwXc+rpSnycC4fFIgguqDd009REpFGlI6pExSVUZzccksAy1rk0SufAYqaMLzGPMO5h3Me+HDMOICNrbasuuQqhXClXdqJ0nX9ljUbBY1+xodZQdENMsBnbHUVJrmIi3JXB7TIP67Vo2iDKAcNlWlX5iajKliBGPTOJubXwggPJVXIaDa9TBDZioaSC8qgG1/vX1+5+Bwol6H/n3ckEkqkTU5Fk9wiocy8WiPMdLyKU7feHSWayjsPZgVRM4PlQYQsGArpypCImtur8vMXlm8k8LLKcYkZzKIz4mChGpGEveU+REpRS3kryOLib6AgENXTyCw4MD+OiVw7CWjv5wsJ7sP0n+P6KlWVEPBlUcSl7gkISwjESWHxq/wGEkG3g6bDRN7+whIyDbpczxBVbkpZvNkDV/IxkJj1tunwsgrRkdiWhw8jw5Hkn7zPAldWQ6KAUi2T3OkHZKE/jbT53osdP7/D1EDiUaf0XEFbGQtYjqWq2R0eSOM7ehQGsF8u989p7n7Oqx6k+ei9fqnsUI0AbomGuTUW+IuZHaS3zrJ6aRpltYEwvna/ZOd1pHtEkh0i3y5CkRnYw844FpEBRJLybKj0caCHJcLYrto/uHzSOUd2Q1mnqo7Dy0SrfJ4uWFvlMZLqQH8xKRsYKjlrU7RDbkfEgPsdMRsYpNhOqKNLvqNfwjrMaN4+0tGGyTtVoylA9gmY/JIU0LKXHSrwL9wbFwOh1GW3YhP38qxcWjnuwAYFLHHo1Jz3L+/bnIq2tGazWg1PlCqXCuztux6D3IsYPKZ+UAi1YMzXHUAFyAahhvbv1cNnSlq289T8qR20wTjIlDEHjp1SqkdQN/Lp1CwN8wG14olW78/fzM0p4TqDTT37/U34/WD7W+tWvXu1793oTnvXbo/PnzbT3hQ+ScSZBycvtRO+d2Bzxo0yzclRJC569IH7CyWesD2ZFUKrXvSjTDZp9R6umRdNVOp+1/rmaybNay0+1z/hh9nuYMaDt3wBMDCIASaq/2k+5fQjSVeFsHt6s1EVfRj81kOrNvZuH4QV054KV2y7Kk6dmhSNS09fxb93E1N9KvZxJqKoF+py+izUzOFIaG0CDqTyJOLOeQivRd49FimVUVtxY0cDAX5np4nCLQDinrrg+HtDqub+8XGax77dUWZCjazmO+lawHxqZ2PqYA3aCggTEfPADADtB+0MbUhScuTNHFhs9IslxMjxeL4+liysr1KZqAsVIwg+FIwMJKSFZTOSuFmOn2MVMX/tcnjHwMCzQImRcCMsZCbcrdw/E35PL9g/E8x7+tUibn6eHA+xh6npEoPvRXvWDml7/KL/0ql7aFl++jviDfGJ9vp5z1x4VuhmPb7c12STGrHoRedLJwBtQVRdHIdWqKghwaWUFDLwLqKuW9UQPP1gRTBSJD1RRqW/UCY1WIcm7BzBztEGPgPPBTe5RsCcxB0Fpq3gekqcFkKThszw0W58dx5eZbXrhlQpnc9hlyBrxY1EumB+eGl5a8JXc8Fh3ry5C9bpmvoj/3ywQ3hw0oRz9altyjmSM9BbCOPvUOWHSEkflxsXrLLZPy1GBid3A4PtdXrO/4BH1i8PBwo+GOx63xvkzrz3r3tu51hXKlGDRyFuCUHTP8OjjLl8uoXF4BgG4ZoLq9MWMgEQL7yYHrueRciGmnkm1HNezh++jYwl3KZk7NvtXadlnfoWjmryFN0kBw1qTWa5Kmfd/PJrMUMcJkCgsb7eQqncPimpSZL89nwH4PR6742X0fTYnxIAyfwbjIbOnnKzTGIANZddpBJBQuXwu5eAcglFxZE1STphpYXlqKb0E1UNP3Nj8C7g4PMqWqyzSurjdHt+lza/aesGaHoK12ZxWi6qx2MnGnzjyEmIe2tUOIVr+uhgsVG22krBY9B6pbqdYmZNmDvWuwHF3rxtX/hFwHsCdVGGCpoeZnPzcjRQvUgIii3fntHJBSiF0nZHnABToN9J1d75w9vG84JwR3zUxd2bcrwuu8JP2dnDDNhIknLmRHj8ad0b27+wL60dHsBaTv24vxULaqRvb1JbTBTEqwBFWbkU044At7xw/GUm5yLOmM9nFmvxE7OL53e2xv8PrY3lo+jboOnR7j5Bl5Xt4jh/tNM99r5Py3j370TXI6HE6He2UXwIWADuOLE6EsUYRq21AiXn0DxR0H8mHHEcRdtJqbNC+208MZDOcJv4HuZvco1O3H4dEo8X+dAdZj/43WKY4XNDey+l7n4/jMDNMbH4D99olcM2+6BaFL9wqmXeo6pvBScFd8WfM0MiKD/uW3SPV3k6KujJ2KxU6NKbqYRMx8axP1B5aWHKxKkopX9g6U2N2uu5stDfTmhghQK/Pw6/TocWgJVNraomKjzj/gXO7tu+vDJzKZE2+CxR2+rdgDAoS1FcRAv6GX+Mpgf2FwsNA/OE95TFOfcRzQXfV2m+/lPfRjf/Yy+8k4c4w5/jq8lURV7rAgUibEzkwGiiTIlu62D3b+ghILNenFN4HcEtVbq04dkBWt74oYaqvYaCw3my90d1Z7v2mgOh2DVsFsMbVU92Otm34tO06zLikSeTvA0y8B0Fvq+tL+Af2EtHXIIUw1EIuMmbXqOK65RJD9VL8k3U8eWagkWVeu9F8Jox/1Y0u6/79QsyT96D2FK9Wtdv0yepm0xxnauylOiegwIFURVYrmeWx7mSjR5XgUlKMIpgRHbXoqGAVonAT6ZOqu++4c51JCZF4qVybHR8e4xWCc19Rw3/SQxUckrAtExTBY4O7lOTYQicdkng3zAr8LeHHvJwfsu+u+UVyPCMk0OdkH4xxiOTU1FXfTFiY6dpYXWSwqLOaJKqsIWAjziLUENgA6wrVrRE9EpE4OMHVmkbl5h0wluHBLeSI8uv6kPOADTMm1+4ghdxwUaaLagXg5NiBGvTS7uwKoTJo4AgGgqJam37LM7MUrF2dnH3nvxdnW125KibwoWnEjkH7rRPFkOqAbAi8LRliWj8tYEHlBjMYC0QFR4EU7+3Vwkyb2l1/ZN2d+52Aunybda5ac6+J7HyGLG37KIkNHLBrdk0myimapmhTEMdeuJexXWJZog0QE4lAwyN6kISuUdscnpt+WkpIPHBofeueqJm/ZHeHxAhaiztzE3M68ZUdt7EwINl6FqhlGb1w1/i9yo2QmgpqhiFWX9ISCCRXTrZdH3kduAxbXeqRL7XhCILVgRnWj75aKeyShq7rIyZwWlKRZDD4CnnzpRE2R54Ro3wOHeIE0klit9am7vOmXJ1IZJ4GYufaJZx9BxS1xt/XMt1hdQ2hoPBlHsmIqmhTgonlrLBZ5gWUNA0RGsjz+pU/roXA8Xrz/zp+2fuacnyyd+GNV6vSBT1P8WIGMyRTeFvEA0AqT7TRbpWg4sPnYkIIA7AZf4owJ0n53zXCcwO1ThZlvcBwrwsYBdJqV+QkB8wvoQUUSZu/nRUF5YIXDnPLrD/ErAmkMT22LzTV3IlXyfrRBzxx1JLeYO3g5t80J98WHM1NPx5iOb+bD6Ema69bGcDj6zdwH4Rj0ZOyVhzP7u+X9CUWfQsQTOMpyFIIcafficT+djEDkgq9KyUpipP/USS1CpunOTlKSrjHvQpeSkgBJW/iItv/i/vaOlNw7PfFuyDXwfwVB8YUAAHicY2BkYGAA4lWM4ubx/DZfGbiZGEDgtpnQKRj9/9f//0y8TCCVHAxgaQAQawqVAHicY2BkYGBiAAI9Job/v/5/ZuJlYGRAAYwhAF9SBIQAeJxjYGBgYBrFo3gUD0H8/z8Zen4NvLtpHR7khAt1wh4A/0IMmAAAAAAAAAAAUABwAI4A5AEwAVQBsgIAAk4CgAKWAtIDDgNuBAAEqgVSBcgF/AZABqAHIgc+B1IHeAeSB6oHwgfmCAIIigjICOII+AkKCRgJLglACUwJYAlwCXwJkgmkCbAJvAoKClYKnArGC2oLoAu8C+wMDgxkDRINpA5ADqQPGA9mD5wQZhDGEQwRbBG2EfoScBKgEywTohP4FCYUSBSgFSAVYBV2FcwV5BYwFlAWyhcIFzwXbheaGEIYdBi8GNAY4hj0GQgZFhk2GU4ZZhl2GeIaQhqyGyIbjhv6HGIczh0sHWQdkh2uHf4eJh5SHngemB64HtgfCB8cHzgfZh+eH9AgGCBQIHQgjCCsIQohQiHSIkwihCK2IvgjRCOGI8Ij+iRqJOglFCUsJWoljiX6JmgmlCbcJxInPid+J6wn9ChQKIoozCjsKQ4pLiliKZwpwCnoKkQqbCqcKtIrQiuiK+YsPix6LM4tAC0yLZAtxi34LnAuoC62LuAvTC+ML9gwTDC0MNoxDDE0MVwxjDG+MfQyQjKCMrAy7jMaM1oznDPYNGA0ljS8NM41GDVONbQ16DYiNmQ2kjbmNyQ3SDdeN6A33Dg6OHI4ojkcOTY5UDlqOYQ5yDniOfA6bjroOww7fjvmPAA8GjwyPJg8/D1OPbY+ID6APtw/KD9mP8A/6D/+QBRAckDYQQRBQEGEQdhCGEJEQrpC3EMOQ1pDkEOiQ9BD7kQ0RKxE1EUKRURFnkXARehGEEZURmZGvEcoR1BHaEeKR75IIEhASHBIpEjYSSZJWkmOSchJ8koQSk5KgEqkSs5LAks4S8hMrEzKTUBNdE2eTchOEk40TpRO4E8gT1pPlk+wUBBQQlBkUIZQ3FEKUS5RYFGaUd5SUlJ2UtxTYlP4VDJUWFRqVKAAAHicY2BkYGAMYZjCIMgAAkxAzAWEDAz/wXwGACE9AhEAeJxtkE1OwzAQhV/6h2glVIGExM5iwQaR/iy66AHafRfZp6nTpEriyHEr9QKcgDNwBk7AkjNwFF7CKAuoR7K/efPGIxvAGJ/wUC8P181erw6umP1ylzQW7pEfhPsY4VF4QP1FeIhnLIRHuEPIG7xefdstnHAHN3gV7lJ/E+6R34X7uMeH8ID6l/AQAb6FR3jyFruwStLIFNVG749ZaNu8hUDbKjWFmvnTVlvrQtvQ6Z3anlV12s+di1VsTa5WpnA6y4wqrTnoyPmJc+VyMolF9yOTY8d3VUiQIoJBQd5AY48jMlbshfp/JWCH5Zk2ucIMPqYXfGv6isYb8gc1HQpbnLlXOHHmnKpDzDymxyAnrZre2p0xDJWyqR2oRNR9Tqi7SiwxYcR//H4zPf8B3ldh6nicbVcFdOO4Fu1Vw1Camd2dZeYsdJaZmeEzKbaSaCtbXktum/3MzMzMzMzMzMzMzP9JtpN0zu85je99kp+fpEeaY3P5X3Xu//7hJjDMo4IqaqijgSZaaKODLhawiCUsYwXbsB07sAf2xF7Yib2xD/bFftgfB+BAHISDcQgOxWE4HEfgSByFo3EMjkUPx+F4nIATsYpdOAkn4xScitNwOs7AmTgLZ+McnIvzcD4uwIW4CBfjElyKy3A5rsCVuApX4xpci+twPW7AjWTlzbgdbo874I64E+6Mu+CuuBvujnuAo48AIQQGGGIEiVuwBoUIMTQS3IoUBhYZ1rGBTYxxG+6Je+HeuA/ui/vh/ngAHogH4cF4CB6Kh+HheAQeiUfh0XgMHovH4fF4Ap6IJ+HJeAqeiqfh6XgGnoln4dl4Dp6L5+H5eAFeiBfhxXgJXoqX4eV4BV6JV+HVeA1ei9fh9XgD3og34c14C96Kt+HteAfeiXfh3XgP3ov34f34AD6ID+HD+Ag+io/h4/gEPolP4dP4DD6Lz+Hz+AK+iC/hy/gKvoqv4ev4Br6Jb+Hb+A6+i+/h+/gBfogf4cf4CX6Kn+Hn+AV+iV/h1/gNfovf4ff4A/6IP+HP+Av+ir/h7/gH/ol/4d/4D/7L5hgYY/OswqqsxuqswZqsxdqsw7psgS2yJbbMVtg2tp3tYHuwPdlebCfbm+3D9mX7sf3ZAexAdhA7mB3CDmWHscPZEexIdhQ7mh3DjmU9dhw7np3ATmSrbBc7iZ3MTmGnstPY6ewMdiY7i53NzmHnsvPY+ewCdiG7iF3MLmGXssvY5ewKdiW7il3NrmHXsuvY9ewGdiO7id08t8TDSMY9niSCpzwOxEIuCLRSPDFTGkUitqaYHmTG6kjeJtJuLhiKWKQyaOVspCPRzqGS8ZopcCRCyRcLnCkrjbSiUBALu6HTtUJBwoflQKKyoYxNOaCNLUwywloZD01JSVePK7u4la7uxne1prwwy2qtShMzI1LT4DJNFI9Flat+FnW4kkNaM61fpEs5GWRK9TZkaEetXKDEwBYw1rFYzGHiprmhpRmeyuHItnOBx8V7pE7UeMRv03GTx1yNrQxMnafBSK7TOaSp3uiFeiPOV7mFrramvJjpvjozs6TlTMeLIW+DG1vaja+2ZwSdHGeJG+nOktWVCQuzRMmAW9EoRfM8tTW+wdPQ1Po8WMuSSp/Ha5W+ECn9KNXtKx2s9UIx4OQSjb7Wa05pxYGVfhaGMtCx6fHAynVpx3tMRf1+kgpjekoP9c4ZMaHxdGTbdMQ5cRaTkqWpbKDTLDLLM4JUijg0M1OGqc4S05kKkmhmfipoyWJ2vtUJHdyM7TalhZOrNvqZVCGBdj8zMiYLIx4vlDghz9Nxt6QbmgZr/cxaHbcCroJMcavTDkGyj6dukxoloQmRSLmT1XI4H/CUIJ2CrdDDTbViqNNxKxgR7fFU8GYO++59jyhYRSFMJCElk76mo6sG7oza9JuFPcPXRdjJMR235n44CxcCHYqesdwZRKcd6MFAiA4lEp2SumBNpHUiWRSbLm2LTSnqes4lliaMDsN5ysJEkHAKyOlsCsrx4oTRzgtulyfcrJG5pG/7Fkmhc2UiXHc2CDJueXdR3A70ukh7MqL00wy5GfnVd0JueZ8byh9huDghYjPRqZ1yGW3lqYhIW3fC16XYaJSsHgqzRo5SD6WJpDENF7luL5uh80eK/LUWZUs6Ep6SLR66pFhxaMX9aOcBlDaKtDQrcrG9PCvIM04h6WsVdkpMXrC2oyD+/CYRvDiRxs5/Jwrz1O+cpFtIaCPozEv1I6GSckTGIVm3PGGUXG2kUzEZt2ResFCwW0izHIzL1a1JG4xETNGQbwWJlJ18VFMetao5YaUSnVn3zXI/Eipqw5Qno+WJwFAhsGLTbpVQ8Znsyq2ZtmLPguTHSF4UcV9vSlvo66UGCl2lyFZyvVJiU7km7Igyx3BUqqWTV6I0zFngQ6NcQqbKoYx2LXWh2J0IXBUt1axTmdAN+qJMjDRNEXGpXOC3Jmi16mFbRH0R9ngWSt3NcVGmi5FkpK1uFZgKayH2H+iIzUCkifVuWxGb0jbIYpFSXeoMeCDKPN0oSYOCPXThVxtIRRMrA8WHlYHWYSffvB43pHhCnFXtgpA32YUCD7lSIh2X83wslsQfTLcglGlsZsohb3TVEbPgirMJUiF8bdw2Q906nKw6pCRpakOth0o0h6kM/TpreaqvjTh1O2l9JLjL1lV6UhEbyZA8qznSWTpU3JjKyEaqRm+SPibDlre0F6Q66eQw34cdBaHjor4olVTdyeu3zUgp5VC8c7WcyyhjU/j5Ar2yRZKX4VlR/k3jLGhP4WrLxd1mL3C5S8YD7YLC+VPFkU4ehj0+IOO6Bek7Bxe1nDXpYV3URDVqASlJ0WNMKprOJG9EU7nffqb6DeeZ5JgxiUzuLB2qFdxK7Te/UZKFvMqX2aUW8ZQKQte3hL2ix2kXzLlGK8cuJxWTig5hoWA6yFxHupxT6ZKg7xFEITHUAvDQjISwhS4XcsUnvLc0IzGkzEDdWoM0Zc7cZglWJ2hXxaFWJN3Jusn1SNLeWFGlfjEzzYhEY+9THlVctqjH5F60ha2iqyUnqsXaO0qs2zohTxxQFhZpI+EqsuSazYRT/XcFdz4JB23C3q8pu1cSYU3Vf7mZ+GUKaoFdJfQ77jdrSv3CFoueuedzkggbxL1nNEuwWnGommh6uenKFplD4eiSQBFXTd9B2ZE09ST1n3XPdR6MG0mqwyywpkn3hdDfAmqpoF7HVuiha3nCbDgz6Voh51Njqr5naBiyJ8yU6ObRqBPnGKZmhDv/pqGS4lv01gStVj0kgRTKB1othzSZjHbOUTOKlmxa1Eql1u9SjQqqooMwNGPeaFM3iXZ1pUULo2IVJXbc9pDiUwlS5fCIq0HNl91xleoblSiT0SGMROqPrTlhiz6Lu+tRHkFLU54H0YwgFEpQIc0Frh2efcPxLW/4/t2/UfMCO08e1KB/3121Le2nJBeTXDWdJ+ftgPdpO8qivvHNf7PAWdJ2iyHXcebXC1yxtFdtKuexUT4qq4TNqGY3XK1tuwcZmL+R4woVI72dmmZKUobTmoPANdbusrC7sEZlimK8lSUhz+9atRzWii5x3YVv03uoP+YJWp3CXQSN7EtFXXqd+raYQmdpQyhq3X375Vc9EZS30pVSoMiV6G5Jm7pcilxK8re9HaWE7llDtzEurqevbqTuhkiXkWFjg8qRoRtx1zUF+U3C+cCEVTbJqvo4z7bz9Ky79Jj1xdzc/wARDj0u") format("woff"),url("../fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800") format("truetype");font-weight:400;font-style:normal}.dashicons,.dashicons-before:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:never;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:20px;vertical-align:top;text-align:center;transition:color .1s ease-in}.dashicons-admin-appearance:before{content:"\f100"}.dashicons-admin-collapse:before{content:"\f148"}.dashicons-admin-comments:before{content:"\f101"}.dashicons-admin-customizer:before{content:"\f540"}.dashicons-admin-generic:before{content:"\f111"}.dashicons-admin-home:before{content:"\f102"}.dashicons-admin-links:before{content:"\f103"}.dashicons-admin-media:before{content:"\f104"}.dashicons-admin-multisite:before{content:"\f541"}.dashicons-admin-network:before{content:"\f112"}.dashicons-admin-page:before{content:"\f105"}.dashicons-admin-plugins:before{content:"\f106"}.dashicons-admin-post:before{content:"\f109"}.dashicons-admin-settings:before{content:"\f108"}.dashicons-admin-site-alt:before{content:"\f11d"}.dashicons-admin-site-alt2:before{content:"\f11e"}.dashicons-admin-site-alt3:before{content:"\f11f"}.dashicons-admin-site:before{content:"\f319"}.dashicons-admin-tools:before{content:"\f107"}.dashicons-admin-users:before{content:"\f110"}.dashicons-airplane:before{content:"\f15f"}.dashicons-album:before{content:"\f514"}.dashicons-align-center:before{content:"\f134"}.dashicons-align-full-width:before{content:"\f114"}.dashicons-align-left:before{content:"\f135"}.dashicons-align-none:before{content:"\f138"}.dashicons-align-pull-left:before{content:"\f10a"}.dashicons-align-pull-right:before{content:"\f10b"}.dashicons-align-right:before{content:"\f136"}.dashicons-align-wide:before{content:"\f11b"}.dashicons-amazon:before{content:"\f162"}.dashicons-analytics:before{content:"\f183"}.dashicons-archive:before{content:"\f480"}.dashicons-arrow-down-alt:before{content:"\f346"}.dashicons-arrow-down-alt2:before{content:"\f347"}.dashicons-arrow-down:before{content:"\f140"}.dashicons-arrow-left-alt:before{content:"\f340"}.dashicons-arrow-left-alt2:before{content:"\f341"}.dashicons-arrow-left:before{content:"\f141"}.dashicons-arrow-right-alt:before{content:"\f344"}.dashicons-arrow-right-alt2:before{content:"\f345"}.dashicons-arrow-right:before{content:"\f139"}.dashicons-arrow-up-alt:before{content:"\f342"}.dashicons-arrow-up-alt2:before{content:"\f343"}.dashicons-arrow-up-duplicate:before{content:"\f143"}.dashicons-arrow-up:before{content:"\f142"}.dashicons-art:before{content:"\f309"}.dashicons-awards:before{content:"\f313"}.dashicons-backup:before{content:"\f321"}.dashicons-bank:before{content:"\f16a"}.dashicons-beer:before{content:"\f16c"}.dashicons-bell:before{content:"\f16d"}.dashicons-block-default:before{content:"\f12b"}.dashicons-book-alt:before{content:"\f331"}.dashicons-book:before{content:"\f330"}.dashicons-buddicons-activity:before{content:"\f452"}.dashicons-buddicons-bbpress-logo:before{content:"\f477"}.dashicons-buddicons-buddypress-logo:before{content:"\f448"}.dashicons-buddicons-community:before{content:"\f453"}.dashicons-buddicons-forums:before{content:"\f449"}.dashicons-buddicons-friends:before{content:"\f454"}.dashicons-buddicons-groups:before{content:"\f456"}.dashicons-buddicons-pm:before{content:"\f457"}.dashicons-buddicons-replies:before{content:"\f451"}.dashicons-buddicons-topics:before{content:"\f450"}.dashicons-buddicons-tracking:before{content:"\f455"}.dashicons-building:before{content:"\f512"}.dashicons-businessman:before{content:"\f338"}.dashicons-businessperson:before{content:"\f12e"}.dashicons-businesswoman:before{content:"\f12f"}.dashicons-button:before{content:"\f11a"}.dashicons-calculator:before{content:"\f16e"}.dashicons-calendar-alt:before{content:"\f508"}.dashicons-calendar:before{content:"\f145"}.dashicons-camera-alt:before{content:"\f129"}.dashicons-camera:before{content:"\f306"}.dashicons-car:before{content:"\f16b"}.dashicons-carrot:before{content:"\f511"}.dashicons-cart:before{content:"\f174"}.dashicons-category:before{content:"\f318"}.dashicons-chart-area:before{content:"\f239"}.dashicons-chart-bar:before{content:"\f185"}.dashicons-chart-line:before{content:"\f238"}.dashicons-chart-pie:before{content:"\f184"}.dashicons-clipboard:before{content:"\f481"}.dashicons-clock:before{content:"\f469"}.dashicons-cloud-saved:before{content:"\f137"}.dashicons-cloud-upload:before{content:"\f13b"}.dashicons-cloud:before{content:"\f176"}.dashicons-code-standards:before{content:"\f13a"}.dashicons-coffee:before{content:"\f16f"}.dashicons-color-picker:before{content:"\f131"}.dashicons-columns:before{content:"\f13c"}.dashicons-controls-back:before{content:"\f518"}.dashicons-controls-forward:before{content:"\f519"}.dashicons-controls-pause:before{content:"\f523"}.dashicons-controls-play:before{content:"\f522"}.dashicons-controls-repeat:before{content:"\f515"}.dashicons-controls-skipback:before{content:"\f516"}.dashicons-controls-skipforward:before{content:"\f517"}.dashicons-controls-volumeoff:before{content:"\f520"}.dashicons-controls-volumeon:before{content:"\f521"}.dashicons-cover-image:before{content:"\f13d"}.dashicons-dashboard:before{content:"\f226"}.dashicons-database-add:before{content:"\f170"}.dashicons-database-export:before{content:"\f17a"}.dashicons-database-import:before{content:"\f17b"}.dashicons-database-remove:before{content:"\f17c"}.dashicons-database-view:before{content:"\f17d"}.dashicons-database:before{content:"\f17e"}.dashicons-desktop:before{content:"\f472"}.dashicons-dismiss:before{content:"\f153"}.dashicons-download:before{content:"\f316"}.dashicons-drumstick:before{content:"\f17f"}.dashicons-edit-large:before{content:"\f327"}.dashicons-edit-page:before{content:"\f186"}.dashicons-edit:before{content:"\f464"}.dashicons-editor-aligncenter:before{content:"\f207"}.dashicons-editor-alignleft:before{content:"\f206"}.dashicons-editor-alignright:before{content:"\f208"}.dashicons-editor-bold:before{content:"\f200"}.dashicons-editor-break:before{content:"\f474"}.dashicons-editor-code-duplicate:before{content:"\f494"}.dashicons-editor-code:before{content:"\f475"}.dashicons-editor-contract:before{content:"\f506"}.dashicons-editor-customchar:before{content:"\f220"}.dashicons-editor-expand:before{content:"\f211"}.dashicons-editor-help:before{content:"\f223"}.dashicons-editor-indent:before{content:"\f222"}.dashicons-editor-insertmore:before{content:"\f209"}.dashicons-editor-italic:before{content:"\f201"}.dashicons-editor-justify:before{content:"\f214"}.dashicons-editor-kitchensink:before{content:"\f212"}.dashicons-editor-ltr:before{content:"\f10c"}.dashicons-editor-ol-rtl:before{content:"\f12c"}.dashicons-editor-ol:before{content:"\f204"}.dashicons-editor-outdent:before{content:"\f221"}.dashicons-editor-paragraph:before{content:"\f476"}.dashicons-editor-paste-text:before{content:"\f217"}.dashicons-editor-paste-word:before{content:"\f216"}.dashicons-editor-quote:before{content:"\f205"}.dashicons-editor-removeformatting:before{content:"\f218"}.dashicons-editor-rtl:before{content:"\f320"}.dashicons-editor-spellcheck:before{content:"\f210"}.dashicons-editor-strikethrough:before{content:"\f224"}.dashicons-editor-table:before{content:"\f535"}.dashicons-editor-textcolor:before{content:"\f215"}.dashicons-editor-ul:before{content:"\f203"}.dashicons-editor-underline:before{content:"\f213"}.dashicons-editor-unlink:before{content:"\f225"}.dashicons-editor-video:before{content:"\f219"}.dashicons-ellipsis:before{content:"\f11c"}.dashicons-email-alt:before{content:"\f466"}.dashicons-email-alt2:before{content:"\f467"}.dashicons-email:before{content:"\f465"}.dashicons-embed-audio:before{content:"\f13e"}.dashicons-embed-generic:before{content:"\f13f"}.dashicons-embed-photo:before{content:"\f144"}.dashicons-embed-post:before{content:"\f146"}.dashicons-embed-video:before{content:"\f149"}.dashicons-excerpt-view:before{content:"\f164"}.dashicons-exit:before{content:"\f14a"}.dashicons-external:before{content:"\f504"}.dashicons-facebook-alt:before{content:"\f305"}.dashicons-facebook:before{content:"\f304"}.dashicons-feedback:before{content:"\f175"}.dashicons-filter:before{content:"\f536"}.dashicons-flag:before{content:"\f227"}.dashicons-food:before{content:"\f187"}.dashicons-format-aside:before{content:"\f123"}.dashicons-format-audio:before{content:"\f127"}.dashicons-format-chat:before{content:"\f125"}.dashicons-format-gallery:before{content:"\f161"}.dashicons-format-image:before{content:"\f128"}.dashicons-format-quote:before{content:"\f122"}.dashicons-format-status:before{content:"\f130"}.dashicons-format-video:before{content:"\f126"}.dashicons-forms:before{content:"\f314"}.dashicons-fullscreen-alt:before{content:"\f188"}.dashicons-fullscreen-exit-alt:before{content:"\f189"}.dashicons-games:before{content:"\f18a"}.dashicons-google:before{content:"\f18b"}.dashicons-googleplus:before{content:"\f462"}.dashicons-grid-view:before{content:"\f509"}.dashicons-groups:before{content:"\f307"}.dashicons-hammer:before{content:"\f308"}.dashicons-heading:before{content:"\f10e"}.dashicons-heart:before{content:"\f487"}.dashicons-hidden:before{content:"\f530"}.dashicons-hourglass:before{content:"\f18c"}.dashicons-html:before{content:"\f14b"}.dashicons-id-alt:before{content:"\f337"}.dashicons-id:before{content:"\f336"}.dashicons-image-crop:before{content:"\f165"}.dashicons-image-filter:before{content:"\f533"}.dashicons-image-flip-horizontal:before{content:"\f169"}.dashicons-image-flip-vertical:before{content:"\f168"}.dashicons-image-rotate-left:before{content:"\f166"}.dashicons-image-rotate-right:before{content:"\f167"}.dashicons-image-rotate:before{content:"\f531"}.dashicons-images-alt:before{content:"\f232"}.dashicons-images-alt2:before{content:"\f233"}.dashicons-index-card:before{content:"\f510"}.dashicons-info-outline:before{content:"\f14c"}.dashicons-info:before{content:"\f348"}.dashicons-insert-after:before{content:"\f14d"}.dashicons-insert-before:before{content:"\f14e"}.dashicons-insert:before{content:"\f10f"}.dashicons-instagram:before{content:"\f12d"}.dashicons-laptop:before{content:"\f547"}.dashicons-layout:before{content:"\f538"}.dashicons-leftright:before{content:"\f229"}.dashicons-lightbulb:before{content:"\f339"}.dashicons-linkedin:before{content:"\f18d"}.dashicons-list-view:before{content:"\f163"}.dashicons-location-alt:before{content:"\f231"}.dashicons-location:before{content:"\f230"}.dashicons-lock-duplicate:before{content:"\f315"}.dashicons-lock:before{content:"\f160"}.dashicons-marker:before{content:"\f159"}.dashicons-media-archive:before{content:"\f501"}.dashicons-media-audio:before{content:"\f500"}.dashicons-media-code:before{content:"\f499"}.dashicons-media-default:before{content:"\f498"}.dashicons-media-document:before{content:"\f497"}.dashicons-media-interactive:before{content:"\f496"}.dashicons-media-spreadsheet:before{content:"\f495"}.dashicons-media-text:before{content:"\f491"}.dashicons-media-video:before{content:"\f490"}.dashicons-megaphone:before{content:"\f488"}.dashicons-menu-alt:before{content:"\f228"}.dashicons-menu-alt2:before{content:"\f329"}.dashicons-menu-alt3:before{content:"\f349"}.dashicons-menu:before{content:"\f333"}.dashicons-microphone:before{content:"\f482"}.dashicons-migrate:before{content:"\f310"}.dashicons-minus:before{content:"\f460"}.dashicons-money-alt:before{content:"\f18e"}.dashicons-money:before{content:"\f526"}.dashicons-move:before{content:"\f545"}.dashicons-nametag:before{content:"\f484"}.dashicons-networking:before{content:"\f325"}.dashicons-no-alt:before{content:"\f335"}.dashicons-no:before{content:"\f158"}.dashicons-open-folder:before{content:"\f18f"}.dashicons-palmtree:before{content:"\f527"}.dashicons-paperclip:before{content:"\f546"}.dashicons-pdf:before{content:"\f190"}.dashicons-performance:before{content:"\f311"}.dashicons-pets:before{content:"\f191"}.dashicons-phone:before{content:"\f525"}.dashicons-pinterest:before{content:"\f192"}.dashicons-playlist-audio:before{content:"\f492"}.dashicons-playlist-video:before{content:"\f493"}.dashicons-plugins-checked:before{content:"\f485"}.dashicons-plus-alt:before{content:"\f502"}.dashicons-plus-alt2:before{content:"\f543"}.dashicons-plus:before{content:"\f132"}.dashicons-podio:before{content:"\f19c"}.dashicons-portfolio:before{content:"\f322"}.dashicons-post-status:before{content:"\f173"}.dashicons-pressthis:before{content:"\f157"}.dashicons-printer:before{content:"\f193"}.dashicons-privacy:before{content:"\f194"}.dashicons-products:before{content:"\f312"}.dashicons-randomize:before{content:"\f503"}.dashicons-reddit:before{content:"\f195"}.dashicons-redo:before{content:"\f172"}.dashicons-remove:before{content:"\f14f"}.dashicons-rest-api:before{content:"\f124"}.dashicons-rss:before{content:"\f303"}.dashicons-saved:before{content:"\f15e"}.dashicons-schedule:before{content:"\f489"}.dashicons-screenoptions:before{content:"\f180"}.dashicons-search:before{content:"\f179"}.dashicons-share-alt:before{content:"\f240"}.dashicons-share-alt2:before{content:"\f242"}.dashicons-share:before{content:"\f237"}.dashicons-shield-alt:before{content:"\f334"}.dashicons-shield:before{content:"\f332"}.dashicons-shortcode:before{content:"\f150"}.dashicons-slides:before{content:"\f181"}.dashicons-smartphone:before{content:"\f470"}.dashicons-smiley:before{content:"\f328"}.dashicons-sort:before{content:"\f156"}.dashicons-sos:before{content:"\f468"}.dashicons-spotify:before{content:"\f196"}.dashicons-star-empty:before{content:"\f154"}.dashicons-star-filled:before{content:"\f155"}.dashicons-star-half:before{content:"\f459"}.dashicons-sticky:before{content:"\f537"}.dashicons-store:before{content:"\f513"}.dashicons-superhero-alt:before{content:"\f197"}.dashicons-superhero:before{content:"\f198"}.dashicons-table-col-after:before{content:"\f151"}.dashicons-table-col-before:before{content:"\f152"}.dashicons-table-col-delete:before{content:"\f15a"}.dashicons-table-row-after:before{content:"\f15b"}.dashicons-table-row-before:before{content:"\f15c"}.dashicons-table-row-delete:before{content:"\f15d"}.dashicons-tablet:before{content:"\f471"}.dashicons-tag:before{content:"\f323"}.dashicons-tagcloud:before{content:"\f479"}.dashicons-testimonial:before{content:"\f473"}.dashicons-text-page:before{content:"\f121"}.dashicons-text:before{content:"\f478"}.dashicons-thumbs-down:before{content:"\f542"}.dashicons-thumbs-up:before{content:"\f529"}.dashicons-tickets-alt:before{content:"\f524"}.dashicons-tickets:before{content:"\f486"}.dashicons-tide:before{content:"\f10d"}.dashicons-translation:before{content:"\f326"}.dashicons-trash:before{content:"\f182"}.dashicons-twitch:before{content:"\f199"}.dashicons-twitter-alt:before{content:"\f302"}.dashicons-twitter:before{content:"\f301"}.dashicons-undo:before{content:"\f171"}.dashicons-universal-access-alt:before{content:"\f507"}.dashicons-universal-access:before{content:"\f483"}.dashicons-unlock:before{content:"\f528"}.dashicons-update-alt:before{content:"\f113"}.dashicons-update:before{content:"\f463"}.dashicons-upload:before{content:"\f317"}.dashicons-vault:before{content:"\f178"}.dashicons-video-alt:before{content:"\f234"}.dashicons-video-alt2:before{content:"\f235"}.dashicons-video-alt3:before{content:"\f236"}.dashicons-visibility:before{content:"\f177"}.dashicons-warning:before{content:"\f534"}.dashicons-welcome-add-page:before{content:"\f133"}.dashicons-welcome-comments:before{content:"\f117"}.dashicons-welcome-learn-more:before{content:"\f118"}.dashicons-welcome-view-site:before{content:"\f115"}.dashicons-welcome-widgets-menus:before{content:"\f116"}.dashicons-welcome-write-blog:before{content:"\f119"}.dashicons-whatsapp:before{content:"\f19a"}.dashicons-wordpress-alt:before{content:"\f324"}.dashicons-wordpress:before{content:"\f120"}.dashicons-xing:before{content:"\f19d"}.dashicons-yes-alt:before{content:"\f12a"}.dashicons-yes:before{content:"\f147"}.dashicons-youtube:before{content:"\f19b"}.dashicons-editor-distractionfree:before{content:"\f211"}.dashicons-exerpt-view:before{content:"\f164"}.dashicons-format-links:before{content:"\f103"}.dashicons-format-standard:before{content:"\f109"}.dashicons-post-trash:before{content:"\f182"}.dashicons-share1:before{content:"\f237"}.dashicons-welcome-edit-page:before{content:"\f119"}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-directory/style-rtl.css b/static/wp-includes/css/dist/block-directory/style-rtl.css
new file mode 100755
index 0000000..c2204d8
--- /dev/null
+++ b/static/wp-includes/css/dist/block-directory/style-rtl.css
@@ -0,0 +1,258 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.block-directory-block-ratings > span {
+ display: flex;
+}
+.block-directory-block-ratings svg {
+ fill: #1e1e1e;
+ margin-right: -4px;
+}
+.block-directory-block-ratings .block-directory-block-ratings__star-empty {
+ fill: #ccc;
+}
+
+.block-directory-compact-list {
+ margin: 0;
+ list-style: none;
+}
+
+.block-directory-compact-list__item {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ margin-bottom: 16px;
+}
+.block-directory-compact-list__item:last-child {
+ margin-bottom: 0;
+}
+
+.block-directory-compact-list__item-details {
+ margin-right: 8px;
+}
+
+.block-directory-compact-list__item-title {
+ font-weight: 500;
+}
+
+.block-directory-compact-list__item-author {
+ color: #757575;
+ font-size: 11px;
+}
+
+.block-directory-downloadable-block-icon {
+ min-width: 54px;
+ width: 54px;
+ height: 54px;
+ vertical-align: middle;
+ border: 1px solid #ddd;
+}
+
+.block-directory-downloadable-block-list-item {
+ padding: 12px;
+ width: 100%;
+ height: auto;
+ text-align: right;
+ display: grid;
+ grid-template-columns: auto 1fr;
+}
+.block-directory-downloadable-block-list-item:hover {
+ box-shadow: 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-directory-downloadable-block-list-item.is-busy {
+ background: transparent;
+}
+.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author {
+ 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;
+}
+.block-directory-downloadable-block-list-item:disabled, .block-directory-downloadable-block-list-item[aria-disabled] {
+ opacity: 1;
+}
+
+.block-directory-downloadable-block-list-item__icon {
+ position: relative;
+ margin-left: 16px;
+ align-self: flex-start;
+}
+.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ background: rgba(255, 255, 255, 0.75);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.block-directory-block-ratings {
+ display: block;
+ margin-top: 4px;
+}
+
+.block-directory-downloadable-block-list-item__details {
+ color: #1e1e1e;
+}
+
+.block-directory-downloadable-block-list-item__title {
+ display: block;
+ font-weight: 600;
+}
+
+.block-directory-downloadable-block-list-item__author {
+ display: block;
+ margin-top: 4px;
+ font-weight: normal;
+}
+
+.block-directory-downloadable-block-list-item__desc {
+ display: block;
+ margin-top: 8px;
+}
+
+.block-directory-downloadable-block-notice {
+ margin: 8px 0 0;
+ color: #cc1818;
+}
+
+.block-directory-downloadable-block-notice__content {
+ padding-left: 12px;
+ margin-bottom: 8px;
+}
+
+.block-directory-downloadable-blocks-panel {
+ padding: 16px;
+}
+.block-directory-downloadable-blocks-panel.has-blocks-loading {
+ font-style: normal;
+ padding: 0;
+ margin: 112px 0;
+ text-align: center;
+ color: #757575;
+}
+.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner {
+ float: inherit;
+}
+
+.block-directory-downloadable-blocks-panel__no-local {
+ margin: 48px 0;
+ padding: 0 64px;
+ color: #757575;
+ text-align: center;
+}
+
+.block-directory-downloadable-blocks-panel__title {
+ margin: 0 0 4px;
+ font-size: 14px;
+}
+
+.block-directory-downloadable-blocks-panel__description {
+ margin-top: 0;
+}
+
+.block-directory-downloadable-blocks-panel button {
+ margin-top: 4px;
+}
+
+.installed-blocks-pre-publish-panel__copy {
+ margin-top: 0;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-directory/style-rtl.min.css b/static/wp-includes/css/dist/block-directory/style-rtl.min.css
new file mode 100755
index 0000000..9396506
--- /dev/null
+++ b/static/wp-includes/css/dist/block-directory/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-directory-block-ratings>span{display:flex}.block-directory-block-ratings svg{fill:#1e1e1e;margin-right:-4px}.block-directory-block-ratings .block-directory-block-ratings__star-empty{fill:#ccc}.block-directory-compact-list{margin:0;list-style:none}.block-directory-compact-list__item{display:flex;flex-direction:row;align-items:center;margin-bottom:16px}.block-directory-compact-list__item:last-child{margin-bottom:0}.block-directory-compact-list__item-details{margin-right:8px}.block-directory-compact-list__item-title{font-weight:500}.block-directory-compact-list__item-author{color:#757575;font-size:11px}.block-directory-downloadable-block-icon{min-width:54px;width:54px;height:54px;vertical-align:middle;border:1px solid #ddd}.block-directory-downloadable-block-list-item{padding:12px;width:100%;height:auto;text-align:right;display:grid;grid-template-columns:auto 1fr}.block-directory-downloadable-block-list-item:hover{box-shadow:0 0 0 2px var(--wp-admin-theme-color)}.block-directory-downloadable-block-list-item.is-busy{background:transparent}.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author{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}.block-directory-downloadable-block-list-item:disabled,.block-directory-downloadable-block-list-item[aria-disabled]{opacity:1}.block-directory-downloadable-block-list-item__icon{position:relative;margin-left:16px;align-self:flex-start}.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner{position:absolute;top:0;left:0;bottom:0;right:0;background:hsla(0,0%,100%,.75);display:flex;align-items:center;justify-content:center}.block-directory-block-ratings{display:block;margin-top:4px}.block-directory-downloadable-block-list-item__details{color:#1e1e1e}.block-directory-downloadable-block-list-item__title{display:block;font-weight:600}.block-directory-downloadable-block-list-item__author{display:block;margin-top:4px;font-weight:400}.block-directory-downloadable-block-list-item__desc{display:block;margin-top:8px}.block-directory-downloadable-block-notice{margin:8px 0 0;color:#cc1818}.block-directory-downloadable-block-notice__content{padding-left:12px;margin-bottom:8px}.block-directory-downloadable-blocks-panel{padding:16px}.block-directory-downloadable-blocks-panel.has-blocks-loading{font-style:normal;padding:0;margin:112px 0;text-align:center;color:#757575}.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner{float:inherit}.block-directory-downloadable-blocks-panel__no-local{margin:48px 0;padding:0 64px;color:#757575;text-align:center}.block-directory-downloadable-blocks-panel__title{margin:0 0 4px;font-size:14px}.block-directory-downloadable-blocks-panel__description{margin-top:0}.block-directory-downloadable-blocks-panel button{margin-top:4px}.installed-blocks-pre-publish-panel__copy{margin-top:0}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-directory/style.css b/static/wp-includes/css/dist/block-directory/style.css
new file mode 100755
index 0000000..e2750b5
--- /dev/null
+++ b/static/wp-includes/css/dist/block-directory/style.css
@@ -0,0 +1,258 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.block-directory-block-ratings > span {
+ display: flex;
+}
+.block-directory-block-ratings svg {
+ fill: #1e1e1e;
+ margin-left: -4px;
+}
+.block-directory-block-ratings .block-directory-block-ratings__star-empty {
+ fill: #ccc;
+}
+
+.block-directory-compact-list {
+ margin: 0;
+ list-style: none;
+}
+
+.block-directory-compact-list__item {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ margin-bottom: 16px;
+}
+.block-directory-compact-list__item:last-child {
+ margin-bottom: 0;
+}
+
+.block-directory-compact-list__item-details {
+ margin-left: 8px;
+}
+
+.block-directory-compact-list__item-title {
+ font-weight: 500;
+}
+
+.block-directory-compact-list__item-author {
+ color: #757575;
+ font-size: 11px;
+}
+
+.block-directory-downloadable-block-icon {
+ min-width: 54px;
+ width: 54px;
+ height: 54px;
+ vertical-align: middle;
+ border: 1px solid #ddd;
+}
+
+.block-directory-downloadable-block-list-item {
+ padding: 12px;
+ width: 100%;
+ height: auto;
+ text-align: left;
+ display: grid;
+ grid-template-columns: auto 1fr;
+}
+.block-directory-downloadable-block-list-item:hover {
+ box-shadow: 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-directory-downloadable-block-list-item.is-busy {
+ background: transparent;
+}
+.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author {
+ 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;
+}
+.block-directory-downloadable-block-list-item:disabled, .block-directory-downloadable-block-list-item[aria-disabled] {
+ opacity: 1;
+}
+
+.block-directory-downloadable-block-list-item__icon {
+ position: relative;
+ margin-right: 16px;
+ align-self: flex-start;
+}
+.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background: rgba(255, 255, 255, 0.75);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.block-directory-block-ratings {
+ display: block;
+ margin-top: 4px;
+}
+
+.block-directory-downloadable-block-list-item__details {
+ color: #1e1e1e;
+}
+
+.block-directory-downloadable-block-list-item__title {
+ display: block;
+ font-weight: 600;
+}
+
+.block-directory-downloadable-block-list-item__author {
+ display: block;
+ margin-top: 4px;
+ font-weight: normal;
+}
+
+.block-directory-downloadable-block-list-item__desc {
+ display: block;
+ margin-top: 8px;
+}
+
+.block-directory-downloadable-block-notice {
+ margin: 8px 0 0;
+ color: #cc1818;
+}
+
+.block-directory-downloadable-block-notice__content {
+ padding-right: 12px;
+ margin-bottom: 8px;
+}
+
+.block-directory-downloadable-blocks-panel {
+ padding: 16px;
+}
+.block-directory-downloadable-blocks-panel.has-blocks-loading {
+ font-style: normal;
+ padding: 0;
+ margin: 112px 0;
+ text-align: center;
+ color: #757575;
+}
+.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner {
+ float: inherit;
+}
+
+.block-directory-downloadable-blocks-panel__no-local {
+ margin: 48px 0;
+ padding: 0 64px;
+ color: #757575;
+ text-align: center;
+}
+
+.block-directory-downloadable-blocks-panel__title {
+ margin: 0 0 4px;
+ font-size: 14px;
+}
+
+.block-directory-downloadable-blocks-panel__description {
+ margin-top: 0;
+}
+
+.block-directory-downloadable-blocks-panel button {
+ margin-top: 4px;
+}
+
+.installed-blocks-pre-publish-panel__copy {
+ margin-top: 0;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-directory/style.min.css b/static/wp-includes/css/dist/block-directory/style.min.css
new file mode 100755
index 0000000..2632319
--- /dev/null
+++ b/static/wp-includes/css/dist/block-directory/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-directory-block-ratings>span{display:flex}.block-directory-block-ratings svg{fill:#1e1e1e;margin-left:-4px}.block-directory-block-ratings .block-directory-block-ratings__star-empty{fill:#ccc}.block-directory-compact-list{margin:0;list-style:none}.block-directory-compact-list__item{display:flex;flex-direction:row;align-items:center;margin-bottom:16px}.block-directory-compact-list__item:last-child{margin-bottom:0}.block-directory-compact-list__item-details{margin-left:8px}.block-directory-compact-list__item-title{font-weight:500}.block-directory-compact-list__item-author{color:#757575;font-size:11px}.block-directory-downloadable-block-icon{min-width:54px;width:54px;height:54px;vertical-align:middle;border:1px solid #ddd}.block-directory-downloadable-block-list-item{padding:12px;width:100%;height:auto;text-align:left;display:grid;grid-template-columns:auto 1fr}.block-directory-downloadable-block-list-item:hover{box-shadow:0 0 0 2px var(--wp-admin-theme-color)}.block-directory-downloadable-block-list-item.is-busy{background:transparent}.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author{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}.block-directory-downloadable-block-list-item:disabled,.block-directory-downloadable-block-list-item[aria-disabled]{opacity:1}.block-directory-downloadable-block-list-item__icon{position:relative;margin-right:16px;align-self:flex-start}.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner{position:absolute;top:0;right:0;bottom:0;left:0;background:hsla(0,0%,100%,.75);display:flex;align-items:center;justify-content:center}.block-directory-block-ratings{display:block;margin-top:4px}.block-directory-downloadable-block-list-item__details{color:#1e1e1e}.block-directory-downloadable-block-list-item__title{display:block;font-weight:600}.block-directory-downloadable-block-list-item__author{display:block;margin-top:4px;font-weight:400}.block-directory-downloadable-block-list-item__desc{display:block;margin-top:8px}.block-directory-downloadable-block-notice{margin:8px 0 0;color:#cc1818}.block-directory-downloadable-block-notice__content{padding-right:12px;margin-bottom:8px}.block-directory-downloadable-blocks-panel{padding:16px}.block-directory-downloadable-blocks-panel.has-blocks-loading{font-style:normal;padding:0;margin:112px 0;text-align:center;color:#757575}.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner{float:inherit}.block-directory-downloadable-blocks-panel__no-local{margin:48px 0;padding:0 64px;color:#757575;text-align:center}.block-directory-downloadable-blocks-panel__title{margin:0 0 4px;font-size:14px}.block-directory-downloadable-blocks-panel__description{margin-top:0}.block-directory-downloadable-blocks-panel button{margin-top:4px}.installed-blocks-pre-publish-panel__copy{margin-top:0}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css b/static/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css
new file mode 100755
index 0000000..2a4fb54
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css
@@ -0,0 +1,114 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+/**
+* Default editor styles.
+*
+* These styles are shown if a theme does not register its own editor style,
+* a theme.json file, or has toggled off "Use theme styles" in preferences.
+*/
+body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 18px;
+ line-height: 1.5;
+ --wp--style--block-gap: 2em;
+}
+
+p {
+ line-height: 1.8;
+}
+
+.editor-post-title__block {
+ margin-top: 2em;
+ margin-bottom: 1em;
+ font-size: 2.5em;
+ font-weight: 800;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css b/static/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css
new file mode 100755
index 0000000..743f20f
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;line-height:1.5;--wp--style--block-gap:2em}p{line-height:1.8}.editor-post-title__block{margin-top:2em;margin-bottom:1em;font-size:2.5em;font-weight:800}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/default-editor-styles.css b/static/wp-includes/css/dist/block-editor/default-editor-styles.css
new file mode 100755
index 0000000..2a4fb54
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/default-editor-styles.css
@@ -0,0 +1,114 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+/**
+* Default editor styles.
+*
+* These styles are shown if a theme does not register its own editor style,
+* a theme.json file, or has toggled off "Use theme styles" in preferences.
+*/
+body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 18px;
+ line-height: 1.5;
+ --wp--style--block-gap: 2em;
+}
+
+p {
+ line-height: 1.8;
+}
+
+.editor-post-title__block {
+ margin-top: 2em;
+ margin-bottom: 1em;
+ font-size: 2.5em;
+ font-weight: 800;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/default-editor-styles.min.css b/static/wp-includes/css/dist/block-editor/default-editor-styles.min.css
new file mode 100755
index 0000000..743f20f
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/default-editor-styles.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;line-height:1.5;--wp--style--block-gap:2em}p{line-height:1.8}.editor-post-title__block{margin-top:2em;margin-bottom:1em;font-size:2.5em;font-weight:800}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/style-rtl.css b/static/wp-includes/css/dist/block-editor/style-rtl.css
new file mode 100755
index 0000000..a74fc06
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/style-rtl.css
@@ -0,0 +1,4557 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.block-editor-autocompleters__block {
+ white-space: nowrap;
+}
+.block-editor-autocompleters__block .block-editor-block-icon {
+ margin-left: 8px;
+}
+
+.block-editor-autocompleters__link {
+ white-space: nowrap;
+}
+.block-editor-autocompleters__link .block-editor-block-icon {
+ margin-left: 8px;
+}
+
+.block-editor-block-alignment-control__menu-group .components-menu-item__info {
+ margin-top: 0;
+}
+
+.block-editor-block-alignment-matrix-control__popover .components-popover__content {
+ min-width: 0;
+ width: auto;
+}
+.block-editor-block-alignment-matrix-control__popover .components-popover__content > div {
+ padding: 8px;
+}
+
+.block-editor-block-icon {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 24px;
+ height: 24px;
+}
+.block-editor-block-icon.has-colors svg {
+ fill: currentColor;
+}
+@media (forced-colors: active) {
+ .block-editor-block-icon.has-colors svg {
+ fill: CanvasText;
+ }
+}
+.block-editor-block-icon svg {
+ min-width: 20px;
+ min-height: 20px;
+ max-width: 24px;
+ max-height: 24px;
+}
+
+.block-editor-block-inspector p {
+ margin-top: 0;
+}
+.block-editor-block-inspector h2,
+.block-editor-block-inspector h3 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.block-editor-block-inspector .components-base-control {
+ margin-bottom: 24px;
+}
+.block-editor-block-inspector .components-base-control:last-child {
+ margin-bottom: 8px;
+}
+.block-editor-block-inspector .components-panel__body {
+ border: none;
+ border-top: 1px solid #e0e0e0;
+}
+.block-editor-block-inspector .block-editor-block-card {
+ padding: 16px;
+}
+
+.block-editor-block-inspector__no-blocks {
+ display: block;
+ font-size: 13px;
+ background: #fff;
+ padding: 32px 16px;
+ text-align: center;
+}
+
+.block-editor-block-styles .block-editor-block-list__block {
+ margin: 0;
+}
+
+/**
+ * Notices & Block Selected/Hover Styles.
+ */
+/**
+ * Cross-Block Selection
+ */
+.block-editor-block-list__layout {
+ position: relative;
+}
+.block-editor-block-list__layout.is-navigate-mode {
+ cursor: default;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered::after,
+.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable])::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-highlighted ~ .is-multi-selected::after {
+ position: absolute;
+ z-index: 1;
+ pointer-events: none;
+ content: "";
+ top: 1px;
+ bottom: 1px;
+ right: 1px;
+ left: 1px;
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 1px;
+ outline: 2px solid transparent;
+}
+.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered::after,
+.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable])::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-highlighted ~ .is-multi-selected::after {
+ box-shadow: 0 0 0 1px #fff;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected .components-placeholder ::selection, .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered .components-placeholder ::selection,
+.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]) .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-highlighted ~ .is-multi-selected .components-placeholder ::selection {
+ background: transparent;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:not(.is-selected)::after {
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 1px solid transparent;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected::before {
+ content: "";
+ position: absolute;
+ z-index: 0;
+ pointer-events: none;
+ transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;
+ left: 0;
+ right: 0;
+ top: -14px;
+ border-radius: 2px;
+ border-top: 4px solid #ccc;
+}
+.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected::after {
+ content: none;
+}
+.block-editor-block-list__layout .is-block-moving-mode.can-insert-moving-block.block-editor-block-list__block.is-selected::before {
+ border-color: var(--wp-admin-theme-color);
+}
+
+.is-block-moving-mode.block-editor-block-list__block-selection-button {
+ opacity: 0;
+ font-size: 1px;
+ height: 1px;
+ padding: 0;
+}
+
+.block-editor-block-list__layout .block-editor-block-list__block {
+ position: relative;
+ overflow-wrap: break-word;
+ /**
+ * Notices
+ */
+ /**
+ * Block Layout
+ */
+ /**
+ * Block styles and alignments
+ */
+}
+.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel * {
+ z-index: 1;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui {
+ margin: -10px 0 12px 0;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui {
+ margin: 0 0 12px 0;
+ width: 100%;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice {
+ margin-right: 0;
+ margin-left: 0;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content {
+ font-size: 13px;
+}
+.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus {
+ outline: none;
+}
+.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {
+ position: absolute;
+ z-index: 1;
+ pointer-events: none;
+ content: "";
+ top: 1px;
+ bottom: 1px;
+ right: 1px;
+ left: 1px;
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 1px;
+ outline: 2px solid transparent;
+}
+.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff;
+}
+.block-editor-block-list__layout .block-editor-block-list__block::after {
+ content: "";
+ pointer-events: none;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ border-radius: 2px;
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) transparent;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning {
+ min-height: 48px;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning > * {
+ pointer-events: none;
+ -webkit-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 {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ border-radius: 2px;
+ background-color: rgba(255, 255, 255, 0.4);
+}
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected::after {
+ background-color: transparent;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay::after {
+ display: none;
+}
+.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 {
+ display: block;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.is-reusable.has-child-selected::after {
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+.block-editor-block-list__layout .block-editor-block-list__block[data-clear=true] {
+ float: none;
+}
+
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered {
+ cursor: default;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered::after {
+ top: 1px;
+ right: 1px;
+ left: 1px;
+ bottom: 1px;
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ border-radius: 1px;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected {
+ cursor: unset;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ top: 1px;
+ right: 1px;
+ left: 1px;
+ bottom: 1px;
+ border-radius: 1px;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:focus::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) {
+ opacity: 0.5;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .is-focus-mode .block-editor-block-list__block:not(.has-child-selected) {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) .block-editor-block-list__block, .is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-selected, .is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-multi-selected {
+ opacity: 1;
+}
+
+.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity {
+ opacity: 0.5;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.has-child-selected, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity:not(.has-child-selected) .block-editor-block-list__block, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity .block-editor-block-list__block,
+.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity .is-active-entity .block-editor-block-list__block {
+ opacity: 1;
+}
+
+.wp-block[data-align=left] > *,
+.wp-block[data-align=right] > *,
+.wp-block.alignleft,
+.wp-block.alignright {
+ z-index: 21;
+}
+
+.wp-site-blocks > [data-align=left] {
+ float: right;
+ margin-left: 2em;
+}
+
+.wp-site-blocks > [data-align=right] {
+ float: left;
+ margin-right: 2em;
+}
+
+.wp-site-blocks > [data-align=center] {
+ justify-content: center;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+/**
+ * In-Canvas Inserter
+ */
+.block-editor-block-list .block-editor-inserter {
+ margin: 8px;
+ cursor: move;
+ cursor: grab;
+}
+
+@keyframes block-editor-inserter__toggle__fade-in-animation {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 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;
+ animation-delay: 0s;
+ }
+}
+
+.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender {
+ display: none;
+}
+.block-editor-block-list__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__block-html-textarea {
+ display: block;
+ margin: 0;
+ padding: 12px;
+ width: 100%;
+ border: none;
+ outline: none;
+ border-radius: 2px;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ resize: none;
+ overflow: hidden;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 15px;
+ line-height: 1.5;
+ transition: padding 0.2s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-list__block .block-editor-block-list__block-html-textarea {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+/**
+ * Warnings.
+ */
+.block-editor-block-list__block .block-editor-warning {
+ z-index: 5;
+ position: relative;
+}
+.block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning {
+ margin-bottom: auto;
+}
+
+/**
+ * Insertion Point.
+ */
+.block-editor-block-list__insertion-point {
+ position: absolute;
+}
+
+.block-editor-block-list__insertion-point-indicator {
+ position: absolute;
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-block-list__insertion-point.is-vertical > .block-editor-block-list__insertion-point-indicator {
+ top: 50%;
+ height: 1px;
+}
+.block-editor-block-list__insertion-point.is-horizontal > .block-editor-block-list__insertion-point-indicator {
+ top: 0;
+ left: 0;
+ right: 50%;
+ width: 1px;
+}
+
+.block-editor-block-list__insertion-point-inserter {
+ display: none;
+ position: absolute;
+ justify-content: center;
+ top: calc(50% - 12px);
+ right: calc(50% - 12px);
+}
+@media (min-width: 480px) {
+ .block-editor-block-list__insertion-point-inserter {
+ display: flex;
+ }
+}
+
+.block-editor-block-list__block-popover-inserter {
+ position: absolute;
+ top: -9999em;
+ margin-bottom: 14px;
+}
+.block-editor-block-list__block-popover-inserter.is-visible {
+ position: static;
+}
+
+.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon {
+ background: #1e1e1e;
+ border-radius: 2px;
+ color: #fff;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+}
+.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
+ color: #fff;
+ background: var(--wp-admin-theme-color);
+}
+
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon {
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
+ background: #1e1e1e;
+}
+
+/**
+ * Block Toolbar when contextual.
+ */
+.block-editor-block-contextual-toolbar {
+ display: inline-flex;
+ 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-left-color: #1e1e1e;
+}
+.block-editor-block-contextual-toolbar.is-fixed {
+ position: sticky;
+ top: 0;
+ width: 100%;
+ z-index: 31;
+ min-height: 48px;
+ display: block;
+ border: none;
+ border-bottom: 1px solid #e0e0e0;
+ border-radius: 0;
+}
+.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar-group,
+.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar {
+ border-left-color: #e0e0e0;
+}
+.block-editor-block-contextual-toolbar .block-editor-block-mover-button {
+ overflow: hidden;
+}
+.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button {
+ min-width: 24px;
+ width: 24px;
+}
+.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button svg {
+ min-width: 24px;
+}
+
+.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button:focus::before {
+ right: 0 !important;
+ min-width: 0;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-up-button svg {
+ top: 5px;
+ }
+ .block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-down-button svg {
+ bottom: 5px;
+ }
+}
+
+/**
+ * Block Label for Navigation/Selection Mode
+ */
+.block-editor-block-list__block-selection-button {
+ display: inline-flex;
+ padding: 0 12px;
+ z-index: 22;
+ border-radius: 2px;
+ background-color: #1e1e1e;
+ font-size: 13px;
+ height: 48px;
+}
+.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content {
+ margin: auto;
+ display: inline-flex;
+ align-items: center;
+}
+.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content > .components-flex__item {
+ margin-left: 6px;
+}
+.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle {
+ cursor: grab;
+ padding: 0;
+ height: 24px;
+ min-width: 24px;
+ margin-right: -2px;
+}
+.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle svg {
+ min-width: 18px;
+ min-height: 18px;
+}
+.block-editor-block-list__block-selection-button .block-editor-block-icon {
+ font-size: 13px;
+ color: #fff;
+ height: 48px;
+}
+.block-editor-block-list__block-selection-button .components-button {
+ min-width: 36px;
+ color: #fff;
+ height: 48px;
+ display: flex;
+}
+.block-editor-block-list__block-selection-button .components-button:focus {
+ box-shadow: none;
+ border: none;
+}
+.block-editor-block-list__block-selection-button .components-button:active {
+ color: #fff;
+}
+.block-editor-block-list__block-selection-button .block-selection-button_select-button.components-button {
+ padding: 0;
+}
+
+/**
+ * Popovers.
+ */
+.block-editor-block-list__insertion-point-popover.is-without-arrow {
+ z-index: 28;
+ position: absolute;
+ pointer-events: none;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow * {
+ pointer-events: none;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter {
+ pointer-events: all;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter * {
+ pointer-events: all;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow .components-popover__content.components-popover__content {
+ background: none;
+ border: none;
+ box-shadow: none;
+ overflow-y: visible;
+ margin-right: 0;
+}
+
+@keyframes hide-during-dragging {
+ to {
+ position: fixed;
+ transform: translate(-9999px, 9999px);
+ }
+}
+.components-popover.block-editor-block-list__block-popover {
+ z-index: 31;
+ position: absolute;
+}
+.components-popover.block-editor-block-list__block-popover .components-popover__content {
+ margin: 0 !important;
+ min-width: auto;
+ width: max-content;
+ background: none;
+ border: none;
+ box-shadow: none;
+ overflow-y: visible;
+ pointer-events: none;
+}
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar,
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__empty-block-inserter {
+ pointer-events: all;
+}
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar {
+ margin-top: 12px;
+ margin-bottom: 12px;
+}
+.components-popover.block-editor-block-list__block-popover.is-insertion-point-visible {
+ visibility: hidden;
+}
+.is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover {
+ opacity: 0;
+ animation: hide-during-dragging 1ms linear forwards;
+}
+
+.is-dragging-components-draggable .components-tooltip {
+ display: none;
+}
+
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown,
+.block-editor-block-toolbar .components-toolbar-group {
+ padding-right: 6px;
+ padding-left: 6px;
+}
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button,
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon,
+.block-editor-block-toolbar .components-toolbar-group .components-button,
+.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon {
+ min-width: 36px;
+ padding-right: 6px;
+ padding-left: 6px;
+}
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button svg,
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon svg,
+.block-editor-block-toolbar .components-toolbar-group .components-button svg,
+.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon svg {
+ min-width: 24px;
+}
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button::before,
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon::before,
+.block-editor-block-toolbar .components-toolbar-group .components-button::before,
+.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon::before {
+ right: 2px;
+ left: 2px;
+}
+
+.is-vertical .block-list-appender {
+ width: 24px;
+ margin-left: auto;
+ margin-top: 12px;
+ margin-right: 12px;
+}
+
+.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-lock-modal {
+ z-index: 1000001;
+}
+@media (min-width: 600px) {
+ .block-editor-block-lock-modal .components-modal__frame {
+ max-width: 480px;
+ }
+}
+
+.block-editor-block-lock-modal__checklist {
+ margin: 0;
+}
+
+.block-editor-block-lock-modal__options-title {
+ padding: 12px 0;
+}
+.block-editor-block-lock-modal__options-title .components-checkbox-control__label {
+ font-weight: 600;
+}
+.block-editor-block-lock-modal__options-title .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin: 0;
+}
+
+.block-editor-block-lock-modal__checklist-item {
+ margin-bottom: 0;
+ padding: 12px 32px 12px 0;
+}
+.block-editor-block-lock-modal__checklist-item .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin: 0;
+}
+.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ flex-grow: 1;
+}
+.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label svg {
+ margin-left: 12px;
+ fill: #1e1e1e;
+}
+.block-editor-block-lock-modal__checklist-item:hover {
+ background-color: #f0f0f0;
+ border-radius: 2px;
+}
+
+.block-editor-block-lock-modal__actions {
+ margin-top: 24px;
+}
+
+.block-editor-block-lock-toolbar .components-button.has-icon {
+ min-width: 36px !important;
+ padding-right: 0 !important;
+}
+.block-editor-block-lock-toolbar .components-button.has-icon:focus::before {
+ left: 8px !important;
+}
+
+.block-editor-block-breadcrumb {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+.block-editor-block-breadcrumb li {
+ display: inline-flex;
+ margin: 0;
+}
+.block-editor-block-breadcrumb li .block-editor-block-breadcrumb__separator {
+ fill: currentColor;
+ margin-right: -4px;
+ margin-left: -4px;
+ transform: scaleX(-1);;
+}
+.block-editor-block-breadcrumb li:last-child .block-editor-block-breadcrumb__separator {
+ display: none;
+}
+
+.block-editor-block-breadcrumb__button.components-button {
+ height: 24px;
+ line-height: 24px;
+ 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 {
+ box-shadow: none;
+}
+.block-editor-block-breadcrumb__button.components-button:focus::before {
+ content: "";
+ display: block;
+ position: absolute;
+ border-radius: 2px;
+ top: 1px;
+ left: 1px;
+ bottom: 1px;
+ right: 1px;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.block-editor-block-breadcrumb__current {
+ cursor: default;
+}
+
+.block-editor-block-breadcrumb__button.components-button,
+.block-editor-block-breadcrumb__current {
+ color: #1e1e1e;
+ padding: 0 8px;
+ font-size: inherit;
+}
+
+.block-editor-block-card {
+ display: flex;
+ align-items: flex-start;
+}
+
+.block-editor-block-card__content {
+ flex-grow: 1;
+ margin-bottom: 4px;
+}
+
+.block-editor-block-card__title {
+ font-weight: 500;
+}
+.block-editor-block-card__title.block-editor-block-card__title {
+ line-height: 24px;
+ margin: 0 0 4px;
+}
+
+.block-editor-block-card__description {
+ font-size: 13px;
+}
+
+.block-editor-block-card .block-editor-block-icon {
+ flex: 0 0 24px;
+ margin-right: 0;
+ margin-left: 12px;
+ width: 24px;
+ height: 24px;
+}
+
+/**
+ * Invalid block comparison
+ */
+.block-editor-block-compare {
+ height: auto;
+}
+
+.block-editor-block-compare__wrapper {
+ display: flex;
+ padding-bottom: 16px;
+}
+.block-editor-block-compare__wrapper > div {
+ display: flex;
+ justify-content: space-between;
+ flex-direction: column;
+ width: 50%;
+ padding: 0 0 0 16px;
+ min-width: 200px;
+ max-width: 600px;
+}
+.block-editor-block-compare__wrapper > div button {
+ float: left;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__converted {
+ border-right: 1px solid #ddd;
+ padding-right: 15px;
+ padding-left: 0;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html {
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 12px;
+ color: #1e1e1e;
+ border-bottom: 1px solid #ddd;
+ padding-bottom: 15px;
+ line-height: 1.7;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html span {
+ background-color: #e6ffed;
+ padding-top: 3px;
+ padding-bottom: 3px;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added {
+ background-color: #acf2bd;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed {
+ background-color: #cc1818;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__preview {
+ padding: 0;
+ padding-top: 16px;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__preview p {
+ font-size: 12px;
+ margin-top: 0;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__action {
+ margin-top: 16px;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__heading {
+ font-size: 1em;
+ font-weight: 400;
+ margin: 0.67em 0;
+}
+
+.block-editor-block-content-overlay.overlay-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ background: transparent;
+ border: none;
+ border-radius: 2px;
+ z-index: 10;
+}
+.block-editor-block-content-overlay:hover:not(.is-dragging-blocks).overlay-active::before, .block-editor-block-content-overlay.parent-highlighted.overlay-active::before {
+ background: rgba(var(--wp-admin-theme-color--rgb), 0.1);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color) inset;
+}
+.block-editor-block-content-overlay.overlay-active:not(.is-dragging-blocks) * {
+ pointer-events: none;
+}
+.block-editor-block-content-overlay.is-dragging-blocks {
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+
+.block-editor-block-draggable-chip-wrapper {
+ position: absolute;
+ top: -24px;
+ right: 0;
+}
+
+.block-editor-block-draggable-chip {
+ background-color: #1e1e1e;
+ border-radius: 2px;
+ box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
+ color: #fff;
+ cursor: grabbing;
+ display: inline-flex;
+ height: 48px;
+ padding: 0 13px;
+ -webkit-user-select: none;
+ user-select: none;
+}
+.block-editor-block-draggable-chip svg {
+ fill: currentColor;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content {
+ margin: auto;
+ justify-content: flex-start;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content > .components-flex__item {
+ margin-left: 6px;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content > .components-flex__item:last-child {
+ margin-left: 0;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content .block-editor-block-icon svg {
+ min-width: 18px;
+ min-height: 18px;
+}
+.block-editor-block-draggable-chip .components-flex__item {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.block-editor-block-list__layout .is-dragging {
+ background-color: currentColor !important;
+ opacity: 0.05 !important;
+ border-radius: 2px !important;
+ pointer-events: none !important;
+}
+.block-editor-block-list__layout .is-dragging::selection {
+ background: transparent !important;
+}
+.block-editor-block-list__layout .is-dragging::after {
+ content: none !important;
+}
+
+.block-editor-block-mobile-toolbar {
+ display: flex;
+ flex-direction: row;
+ border-left: 1px solid #ddd;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover-button {
+ width: 36px;
+ height: 36px;
+ border-radius: 2px;
+ padding: 3px;
+ margin: 0;
+ justify-content: center;
+ align-items: center;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover-button .dashicon {
+ margin: auto;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover {
+ display: flex;
+ margin-left: auto;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover-button {
+ float: right;
+}
+
+.block-editor-block-mover-button__description {
+ display: none;
+}
+
+.block-editor-block-mover-button.has-icon {
+ padding: 0;
+}
+
+.block-editor-block-mover {
+ display: inline-flex;
+ flex-direction: row;
+}
+.block-editor-block-mover .block-editor-block-mover__move-button-container,
+.block-editor-block-mover .components-toolbar {
+ flex: 1;
+ flex-direction: row;
+ border-left: none !important;
+ padding: 0;
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .block-editor-block-mover__move-button-container,
+.block-editor-block-mover .components-toolbar {
+ flex-direction: column;
+ }
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container, .block-editor-block-mover.is-horizontal .components-toolbar {
+ flex-direction: row;
+}
+.block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button {
+ padding-left: 0;
+ padding-right: 0;
+ min-width: 36px;
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .block-editor-block-mover-button {
+ height: 24px;
+ width: 42px;
+ padding-left: 11px !important;
+ padding-right: 6px !important;
+ }
+ .block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button {
+ min-width: 42px;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .block-editor-block-mover-button::before {
+ right: 8px !important;
+ left: 8px !important;
+ }
+}
+.block-editor-block-mover .block-editor-block-mover__drag-handle {
+ width: 24px;
+ cursor: grab;
+ min-width: 24px !important;
+ padding: 0 !important;
+}
+.block-editor-block-mover .block-editor-block-mover__drag-handle:focus::before {
+ right: 0 !important;
+ left: 0 !important;
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button,
+.block-editor-block-mover .components-toolbar .block-editor-block-mover-button {
+ margin: 0 0 0 auto;
+ }
+ .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% - 1px);
+ }
+ .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% - 1px);
+ }
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon {
+ height: 48px;
+ width: 24px;
+ padding-right: 0;
+ padding-left: 0;
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon::before {
+ top: 1px;
+ bottom: 1px;
+ min-width: 0;
+ width: auto;
+ height: auto;
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon svg {
+ margin-right: 0;
+ margin-left: -8px;
+ margin-bottom: 0;
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon::before {
+ right: 0 !important;
+ left: 0 !important;
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon svg {
+ margin-right: -8px;
+ margin-left: 0;
+ margin-top: 0;
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon::before {
+ right: 0 !important;
+ left: 0 !important;
+ width: calc(100% + 1px);
+}
+
+.block-editor-block-navigation__container {
+ min-width: 280px;
+}
+
+.block-editor-block-navigation__label {
+ margin: 0 0 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.block-editor-block-parent-selector {
+ background: #fff;
+ border-radius: 2px;
+}
+.block-editor-block-parent-selector .block-editor-block-parent-selector__button {
+ width: 48px;
+ height: 48px;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
+}
+
+.block-editor-block-patterns-list__list-item {
+ cursor: pointer;
+ margin-bottom: 24px;
+}
+.block-editor-block-patterns-list__list-item.is-placeholder {
+ min-height: 100px;
+}
+.block-editor-block-patterns-list__list-item[draggable=true] .block-editor-block-preview__container {
+ cursor: grab;
+}
+
+.block-editor-block-patterns-list__item {
+ height: 100%;
+}
+.block-editor-block-patterns-list__item .block-editor-block-preview__container {
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ border-radius: 2px;
+ border: 1px solid #f0f0f0;
+}
+.block-editor-block-patterns-list__item .block-editor-block-patterns-list__item-title {
+ padding-top: 8px;
+ font-size: 12px;
+ text-align: center;
+}
+.block-editor-block-patterns-list__item:hover .block-editor-block-preview__container {
+ border: 1px solid var(--wp-admin-theme-color);
+}
+.block-editor-block-patterns-list__item:focus .block-editor-block-preview__container {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-block-patterns-list__item:hover .block-editor-block-patterns-list__item-title, .block-editor-block-patterns-list__item:focus .block-editor-block-patterns-list__item-title {
+ color: var(--wp-admin-theme-color);
+}
+
+.block-editor-block-preview__container {
+ position: relative;
+ width: 100%;
+ overflow: hidden;
+}
+.block-editor-block-preview__container .block-editor-block-preview__content {
+ top: 0;
+ right: 0;
+ transform-origin: top right;
+ text-align: initial;
+ margin: 0;
+ overflow: visible;
+ min-height: auto;
+}
+.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-list__insertion-point,
+.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-drop-zone,
+.block-editor-block-preview__container .block-editor-block-preview__content .reusable-block-indicator,
+.block-editor-block-preview__container .block-editor-block-preview__content .block-list-appender {
+ display: none;
+}
+
+.block-editor-block-preview__content-iframe .block-list-appender {
+ display: none;
+}
+
+.block-editor-block-preview__live-content * {
+ pointer-events: none;
+}
+.block-editor-block-preview__live-content .block-list-appender {
+ display: none;
+}
+.block-editor-block-preview__live-content .components-button:disabled {
+ opacity: initial;
+}
+.block-editor-block-preview__live-content .components-placeholder,
+.block-editor-block-preview__live-content .block-editor-block-list__block[data-empty=true] {
+ display: none;
+}
+
+.block-editor-block-settings-menu__popover .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.block-editor-block-styles + .default-style-picker__default-switcher {
+ margin-top: 16px;
+}
+
+.block-editor-block-styles__preview-panel {
+ display: none;
+ position: absolute;
+ left: 16px;
+ right: auto;
+ z-index: 90;
+}
+@media (min-width: 782px) {
+ .block-editor-block-styles__preview-panel {
+ display: block;
+ }
+}
+.block-editor-block-styles__preview-panel .block-editor-inserter__preview-container {
+ right: auto;
+ left: auto;
+ top: auto;
+ position: static;
+}
+.block-editor-block-styles__preview-panel .block-editor-block-card__title.block-editor-block-card__title {
+ margin: 0;
+}
+.block-editor-block-styles__preview-panel .block-editor-block-icon {
+ display: none;
+}
+
+.block-editor-block-styles__variants {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ gap: 8px;
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item {
+ color: #2f2f2f;
+ box-shadow: inset 0 0 0 1px #ccc;
+ display: inline-block;
+ width: calc(50% - 4px);
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item:focus, .block-editor-block-styles__variants .block-editor-block-styles__item:hover {
+ color: var(--wp-admin-theme-color);
+ box-shadow: inset 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item.is-active, .block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover {
+ background-color: #2f2f2f;
+ box-shadow: none;
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item.is-active .block-editor-block-styles__item-text, .block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover .block-editor-block-styles__item-text {
+ color: #fff;
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item-text {
+ word-break: break-all;
+ white-space: normal;
+ text-align: start;
+ text-align-last: center;
+}
+
+.block-editor-block-styles__block-preview-container,
+.block-editor-block-styles__block-preview-container * {
+ box-sizing: border-box !important;
+}
+
+.block-editor-block-switcher {
+ position: relative;
+ padding: 0 6px;
+}
+.block-editor-block-switcher .components-button.components-dropdown-menu__toggle.has-icon.has-icon {
+ min-width: 36px;
+}
+
+.block-editor-block-switcher__no-switcher-icon,
+.block-editor-block-switcher__toggle {
+ position: relative;
+}
+
+.components-button.block-editor-block-switcher__toggle,
+.components-button.block-editor-block-switcher__no-switcher-icon {
+ margin: 0;
+ display: block;
+ height: 48px;
+}
+.components-button.block-editor-block-switcher__toggle .block-editor-block-icon,
+.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ margin: auto;
+}
+
+.block-editor-block-switcher__toggle-text {
+ margin-right: 8px;
+}
+.show-icon-labels .block-editor-block-switcher__toggle-text {
+ display: none;
+}
+
+.show-icon-labels .block-editor-block-toolbar .block-editor-block-switcher .components-button.has-icon::after {
+ font-size: 14px;
+}
+
+.block-editor-block-switcher__popover {
+ margin-right: 6px;
+}
+
+.components-button.block-editor-block-switcher__no-switcher-icon {
+ display: flex;
+ padding: 6px 12px !important;
+}
+.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ margin-left: auto;
+ margin-right: auto;
+ min-width: 24px !important;
+}
+
+.components-button.block-editor-block-switcher__no-switcher-icon:disabled {
+ 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;
+}
+
+.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon .block-editor-block-icon,
+.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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;
+ min-width: 100%;
+}
+.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon::before,
+.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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;
+ left: 8px;
+ bottom: 8px;
+ right: 8px;
+}
+
+.components-popover.block-editor-block-switcher__popover .components-popover__content {
+ min-width: 300px;
+}
+
+.components-popover.block-editor-block-switcher__popover .components-popover__content > div {
+ min-width: auto;
+ display: flex;
+ background: #fff;
+ padding: 0;
+}
+.components-popover.block-editor-block-switcher__popover .components-popover__content > div .components-menu-group {
+ margin: 0;
+}
+
+.block-editor-block-switcher__popover .components-popover__content .block-editor-block-styles {
+ margin: 0 -3px;
+}
+.block-editor-block-switcher__popover .components-popover__content .components-panel__body {
+ border: 0;
+ position: relative;
+ z-index: 1;
+}
+.block-editor-block-switcher__popover .components-popover__content .components-panel__body + .components-panel__body {
+ border-top: 1px solid #e0e0e0;
+}
+
+.block-editor-block-switcher__popover__preview__parent .block-editor-block-switcher__popover__preview__container {
+ position: absolute;
+ top: -12px;
+ right: calc(100% + 32px);
+}
+
+.block-editor-block-switcher__preview__popover {
+ display: none;
+}
+.block-editor-block-switcher__preview__popover.components-popover {
+ margin-right: 4px;
+ margin-top: 11px;
+}
+@media (min-width: 782px) {
+ .block-editor-block-switcher__preview__popover {
+ display: block;
+ }
+}
+.block-editor-block-switcher__preview__popover .components-popover__content {
+ box-shadow: none;
+ border: 1px solid #1e1e1e;
+ background: #fff;
+ border-radius: 2px;
+}
+.block-editor-block-switcher__preview__popover .block-editor-block-switcher__preview {
+ width: 300px;
+ height: auto;
+ max-height: 500px;
+ padding: 16px;
+}
+
+.block-editor-block-switcher__preview-title {
+ margin-bottom: 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {
+ min-width: 36px;
+}
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon,
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle {
+ height: 48px;
+}
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
+.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;
+ height: 48px;
+}
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {
+ padding: 12px;
+}
+
+.block-editor-block-switcher__preview-patterns-container {
+ padding-bottom: 16px;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item {
+ margin-top: 16px;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-preview__container {
+ cursor: pointer;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item {
+ height: 100%;
+ border-radius: 2px;
+ transition: all 0.05s ease-in-out;
+ position: relative;
+ border: 1px solid transparent;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover, .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item .block-editor-block-switcher__preview-patterns-container-list__item-title {
+ padding: 4px;
+ font-size: 12px;
+ text-align: center;
+ cursor: pointer;
+}
+
+.block-editor-block-types-list > [role=presentation] {
+ overflow: hidden;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.block-editor-block-variation-picker .components-placeholder__instructions {
+ margin-bottom: 0;
+}
+.block-editor-block-variation-picker .components-placeholder__fieldset {
+ flex-direction: column;
+}
+.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset {
+ max-width: 90%;
+}
+
+.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations {
+ display: flex;
+ justify-content: flex-start;
+ flex-direction: row;
+ flex-wrap: wrap;
+ width: 100%;
+ margin: 16px 0;
+ padding: 0;
+ list-style: none;
+}
+.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li {
+ list-style: none;
+ margin: 8px 0 0 20px;
+ flex-shrink: 1;
+ width: 75px;
+ text-align: center;
+}
+.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li button {
+ display: inline-flex;
+ margin-left: 0;
+}
+.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;
+ line-height: 1.4;
+}
+
+.block-editor-block-variation-picker__variation {
+ width: 100%;
+}
+.block-editor-block-variation-picker__variation.components-button.has-icon {
+ justify-content: center;
+ width: auto;
+}
+.block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary {
+ background-color: #fff;
+}
+.block-editor-block-variation-picker__variation.components-button {
+ height: auto;
+ padding: 0;
+}
+.block-editor-block-variation-picker__variation::before {
+ content: "";
+ padding-bottom: 100%;
+}
+.block-editor-block-variation-picker__variation:first-child {
+ margin-right: 0;
+}
+.block-editor-block-variation-picker__variation:last-child {
+ margin-left: 0;
+}
+
+.block-editor-block-pattern-setup {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-start;
+ width: 100%;
+ border-radius: 2px;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__toolbar {
+ justify-content: center;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
+ column-gap: 24px;
+ display: block;
+ width: 100%;
+ padding: 32px;
+ column-count: 2;
+}
+@media (min-width: 1440px) {
+ .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
+ column-count: 3;
+ }
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-preview__container,
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container div[role=button] {
+ cursor: pointer;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item {
+ break-inside: avoid-column;
+ margin-bottom: 24px;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__container {
+ min-height: 100px;
+ border-radius: 2px;
+ border: 1px solid #ddd;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__content {
+ width: 100%;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar {
+ height: 60px;
+ box-sizing: border-box;
+ padding: 16px;
+ width: 100%;
+ text-align: right;
+ margin: 0;
+ color: #1e1e1e;
+ border-radius: 2px 2px 0 0;
+ background-color: #fff;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: space-between;
+ border-top: 1px solid #ddd;
+ align-self: flex-end;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__display-controls {
+ display: flex;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__navigation,
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions {
+ width: calc(50% - 36px);
+ display: flex;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions {
+ justify-content: flex-end;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ box-sizing: border-box;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container {
+ overflow: hidden;
+ position: relative;
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ transform-style: preserve-3d;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container * {
+ box-sizing: border-box;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide {
+ position: absolute;
+ top: 0;
+ width: 100%;
+ margin: auto;
+ padding: 0;
+ transition: transform 0.5s, z-index 0.5s;
+ z-index: 100;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.active-slide {
+ opacity: 1;
+ position: relative;
+ z-index: 102;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.previous-slide {
+ transform: translateX(100%);
+ z-index: 101;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.next-slide {
+ transform: translateX(-100%);
+ z-index: 101;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .block-list-appender {
+ display: none;
+}
+
+.block-editor-block-pattern-setup__carousel,
+.block-editor-block-pattern-setup__grid {
+ width: 100%;
+ overflow-y: auto;
+}
+
+.block-editor-block-variation-transforms {
+ padding: 0 52px 16px 16px;
+ width: 100%;
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle {
+ border: 1px solid #757575;
+ border-radius: 2px;
+ min-height: 30px;
+ width: 100%;
+ position: relative;
+ text-align: right;
+ justify-content: left;
+ padding: 6px 12px;
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle.components-dropdown-menu__toggle {
+ padding-left: 24px;
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle:focus:not(:disabled) {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 calc(var(--wp-admin-border-width-focus) - 1px) var(--wp-admin-theme-color);
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle svg {
+ height: 100%;
+ padding: 0;
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+
+.block-editor-block-variation-transforms__popover .components-popover__content {
+ min-width: 230px;
+}
+
+.components-border-radius-control {
+ margin-bottom: 12px;
+}
+.components-border-radius-control legend {
+ margin-bottom: 8px;
+}
+.components-border-radius-control .components-border-radius-control__wrapper {
+ display: flex;
+ justify-content: space-between;
+ align-items: flex-start;
+}
+.components-border-radius-control .components-border-radius-control__wrapper > .components-unit-control-wrapper {
+ width: calc(50% - 26px);
+ margin-bottom: 0;
+}
+.components-border-radius-control .components-border-radius-control__wrapper .components-range-control {
+ width: calc(50% - 26px);
+ margin-bottom: 0;
+}
+.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-base-control__field {
+ margin-bottom: 0;
+ height: 30px;
+}
+.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-range-control__wrapper {
+ margin-left: 10px;
+}
+.components-border-radius-control .components-border-radius-control__wrapper > span {
+ flex: 0 0 auto;
+}
+.components-border-radius-control .components-border-radius-control__input-controls-wrapper {
+ display: flex;
+ width: 70%;
+ flex-wrap: wrap;
+}
+.components-border-radius-control .components-border-radius-control__input-controls-wrapper .components-unit-control-wrapper {
+ width: calc(50% - 8px);
+ margin-bottom: 8px;
+ margin-left: 8px;
+}
+.components-border-radius-control .component-border-radius-control__linked-button.has-icon {
+ display: flex;
+ justify-content: center;
+}
+.components-border-radius-control .component-border-radius-control__linked-button.has-icon svg {
+ margin-left: 0;
+}
+
+.components-border-style-control legend {
+ line-height: 1.4;
+ margin-bottom: 8px;
+ padding: 0;
+}
+.components-border-style-control .components-border-style-control__buttons {
+ display: inline-flex;
+}
+.components-border-style-control .components-border-style-control__buttons .components-button.has-icon {
+ min-width: 30px;
+ height: 30px;
+ padding: 3px;
+ margin-left: 4px;
+}
+
+.block-editor-button-block-appender {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ height: auto;
+ color: #1e1e1e;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+}
+.block-editor-button-block-appender.components-button.components-button {
+ padding: 12px;
+}
+.is-dark-theme .block-editor-button-block-appender {
+ color: rgba(255, 255, 255, 0.65);
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
+}
+.block-editor-button-block-appender:hover {
+ color: var(--wp-admin-theme-color);
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
+}
+.block-editor-button-block-appender:focus {
+ box-shadow: inset 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-editor-button-block-appender:active {
+ color: #000;
+}
+
+.block-editor-color-gradient-control .block-editor-color-gradient-control__color-indicator {
+ margin-bottom: 12px;
+}
+
+.block-editor-color-gradient-control__fieldset {
+ min-width: 0;
+}
+
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title {
+ display: flex;
+ gap: 8px;
+}
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {
+ width: 12px;
+ height: 12px;
+ align-self: center;
+}
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator:first-child {
+ margin-right: 12px;
+}
+.block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {
+ display: none;
+}
+@media screen and (min-width: 782px) {
+ .block-editor-panel-color-gradient-settings .components-circular-option-picker__swatches {
+ display: grid;
+ grid-template-columns: repeat(6, 28px);
+ justify-content: space-between;
+ }
+}
+.block-editor-block-inspector .block-editor-panel-color-gradient-settings .components-base-control {
+ margin-bottom: inherit;
+}
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__dropdown {
+ display: block;
+}
+
+.block-editor-panel-color-gradient-settings__dropdown {
+ width: 100%;
+}
+
+.block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content > div {
+ width: 280px;
+}
+
+@media (min-width: 782px) {
+ .block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content {
+ margin-left: 156px !important;
+ }
+ .block-editor-panel-color-gradient-settings__dropdown-content.is-from-top .components-popover__content {
+ margin-top: -60px !important;
+ }
+ .block-editor-panel-color-gradient-settings__dropdown-content.is-from-bottom .components-popover__content {
+ margin-bottom: -60px !important;
+ }
+}
+.block-editor-panel-color-gradient-settings__dropdown:last-child > div {
+ border-bottom-width: 0;
+}
+
+.block-editor-panel-color-gradient-settings__item {
+ padding-top: 12px !important;
+ padding-bottom: 12px !important;
+}
+.block-editor-panel-color-gradient-settings__item .block-editor-panel-color-gradient-settings__color-indicator {
+ background: linear-gradient(45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
+}
+.block-editor-panel-color-gradient-settings__item.is-open {
+ background: #f0f0f0;
+ color: var(--wp-admin-theme-color);
+}
+
+.block-editor-contrast-checker > .components-notice {
+ margin: 0;
+}
+
+/**
+ * Default block appender.
+ *
+ * This component shows up in 3 places:
+ * - the black plus that sits at the end of the canvas, if the last block isn't a paragraph
+ * - on the right, inside empty paragraphs
+ * - absolute positioned and blue inside nesting containers
+ */
+.block-editor-default-block-appender {
+ clear: both;
+ margin-right: auto;
+ margin-left: auto;
+ position: relative;
+}
+.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 .block-editor-default-block-appender__content {
+ opacity: 0.62;
+}
+.block-editor-default-block-appender .components-drop-zone__content-icon {
+ display: none;
+}
+
+.block-editor-default-block-appender .block-editor-inserter,
+.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter {
+ position: absolute;
+ top: 0;
+ left: 0;
+ line-height: 0;
+}
+.block-editor-default-block-appender .block-editor-inserter:disabled,
+.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled {
+ display: none;
+}
+
+/**
+ * Fixed position appender.
+ * These styles apply to all in-canvas inserters that exist inside nesting containers.
+ */
+.block-editor-block-list__block .block-list-appender {
+ position: absolute;
+ list-style: none;
+ padding: 0;
+ z-index: 2;
+ bottom: 0;
+ left: 0;
+}
+.block-editor-block-list__block .block-list-appender.block-list-appender {
+ margin: 0;
+ line-height: 0;
+}
+.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender {
+ height: 24px;
+}
+.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block .block-list-appender .block-list-appender__toggle {
+ flex-direction: row;
+ box-shadow: none;
+ height: 24px;
+ width: 24px;
+ display: none;
+ padding: 0 !important;
+ background: #1e1e1e;
+ color: #fff;
+}
+.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-block-list__block .block-list-appender .block-list-appender__toggle:hover {
+ color: #fff;
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender__content {
+ display: none;
+}
+.block-editor-block-list__block .block-list-appender:only-child {
+ position: relative;
+ left: auto;
+ align-self: center;
+ list-style: none;
+ line-height: inherit;
+}
+.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content {
+ display: block;
+}
+
+.block-editor-block-list__block.is-selected .block-editor-block-list__layout > .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block.is-selected .block-editor-block-list__layout > .block-list-appender .block-list-appender__toggle,
+.block-editor-block-list__block.is-selected > .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block.is-selected > .block-list-appender .block-list-appender__toggle {
+ display: flex;
+}
+
+.block-editor-default-block-appender__content {
+ cursor: text;
+}
+
+.block-editor-date-format-picker {
+ margin-bottom: 16px;
+}
+
+.block-editor-date-format-picker__default-format-toggle-control__hint {
+ color: #757575;
+ display: block;
+}
+
+.block-editor-date-format-picker__custom-format-select-control.components-base-control {
+ margin-bottom: 0;
+}
+.block-editor-date-format-picker__custom-format-select-control .components-custom-select-control__button {
+ width: 100%;
+}
+
+.block-editor-date-format-picker__custom-format-select-control__custom-option {
+ border-top: 1px solid #ddd;
+}
+.block-editor-date-format-picker__custom-format-select-control__custom-option.has-hint {
+ grid-template-columns: auto 30px;
+}
+.block-editor-date-format-picker__custom-format-select-control__custom-option .components-custom-select-control__item-hint {
+ grid-row: 2;
+ text-align: right;
+}
+
+.block-editor-duotone-control__popover > .components-popover__content > div {
+ padding: 16px;
+ width: 280px;
+}
+.block-editor-duotone-control__popover .components-menu-group__label {
+ padding: 0;
+}
+.block-editor-duotone-control__popover .components-custom-gradient-picker__gradient-bar {
+ margin: 16px 0 12px;
+}
+.block-editor-duotone-control__popover .components-circular-option-picker__swatches {
+ display: grid;
+ grid-template-columns: repeat(6, 28px);
+ gap: 12px;
+ justify-content: space-between;
+}
+
+.block-editor-duotone-control__description {
+ margin: 16px 0;
+ font-size: 12px;
+}
+
+.block-editor-duotone-control__popover:not([data-y-axis=middle][data-x-axis=right]) > .components-popover__content {
+ margin-right: -14px;
+}
+
+.components-font-appearance-control {
+ margin-bottom: 24px;
+}
+.components-font-appearance-control ul li {
+ color: #1e1e1e;
+ text-transform: capitalize;
+}
+
+.block-editor-image-size-control {
+ margin-bottom: 1em;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row {
+ display: flex;
+ justify-content: space-between;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width,
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {
+ margin-bottom: 0.5em;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input,
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input {
+ line-height: 1.25;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width {
+ margin-left: 5px;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {
+ margin-right: 5px;
+}
+
+.block-editor-block-list__layout.has-overlay::after {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ z-index: 60;
+}
+
+.block-editor-block-types-list__list-item {
+ display: block;
+ width: 33.33%;
+ padding: 0;
+ margin: 0;
+}
+
+.components-button.block-editor-block-types-list__item {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ font-size: 13px;
+ color: #1e1e1e;
+ padding: 8px;
+ align-items: stretch;
+ justify-content: center;
+ cursor: pointer;
+ background: transparent;
+ word-break: break-word;
+ border-radius: 2px;
+ transition: all 0.05s ease-in-out;
+ position: relative;
+ height: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-button.block-editor-block-types-list__item {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-button.block-editor-block-types-list__item:disabled {
+ opacity: 0.6;
+ cursor: default;
+}
+.components-button.block-editor-block-types-list__item:not(:disabled):hover {
+ color: var(--wp-admin-theme-color) !important;
+}
+.components-button.block-editor-block-types-list__item:not(:disabled):focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-button.block-editor-block-types-list__item:not(:disabled).is-active {
+ color: #fff;
+ background: #1e1e1e;
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+
+.block-editor-block-types-list__item-icon {
+ padding: 12px 20px;
+ border-radius: 2px;
+ color: #1e1e1e;
+ transition: all 0.05s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-types-list__item-icon {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-block-types-list__item-icon .block-editor-block-icon {
+ margin-right: auto;
+ margin-left: auto;
+}
+.block-editor-block-types-list__item-icon svg {
+ transition: all 0.15s ease-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-types-list__item-icon svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-block-types-list__list-item[draggable=true] .block-editor-block-types-list__item-icon {
+ cursor: grab;
+}
+
+.block-editor-block-types-list__item-title {
+ padding: 4px 2px 8px;
+ font-size: 12px;
+}
+
+.items-justified-left {
+ justify-content: flex-start;
+}
+
+.items-justified-center {
+ justify-content: center;
+}
+
+.items-justified-right {
+ justify-content: flex-end;
+}
+
+.items-justified-space-between {
+ justify-content: space-between;
+}
+
+@keyframes loadingpulse {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.block-editor-link-control {
+ position: relative;
+ min-width: 360px;
+}
+.components-popover__content .block-editor-link-control {
+ min-width: auto;
+ width: 90vw;
+ max-width: 360px;
+}
+
+.block-editor-link-control__search-input-wrapper {
+ position: relative;
+}
+
+.block-editor-link-control__search-input-container {
+ position: relative;
+}
+
+.block-editor-link-control__search-input.has-no-label .block-editor-url-input__input {
+ flex: 1;
+}
+
+.block-editor-link-control__field {
+ margin: 16px;
+}
+.block-editor-link-control__field > .components-base-control__field {
+ display: flex;
+ align-items: center;
+ margin: 0;
+}
+.block-editor-link-control__field .components-base-control__label {
+ margin-left: 16px;
+ margin-bottom: 0;
+}
+.block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
+ 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;
+ width: calc(100% - 32px);
+ display: block;
+ padding: 11px 16px;
+ padding-left: 36px;
+ margin: 0;
+ position: relative;
+ border: 1px solid #ddd;
+ border-radius: 2px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.block-editor-link-control__field input[type=text]:focus, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-link-control__field input[type=text]::-webkit-input-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-link-control__field input[type=text]::-moz-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-link-control__field input[type=text]:-ms-input-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.block-editor-link-control__search-error {
+ margin: -8px 16px 16px;
+}
+
+.block-editor-link-control__search-actions {
+ position: absolute;
+ /*
+ * Actions must be positioned on top of URLInput, since the input will grow
+ * when suggestions are rendered.
+ *
+ * Compensate for:
+ * - Border (1px)
+ * - Vertically, for the difference in height between the input (40px) and
+ * the icon buttons.
+ * - Horizontally, pad to the minimum of: default input padding, or the
+ * equivalent of the vertical padding.
+ */
+ top: 3px;
+ left: 19px;
+}
+
+.components-button .block-editor-link-control__search-submit .has-icon {
+ margin: -1px;
+}
+
+.block-editor-link-control__search-results-wrapper {
+ position: relative;
+ margin-top: -15px;
+}
+.block-editor-link-control__search-results-wrapper::before, .block-editor-link-control__search-results-wrapper::after {
+ content: "";
+ position: absolute;
+ right: -1px;
+ left: 16px;
+ display: block;
+ pointer-events: none;
+ z-index: 100;
+}
+.block-editor-link-control__search-results-wrapper::before {
+ height: 8px;
+ top: 0;
+ bottom: auto;
+}
+.block-editor-link-control__search-results-wrapper::after {
+ height: 16px;
+ bottom: 0;
+ top: auto;
+}
+
+.block-editor-link-control__search-results-label {
+ padding: 16px 32px 0;
+ display: block;
+ font-weight: 600;
+}
+
+.block-editor-link-control__search-results {
+ margin: 0;
+ padding: 8px 16px 8px;
+ max-height: 200px;
+ overflow-y: auto;
+}
+.block-editor-link-control__search-results.is-loading {
+ opacity: 0.2;
+}
+
+.block-editor-link-control__search-item {
+ position: relative;
+ display: flex;
+ align-items: flex-start;
+ font-size: 13px;
+ cursor: pointer;
+ background: #fff;
+ width: 100%;
+ border: none;
+ text-align: right;
+ padding: 12px 16px;
+ border-radius: 2px;
+ height: auto;
+}
+.block-editor-link-control__search-item:hover, .block-editor-link-control__search-item:focus {
+ background-color: #f0f0f0;
+}
+.block-editor-link-control__search-item:hover .block-editor-link-control__search-item-type, .block-editor-link-control__search-item:focus .block-editor-link-control__search-item-type {
+ background: #fff;
+}
+.block-editor-link-control__search-item:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color) inset;
+}
+.block-editor-link-control__search-item.is-selected {
+ background: #f0f0f0;
+}
+.block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type {
+ background: #fff;
+}
+.block-editor-link-control__search-item.is-current {
+ flex-direction: column;
+ background: transparent;
+ border: 0;
+ width: 100%;
+ cursor: default;
+ padding: 16px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-header {
+ display: block;
+ flex-direction: row;
+ align-items: flex-start;
+ margin-left: 8px;
+ white-space: pre-wrap;
+ overflow-wrap: break-word;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-header .block-editor-link-control__search-item-info {
+ word-break: break-all;
+}
+.block-editor-link-control__search-item.is-preview .block-editor-link-control__search-item-header {
+ display: flex;
+ flex: 1;
+}
+.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-header {
+ align-items: center;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-icon {
+ position: relative;
+ top: 0.2em;
+ margin-left: 8px;
+ max-height: 24px;
+ flex-shrink: 0;
+ width: 24px;
+ display: flex;
+ justify-content: center;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-icon img {
+ width: 16px;
+}
+.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-icon {
+ top: 0;
+ width: 32px;
+ max-height: 32px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-info,
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title {
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-info .components-external-link__icon,
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title .components-external-link__icon {
+ position: absolute;
+ left: 0;
+ margin-top: 0;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title {
+ display: block;
+ margin-bottom: 0.2em;
+ font-weight: 500;
+ position: relative;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {
+ font-weight: 700;
+ color: inherit;
+ background-color: transparent;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title span {
+ font-weight: normal;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title svg {
+ display: none;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-info {
+ display: block;
+ color: #757575;
+ font-size: 0.9em;
+ line-height: 1.3;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-error-notice {
+ font-style: italic;
+ font-size: 1.1em;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-type {
+ display: block;
+ padding: 3px 6px;
+ margin-right: auto;
+ font-size: 0.9em;
+ background-color: #f0f0f0;
+ border-radius: 2px;
+ white-space: nowrap;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description {
+ padding-top: 12px;
+ margin: 0;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder {
+ margin-top: 12px;
+ padding-top: 0;
+ height: 28px;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-around;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder::before, .block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder::after {
+ display: block;
+ content: "";
+ height: 0.7em;
+ width: 100%;
+ background-color: #f0f0f0;
+ border-radius: 3px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description .components-text {
+ font-size: 0.9em;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-image {
+ display: flex;
+ width: 100%;
+ background-color: #f0f0f0;
+ justify-content: center;
+ height: 140px;
+ max-height: 140px;
+ overflow: hidden;
+ border-radius: 2px;
+ margin-top: 12px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-image.is-placeholder {
+ background-color: #f0f0f0;
+ border-radius: 3px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-image img {
+ display: block;
+ max-width: 100%;
+ height: 140px;
+ max-height: 140px;
+}
+
+.block-editor-link-control__search-item-top {
+ display: flex;
+ flex-direction: row;
+ width: 100%;
+}
+
+.block-editor-link-control__search-item-bottom {
+ transition: opacity 1.5s;
+ width: 100%;
+}
+
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description::before, .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description::after {
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-image {
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon svg,
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon img {
+ opacity: 0;
+}
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon::before {
+ content: "";
+ display: block;
+ background-color: #f0f0f0;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ border-radius: 100%;
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+
+.block-editor-link-control__loading {
+ margin: 16px;
+ display: flex;
+ align-items: center;
+}
+.block-editor-link-control__loading .components-spinner {
+ margin-top: 0;
+}
+
+.components-button + .block-editor-link-control__search-create {
+ overflow: visible;
+ padding: 12px 16px;
+}
+.components-button + .block-editor-link-control__search-create::before {
+ content: "";
+ position: absolute;
+ top: -10px;
+ right: 0;
+ display: block;
+ width: 100%;
+}
+
+.block-editor-link-control__search-create {
+ align-items: center;
+}
+.block-editor-link-control__search-create .block-editor-link-control__search-item-title {
+ margin-bottom: 0;
+}
+.block-editor-link-control__search-create .block-editor-link-control__search-item-icon {
+ top: 0;
+}
+
+.block-editor-link-control__search-results div[role=menu] > .block-editor-link-control__search-item.block-editor-link-control__search-item {
+ padding: 10px;
+}
+
+.block-editor-link-control__tools {
+ display: flex;
+ align-items: center;
+ border-top: 1px solid #ddd;
+ margin: 0;
+ padding: 16px;
+}
+
+.block-editor-link-control__unlink {
+ padding-right: 16px;
+ padding-left: 16px;
+}
+
+.block-editor-link-control__settings {
+ flex: 1;
+ margin: 0;
+}
+.block-editor-link-control__settings :last-child {
+ margin-bottom: 0;
+}
+.is-alternate .block-editor-link-control__settings {
+ border-top: 1px solid #1e1e1e;
+}
+
+.block-editor-link-control__setting {
+ margin-bottom: 16px;
+}
+.block-editor-link-control__setting :last-child {
+ margin-bottom: 0;
+}
+
+.block-editor-link-control .block-editor-link-control__search-input .components-spinner {
+ display: block;
+}
+.block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner {
+ position: absolute;
+ right: auto;
+ bottom: auto;
+ /*
+ * Position spinner to the left of the actions.
+ *
+ * Compensate for:
+ * - Input padding right ($button-size)
+ */
+ top: calc(50% - 16px / 2);
+ left: 36px;
+}
+
+.block-editor-link-control__search-item-action {
+ margin-right: auto;
+ flex-shrink: 0;
+}
+
+.block-editor-list-view-tree {
+ width: 100%;
+ border-collapse: collapse;
+ padding: 0;
+ margin: 0;
+}
+.components-modal__content .block-editor-list-view-tree {
+ margin: -12px -6px 0;
+ width: calc(100% + 12px);
+}
+
+.block-editor-list-view-leaf {
+ position: relative;
+}
+.block-editor-list-view-leaf.is-selected td {
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents, .block-editor-list-view-leaf.is-selected .components-button.has-icon {
+ color: #fff;
+}
+.is-dragging-components-draggable .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents {
+ background: none;
+ color: #1e1e1e;
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents:focus::after {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block__menu:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff;
+}
+.block-editor-list-view-leaf.is-dragging {
+ display: none;
+}
+.block-editor-list-view-leaf.is-first-selected td:first-child {
+ border-top-right-radius: 2px;
+}
+.block-editor-list-view-leaf.is-first-selected td:last-child {
+ border-top-left-radius: 2px;
+}
+.block-editor-list-view-leaf.is-last-selected td:first-child {
+ border-bottom-right-radius: 2px;
+}
+.block-editor-list-view-leaf.is-last-selected td:last-child {
+ border-bottom-left-radius: 2px;
+}
+.block-editor-list-view-leaf.is-branch-selected:not(.is-selected) {
+ background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), linear-gradient(var(--wp-admin-theme-color), var(--wp-admin-theme-color));
+}
+.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:first-child {
+ border-top-right-radius: 2px;
+}
+.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:last-child {
+ border-top-left-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:first-child {
+ border-top-right-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:last-child {
+ border-top-left-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:first-child {
+ border-bottom-right-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:last-child {
+ border-bottom-left-radius: 2px;
+}
+.block-editor-list-view-leaf.is-branch-selected:not(.is-selected) td {
+ border-radius: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ height: auto;
+ padding: 6px 0 6px 12px;
+ text-align: right;
+ color: #1e1e1e;
+ border-radius: 2px;
+ position: relative;
+ white-space: nowrap;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents.is-dropping-before::before {
+ content: "";
+ position: absolute;
+ pointer-events: none;
+ transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;
+ top: -2px;
+ left: 0;
+ right: 0;
+ border-top: 4px solid var(--wp-admin-theme-color);
+}
+.components-modal__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
+ padding-right: 0;
+ padding-left: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus {
+ box-shadow: none;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus::after {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: -29px;
+ bottom: 0;
+ right: 0;
+ border-radius: inherit;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ z-index: 2;
+ pointer-events: none;
+}
+.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block-contents:focus::after {
+ box-shadow: none;
+}
+.block-editor-list-view-leaf.has-single-cell .block-editor-list-view-block-contents:focus::after {
+ left: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ z-index: 1;
+}
+.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block__menu:focus {
+ box-shadow: none;
+}
+.block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
+ opacity: 1;
+ animation: edit-post__fade-in-animation 0.2s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-block-icon {
+ align-self: flex-start;
+ margin-left: 8px;
+ width: 24px;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__contents-cell {
+ padding-top: 0;
+ padding-bottom: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
+ line-height: 0;
+ width: 36px;
+ vertical-align: middle;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell > * {
+ opacity: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible {
+ position: relative;
+ z-index: 1;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover > *, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible > * {
+ opacity: 1;
+ animation: edit-post__fade-in-animation 0.2s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover > *, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible > * {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell .components-button.has-icon {
+ width: 24px;
+ min-width: 24px;
+ padding: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell {
+ padding-left: 5px;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon {
+ height: 24px;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell-alignment-wrapper {
+ display: flex;
+ height: 100%;
+ flex-direction: column;
+ align-items: center;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button {
+ position: relative;
+ width: 36px;
+ height: 24px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button svg {
+ position: relative;
+ height: 24px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button {
+ margin-top: -6px;
+ align-items: flex-end;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button svg {
+ bottom: -4px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button {
+ margin-bottom: -6px;
+ align-items: flex-start;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button svg {
+ top: -4px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button:focus:enabled {
+ box-shadow: none;
+ outline: none;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button:focus {
+ box-shadow: none;
+ outline: none;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button:focus::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
+ outline: 2px solid transparent;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button::before {
+ content: "";
+ position: absolute;
+ display: block;
+ border-radius: 2px;
+ height: 16px;
+ min-width: 100%;
+ right: 0;
+ left: 0;
+ animation: components-button__appear-animation 0.1s ease;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf .block-editor-block-mover-button::before {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-inserter__toggle {
+ background: #1e1e1e;
+ color: #fff;
+ height: 24px;
+ margin: 6px 1px 6px 6px;
+ min-width: 24px;
+}
+.block-editor-list-view-leaf .block-editor-inserter__toggle:active {
+ color: #fff;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-select-button__anchor {
+ background: rgba(0, 0, 0, 0.1);
+ border-radius: 2px;
+ display: inline-block;
+ padding: 2px 6px;
+ margin: 0 8px;
+ max-width: 120px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-select-button__anchor {
+ background: rgba(0, 0, 0, 0.3);
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-select-button__lock {
+ line-height: 0;
+ width: 24px;
+ min-width: 24px;
+ margin-right: auto;
+ padding: 0;
+ vertical-align: middle;
+}
+
+.block-editor-list-view-block-select-button__description,
+.block-editor-list-view-appender__description {
+ display: none;
+}
+
+.block-editor-list-view-block__contents-cell .block-editor-list-view-block__contents-container,
+.block-editor-list-view-block__contents-cell .block-editor-list-view-appender__container,
+.block-editor-list-view-appender__cell .block-editor-list-view-block__contents-container,
+.block-editor-list-view-appender__cell .block-editor-list-view-appender__container {
+ display: flex;
+}
+
+.block-editor-list-view__expander {
+ height: 24px;
+ margin-right: 4px;
+ width: 24px;
+}
+
+.block-editor-list-view-leaf[aria-level] .block-editor-list-view__expander {
+ margin-right: 220px;
+}
+
+.block-editor-list-view-leaf:not([aria-level="1"]) .block-editor-list-view__expander {
+ margin-left: 4px;
+}
+
+.block-editor-list-view-leaf[aria-level="1"] .block-editor-list-view__expander {
+ margin-right: 0px;
+}
+
+.block-editor-list-view-leaf[aria-level="2"] .block-editor-list-view__expander {
+ margin-right: 24px;
+}
+
+.block-editor-list-view-leaf[aria-level="3"] .block-editor-list-view__expander {
+ margin-right: 52px;
+}
+
+.block-editor-list-view-leaf[aria-level="4"] .block-editor-list-view__expander {
+ margin-right: 80px;
+}
+
+.block-editor-list-view-leaf[aria-level="5"] .block-editor-list-view__expander {
+ margin-right: 108px;
+}
+
+.block-editor-list-view-leaf[aria-level="6"] .block-editor-list-view__expander {
+ margin-right: 136px;
+}
+
+.block-editor-list-view-leaf[aria-level="7"] .block-editor-list-view__expander {
+ margin-right: 164px;
+}
+
+.block-editor-list-view-leaf[aria-level="8"] .block-editor-list-view__expander {
+ margin-right: 192px;
+}
+
+.block-editor-list-view-leaf .block-editor-list-view__expander {
+ visibility: hidden;
+}
+
+.block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg {
+ visibility: visible;
+ transition: transform 0.2s ease;
+ transform: rotate(-90deg);
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg {
+ visibility: visible;
+ transform: rotate(0deg);
+ transition: transform 0.2s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-list-view-drop-indicator {
+ pointer-events: none;
+}
+.block-editor-list-view-drop-indicator .block-editor-list-view-drop-indicator__line {
+ background: var(--wp-admin-theme-color);
+ height: 1px;
+}
+
+.block-editor-list-view-drop-indicator:not([data-y-axis=middle][data-x-axis=right]) > .components-popover__content {
+ margin-right: 0;
+ border: none;
+ box-shadow: none;
+}
+
+.block-editor-list-view-placeholder {
+ padding: 0;
+ margin: 0;
+ height: 36px;
+}
+
+.modal-open .block-editor-media-replace-flow__options {
+ display: none;
+}
+
+.block-editor-media-replace-flow__indicator {
+ margin-right: 4px;
+}
+
+.block-editor-media-flow__url-input {
+ border-top: 1px solid #1e1e1e;
+ margin-top: 8px;
+ margin-left: -8px;
+ margin-right: -8px;
+ padding: 16px;
+}
+.block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label {
+ display: block;
+ top: 16px;
+ margin-bottom: 8px;
+}
+.block-editor-media-flow__url-input .block-editor-link-control {
+ width: 220px;
+}
+.block-editor-media-flow__url-input .block-editor-link-control .block-editor-url-input {
+ padding: 0;
+}
+.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;
+ white-space: nowrap;
+}
+.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-info {
+ white-space: nowrap;
+}
+.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: 0;
+ width: 100%;
+}
+.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions {
+ top: 0;
+ left: 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;
+ left: 10px;
+}
+
+.block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button {
+ margin-bottom: 0;
+}
+
+.block-editor-media-placeholder__url-input-form {
+ display: flex;
+}
+.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field {
+ width: 100%;
+ min-width: 200px;
+ flex-grow: 1;
+ border: none;
+ border-radius: 0;
+ margin: 2px;
+}
+@media (min-width: 600px) {
+ .block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field {
+ width: 300px;
+ }
+}
+
+.block-editor-media-placeholder__url-input-submit-button {
+ flex-shrink: 1;
+}
+
+.block-editor-media-placeholder__button {
+ margin-bottom: 0.5rem;
+}
+
+.block-editor-media-placeholder__cancel-button.is-link {
+ margin: 1em;
+ display: block;
+}
+
+.block-editor-media-placeholder.is-appender {
+ min-height: 0;
+}
+.block-editor-media-placeholder.is-appender:hover {
+ cursor: pointer;
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+
+.block-editor-multi-selection-inspector__card {
+ display: flex;
+ align-items: flex-start;
+ padding: 16px;
+}
+
+.block-editor-multi-selection-inspector__card-content {
+ flex-grow: 1;
+}
+
+.block-editor-multi-selection-inspector__card-title {
+ font-weight: 500;
+ margin-bottom: 5px;
+}
+
+.block-editor-multi-selection-inspector__card-description {
+ font-size: 13px;
+}
+
+.block-editor-multi-selection-inspector__card .block-editor-block-icon {
+ margin-right: -2px;
+ margin-left: 10px;
+ padding: 0 3px;
+ width: 36px;
+ height: 24px;
+}
+
+.block-editor-plain-text {
+ box-shadow: none;
+ font-family: inherit;
+ font-size: inherit;
+ color: inherit;
+ line-height: inherit;
+ border: none;
+ padding: 0;
+ margin: 0;
+ width: 100%;
+}
+
+.block-editor-responsive-block-control {
+ margin-bottom: 28px;
+ border-bottom: 1px solid #ccc;
+ padding-bottom: 14px;
+}
+.block-editor-responsive-block-control:last-child {
+ padding-bottom: 0;
+ border-bottom: 0;
+}
+
+.block-editor-responsive-block-control__title {
+ margin: 0;
+ margin-bottom: 0.6em;
+ margin-right: -3px;
+}
+
+.block-editor-responsive-block-control__label {
+ font-weight: 600;
+ margin-bottom: 0.6em;
+ margin-right: -3px;
+}
+
+.block-editor-responsive-block-control__inner {
+ margin-right: -1px;
+}
+
+.block-editor-responsive-block-control__toggle {
+ margin-right: 1px;
+}
+
+.block-editor-responsive-block-control .components-base-control__help {
+ 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;
+}
+
+.rich-text [data-rich-text-placeholder] {
+ pointer-events: none;
+}
+.rich-text [data-rich-text-placeholder]::after {
+ content: attr(data-rich-text-placeholder);
+ opacity: 0.62;
+}
+.rich-text:focus {
+ outline: none;
+}
+.rich-text:focus [data-rich-text-format-boundary] {
+ border-radius: 2px;
+}
+
+.block-editor-rich-text__editable > p:first-child {
+ margin-top: 0;
+}
+
+figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before {
+ opacity: 0.8;
+}
+
+.components-popover.block-editor-rich-text__inline-format-toolbar {
+ z-index: 99998;
+}
+.components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content {
+ width: auto;
+ min-width: auto;
+ margin-bottom: 8px;
+ box-shadow: none;
+ 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,
+.components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle {
+ min-width: 48px;
+ min-height: 48px;
+ padding-right: 12px;
+ padding-left: 12px;
+}
+
+.block-editor-rich-text__inline-format-toolbar-group .components-dropdown-menu__toggle {
+ justify-content: center;
+}
+
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon::after {
+ content: attr(aria-label);
+}
+
+[data-rich-text-script] {
+ display: inline;
+}
+[data-rich-text-script]::before {
+ content: ">";
+ background: yellow;
+}
+
+.block-editor-skip-to-selected-block {
+ position: absolute;
+ top: -9999em;
+}
+.block-editor-skip-to-selected-block:focus {
+ height: auto;
+ width: auto;
+ display: block;
+ font-size: 14px;
+ font-weight: 600;
+ padding: 15px 23px 14px;
+ background: #f1f1f1;
+ color: var(--wp-admin-theme-color);
+ line-height: normal;
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+ text-decoration: none;
+ outline: none;
+ z-index: 100000;
+}
+
+.block-editor-text-transform-control {
+ flex: 0 0 50%;
+}
+.block-editor-text-transform-control legend {
+ margin-bottom: 8px;
+}
+.block-editor-text-transform-control .block-editor-text-transform-control__buttons {
+ display: inline-flex;
+ margin-bottom: 24px;
+}
+.block-editor-text-transform-control .block-editor-text-transform-control__buttons .components-button.has-icon {
+ min-width: 24px;
+ padding: 0;
+ margin-left: 4px;
+}
+
+.block-editor-text-decoration-control {
+ flex: 0 0 50%;
+}
+.block-editor-text-decoration-control legend {
+ margin-bottom: 8px;
+}
+.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons {
+ display: inline-flex;
+ margin-bottom: 24px;
+}
+.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons .components-button.has-icon {
+ min-width: 24px;
+ padding: 0;
+ margin-left: 4px;
+}
+
+.block-editor-tool-selector__help {
+ margin-top: 8px;
+ margin-right: -8px;
+ margin-left: -8px;
+ margin-bottom: -8px;
+ padding: 16px;
+ border-top: 1px solid #ddd;
+ color: #757575;
+ min-width: 280px;
+}
+
+.block-editor-block-list__block .block-editor-url-input,
+.components-popover .block-editor-url-input,
+.block-editor-url-input {
+ flex-grow: 1;
+ position: relative;
+ padding: 1px;
+}
+.block-editor-block-list__block .block-editor-url-input input[type=text],
+.components-popover .block-editor-url-input input[type=text],
+.block-editor-url-input input[type=text] {
+ width: 100%;
+ padding: 8px 12px 8px 8px;
+ border: none;
+ border-radius: 0;
+ margin-right: 0;
+ margin-left: 0;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px;
+}
+@media (min-width: 600px) {
+ .block-editor-block-list__block .block-editor-url-input input[type=text],
+.components-popover .block-editor-url-input input[type=text],
+.block-editor-url-input input[type=text] {
+ width: 300px;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-block-list__block .block-editor-url-input input[type=text],
+.components-popover .block-editor-url-input input[type=text],
+.block-editor-url-input input[type=text] {
+ font-size: 13px;
+ }
+}
+.block-editor-block-list__block .block-editor-url-input input[type=text]::-ms-clear,
+.components-popover .block-editor-url-input input[type=text]::-ms-clear,
+.block-editor-url-input input[type=text]::-ms-clear {
+ display: none;
+}
+.block-editor-block-list__block .block-editor-url-input.is-full-width,
+.components-popover .block-editor-url-input.is-full-width,
+.block-editor-url-input.is-full-width {
+ width: 100%;
+}
+.block-editor-block-list__block .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],
+.components-popover .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],
+.block-editor-url-input.is-full-width .block-editor-url-input__input[type=text] {
+ width: 100%;
+}
+.block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,
+.components-popover .block-editor-url-input.is-full-width__suggestions,
+.block-editor-url-input.is-full-width__suggestions {
+ width: 100%;
+}
+.block-editor-block-list__block .block-editor-url-input .components-spinner,
+.components-popover .block-editor-url-input .components-spinner,
+.block-editor-url-input .components-spinner {
+ position: absolute;
+ left: 8px 8px 8px 12px;
+ bottom: 8px 8px 8px 12px8px1;
+ margin: 0;
+}
+
+.block-editor-url-input__input[type=text] {
+ 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) {
+ .block-editor-url-input__input[type=text] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-url-input__input[type=text] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.block-editor-url-input__input[type=text]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-url-input__input[type=text]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-url-input__input[type=text]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-url-input__input[type=text]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.block-editor-url-input__suggestions {
+ max-height: 200px;
+ transition: all 0.15s ease-in-out;
+ padding: 4px 0;
+ width: 302px;
+ overflow-y: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-url-input__suggestions {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-url-input__suggestions,
+.block-editor-url-input .components-spinner {
+ display: none;
+}
+@media (min-width: 600px) {
+ .block-editor-url-input__suggestions,
+.block-editor-url-input .components-spinner {
+ display: grid;
+ }
+}
+
+.block-editor-url-input__suggestion {
+ min-height: 36px;
+ height: auto;
+ color: #757575;
+ display: block;
+ font-size: 13px;
+ cursor: pointer;
+ background: #fff;
+ width: 100%;
+ border: none;
+ text-align: right;
+ box-shadow: none;
+}
+.block-editor-url-input__suggestion:hover {
+ background: #ddd;
+}
+.block-editor-url-input__suggestion:focus, .block-editor-url-input__suggestion.is-selected {
+ background: var(--wp-admin-theme-color-darker-20);
+ color: #fff;
+ outline: none;
+}
+
+.components-toolbar-group > .block-editor-url-input__button,
+.components-toolbar > .block-editor-url-input__button {
+ position: inherit;
+}
+
+.block-editor-url-input__button .block-editor-url-input__back {
+ margin-left: 4px;
+ overflow: visible;
+}
+.block-editor-url-input__button .block-editor-url-input__back::after {
+ content: "";
+ position: absolute;
+ display: block;
+ width: 1px;
+ height: 24px;
+ left: -1px;
+ background: #ddd;
+}
+
+.block-editor-url-input__button-modal {
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
+ border: 1px solid #ddd;
+ background: #fff;
+}
+
+.block-editor-url-input__button-modal-line {
+ display: flex;
+ flex-direction: row;
+ flex-grow: 1;
+ flex-shrink: 1;
+ min-width: 0;
+ align-items: flex-start;
+}
+.block-editor-url-input__button-modal-line .components-button {
+ flex-shrink: 0;
+ width: 36px;
+ height: 36px;
+}
+
+.block-editor-url-popover__additional-controls {
+ border-top: 1px solid #ddd;
+}
+
+.block-editor-url-popover__additional-controls > div[role=menu] .components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) > svg {
+ box-shadow: none;
+}
+
+.block-editor-url-popover__additional-controls div[role=menu] > .components-button {
+ padding-right: 12px;
+}
+
+.block-editor-url-popover__row {
+ display: flex;
+}
+
+.block-editor-url-popover__row > :not(.block-editor-url-popover__settings-toggle) {
+ flex-grow: 1;
+}
+
+.block-editor-url-popover .components-button.has-icon {
+ padding: 3px;
+}
+.block-editor-url-popover .components-button.has-icon > svg {
+ padding: 5px;
+ border-radius: 2px;
+ height: 30px;
+ width: 30px;
+}
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
+ outline: 2px solid transparent;
+}
+
+.block-editor-url-popover__settings-toggle {
+ flex-shrink: 0;
+ border-radius: 0;
+ border-right: 1px solid #ddd;
+ margin-right: 1px;
+}
+.block-editor-url-popover__settings-toggle[aria-expanded=true] .dashicon {
+ transform: rotate(-180deg);
+}
+
+.block-editor-url-popover__input-container .components-base-control:last-child,
+.block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field {
+ margin-bottom: 0;
+}
+
+.block-editor-url-popover__settings {
+ display: block;
+ padding: 16px;
+ border-top: 1px solid #ddd;
+}
+
+.block-editor-url-popover__link-editor,
+.block-editor-url-popover__link-viewer {
+ display: flex;
+}
+.block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field,
+.block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field {
+ margin-bottom: 0;
+}
+.block-editor-url-popover__link-editor .block-editor-url-input .components-spinner,
+.block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner {
+ bottom: 8px 8px 8px 12px1;
+}
+
+.block-editor-url-popover__link-viewer-url {
+ margin: 7px;
+ flex-grow: 1;
+ flex-shrink: 1;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ min-width: 150px;
+ max-width: 500px;
+}
+.block-editor-url-popover__link-viewer-url.has-invalid-link {
+ color: #cc1818;
+}
+
+.block-editor-warning {
+ align-items: center;
+ display: flex;
+ flex-wrap: wrap;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ padding: 1em;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
+ background-color: #fff;
+}
+.block-editor-warning .block-editor-warning__message {
+ line-height: 1.4;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ color: #1e1e1e;
+ margin: 0;
+}
+.block-editor-warning p.block-editor-warning__message.block-editor-warning__message {
+ min-height: auto;
+}
+.block-editor-warning .block-editor-warning__contents {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ flex-wrap: wrap;
+ align-items: baseline;
+ width: 100%;
+}
+.block-editor-warning .block-editor-warning__actions {
+ display: flex;
+ margin-top: 1em;
+}
+.block-editor-warning .block-editor-warning__action {
+ margin: 0 0 0 8px;
+}
+
+.block-editor-warning__secondary {
+ margin: auto 8px auto 0;
+}
+
+.components-popover.block-editor-warning__dropdown {
+ z-index: 99998;
+}
+
+.html-anchor-control .components-external-link {
+ display: block;
+ margin-top: 8px;
+}
+
+.block-editor-hooks__layout-controls {
+ display: flex;
+ margin-bottom: 16px;
+}
+.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit {
+ display: flex;
+ margin-left: 24px;
+}
+.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit svg {
+ margin: auto 8px 4px 0;
+}
+
+.block-editor-hooks__layout-controls-reset {
+ display: flex;
+ justify-content: flex-end;
+ margin-bottom: 24px;
+}
+
+.block-editor-hooks__layout-controls-helptext {
+ font-size: 12px;
+}
+
+.block-editor-hooks__flex-layout-justification-controls,
+.block-editor-hooks__flex-layout-orientation-controls {
+ margin-bottom: 12px;
+}
+.block-editor-hooks__flex-layout-justification-controls legend,
+.block-editor-hooks__flex-layout-orientation-controls legend {
+ margin-bottom: 8px;
+}
+
+.border-block-support-panel .single-column {
+ grid-column: span 1;
+}
+
+.dimensions-block-support-panel .single-column {
+ grid-column: span 1;
+}
+
+.typography-block-support-panel .components-font-appearance-control,
+.typography-block-support-panel .components-font-size-picker__controls,
+.typography-block-support-panel .block-editor-text-decoration-control__buttons,
+.typography-block-support-panel .block-editor-text-transform-control__buttons {
+ margin-bottom: 0;
+}
+.typography-block-support-panel .single-column {
+ grid-column: span 1;
+}
+
+.color-block-support-panel {
+ /* Increased specificity required to remove the slot wrapper's row gap */
+ /**
+ * The following styles replicate the separated border of the
+ * `ItemGroup` component but allows for hidden items. This is because
+ * to maintain the order of `ToolsPanel` controls, each `ToolsPanelItem`
+ * must at least render a placeholder which would otherwise interfere
+ * with the `:last-child` styles.
+ */
+ /**
+ * The following few styles fix the layout and spacing for the due to the
+ * introduced wrapper element by the `Item` component.
+ */
+}
+.color-block-support-panel .block-editor-contrast-checker {
+ /**
+ * Contrast checkers are forced to the bottom of the panel so all
+ * injected color controls can appear as a single item group without
+ * the contrast checkers suddenly appearing between items.
+ */
+ order: 9999;
+ grid-column: span 2;
+ margin-top: 16px;
+}
+.color-block-support-panel .block-editor-contrast-checker .components-notice__content {
+ margin-left: 0;
+}
+.color-block-support-panel.color-block-support-panel .color-block-support-panel__inner-wrapper {
+ row-gap: 0;
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item {
+ padding: 0;
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
+ border-left: 1px solid rgba(0, 0, 0, 0.1);
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.first {
+ border-top-right-radius: 2px;
+ border-top-left-radius: 2px;
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.last {
+ border-bottom-right-radius: 2px;
+ border-bottom-left-radius: 2px;
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item > div,
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item > div > button {
+ border-radius: inherit;
+}
+.color-block-support-panel .block-editor-panel-color-gradient-settings__color-indicator {
+ background: linear-gradient(45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
+}
+.color-block-support-panel .block-editor-tools-panel-color-dropdown {
+ display: block;
+ padding: 0;
+}
+.color-block-support-panel .block-editor-tools-panel-color-dropdown > button {
+ height: 46px;
+}
+.color-block-support-panel .block-editor-tools-panel-color-dropdown > button.is-open {
+ background: #f0f0f0;
+ color: var(--wp-admin-theme-color);
+}
+.color-block-support-panel .color-block-support-panel__item-group > div {
+ grid-column: span 2;
+ border-radius: inherit;
+}
+
+/**
+ * Block Toolbar
+ */
+.block-editor-block-toolbar {
+ display: flex;
+ flex-grow: 1;
+ width: 100%;
+ position: relative;
+ overflow-y: hidden;
+ overflow-x: auto;
+ transition: border-color 0.1s linear, box-shadow 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-toolbar {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@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;
+ margin-top: -1px;
+ margin-bottom: -1px;
+ border: 0;
+ border-left: 1px solid #ddd;
+}
+.block-editor-block-toolbar > :last-child,
+.block-editor-block-toolbar > :last-child .components-toolbar-group,
+.block-editor-block-toolbar > :last-child .components-toolbar {
+ border-left: none;
+}
+
+.block-editor-block-contextual-toolbar.has-parent:not(.is-fixed) {
+ margin-right: calc(48px + 8px);
+}
+.show-icon-labels .block-editor-block-contextual-toolbar.has-parent:not(.is-fixed) {
+ margin-right: 0;
+}
+
+.block-editor-block-parent-selector {
+ position: absolute;
+ top: -1px;
+ right: calc(-48px - 8px - 1px);
+}
+.show-icon-labels .block-editor-block-parent-selector {
+ position: relative;
+ right: auto;
+ top: auto;
+ margin-top: -1px;
+ margin-right: -1px;
+ margin-bottom: -1px;
+}
+
+.block-editor-block-toolbar__block-controls {
+ height: auto !important;
+ padding: 0 !important;
+ margin-right: -1px;
+}
+.block-editor-block-toolbar__block-controls .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
+.block-editor-block-toolbar__block-controls .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ width: 24px !important;
+ margin: 0 !important;
+}
+.block-editor-block-toolbar__block-controls .block-editor-block-mover {
+ margin-right: -6px;
+}
+.block-editor-block-toolbar__block-controls .block-editor-block-lock-toolbar {
+ margin-right: -6px !important;
+}
+.block-editor-block-toolbar__block-controls .components-toolbar-group {
+ padding: 0;
+}
+
+.block-editor-block-toolbar .components-toolbar-group,
+.block-editor-block-toolbar .components-toolbar,
+.block-editor-rich-text__inline-format-toolbar-group .components-toolbar-group,
+.block-editor-rich-text__inline-format-toolbar-group .components-toolbar {
+ display: flex;
+ flex-wrap: nowrap;
+}
+
+.block-editor-block-toolbar__slot {
+ display: inline-block;
+ line-height: 0;
+}
+@supports (position: sticky) {
+ .block-editor-block-toolbar__slot {
+ display: inline-flex;
+ }
+}
+
+.show-icon-labels .block-editor-block-toolbar .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels .block-editor-block-toolbar .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels .block-editor-block-toolbar .components-button.has-icon::after {
+ content: attr(aria-label);
+ font-size: 12px;
+}
+.show-icon-labels .components-accessible-toolbar .components-toolbar-group > div:first-child:last-child > .components-button.has-icon {
+ padding-right: 6px;
+ padding-left: 6px;
+}
+.show-icon-labels .block-editor-block-switcher {
+ border-left: 1px solid #1e1e1e;
+}
+.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle {
+ margin-right: 0;
+}
+.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
+.show-icon-labels .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ width: 0 !important;
+ height: 0 !important;
+}
+.show-icon-labels .block-editor-block-parent-selector__button .block-editor-block-icon {
+ width: 0;
+}
+.show-icon-labels .block-editor-block-toolbar__block-controls .block-editor-block-mover {
+ margin-right: 0;
+ white-space: nowrap;
+}
+.show-icon-labels .block-editor-block-mover-button {
+ padding-right: 8px !important;
+ padding-left: 8px !important;
+}
+.show-icon-labels .block-editor-block-mover__drag-handle.has-icon {
+ padding-right: 6px !important;
+ padding-left: 6px !important;
+ border-left: 1px solid #1e1e1e;
+}
+@media (min-width: 600px) {
+ .show-icon-labels .is-up-button.is-up-button.is-up-button {
+ border-bottom: 1px solid #1e1e1e;
+ margin-left: 0;
+ border-radius: 0;
+ }
+}
+.show-icon-labels .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button {
+ width: auto;
+}
+.show-icon-labels .components-toolbar,
+.show-icon-labels .components-toolbar-group {
+ flex-shrink: 1;
+}
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button + .components-button {
+ margin-right: 6px;
+}
+
+.block-editor-inserter {
+ display: inline-block;
+ background: none;
+ border: none;
+ padding: 0;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ line-height: 0;
+}
+@media (min-width: 782px) {
+ .block-editor-inserter {
+ position: relative;
+ }
+}
+
+.block-editor-inserter__content {
+ position: relative;
+}
+
+.block-editor-inserter__popover.is-quick .components-popover__content {
+ border: none;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > * {
+ border-right: 1px solid #ccc;
+ border-left: 1px solid #ccc;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *:first-child {
+ border-top: 1px solid #ccc;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *:last-child {
+ border-bottom: 1px solid #ccc;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *.components-button {
+ border: 1px solid #1e1e1e;
+}
+
+.block-editor-inserter__popover .block-editor-inserter__menu {
+ margin: -12px;
+}
+.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__tabs .components-tab-panel__tabs {
+ top: 60px;
+}
+.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__main-area {
+ overflow: visible;
+ height: auto;
+}
+.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__preview-container {
+ display: none;
+}
+
+.block-editor-inserter__toggle.components-button {
+ display: inline-flex;
+ align-items: center;
+ cursor: pointer;
+ border: none;
+ outline: none;
+ padding: 0;
+ transition: color 0.2s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-inserter__toggle.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-inserter__menu {
+ height: 100%;
+ position: relative;
+ overflow: visible;
+}
+
+.block-editor-inserter__main-area {
+ width: auto;
+ overflow-y: auto;
+ height: 100%;
+}
+@media (min-width: 782px) {
+ .block-editor-inserter__main-area {
+ width: 350px;
+ }
+}
+
+.block-editor-inserter__inline-elements {
+ margin-top: -1px;
+}
+
+.block-editor-inserter__menu.is-bottom::after {
+ border-bottom-color: #fff;
+}
+
+.components-popover.block-editor-inserter__popover {
+ z-index: 99999;
+}
+
+.block-editor-inserter__search {
+ background: #fff;
+ padding: 16px 16px 0 16px;
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.block-editor-inserter__search .components-search-control__icon {
+ left: 20px;
+}
+.block-editor-inserter__search .components-base-control__field {
+ margin-bottom: 0;
+}
+
+.block-editor-inserter__tabs {
+ display: flex;
+ flex-direction: column;
+}
+.block-editor-inserter__tabs .components-tab-panel__tabs {
+ position: sticky;
+ top: 64px;
+ background: #fff;
+ z-index: 1;
+ border-bottom: 1px solid #ddd;
+}
+.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;
+ z-index: 0;
+}
+
+.block-editor-inserter__panel-header {
+ display: inline-flex;
+ align-items: center;
+ padding: 16px 16px 0;
+}
+
+.block-editor-inserter__panel-header-patterns {
+ padding: 16px 16px 0;
+}
+
+.block-editor-inserter__panel-content {
+ padding: 16px;
+}
+
+.block-editor-inserter__panel-title,
+.block-editor-inserter__panel-title button {
+ margin: 0 0 0 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.block-editor-inserter__panel-dropdown select.components-select-control__input.components-select-control__input.components-select-control__input {
+ height: 36px;
+ line-height: 36px;
+}
+
+.block-editor-inserter__panel-dropdown select {
+ border: none;
+}
+
+.block-editor-inserter__block-list {
+ flex-grow: 1;
+ position: relative;
+}
+
+.block-editor-inserter__reusable-blocks-panel {
+ position: relative;
+ text-align: left;
+}
+
+.block-editor-inserter__manage-reusable-blocks {
+ display: inline-block;
+ margin: 16px;
+}
+
+.block-editor-inserter__no-results {
+ padding: 32px;
+ text-align: center;
+}
+
+.block-editor-inserter__no-results-icon {
+ fill: #949494;
+}
+
+.block-editor-inserter__child-blocks {
+ padding: 0 16px;
+}
+
+.block-editor-inserter__parent-block-header {
+ display: flex;
+ align-items: center;
+}
+.block-editor-inserter__parent-block-header h2 {
+ font-size: 13px;
+}
+.block-editor-inserter__parent-block-header .block-editor-block-icon {
+ margin-left: 8px;
+}
+
+.block-editor-inserter__preview-container {
+ display: none;
+ width: 300px;
+ background: #fff;
+ border-radius: 2px;
+ border: 1px solid #ddd;
+ position: absolute;
+ top: 16px;
+ right: calc(100% + 16px);
+ max-height: calc(100% - 32px);
+ overflow-y: hidden;
+}
+@media (min-width: 782px) {
+ .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 {
+ min-height: 144px;
+ background: #f0f0f0;
+ display: grid;
+ 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: #757575;
+ background: #f0f0f0;
+}
+
+.block-editor-inserter__tips {
+ border-top: 1px solid #ddd;
+ padding: 16px;
+ flex-shrink: 0;
+ position: relative;
+}
+
+.block-editor-inserter__manage-reusable-blocks-container {
+ padding: 16px;
+}
+
+.block-editor-inserter__quick-inserter {
+ width: 100%;
+ max-width: 100%;
+}
+@media (min-width: 782px) {
+ .block-editor-inserter__quick-inserter {
+ width: 350px;
+ }
+}
+
+.block-editor-inserter__quick-inserter-results .block-editor-inserter__panel-header {
+ height: 0;
+ padding: 0;
+ float: right;
+}
+
+.block-editor-inserter__quick-inserter.has-search .block-editor-inserter__panel-content,
+.block-editor-inserter__quick-inserter.has-expand .block-editor-inserter__panel-content {
+ padding: 16px;
+}
+
+.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-gap: 8px;
+}
+.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ margin-bottom: 0;
+}
+.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-preview__container {
+ min-height: 100px;
+}
+
+.block-editor-inserter__quick-inserter-separator {
+ border-top: 1px solid #ddd;
+}
+
+.block-editor-inserter__popover.is-quick > .components-popover__content > div {
+ padding: 0;
+}
+
+.block-editor-inserter__quick-inserter-expand.components-button {
+ display: block;
+ background: #1e1e1e;
+ color: #fff;
+ width: 100%;
+ height: 44px;
+ border-radius: 0;
+}
+.block-editor-inserter__quick-inserter-expand.components-button:hover {
+ color: #fff;
+}
+.block-editor-inserter__quick-inserter-expand.components-button:active {
+ color: #ccc;
+}
+.block-editor-inserter__quick-inserter-expand.components-button.components-button:focus:not(:disabled) {
+ box-shadow: none;
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+
+.block-editor-block-patterns-explorer__sidebar {
+ position: absolute;
+ top: 60px;
+ right: 0;
+ bottom: 0;
+ width: 280px;
+ padding: 24px 32px 32px;
+ overflow-x: visible;
+ overflow-y: scroll;
+}
+.block-editor-block-patterns-explorer__sidebar__categories-list__item {
+ display: block;
+ width: 100%;
+ height: 48px;
+ text-align: right;
+}
+.block-editor-block-patterns-explorer__search {
+ margin-bottom: 32px;
+}
+.block-editor-block-patterns-explorer__search-results-count {
+ padding-bottom: 32px;
+}
+.block-editor-block-patterns-explorer__list {
+ margin-right: 248px;
+}
+.block-editor-block-patterns-explorer .block-editor-block-patterns-list {
+ display: grid;
+ grid-gap: 32px;
+ grid-template-columns: repeat(1, 1fr);
+}
+@media (min-width: 1080px) {
+ .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
+ grid-template-columns: repeat(2, 1fr);
+ }
+}
+@media (min-width: 1440px) {
+ .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
+ grid-template-columns: repeat(3, 1fr);
+ }
+}
+.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ min-height: 240px;
+}
+.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-preview__container {
+ height: inherit;
+ min-height: 100px;
+ max-height: 800px;
+}
+
+.block-editor-post-preview__dropdown {
+ padding: 0;
+}
+
+.block-editor-post-preview__button-resize.block-editor-post-preview__button-resize {
+ padding-right: 40px;
+}
+.block-editor-post-preview__button-resize.block-editor-post-preview__button-resize.has-icon {
+ padding-right: 8px;
+}
+
+.block-editor-post-preview__dropdown-content .components-popover__content {
+ overflow-y: visible;
+}
+.block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:first-child {
+ padding-bottom: 8px;
+}
+.block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:last-child {
+ margin-bottom: 0;
+}
+.block-editor-post-preview__dropdown-content .components-menu-group + .components-menu-group {
+ padding: 8px;
+}
+
+@media (min-width: 600px) {
+ .edit-post-header__settings .editor-post-preview,
+.edit-site-header__actions .editor-post-preview {
+ display: none;
+ }
+}
+
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle {
+ transition: opacity 0.1s linear;
+ }
+}
+@media (min-width: 600px) and (prefers-reduced-motion: reduce) {
+ .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-save-draft,
+.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle {
+ opacity: 0;
+ }
+ .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle.is-opened {
+ opacity: 1;
+ }
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/style-rtl.min.css b/static/wp-includes/css/dist/block-editor/style-rtl.min.css
new file mode 100755
index 0000000..f68b738
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-editor-autocompleters__block{white-space:nowrap}.block-editor-autocompleters__block .block-editor-block-icon{margin-left:8px}.block-editor-autocompleters__link{white-space:nowrap}.block-editor-autocompleters__link .block-editor-block-icon{margin-left:8px}.block-editor-block-alignment-control__menu-group .components-menu-item__info{margin-top:0}.block-editor-block-alignment-matrix-control__popover .components-popover__content{min-width:0;width:auto}.block-editor-block-alignment-matrix-control__popover .components-popover__content>div{padding:8px}.block-editor-block-icon{display:flex;align-items:center;justify-content:center;width:24px;height:24px}.block-editor-block-icon.has-colors svg{fill:currentColor}@media (forced-colors:active){.block-editor-block-icon.has-colors svg{fill:CanvasText}}.block-editor-block-icon svg{min-width:20px;min-height:20px;max-width:24px;max-height:24px}.block-editor-block-inspector p{margin-top:0}.block-editor-block-inspector h2,.block-editor-block-inspector h3{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.block-editor-block-inspector .components-base-control{margin-bottom:24px}.block-editor-block-inspector .components-base-control:last-child{margin-bottom:8px}.block-editor-block-inspector .components-panel__body{border:none;border-top:1px solid #e0e0e0}.block-editor-block-inspector .block-editor-block-card{padding:16px}.block-editor-block-inspector__no-blocks{display:block;font-size:13px;background:#fff;padding:32px 16px;text-align:center}.block-editor-block-styles .block-editor-block-list__block{margin:0}.block-editor-block-list__layout{position:relative}.block-editor-block-list__layout.is-navigate-mode{cursor:default}.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]):after,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:after,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{position:absolute;z-index:1;pointer-events:none;content:"";top:1px;bottom:1px;right:1px;left:1px;box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:1px;outline:2px solid transparent}.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-highlighted~.is-multi-selected:after,.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]):after,.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:after,.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{box-shadow:0 0 0 1px #fff}.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-highlighted~.is-multi-selected .components-placeholder ::selection,.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]) .components-placeholder ::selection,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered .components-placeholder ::selection,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected .components-placeholder ::selection{background:transparent}.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:not(.is-selected):after{box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:1px solid transparent}.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected:before{content:"";position:absolute;z-index:0;pointer-events:none;transition:border-color .1s linear,border-style .1s linear,box-shadow .1s linear;left:0;right:0;top:-14px;border-radius:2px;border-top:4px solid #ccc}.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected:after{content:none}.block-editor-block-list__layout .is-block-moving-mode.can-insert-moving-block.block-editor-block-list__block.is-selected:before{border-color:var(--wp-admin-theme-color)}.is-block-moving-mode.block-editor-block-list__block-selection-button{opacity:0;font-size:1px;height:1px;padding:0}.block-editor-block-list__layout .block-editor-block-list__block{position:relative;overflow-wrap:break-word}.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel *{z-index:1}.block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui{margin:-10px 0 12px}.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui{margin:0 0 12px;width:100%}.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice{margin-right:0;margin-left:0}.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content{font-size:13px}.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus{outline:none}.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after{position:absolute;z-index:1;pointer-events:none;content:"";top:1px;bottom:1px;right:1px;left:1px;box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:1px;outline:2px solid transparent}.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff}.block-editor-block-list__layout .block-editor-block-list__block:after{content:"";pointer-events:none;position:absolute;top:0;left:0;bottom:0;right:0;border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus) transparent}.block-editor-block-list__layout .block-editor-block-list__block.has-warning{min-height:48px}.block-editor-block-list__layout .block-editor-block-list__block.has-warning>*{pointer-events:none;-webkit-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{content:"";position:absolute;top:0;left:0;bottom:0;right:0;border-radius:2px;background-color:hsla(0,0%,100%,.4)}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected:after{background-color:transparent}.block-editor-block-list__layout .block-editor-block-list__block.is-reusable>.block-editor-inner-blocks>.block-editor-block-list__layout.has-overlay:after{display:none}.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{display:block}.block-editor-block-list__layout .block-editor-block-list__block.is-reusable.has-child-selected:after{box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-block-list__layout .block-editor-block-list__block[data-clear=true]{float:none}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered{cursor:default}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered:after{top:1px;right:1px;left:1px;bottom:1px;box-shadow:0 0 0 1px var(--wp-admin-theme-color);border-radius:1px}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected{cursor:unset}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);top:1px;right:1px;left:1px;bottom:1px;border-radius:1px}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:focus:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){opacity:.5;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){transition-duration:0s;transition-delay:0s}}.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-multi-selected,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-selected{opacity:1}.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity{opacity:.5;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity{transition-duration:0s;transition-delay:0s}}.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.has-child-selected,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity .block-editor-block-list__block,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity .is-active-entity .block-editor-block-list__block,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity:not(.has-child-selected) .block-editor-block-list__block{opacity:1}.wp-block.alignleft,.wp-block.alignright,.wp-block[data-align=left]>*,.wp-block[data-align=right]>*{z-index:21}.wp-site-blocks>[data-align=left]{float:right;margin-left:2em}.wp-site-blocks>[data-align=right]{float:left;margin-right:2em}.wp-site-blocks>[data-align=center]{justify-content:center;margin-right:auto;margin-left:auto}.block-editor-block-list .block-editor-inserter{margin:8px;cursor:move;cursor:grab}@keyframes block-editor-inserter__toggle__fade-in-animation{0%{opacity:0}to{opacity:1}}.wp-block .block-list-appender .block-editor-inserter__toggle{animation:block-editor-inserter__toggle__fade-in-animation .1s ease;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.wp-block .block-list-appender .block-editor-inserter__toggle{animation-duration:1ms;animation-delay:0s}}.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender{display:none}.block-editor-block-list__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__block-html-textarea{display:block;margin:0;padding:12px;width:100%;border:none;outline:none;border-radius:2px;box-shadow:inset 0 0 0 1px #1e1e1e;resize:none;overflow:hidden;font-family:Menlo,Consolas,monaco,monospace;font-size:15px;line-height:1.5;transition:padding .2s linear}@media (prefers-reduced-motion:reduce){.block-editor-block-list__block .block-editor-block-list__block-html-textarea{transition-duration:0s;transition-delay:0s}}.block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.block-editor-block-list__block .block-editor-warning{z-index:5;position:relative}.block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning{margin-bottom:auto}.block-editor-block-list__insertion-point{position:absolute}.block-editor-block-list__insertion-point-indicator{position:absolute;background:var(--wp-admin-theme-color)}.block-editor-block-list__insertion-point.is-vertical>.block-editor-block-list__insertion-point-indicator{top:50%;height:1px}.block-editor-block-list__insertion-point.is-horizontal>.block-editor-block-list__insertion-point-indicator{top:0;left:0;right:50%;width:1px}.block-editor-block-list__insertion-point-inserter{display:none;position:absolute;justify-content:center;top:calc(50% - 12px);right:calc(50% - 12px)}@media (min-width:480px){.block-editor-block-list__insertion-point-inserter{display:flex}}.block-editor-block-list__block-popover-inserter{position:absolute;top:-9999em;margin-bottom:14px}.block-editor-block-list__block-popover-inserter.is-visible{position:static}.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon,.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon{background:#1e1e1e;border-radius:2px;color:#fff;padding:0;min-width:24px;height:24px}.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon:hover{color:#fff;background:var(--wp-admin-theme-color)}.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon{background:var(--wp-admin-theme-color)}.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover{background:#1e1e1e}.block-editor-block-contextual-toolbar{display:inline-flex;border:1px solid #1e1e1e;border-radius:2px;background-color:#fff}.block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar,.block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar-group{border-left-color:#1e1e1e}.block-editor-block-contextual-toolbar.is-fixed{position:sticky;top:0;width:100%;z-index:31;min-height:48px;display:block;border:none;border-bottom:1px solid #e0e0e0;border-radius:0}.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar,.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar-group{border-left-color:#e0e0e0}.block-editor-block-contextual-toolbar .block-editor-block-mover-button{overflow:hidden}.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button{min-width:24px;width:24px}.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button svg{min-width:24px}.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button:focus:before{right:0!important;min-width:0;width:100%}@media (min-width:600px){.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-up-button svg{top:5px}.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-down-button svg{bottom:5px}}.block-editor-block-list__block-selection-button{display:inline-flex;padding:0 12px;z-index:22;border-radius:2px;background-color:#1e1e1e;font-size:13px;height:48px}.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content{margin:auto;display:inline-flex;align-items:center}.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content>.components-flex__item{margin-left:6px}.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle{cursor:grab;padding:0;height:24px;min-width:24px;margin-right:-2px}.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle svg{min-width:18px;min-height:18px}.block-editor-block-list__block-selection-button .block-editor-block-icon{font-size:13px;color:#fff;height:48px}.block-editor-block-list__block-selection-button .components-button{min-width:36px;color:#fff;height:48px;display:flex}.block-editor-block-list__block-selection-button .components-button:focus{box-shadow:none;border:none}.block-editor-block-list__block-selection-button .components-button:active{color:#fff}.block-editor-block-list__block-selection-button .block-selection-button_select-button.components-button{padding:0}.block-editor-block-list__insertion-point-popover.is-without-arrow{z-index:28;position:absolute;pointer-events:none}.block-editor-block-list__insertion-point-popover.is-without-arrow *{pointer-events:none}.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter,.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter *{pointer-events:all}.block-editor-block-list__insertion-point-popover.is-without-arrow .components-popover__content.components-popover__content{background:none;border:none;box-shadow:none;overflow-y:visible;margin-right:0}@keyframes hide-during-dragging{to{position:fixed;transform:translate(-9999px,9999px)}}.components-popover.block-editor-block-list__block-popover{z-index:31;position:absolute}.components-popover.block-editor-block-list__block-popover .components-popover__content{margin:0!important;min-width:auto;width:max-content;background:none;border:none;box-shadow:none;overflow-y:visible;pointer-events:none}.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar,.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__empty-block-inserter{pointer-events:all}.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar,.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button{margin-top:12px;margin-bottom:12px}.components-popover.block-editor-block-list__block-popover.is-insertion-point-visible{visibility:hidden}.is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover{opacity:0;animation:hide-during-dragging 1ms linear forwards}.is-dragging-components-draggable .components-tooltip{display:none}.block-editor-block-toolbar .components-toolbar-group,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot{padding-right:6px;padding-left:6px}.block-editor-block-toolbar .components-toolbar-group .components-button,.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button.has-icon.has-icon,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button.has-icon.has-icon,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button.has-icon.has-icon{min-width:36px;padding-right:6px;padding-left:6px}.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon svg,.block-editor-block-toolbar .components-toolbar-group .components-button svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button.has-icon.has-icon svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button.has-icon.has-icon svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button svg,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button.has-icon.has-icon svg,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button svg{min-width:24px}.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon:before,.block-editor-block-toolbar .components-toolbar-group .components-button:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button.has-icon.has-icon:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button.has-icon.has-icon:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button:before,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button.has-icon.has-icon:before,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button:before{right:2px;left:2px}.is-vertical .block-list-appender{width:24px;margin-left:auto;margin-top:12px;margin-right:12px}.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-lock-modal{z-index:1000001}@media (min-width:600px){.block-editor-block-lock-modal .components-modal__frame{max-width:480px}}.block-editor-block-lock-modal__checklist{margin:0}.block-editor-block-lock-modal__options-title{padding:12px 0}.block-editor-block-lock-modal__options-title .components-checkbox-control__label{font-weight:600}.block-editor-block-lock-modal__options-title .components-base-control__field{align-items:center;display:flex;margin:0}.block-editor-block-lock-modal__checklist-item{margin-bottom:0;padding:12px 32px 12px 0}.block-editor-block-lock-modal__checklist-item .components-base-control__field{align-items:center;display:flex;margin:0}.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label{display:flex;align-items:center;justify-content:space-between;flex-grow:1}.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label svg{margin-left:12px;fill:#1e1e1e}.block-editor-block-lock-modal__checklist-item:hover{background-color:#f0f0f0;border-radius:2px}.block-editor-block-lock-modal__actions{margin-top:24px}.block-editor-block-lock-toolbar .components-button.has-icon{min-width:36px!important;padding-right:0!important}.block-editor-block-lock-toolbar .components-button.has-icon:focus:before{left:8px!important}.block-editor-block-breadcrumb{list-style:none;padding:0;margin:0}.block-editor-block-breadcrumb li{display:inline-flex;margin:0}.block-editor-block-breadcrumb li .block-editor-block-breadcrumb__separator{fill:currentColor;margin-right:-4px;margin-left:-4px;transform:scaleX(-1)}.block-editor-block-breadcrumb li:last-child .block-editor-block-breadcrumb__separator{display:none}.block-editor-block-breadcrumb__button.components-button{height:24px;line-height:24px;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{box-shadow:none}.block-editor-block-breadcrumb__button.components-button:focus:before{content:"";display:block;position:absolute;border-radius:2px;top:1px;left:1px;bottom:1px;right:1px;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.block-editor-block-breadcrumb__current{cursor:default}.block-editor-block-breadcrumb__button.components-button,.block-editor-block-breadcrumb__current{color:#1e1e1e;padding:0 8px;font-size:inherit}.block-editor-block-card{display:flex;align-items:flex-start}.block-editor-block-card__content{flex-grow:1;margin-bottom:4px}.block-editor-block-card__title{font-weight:500}.block-editor-block-card__title.block-editor-block-card__title{line-height:24px;margin:0 0 4px}.block-editor-block-card__description{font-size:13px}.block-editor-block-card .block-editor-block-icon{flex:0 0 24px;margin-right:0;margin-left:12px;width:24px;height:24px}.block-editor-block-compare{height:auto}.block-editor-block-compare__wrapper{display:flex;padding-bottom:16px}.block-editor-block-compare__wrapper>div{display:flex;justify-content:space-between;flex-direction:column;width:50%;padding:0 0 0 16px;min-width:200px;max-width:600px}.block-editor-block-compare__wrapper>div button{float:left}.block-editor-block-compare__wrapper .block-editor-block-compare__converted{border-right:1px solid #ddd;padding-right:15px;padding-left:0}.block-editor-block-compare__wrapper .block-editor-block-compare__html{font-family:Menlo,Consolas,monaco,monospace;font-size:12px;color:#1e1e1e;border-bottom:1px solid #ddd;padding-bottom:15px;line-height:1.7}.block-editor-block-compare__wrapper .block-editor-block-compare__html span{background-color:#e6ffed;padding-top:3px;padding-bottom:3px}.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added{background-color:#acf2bd}.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed{background-color:#cc1818}.block-editor-block-compare__wrapper .block-editor-block-compare__preview{padding:16px 0 0}.block-editor-block-compare__wrapper .block-editor-block-compare__preview p{font-size:12px;margin-top:0}.block-editor-block-compare__wrapper .block-editor-block-compare__action{margin-top:16px}.block-editor-block-compare__wrapper .block-editor-block-compare__heading{font-size:1em;font-weight:400;margin:.67em 0}.block-editor-block-content-overlay.overlay-active:before{content:"";position:absolute;top:0;right:0;width:100%;height:100%;background:transparent;border:none;border-radius:2px;z-index:10}.block-editor-block-content-overlay.parent-highlighted.overlay-active:before,.block-editor-block-content-overlay:hover:not(.is-dragging-blocks).overlay-active:before{background:rgba(var(--wp-admin-theme-color--rgb),.1);box-shadow:0 0 0 1px var(--wp-admin-theme-color) inset}.block-editor-block-content-overlay.overlay-active:not(.is-dragging-blocks) *{pointer-events:none}.block-editor-block-content-overlay.is-dragging-blocks{box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-block-draggable-chip-wrapper{position:absolute;top:-24px;right:0}.block-editor-block-draggable-chip{background-color:#1e1e1e;border-radius:2px;box-shadow:0 6px 8px rgba(0,0,0,.3);color:#fff;cursor:grabbing;display:inline-flex;height:48px;padding:0 13px;-webkit-user-select:none;user-select:none}.block-editor-block-draggable-chip svg{fill:currentColor}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content{margin:auto;justify-content:flex-start}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content>.components-flex__item{margin-left:6px}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content>.components-flex__item:last-child{margin-left:0}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content .block-editor-block-icon svg{min-width:18px;min-height:18px}.block-editor-block-draggable-chip .components-flex__item{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.block-editor-block-list__layout .is-dragging{background-color:currentColor!important;opacity:.05!important;border-radius:2px!important;pointer-events:none!important}.block-editor-block-list__layout .is-dragging::selection{background:transparent!important}.block-editor-block-list__layout .is-dragging:after{content:none!important}.block-editor-block-mobile-toolbar{display:flex;flex-direction:row;border-left:1px solid #ddd}.block-editor-block-mobile-toolbar .block-editor-block-mover-button{width:36px;height:36px;border-radius:2px;padding:3px;margin:0;justify-content:center;align-items:center}.block-editor-block-mobile-toolbar .block-editor-block-mover-button .dashicon{margin:auto}.block-editor-block-mobile-toolbar .block-editor-block-mover{display:flex;margin-left:auto}.block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover-button{float:right}.block-editor-block-mover-button__description{display:none}.block-editor-block-mover-button.has-icon{padding:0}.block-editor-block-mover{display:inline-flex;flex-direction:row}.block-editor-block-mover .block-editor-block-mover__move-button-container,.block-editor-block-mover .components-toolbar{flex:1;flex-direction:row;border-left:none!important;padding:0}@media (min-width:600px){.block-editor-block-mover .block-editor-block-mover__move-button-container,.block-editor-block-mover .components-toolbar{flex-direction:column}}.block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container,.block-editor-block-mover.is-horizontal .components-toolbar{flex-direction:row}.block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button{padding-left:0;padding-right:0;min-width:36px}@media (min-width:600px){.block-editor-block-mover .block-editor-block-mover-button{height:24px;width:42px;padding-left:11px!important;padding-right:6px!important}.block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button{min-width:42px}}@media (min-width:600px){.block-editor-block-mover .block-editor-block-mover-button:before{right:8px!important;left:8px!important}}.block-editor-block-mover .block-editor-block-mover__drag-handle{width:24px;cursor:grab;min-width:24px!important;padding:0!important}.block-editor-block-mover .block-editor-block-mover__drag-handle:focus:before{right:0!important;left:0!important}@media (min-width:600px){.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button,.block-editor-block-mover .components-toolbar .block-editor-block-mover-button{margin:0 0 0 auto}.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% - 1px)}.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% - 1px)}}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon{height:48px;width:24px;padding-right:0;padding-left:0}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon:before{top:1px;bottom:1px;min-width:0;width:auto;height:auto}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon svg{margin-right:0;margin-left:-8px;margin-bottom:0}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon:before{right:0!important;left:0!important}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon svg{margin-right:-8px;margin-left:0;margin-top:0}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon:before{right:0!important;left:0!important;width:calc(100% + 1px)}.block-editor-block-navigation__container{min-width:280px}.block-editor-block-navigation__label{margin:0 0 12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500}.block-editor-block-parent-selector{background:#fff;border-radius:2px}.block-editor-block-parent-selector .block-editor-block-parent-selector__button{width:48px;height:48px;border:1px solid #1e1e1e;border-radius:2px}.block-editor-block-patterns-list__list-item{cursor:pointer;margin-bottom:24px}.block-editor-block-patterns-list__list-item.is-placeholder{min-height:100px}.block-editor-block-patterns-list__list-item[draggable=true] .block-editor-block-preview__container{cursor:grab}.block-editor-block-patterns-list__item{height:100%}.block-editor-block-patterns-list__item .block-editor-block-preview__container{display:flex;align-items:center;overflow:hidden;border-radius:2px;border:1px solid #f0f0f0}.block-editor-block-patterns-list__item .block-editor-block-patterns-list__item-title{padding-top:8px;font-size:12px;text-align:center}.block-editor-block-patterns-list__item:hover .block-editor-block-preview__container{border:1px solid var(--wp-admin-theme-color)}.block-editor-block-patterns-list__item:focus .block-editor-block-preview__container{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-block-patterns-list__item:focus .block-editor-block-patterns-list__item-title,.block-editor-block-patterns-list__item:hover .block-editor-block-patterns-list__item-title{color:var(--wp-admin-theme-color)}.block-editor-block-preview__container{position:relative;width:100%;overflow:hidden}.block-editor-block-preview__container .block-editor-block-preview__content{top:0;right:0;transform-origin:top right;text-align:initial;margin:0;overflow:visible;min-height:auto}.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-drop-zone,.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-list__insertion-point,.block-editor-block-preview__container .block-editor-block-preview__content .block-list-appender,.block-editor-block-preview__container .block-editor-block-preview__content .reusable-block-indicator,.block-editor-block-preview__content-iframe .block-list-appender{display:none}.block-editor-block-preview__live-content *{pointer-events:none}.block-editor-block-preview__live-content .block-list-appender{display:none}.block-editor-block-preview__live-content .components-button:disabled{opacity:1}.block-editor-block-preview__live-content .block-editor-block-list__block[data-empty=true],.block-editor-block-preview__live-content .components-placeholder{display:none}.block-editor-block-settings-menu__popover .components-dropdown-menu__menu{padding:0}.block-editor-block-styles+.default-style-picker__default-switcher{margin-top:16px}.block-editor-block-styles__preview-panel{display:none;position:absolute;left:16px;right:auto;z-index:90}@media (min-width:782px){.block-editor-block-styles__preview-panel{display:block}}.block-editor-block-styles__preview-panel .block-editor-inserter__preview-container{right:auto;left:auto;top:auto;position:static}.block-editor-block-styles__preview-panel .block-editor-block-card__title.block-editor-block-card__title{margin:0}.block-editor-block-styles__preview-panel .block-editor-block-icon{display:none}.block-editor-block-styles__variants{display:flex;flex-wrap:wrap;justify-content:space-between;gap:8px}.block-editor-block-styles__variants .block-editor-block-styles__item{color:#2f2f2f;box-shadow:inset 0 0 0 1px #ccc;display:inline-block;width:calc(50% - 4px)}.block-editor-block-styles__variants .block-editor-block-styles__item:focus,.block-editor-block-styles__variants .block-editor-block-styles__item:hover{color:var(--wp-admin-theme-color);box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color)}.block-editor-block-styles__variants .block-editor-block-styles__item.is-active,.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover{background-color:#2f2f2f;box-shadow:none}.block-editor-block-styles__variants .block-editor-block-styles__item.is-active .block-editor-block-styles__item-text,.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover .block-editor-block-styles__item-text{color:#fff}.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:focus{box-shadow:inset 0 0 0 1px #fff,0 0 0 2px var(--wp-admin-theme-color)}.block-editor-block-styles__variants .block-editor-block-styles__item-text{word-break:break-all;white-space:normal;text-align:start;text-align-last:center}.block-editor-block-styles__block-preview-container,.block-editor-block-styles__block-preview-container *{box-sizing:border-box!important}.block-editor-block-switcher{position:relative;padding:0 6px}.block-editor-block-switcher .components-button.components-dropdown-menu__toggle.has-icon.has-icon{min-width:36px}.block-editor-block-switcher__no-switcher-icon,.block-editor-block-switcher__toggle{position:relative}.components-button.block-editor-block-switcher__no-switcher-icon,.components-button.block-editor-block-switcher__toggle{margin:0;display:block;height:48px}.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,.components-button.block-editor-block-switcher__toggle .block-editor-block-icon{margin:auto}.block-editor-block-switcher__toggle-text{margin-right:8px}.show-icon-labels .block-editor-block-switcher__toggle-text{display:none}.show-icon-labels .block-editor-block-toolbar .block-editor-block-switcher .components-button.has-icon:after{font-size:14px}.block-editor-block-switcher__popover{margin-right:6px}.components-button.block-editor-block-switcher__no-switcher-icon{display:flex;padding:6px 12px!important}.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon{margin-left:auto;margin-right:auto;min-width:24px!important}.components-button.block-editor-block-switcher__no-switcher-icon:disabled{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}.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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__no-switcher-icon.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;min-width:100%}.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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__no-switcher-icon.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;left:8px;bottom:8px;right:8px}.components-popover.block-editor-block-switcher__popover .components-popover__content{min-width:300px}.components-popover.block-editor-block-switcher__popover .components-popover__content>div{min-width:auto;display:flex;background:#fff;padding:0}.components-popover.block-editor-block-switcher__popover .components-popover__content>div .components-menu-group{margin:0}.block-editor-block-switcher__popover .components-popover__content .block-editor-block-styles{margin:0 -3px}.block-editor-block-switcher__popover .components-popover__content .components-panel__body{border:0;position:relative;z-index:1}.block-editor-block-switcher__popover .components-popover__content .components-panel__body+.components-panel__body{border-top:1px solid #e0e0e0}.block-editor-block-switcher__popover__preview__parent .block-editor-block-switcher__popover__preview__container{position:absolute;top:-12px;right:calc(100% + 32px)}.block-editor-block-switcher__preview__popover{display:none}.block-editor-block-switcher__preview__popover.components-popover{margin-right:4px;margin-top:11px}@media (min-width:782px){.block-editor-block-switcher__preview__popover{display:block}}.block-editor-block-switcher__preview__popover .components-popover__content{box-shadow:none;border:1px solid #1e1e1e;background:#fff;border-radius:2px}.block-editor-block-switcher__preview__popover .block-editor-block-switcher__preview{width:300px;height:auto;max-height:500px;padding:16px}.block-editor-block-switcher__preview-title{margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon{min-width:36px}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon,.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle{height:48px}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,.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;height:48px}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform{padding:12px}.block-editor-block-switcher__preview-patterns-container{padding-bottom:16px}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item{margin-top:16px}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-preview__container{cursor:pointer}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item{height:100%;border-radius:2px;transition:all .05s ease-in-out;position:relative;border:1px solid transparent}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:focus,.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) #1e1e1e}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item .block-editor-block-switcher__preview-patterns-container-list__item-title{padding:4px;font-size:12px;text-align:center;cursor:pointer}.block-editor-block-types-list>[role=presentation]{overflow:hidden;display:flex;flex-wrap:wrap}.block-editor-block-variation-picker .components-placeholder__instructions{margin-bottom:0}.block-editor-block-variation-picker .components-placeholder__fieldset{flex-direction:column}.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset{max-width:90%}.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations{display:flex;justify-content:flex-start;flex-direction:row;flex-wrap:wrap;width:100%;margin:16px 0;padding:0;list-style:none}.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li{list-style:none;margin:8px 0 0 20px;flex-shrink:1;width:75px;text-align:center}.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li button{display:inline-flex;margin-left:0}.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;line-height:1.4}.block-editor-block-variation-picker__variation{width:100%}.block-editor-block-variation-picker__variation.components-button.has-icon{justify-content:center;width:auto}.block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary{background-color:#fff}.block-editor-block-variation-picker__variation.components-button{height:auto;padding:0}.block-editor-block-variation-picker__variation:before{content:"";padding-bottom:100%}.block-editor-block-variation-picker__variation:first-child{margin-right:0}.block-editor-block-variation-picker__variation:last-child{margin-left:0}.block-editor-block-pattern-setup{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;width:100%;border-radius:2px}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__toolbar{justify-content:center}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container{column-gap:24px;display:block;width:100%;padding:32px;column-count:2}@media (min-width:1440px){.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container{column-count:3}}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-preview__container,.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container div[role=button]{cursor:pointer}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item{break-inside:avoid-column;margin-bottom:24px}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__container{min-height:100px;border-radius:2px;border:1px solid #ddd}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__content{width:100%}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar{height:60px;box-sizing:border-box;padding:16px;width:100%;text-align:right;margin:0;color:#1e1e1e;border-radius:2px 2px 0 0;background-color:#fff;display:flex;flex-direction:row;align-items:center;justify-content:space-between;border-top:1px solid #ddd;align-self:flex-end}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__display-controls{display:flex}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions,.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__navigation{width:calc(50% - 36px);display:flex}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions{justify-content:flex-end}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container{display:flex;flex-direction:column;width:100%;box-sizing:border-box}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container{overflow:hidden;position:relative;padding:0;margin:0;list-style:none;transform-style:preserve-3d}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container *{box-sizing:border-box}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide{position:absolute;top:0;width:100%;margin:auto;padding:0;transition:transform .5s,z-index .5s;z-index:100}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.active-slide{opacity:1;position:relative;z-index:102}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.previous-slide{transform:translateX(100%);z-index:101}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.next-slide{transform:translateX(-100%);z-index:101}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .block-list-appender{display:none}.block-editor-block-pattern-setup__carousel,.block-editor-block-pattern-setup__grid{width:100%;overflow-y:auto}.block-editor-block-variation-transforms{padding:0 52px 16px 16px;width:100%}.block-editor-block-variation-transforms .components-dropdown-menu__toggle{border:1px solid #757575;border-radius:2px;min-height:30px;width:100%;position:relative;text-align:right;justify-content:left;padding:6px 12px}.block-editor-block-variation-transforms .components-dropdown-menu__toggle.components-dropdown-menu__toggle{padding-left:24px}.block-editor-block-variation-transforms .components-dropdown-menu__toggle:focus:not(:disabled){border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 calc(var(--wp-admin-border-width-focus) - 1px) var(--wp-admin-theme-color)}.block-editor-block-variation-transforms .components-dropdown-menu__toggle svg{height:100%;padding:0;position:absolute;left:0;top:0}.block-editor-block-variation-transforms__popover .components-popover__content{min-width:230px}.components-border-radius-control{margin-bottom:12px}.components-border-radius-control legend{margin-bottom:8px}.components-border-radius-control .components-border-radius-control__wrapper{display:flex;justify-content:space-between;align-items:flex-start}.components-border-radius-control .components-border-radius-control__wrapper .components-range-control,.components-border-radius-control .components-border-radius-control__wrapper>.components-unit-control-wrapper{width:calc(50% - 26px);margin-bottom:0}.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-base-control__field{margin-bottom:0;height:30px}.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-range-control__wrapper{margin-left:10px}.components-border-radius-control .components-border-radius-control__wrapper>span{flex:0 0 auto}.components-border-radius-control .components-border-radius-control__input-controls-wrapper{display:flex;width:70%;flex-wrap:wrap}.components-border-radius-control .components-border-radius-control__input-controls-wrapper .components-unit-control-wrapper{width:calc(50% - 8px);margin-bottom:8px;margin-left:8px}.components-border-radius-control .component-border-radius-control__linked-button.has-icon{display:flex;justify-content:center}.components-border-radius-control .component-border-radius-control__linked-button.has-icon svg{margin-left:0}.components-border-style-control legend{line-height:1.4;margin-bottom:8px;padding:0}.components-border-style-control .components-border-style-control__buttons{display:inline-flex}.components-border-style-control .components-border-style-control__buttons .components-button.has-icon{min-width:30px;height:30px;padding:3px;margin-left:4px}.block-editor-button-block-appender{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:auto;color:#1e1e1e;box-shadow:inset 0 0 0 1px #1e1e1e}.block-editor-button-block-appender.components-button.components-button{padding:12px}.is-dark-theme .block-editor-button-block-appender{color:hsla(0,0%,100%,.65);box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.65)}.block-editor-button-block-appender:hover{color:var(--wp-admin-theme-color);box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color)}.block-editor-button-block-appender:focus{box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color)}.block-editor-button-block-appender:active{color:#000}.block-editor-color-gradient-control .block-editor-color-gradient-control__color-indicator{margin-bottom:12px}.block-editor-color-gradient-control__fieldset{min-width:0}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title{display:flex;gap:8px}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator{width:12px;height:12px;align-self:center}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator:first-child{margin-right:12px}.block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator{display:none}@media screen and (min-width:782px){.block-editor-panel-color-gradient-settings .components-circular-option-picker__swatches{display:grid;grid-template-columns:repeat(6,28px);justify-content:space-between}}.block-editor-block-inspector .block-editor-panel-color-gradient-settings .components-base-control{margin-bottom:inherit}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__dropdown{display:block}.block-editor-panel-color-gradient-settings__dropdown{width:100%}.block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content>div{width:280px}@media (min-width:782px){.block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content{margin-left:156px!important}.block-editor-panel-color-gradient-settings__dropdown-content.is-from-top .components-popover__content{margin-top:-60px!important}.block-editor-panel-color-gradient-settings__dropdown-content.is-from-bottom .components-popover__content{margin-bottom:-60px!important}}.block-editor-panel-color-gradient-settings__dropdown:last-child>div{border-bottom-width:0}.block-editor-panel-color-gradient-settings__item{padding-top:12px!important;padding-bottom:12px!important}.block-editor-panel-color-gradient-settings__item .block-editor-panel-color-gradient-settings__color-indicator{background:linear-gradient(45deg,transparent 48%,#ddd 0,#ddd 52%,transparent 0)}.block-editor-panel-color-gradient-settings__item.is-open{background:#f0f0f0;color:var(--wp-admin-theme-color)}.block-editor-contrast-checker>.components-notice{margin:0}.block-editor-default-block-appender{clear:both;margin-right:auto;margin-left:auto;position:relative}.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 .block-editor-default-block-appender__content{opacity:.62}.block-editor-default-block-appender .components-drop-zone__content-icon{display:none}.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:0;left:0;line-height:0}.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled,.block-editor-default-block-appender .block-editor-inserter:disabled{display:none}.block-editor-block-list__block .block-list-appender{position:absolute;list-style:none;padding:0;z-index:2;bottom:0;left:0}.block-editor-block-list__block .block-list-appender.block-list-appender{margin:0;line-height:0}.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender{height:24px}.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle{flex-direction:row;box-shadow:none;height:24px;width:24px;display:none;padding:0!important;background:#1e1e1e;color:#fff}.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle:hover{color:#fff;background:var(--wp-admin-theme-color)}.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender__content{display:none}.block-editor-block-list__block .block-list-appender:only-child{position:relative;left:auto;align-self:center;list-style:none;line-height:inherit}.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content{display:block}.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-list-appender__toggle,.block-editor-block-list__block.is-selected>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected>.block-list-appender .block-list-appender__toggle{display:flex}.block-editor-default-block-appender__content{cursor:text}.block-editor-date-format-picker{margin-bottom:16px}.block-editor-date-format-picker__default-format-toggle-control__hint{color:#757575;display:block}.block-editor-date-format-picker__custom-format-select-control.components-base-control{margin-bottom:0}.block-editor-date-format-picker__custom-format-select-control .components-custom-select-control__button{width:100%}.block-editor-date-format-picker__custom-format-select-control__custom-option{border-top:1px solid #ddd}.block-editor-date-format-picker__custom-format-select-control__custom-option.has-hint{grid-template-columns:auto 30px}.block-editor-date-format-picker__custom-format-select-control__custom-option .components-custom-select-control__item-hint{grid-row:2;text-align:right}.block-editor-duotone-control__popover>.components-popover__content>div{padding:16px;width:280px}.block-editor-duotone-control__popover .components-menu-group__label{padding:0}.block-editor-duotone-control__popover .components-custom-gradient-picker__gradient-bar{margin:16px 0 12px}.block-editor-duotone-control__popover .components-circular-option-picker__swatches{display:grid;grid-template-columns:repeat(6,28px);gap:12px;justify-content:space-between}.block-editor-duotone-control__description{margin:16px 0;font-size:12px}.block-editor-duotone-control__popover:not([data-y-axis=middle][data-x-axis=right])>.components-popover__content{margin-right:-14px}.components-font-appearance-control{margin-bottom:24px}.components-font-appearance-control ul li{color:#1e1e1e;text-transform:capitalize}.block-editor-image-size-control{margin-bottom:1em}.block-editor-image-size-control .block-editor-image-size-control__row{display:flex;justify-content:space-between}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height,.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width{margin-bottom:.5em}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input,.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input{line-height:1.25}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width{margin-left:5px}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height{margin-right:5px}.block-editor-block-list__layout.has-overlay:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;z-index:60}.block-editor-block-types-list__list-item{display:block;width:33.33%;padding:0;margin:0}.components-button.block-editor-block-types-list__item{display:flex;flex-direction:column;width:100%;font-size:13px;color:#1e1e1e;padding:8px;align-items:stretch;justify-content:center;cursor:pointer;background:transparent;word-break:break-word;border-radius:2px;transition:all .05s ease-in-out;position:relative;height:auto}@media (prefers-reduced-motion:reduce){.components-button.block-editor-block-types-list__item{transition-duration:0s;transition-delay:0s}}.components-button.block-editor-block-types-list__item:disabled{opacity:.6;cursor:default}.components-button.block-editor-block-types-list__item:not(:disabled):hover{color:var(--wp-admin-theme-color)!important}.components-button.block-editor-block-types-list__item:not(:disabled):focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-button.block-editor-block-types-list__item:not(:disabled).is-active{color:#fff;background:#1e1e1e;outline:2px solid transparent;outline-offset:-2px}.block-editor-block-types-list__item-icon{padding:12px 20px;border-radius:2px;color:#1e1e1e;transition:all .05s ease-in-out}@media (prefers-reduced-motion:reduce){.block-editor-block-types-list__item-icon{transition-duration:0s;transition-delay:0s}}.block-editor-block-types-list__item-icon .block-editor-block-icon{margin-right:auto;margin-left:auto}.block-editor-block-types-list__item-icon svg{transition:all .15s ease-out}@media (prefers-reduced-motion:reduce){.block-editor-block-types-list__item-icon svg{transition-duration:0s;transition-delay:0s}}.block-editor-block-types-list__list-item[draggable=true] .block-editor-block-types-list__item-icon{cursor:grab}.block-editor-block-types-list__item-title{padding:4px 2px 8px;font-size:12px}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}@keyframes loadingpulse{0%{opacity:1}50%{opacity:0}to{opacity:1}}.block-editor-link-control{position:relative;min-width:360px}.components-popover__content .block-editor-link-control{min-width:auto;width:90vw;max-width:360px}.block-editor-link-control__search-input-container,.block-editor-link-control__search-input-wrapper{position:relative}.block-editor-link-control__search-input.has-no-label .block-editor-url-input__input{flex:1}.block-editor-link-control__field{margin:16px}.block-editor-link-control__field>.components-base-control__field{display:flex;align-items:center;margin:0}.block-editor-link-control__field .components-base-control__label{margin-left:16px;margin-bottom:0}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input,.block-editor-link-control__field input[type=text]{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;font-size:16px;line-height:normal;width:calc(100% - 32px);display:block;padding:11px 16px 11px 36px;margin:0;position:relative;border:1px solid #ddd;border-radius:2px}@media (prefers-reduced-motion:reduce){.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input,.block-editor-link-control__field input[type=text]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input,.block-editor-link-control__field input[type=text]{font-size:13px;line-height:normal}}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:focus,.block-editor-link-control__field input[type=text]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-webkit-input-placeholder,.block-editor-link-control__field input[type=text]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-moz-placeholder,.block-editor-link-control__field input[type=text]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:-ms-input-placeholder,.block-editor-link-control__field input[type=text]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-link-control__search-error{margin:-8px 16px 16px}.block-editor-link-control__search-actions{position:absolute;top:3px;left:19px}.components-button .block-editor-link-control__search-submit .has-icon{margin:-1px}.block-editor-link-control__search-results-wrapper{position:relative;margin-top:-15px}.block-editor-link-control__search-results-wrapper:after,.block-editor-link-control__search-results-wrapper:before{content:"";position:absolute;right:-1px;left:16px;display:block;pointer-events:none;z-index:100}.block-editor-link-control__search-results-wrapper:before{height:8px;top:0;bottom:auto}.block-editor-link-control__search-results-wrapper:after{height:16px;bottom:0;top:auto}.block-editor-link-control__search-results-label{padding:16px 32px 0;display:block;font-weight:600}.block-editor-link-control__search-results{margin:0;padding:8px 16px;max-height:200px;overflow-y:auto}.block-editor-link-control__search-results.is-loading{opacity:.2}.block-editor-link-control__search-item{position:relative;display:flex;align-items:flex-start;font-size:13px;cursor:pointer;background:#fff;width:100%;border:none;text-align:right;padding:12px 16px;border-radius:2px;height:auto}.block-editor-link-control__search-item:focus,.block-editor-link-control__search-item:hover{background-color:#f0f0f0}.block-editor-link-control__search-item:focus .block-editor-link-control__search-item-type,.block-editor-link-control__search-item:hover .block-editor-link-control__search-item-type{background:#fff}.block-editor-link-control__search-item:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color) inset}.block-editor-link-control__search-item.is-selected{background:#f0f0f0}.block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type{background:#fff}.block-editor-link-control__search-item.is-current{flex-direction:column;background:transparent;border:0;width:100%;cursor:default;padding:16px}.block-editor-link-control__search-item .block-editor-link-control__search-item-header{display:block;flex-direction:row;align-items:flex-start;margin-left:8px;white-space:pre-wrap;overflow-wrap:break-word}.block-editor-link-control__search-item .block-editor-link-control__search-item-header .block-editor-link-control__search-item-info{word-break:break-all}.block-editor-link-control__search-item.is-preview .block-editor-link-control__search-item-header{display:flex;flex:1}.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-header{align-items:center}.block-editor-link-control__search-item .block-editor-link-control__search-item-icon{position:relative;top:.2em;margin-left:8px;max-height:24px;flex-shrink:0;width:24px;display:flex;justify-content:center}.block-editor-link-control__search-item .block-editor-link-control__search-item-icon img{width:16px}.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-icon{top:0;width:32px;max-height:32px}.block-editor-link-control__search-item .block-editor-link-control__search-item-info,.block-editor-link-control__search-item .block-editor-link-control__search-item-title{overflow:hidden;text-overflow:ellipsis}.block-editor-link-control__search-item .block-editor-link-control__search-item-info .components-external-link__icon,.block-editor-link-control__search-item .block-editor-link-control__search-item-title .components-external-link__icon{position:absolute;left:0;margin-top:0}.block-editor-link-control__search-item .block-editor-link-control__search-item-title{display:block;margin-bottom:.2em;font-weight:500;position:relative}.block-editor-link-control__search-item .block-editor-link-control__search-item-title mark{font-weight:700;color:inherit;background-color:transparent}.block-editor-link-control__search-item .block-editor-link-control__search-item-title span{font-weight:400}.block-editor-link-control__search-item .block-editor-link-control__search-item-title svg{display:none}.block-editor-link-control__search-item .block-editor-link-control__search-item-info{display:block;color:#757575;font-size:.9em;line-height:1.3}.block-editor-link-control__search-item .block-editor-link-control__search-item-error-notice{font-style:italic;font-size:1.1em}.block-editor-link-control__search-item .block-editor-link-control__search-item-type{display:block;padding:3px 6px;margin-right:auto;font-size:.9em;background-color:#f0f0f0;border-radius:2px;white-space:nowrap}.block-editor-link-control__search-item .block-editor-link-control__search-item-description{padding-top:12px;margin:0}.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder{margin-top:12px;padding-top:0;height:28px;display:flex;flex-direction:column;justify-content:space-around}.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder:after,.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder:before{display:block;content:"";height:.7em;width:100%;background-color:#f0f0f0;border-radius:3px}.block-editor-link-control__search-item .block-editor-link-control__search-item-description .components-text{font-size:.9em}.block-editor-link-control__search-item .block-editor-link-control__search-item-image{display:flex;width:100%;background-color:#f0f0f0;justify-content:center;height:140px;max-height:140px;overflow:hidden;border-radius:2px;margin-top:12px}.block-editor-link-control__search-item .block-editor-link-control__search-item-image.is-placeholder{background-color:#f0f0f0;border-radius:3px}.block-editor-link-control__search-item .block-editor-link-control__search-item-image img{display:block;max-width:100%;height:140px;max-height:140px}.block-editor-link-control__search-item-top{display:flex;flex-direction:row;width:100%}.block-editor-link-control__search-item-bottom{transition:opacity 1.5s;width:100%}.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description:after,.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description:before,.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-image{animation:loadingpulse 1s linear infinite;animation-delay:.5s}.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon img,.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon svg{opacity:0}.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon:before{content:"";display:block;background-color:#f0f0f0;position:absolute;top:0;right:0;left:0;bottom:0;border-radius:100%;animation:loadingpulse 1s linear infinite;animation-delay:.5s}.block-editor-link-control__loading{margin:16px;display:flex;align-items:center}.block-editor-link-control__loading .components-spinner{margin-top:0}.components-button+.block-editor-link-control__search-create{overflow:visible;padding:12px 16px}.components-button+.block-editor-link-control__search-create:before{content:"";position:absolute;top:-10px;right:0;display:block;width:100%}.block-editor-link-control__search-create{align-items:center}.block-editor-link-control__search-create .block-editor-link-control__search-item-title{margin-bottom:0}.block-editor-link-control__search-create .block-editor-link-control__search-item-icon{top:0}.block-editor-link-control__search-results div[role=menu]>.block-editor-link-control__search-item.block-editor-link-control__search-item{padding:10px}.block-editor-link-control__tools{display:flex;align-items:center;border-top:1px solid #ddd;margin:0;padding:16px}.block-editor-link-control__unlink{padding-right:16px;padding-left:16px}.block-editor-link-control__settings{flex:1;margin:0}.block-editor-link-control__settings :last-child{margin-bottom:0}.is-alternate .block-editor-link-control__settings{border-top:1px solid #1e1e1e}.block-editor-link-control__setting{margin-bottom:16px}.block-editor-link-control__setting :last-child{margin-bottom:0}.block-editor-link-control .block-editor-link-control__search-input .components-spinner{display:block}.block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner{position:absolute;right:auto;bottom:auto;top:calc(50% - 8px);left:36px}.block-editor-link-control__search-item-action{margin-right:auto;flex-shrink:0}.block-editor-list-view-tree{width:100%;border-collapse:collapse;padding:0;margin:0}.components-modal__content .block-editor-list-view-tree{margin:-12px -6px 0;width:calc(100% + 12px)}.block-editor-list-view-leaf{position:relative}.block-editor-list-view-leaf.is-selected td{background:var(--wp-admin-theme-color)}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents,.block-editor-list-view-leaf.is-selected .components-button.has-icon{color:#fff}.is-dragging-components-draggable .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents{background:none;color:#1e1e1e}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents:focus:after{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block__menu:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #fff}.block-editor-list-view-leaf.is-dragging{display:none}.block-editor-list-view-leaf.is-first-selected td:first-child{border-top-right-radius:2px}.block-editor-list-view-leaf.is-first-selected td:last-child{border-top-left-radius:2px}.block-editor-list-view-leaf.is-last-selected td:first-child{border-bottom-right-radius:2px}.block-editor-list-view-leaf.is-last-selected td:last-child{border-bottom-left-radius:2px}.block-editor-list-view-leaf.is-branch-selected:not(.is-selected){background:linear-gradient(hsla(0,0%,100%,.9),hsla(0,0%,100%,.9)),linear-gradient(var(--wp-admin-theme-color),var(--wp-admin-theme-color))}.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:first-child{border-top-right-radius:2px}.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:last-child{border-top-left-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:first-child{border-top-right-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:last-child{border-top-left-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:first-child{border-bottom-right-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:last-child{border-bottom-left-radius:2px}.block-editor-list-view-leaf.is-branch-selected:not(.is-selected) td{border-radius:0}.block-editor-list-view-leaf .block-editor-list-view-block-contents{display:flex;align-items:center;width:100%;height:auto;padding:6px 0 6px 12px;text-align:right;color:#1e1e1e;border-radius:2px;position:relative;white-space:nowrap}.block-editor-list-view-leaf .block-editor-list-view-block-contents.is-dropping-before:before{content:"";position:absolute;pointer-events:none;transition:border-color .1s linear,border-style .1s linear,box-shadow .1s linear;top:-2px;left:0;right:0;border-top:4px solid var(--wp-admin-theme-color)}.components-modal__content .block-editor-list-view-leaf .block-editor-list-view-block-contents{padding-right:0;padding-left:0}.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus{box-shadow:none}.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus:after{content:"";position:absolute;top:0;left:-29px;bottom:0;right:0;border-radius:inherit;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);z-index:2;pointer-events:none}.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block-contents:focus:after{box-shadow:none}.block-editor-list-view-leaf.has-single-cell .block-editor-list-view-block-contents:focus:after{left:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);z-index:1}.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block__menu:focus{box-shadow:none}.block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents{opacity:1;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents{animation-duration:1ms;animation-delay:0s}}.block-editor-list-view-leaf .block-editor-block-icon{align-self:flex-start;margin-left:8px;width:24px}.block-editor-list-view-leaf .block-editor-list-view-block__contents-cell,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell{padding-top:0;padding-bottom:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell{line-height:0;width:36px;vertical-align:middle}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell{transition-duration:0s;transition-delay:0s}}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell>*{opacity:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover{position:relative;z-index:1}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover>*{opacity:1;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover>*{animation-duration:1ms;animation-delay:0s}}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell .components-button.has-icon{width:24px;min-width:24px;padding:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell{padding-left:5px}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon{height:24px}.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell-alignment-wrapper{display:flex;height:100%;flex-direction:column;align-items:center}.block-editor-list-view-leaf .block-editor-block-mover-button{position:relative;width:36px;height:24px}.block-editor-list-view-leaf .block-editor-block-mover-button svg{position:relative;height:24px}.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button{margin-top:-6px;align-items:flex-end}.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button svg{bottom:-4px}.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button{margin-bottom:-6px;align-items:flex-start}.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button svg{top:-4px}.block-editor-list-view-leaf .block-editor-block-mover-button:focus,.block-editor-list-view-leaf .block-editor-block-mover-button:focus:enabled{box-shadow:none;outline:none}.block-editor-list-view-leaf .block-editor-block-mover-button:focus:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 4px #fff;outline:2px solid transparent}.block-editor-list-view-leaf .block-editor-block-mover-button:before{content:"";position:absolute;display:block;border-radius:2px;height:16px;min-width:100%;right:0;left:0;animation:components-button__appear-animation .1s ease;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf .block-editor-block-mover-button:before{animation-duration:1ms;animation-delay:0s}}.block-editor-list-view-leaf .block-editor-inserter__toggle{background:#1e1e1e;color:#fff;height:24px;margin:6px 1px 6px 6px;min-width:24px}.block-editor-list-view-leaf .block-editor-inserter__toggle:active{color:#fff}.block-editor-list-view-leaf .block-editor-list-view-block-select-button__anchor{background:rgba(0,0,0,.1);border-radius:2px;display:inline-block;padding:2px 6px;margin:0 8px;max-width:120px;overflow:hidden;text-overflow:ellipsis}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-select-button__anchor{background:rgba(0,0,0,.3)}.block-editor-list-view-leaf .block-editor-list-view-block-select-button__lock{line-height:0;width:24px;min-width:24px;margin-right:auto;padding:0;vertical-align:middle}.block-editor-list-view-appender__description,.block-editor-list-view-block-select-button__description{display:none}.block-editor-list-view-appender__cell .block-editor-list-view-appender__container,.block-editor-list-view-appender__cell .block-editor-list-view-block__contents-container,.block-editor-list-view-block__contents-cell .block-editor-list-view-appender__container,.block-editor-list-view-block__contents-cell .block-editor-list-view-block__contents-container{display:flex}.block-editor-list-view__expander{height:24px;margin-right:4px;width:24px}.block-editor-list-view-leaf[aria-level] .block-editor-list-view__expander{margin-right:220px}.block-editor-list-view-leaf:not([aria-level="1"]) .block-editor-list-view__expander{margin-left:4px}.block-editor-list-view-leaf[aria-level="1"] .block-editor-list-view__expander{margin-right:0}.block-editor-list-view-leaf[aria-level="2"] .block-editor-list-view__expander{margin-right:24px}.block-editor-list-view-leaf[aria-level="3"] .block-editor-list-view__expander{margin-right:52px}.block-editor-list-view-leaf[aria-level="4"] .block-editor-list-view__expander{margin-right:80px}.block-editor-list-view-leaf[aria-level="5"] .block-editor-list-view__expander{margin-right:108px}.block-editor-list-view-leaf[aria-level="6"] .block-editor-list-view__expander{margin-right:136px}.block-editor-list-view-leaf[aria-level="7"] .block-editor-list-view__expander{margin-right:164px}.block-editor-list-view-leaf[aria-level="8"] .block-editor-list-view__expander{margin-right:192px}.block-editor-list-view-leaf .block-editor-list-view__expander{visibility:hidden}.block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg{visibility:visible;transition:transform .2s ease;transform:rotate(-90deg)}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg{transition-duration:0s;transition-delay:0s}}.block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg{visibility:visible;transform:rotate(0deg);transition:transform .2s ease}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg{transition-duration:0s;transition-delay:0s}}.block-editor-list-view-drop-indicator{pointer-events:none}.block-editor-list-view-drop-indicator .block-editor-list-view-drop-indicator__line{background:var(--wp-admin-theme-color);height:1px}.block-editor-list-view-drop-indicator:not([data-y-axis=middle][data-x-axis=right])>.components-popover__content{margin-right:0;border:none;box-shadow:none}.block-editor-list-view-placeholder{padding:0;margin:0;height:36px}.modal-open .block-editor-media-replace-flow__options{display:none}.block-editor-media-replace-flow__indicator{margin-right:4px}.block-editor-media-flow__url-input{border-top:1px solid #1e1e1e;margin-top:8px;margin-left:-8px;margin-right:-8px;padding:16px}.block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label{display:block;top:16px;margin-bottom:8px}.block-editor-media-flow__url-input .block-editor-link-control{width:220px}.block-editor-media-flow__url-input .block-editor-link-control .block-editor-url-input{padding:0}.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;white-space:nowrap}.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-info{white-space:nowrap}.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:0;width:100%}.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions{top:0;left:4px}.block-editor-media-flow__error{padding:0 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;left:10px}.block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button{margin-bottom:0}.block-editor-media-placeholder__url-input-form{display:flex}.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{width:100%;min-width:200px;flex-grow:1;border:none;border-radius:0;margin:2px}@media (min-width:600px){.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{width:300px}}.block-editor-media-placeholder__url-input-submit-button{flex-shrink:1}.block-editor-media-placeholder__button{margin-bottom:.5rem}.block-editor-media-placeholder__cancel-button.is-link{margin:1em;display:block}.block-editor-media-placeholder.is-appender{min-height:0}.block-editor-media-placeholder.is-appender:hover{cursor:pointer;box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-multi-selection-inspector__card{display:flex;align-items:flex-start;padding:16px}.block-editor-multi-selection-inspector__card-content{flex-grow:1}.block-editor-multi-selection-inspector__card-title{font-weight:500;margin-bottom:5px}.block-editor-multi-selection-inspector__card-description{font-size:13px}.block-editor-multi-selection-inspector__card .block-editor-block-icon{margin-right:-2px;margin-left:10px;padding:0 3px;width:36px;height:24px}.block-editor-plain-text{box-shadow:none;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;border:none;padding:0;margin:0;width:100%}.block-editor-responsive-block-control{margin-bottom:28px;border-bottom:1px solid #ccc;padding-bottom:14px}.block-editor-responsive-block-control:last-child{padding-bottom:0;border-bottom:0}.block-editor-responsive-block-control__title{margin:0 -3px .6em 0}.block-editor-responsive-block-control__label{font-weight:600;margin-bottom:.6em;margin-right:-3px}.block-editor-responsive-block-control__inner{margin-right:-1px}.block-editor-responsive-block-control__toggle{margin-right:1px}.block-editor-responsive-block-control .components-base-control__help{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}.rich-text [data-rich-text-placeholder]{pointer-events:none}.rich-text [data-rich-text-placeholder]:after{content:attr(data-rich-text-placeholder);opacity:.62}.rich-text:focus{outline:none}.rich-text:focus [data-rich-text-format-boundary]{border-radius:2px}.block-editor-rich-text__editable>p:first-child{margin-top:0}figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]:before{opacity:.8}.components-popover.block-editor-rich-text__inline-format-toolbar{z-index:99998}.components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content{width:auto;min-width:auto;margin-bottom:8px;box-shadow:none;border:1px solid #1e1e1e;border-radius:2px;background-color:#fff}.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar,.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar-group{border:none}.components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle,.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar__control{min-width:48px;min-height:48px;padding-right:12px;padding-left:12px}.block-editor-rich-text__inline-format-toolbar-group .components-dropdown-menu__toggle{justify-content:center}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon{width:auto}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon svg{display:none}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon:after{content:attr(aria-label)}[data-rich-text-script]{display:inline}[data-rich-text-script]:before{content:">";background:#ff0}.block-editor-skip-to-selected-block{position:absolute;top:-9999em}.block-editor-skip-to-selected-block:focus{height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f1f1f1;color:var(--wp-admin-theme-color);line-height:normal;box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none;outline:none;z-index:100000}.block-editor-text-transform-control{flex:0 0 50%}.block-editor-text-transform-control legend{margin-bottom:8px}.block-editor-text-transform-control .block-editor-text-transform-control__buttons{display:inline-flex;margin-bottom:24px}.block-editor-text-transform-control .block-editor-text-transform-control__buttons .components-button.has-icon{min-width:24px;padding:0;margin-left:4px}.block-editor-text-decoration-control{flex:0 0 50%}.block-editor-text-decoration-control legend{margin-bottom:8px}.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons{display:inline-flex;margin-bottom:24px}.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons .components-button.has-icon{min-width:24px;padding:0;margin-left:4px}.block-editor-tool-selector__help{margin:8px -8px -8px;padding:16px;border-top:1px solid #ddd;color:#757575;min-width:280px}.block-editor-block-list__block .block-editor-url-input,.block-editor-url-input,.components-popover .block-editor-url-input{flex-grow:1;position:relative;padding:1px}.block-editor-block-list__block .block-editor-url-input input[type=text],.block-editor-url-input input[type=text],.components-popover .block-editor-url-input input[type=text]{width:100%;padding:8px 12px 8px 8px;border:none;border-radius:0;margin-right:0;margin-left:0;font-size:16px}@media (min-width:600px){.block-editor-block-list__block .block-editor-url-input input[type=text],.block-editor-url-input input[type=text],.components-popover .block-editor-url-input input[type=text]{width:300px;font-size:13px}}.block-editor-block-list__block .block-editor-url-input input[type=text]::-ms-clear,.block-editor-url-input input[type=text]::-ms-clear,.components-popover .block-editor-url-input input[type=text]::-ms-clear{display:none}.block-editor-block-list__block .block-editor-url-input.is-full-width,.block-editor-block-list__block .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],.block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,.block-editor-url-input.is-full-width,.block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],.block-editor-url-input.is-full-width__suggestions,.components-popover .block-editor-url-input.is-full-width,.components-popover .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],.components-popover .block-editor-url-input.is-full-width__suggestions{width:100%}.block-editor-block-list__block .block-editor-url-input .components-spinner,.block-editor-url-input .components-spinner,.components-popover .block-editor-url-input .components-spinner{position:absolute;left:8px 8px 8px 12px;bottom:8px 8px 8px 12px8px1;margin:0}.block-editor-url-input__input[type=text]{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal}@media (prefers-reduced-motion:reduce){.block-editor-url-input__input[type=text]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.block-editor-url-input__input[type=text]{font-size:13px;line-height:normal}}.block-editor-url-input__input[type=text]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-url-input__input[type=text]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-url-input__input[type=text]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.block-editor-url-input__input[type=text]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-url-input__suggestions{max-height:200px;transition:all .15s ease-in-out;padding:4px 0;width:302px;overflow-y:auto}@media (prefers-reduced-motion:reduce){.block-editor-url-input__suggestions{transition-duration:0s;transition-delay:0s}}.block-editor-url-input .components-spinner,.block-editor-url-input__suggestions{display:none}@media (min-width:600px){.block-editor-url-input .components-spinner,.block-editor-url-input__suggestions{display:grid}}.block-editor-url-input__suggestion{min-height:36px;height:auto;color:#757575;display:block;font-size:13px;cursor:pointer;background:#fff;width:100%;border:none;text-align:right;box-shadow:none}.block-editor-url-input__suggestion:hover{background:#ddd}.block-editor-url-input__suggestion.is-selected,.block-editor-url-input__suggestion:focus{background:var(--wp-admin-theme-color-darker-20);color:#fff;outline:none}.components-toolbar-group>.block-editor-url-input__button,.components-toolbar>.block-editor-url-input__button{position:inherit}.block-editor-url-input__button .block-editor-url-input__back{margin-left:4px;overflow:visible}.block-editor-url-input__button .block-editor-url-input__back:after{content:"";position:absolute;display:block;width:1px;height:24px;left:-1px;background:#ddd}.block-editor-url-input__button-modal{box-shadow:0 2px 6px rgba(0,0,0,.05);border:1px solid #ddd;background:#fff}.block-editor-url-input__button-modal-line{display:flex;flex-direction:row;flex-grow:1;flex-shrink:1;min-width:0;align-items:flex-start}.block-editor-url-input__button-modal-line .components-button{flex-shrink:0;width:36px;height:36px}.block-editor-url-popover__additional-controls{border-top:1px solid #ddd}.block-editor-url-popover__additional-controls>div[role=menu] .components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary)>svg{box-shadow:none}.block-editor-url-popover__additional-controls div[role=menu]>.components-button{padding-right:12px}.block-editor-url-popover__row{display:flex}.block-editor-url-popover__row>:not(.block-editor-url-popover__settings-toggle){flex-grow:1}.block-editor-url-popover .components-button.has-icon{padding:3px}.block-editor-url-popover .components-button.has-icon>svg{padding:5px;border-radius:2px;height:30px;width:30px}.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 4px #fff;outline:2px solid transparent}.block-editor-url-popover__settings-toggle{flex-shrink:0;border-radius:0;border-right:1px solid #ddd;margin-right:1px}.block-editor-url-popover__settings-toggle[aria-expanded=true] .dashicon{transform:rotate(-180deg)}.block-editor-url-popover__input-container .components-base-control:last-child,.block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field{margin-bottom:0}.block-editor-url-popover__settings{display:block;padding:16px;border-top:1px solid #ddd}.block-editor-url-popover__link-editor,.block-editor-url-popover__link-viewer{display:flex}.block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field,.block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field{margin-bottom:0}.block-editor-url-popover__link-editor .block-editor-url-input .components-spinner,.block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner{bottom:8px 8px 8px 12px1}.block-editor-url-popover__link-viewer-url{margin:7px;flex-grow:1;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:150px;max-width:500px}.block-editor-url-popover__link-viewer-url.has-invalid-link{color:#cc1818}.block-editor-warning{align-items:center;display:flex;flex-wrap:wrap;padding:1em;border:1px solid #1e1e1e;border-radius:2px;background-color:#fff}.block-editor-warning,.block-editor-warning .block-editor-warning__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.block-editor-warning .block-editor-warning__message{line-height:1.4;font-size:13px;color:#1e1e1e;margin:0}.block-editor-warning p.block-editor-warning__message.block-editor-warning__message{min-height:auto}.block-editor-warning .block-editor-warning__contents{display:flex;flex-direction:row;justify-content:space-between;flex-wrap:wrap;align-items:baseline;width:100%}.block-editor-warning .block-editor-warning__actions{display:flex;margin-top:1em}.block-editor-warning .block-editor-warning__action{margin:0 0 0 8px}.block-editor-warning__secondary{margin:auto 8px auto 0}.components-popover.block-editor-warning__dropdown{z-index:99998}.html-anchor-control .components-external-link{display:block;margin-top:8px}.block-editor-hooks__layout-controls{display:flex;margin-bottom:16px}.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit{display:flex;margin-left:24px}.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit svg{margin:auto 8px 4px 0}.block-editor-hooks__layout-controls-reset{display:flex;justify-content:flex-end;margin-bottom:24px}.block-editor-hooks__layout-controls-helptext{font-size:12px}.block-editor-hooks__flex-layout-justification-controls,.block-editor-hooks__flex-layout-orientation-controls{margin-bottom:12px}.block-editor-hooks__flex-layout-justification-controls legend,.block-editor-hooks__flex-layout-orientation-controls legend{margin-bottom:8px}.border-block-support-panel .single-column,.dimensions-block-support-panel .single-column{grid-column:span 1}.typography-block-support-panel .block-editor-text-decoration-control__buttons,.typography-block-support-panel .block-editor-text-transform-control__buttons,.typography-block-support-panel .components-font-appearance-control,.typography-block-support-panel .components-font-size-picker__controls{margin-bottom:0}.typography-block-support-panel .single-column{grid-column:span 1}.color-block-support-panel .block-editor-contrast-checker{order:9999;grid-column:span 2;margin-top:16px}.color-block-support-panel .block-editor-contrast-checker .components-notice__content{margin-left:0}.color-block-support-panel.color-block-support-panel .color-block-support-panel__inner-wrapper{row-gap:0}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item{padding:0;border-right:1px solid rgba(0,0,0,.1);border-left:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1)}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.first{border-top-right-radius:2px;border-top-left-radius:2px;border-top:1px solid rgba(0,0,0,.1)}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.last{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item>div,.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item>div>button{border-radius:inherit}.color-block-support-panel .block-editor-panel-color-gradient-settings__color-indicator{background:linear-gradient(45deg,transparent 48%,#ddd 0,#ddd 52%,transparent 0)}.color-block-support-panel .block-editor-tools-panel-color-dropdown{display:block;padding:0}.color-block-support-panel .block-editor-tools-panel-color-dropdown>button{height:46px}.color-block-support-panel .block-editor-tools-panel-color-dropdown>button.is-open{background:#f0f0f0;color:var(--wp-admin-theme-color)}.color-block-support-panel .color-block-support-panel__item-group>div{grid-column:span 2;border-radius:inherit}.block-editor-block-toolbar{display:flex;flex-grow:1;width:100%;position:relative;overflow-y:hidden;overflow-x:auto;transition:border-color .1s linear,box-shadow .1s linear}@media (prefers-reduced-motion:reduce){.block-editor-block-toolbar{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.block-editor-block-toolbar{overflow:inherit}}.block-editor-block-toolbar .components-toolbar,.block-editor-block-toolbar .components-toolbar-group{background:none;line-height:0;margin-top:-1px;margin-bottom:-1px;border:0;border-left:1px solid #ddd}.block-editor-block-toolbar>:last-child,.block-editor-block-toolbar>:last-child .components-toolbar,.block-editor-block-toolbar>:last-child .components-toolbar-group{border-left:none}.block-editor-block-contextual-toolbar.has-parent:not(.is-fixed){margin-right:56px}.show-icon-labels .block-editor-block-contextual-toolbar.has-parent:not(.is-fixed){margin-right:0}.block-editor-block-parent-selector{position:absolute;top:-1px;right:-57px}.show-icon-labels .block-editor-block-parent-selector{position:relative;right:auto;top:auto;margin-top:-1px;margin-right:-1px;margin-bottom:-1px}.block-editor-block-toolbar__block-controls{height:auto!important;padding:0!important;margin-right:-1px}.block-editor-block-toolbar__block-controls .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,.block-editor-block-toolbar__block-controls .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon{width:24px!important;margin:0!important}.block-editor-block-toolbar__block-controls .block-editor-block-mover{margin-right:-6px}.block-editor-block-toolbar__block-controls .block-editor-block-lock-toolbar{margin-right:-6px!important}.block-editor-block-toolbar__block-controls .components-toolbar-group{padding:0}.block-editor-block-toolbar .components-toolbar,.block-editor-block-toolbar .components-toolbar-group,.block-editor-rich-text__inline-format-toolbar-group .components-toolbar,.block-editor-rich-text__inline-format-toolbar-group .components-toolbar-group{display:flex;flex-wrap:nowrap}.block-editor-block-toolbar__slot{display:inline-block;line-height:0}@supports (position:sticky){.block-editor-block-toolbar__slot{display:inline-flex}}.show-icon-labels .block-editor-block-toolbar .components-button.has-icon{width:auto}.show-icon-labels .block-editor-block-toolbar .components-button.has-icon svg{display:none}.show-icon-labels .block-editor-block-toolbar .components-button.has-icon:after{content:attr(aria-label);font-size:12px}.show-icon-labels .components-accessible-toolbar .components-toolbar-group>div:first-child:last-child>.components-button.has-icon{padding-right:6px;padding-left:6px}.show-icon-labels .block-editor-block-switcher{border-left:1px solid #1e1e1e}.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle{margin-right:0}.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,.show-icon-labels .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon{width:0!important;height:0!important}.show-icon-labels .block-editor-block-parent-selector__button .block-editor-block-icon{width:0}.show-icon-labels .block-editor-block-toolbar__block-controls .block-editor-block-mover{margin-right:0;white-space:nowrap}.show-icon-labels .block-editor-block-mover-button{padding-right:8px!important;padding-left:8px!important}.show-icon-labels .block-editor-block-mover__drag-handle.has-icon{padding-right:6px!important;padding-left:6px!important;border-left:1px solid #1e1e1e}@media (min-width:600px){.show-icon-labels .is-up-button.is-up-button.is-up-button{border-bottom:1px solid #1e1e1e;margin-left:0;border-radius:0}}.show-icon-labels .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button{width:auto}.show-icon-labels .components-toolbar,.show-icon-labels .components-toolbar-group{flex-shrink:1}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button+.components-button{margin-right:6px}.block-editor-inserter{display:inline-block;background:none;border:none;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:0}@media (min-width:782px){.block-editor-inserter{position:relative}}.block-editor-inserter__content{position:relative}.block-editor-inserter__popover.is-quick .components-popover__content{border:none}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>*{border-right:1px solid #ccc;border-left:1px solid #ccc}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>:first-child{border-top:1px solid #ccc}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>:last-child{border-bottom:1px solid #ccc}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>.components-button{border:1px solid #1e1e1e}.block-editor-inserter__popover .block-editor-inserter__menu{margin:-12px}.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__tabs .components-tab-panel__tabs{top:60px}.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__main-area{overflow:visible;height:auto}.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__preview-container{display:none}.block-editor-inserter__toggle.components-button{display:inline-flex;align-items:center;cursor:pointer;border:none;outline:none;padding:0;transition:color .2s ease}@media (prefers-reduced-motion:reduce){.block-editor-inserter__toggle.components-button{transition-duration:0s;transition-delay:0s}}.block-editor-inserter__menu{height:100%;position:relative;overflow:visible}.block-editor-inserter__main-area{width:auto;overflow-y:auto;height:100%}@media (min-width:782px){.block-editor-inserter__main-area{width:350px}}.block-editor-inserter__inline-elements{margin-top:-1px}.block-editor-inserter__menu.is-bottom:after{border-bottom-color:#fff}.components-popover.block-editor-inserter__popover{z-index:99999}.block-editor-inserter__search{background:#fff;padding:16px 16px 0;position:sticky;top:0;z-index:1}.block-editor-inserter__search .components-search-control__icon{left:20px}.block-editor-inserter__search .components-base-control__field{margin-bottom:0}.block-editor-inserter__tabs{display:flex;flex-direction:column}.block-editor-inserter__tabs .components-tab-panel__tabs{position:sticky;top:64px;background:#fff;z-index:1;border-bottom:1px solid #ddd}.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;z-index:0}.block-editor-inserter__panel-header{display:inline-flex;align-items:center;padding:16px 16px 0}.block-editor-inserter__panel-header-patterns{padding:16px 16px 0}.block-editor-inserter__panel-content{padding:16px}.block-editor-inserter__panel-title,.block-editor-inserter__panel-title button{margin:0 0 0 12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500}.block-editor-inserter__panel-dropdown select.components-select-control__input.components-select-control__input.components-select-control__input{height:36px;line-height:36px}.block-editor-inserter__panel-dropdown select{border:none}.block-editor-inserter__block-list{flex-grow:1;position:relative}.block-editor-inserter__reusable-blocks-panel{position:relative;text-align:left}.block-editor-inserter__manage-reusable-blocks{display:inline-block;margin:16px}.block-editor-inserter__no-results{padding:32px;text-align:center}.block-editor-inserter__no-results-icon{fill:#949494}.block-editor-inserter__child-blocks{padding:0 16px}.block-editor-inserter__parent-block-header{display:flex;align-items:center}.block-editor-inserter__parent-block-header h2{font-size:13px}.block-editor-inserter__parent-block-header .block-editor-block-icon{margin-left:8px}.block-editor-inserter__preview-container{display:none;width:300px;background:#fff;border-radius:2px;border:1px solid #ddd;position:absolute;top:16px;right:calc(100% + 16px);max-height:calc(100% - 32px);overflow-y:hidden}@media (min-width:782px){.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{min-height:144px;background:#f0f0f0;display:grid;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:#757575;background:#f0f0f0}.block-editor-inserter__tips{border-top:1px solid #ddd;padding:16px;flex-shrink:0;position:relative}.block-editor-inserter__manage-reusable-blocks-container{padding:16px}.block-editor-inserter__quick-inserter{width:100%;max-width:100%}@media (min-width:782px){.block-editor-inserter__quick-inserter{width:350px}}.block-editor-inserter__quick-inserter-results .block-editor-inserter__panel-header{height:0;padding:0;float:right}.block-editor-inserter__quick-inserter.has-expand .block-editor-inserter__panel-content,.block-editor-inserter__quick-inserter.has-search .block-editor-inserter__panel-content{padding:16px}.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list{display:grid;grid-template-columns:1fr 1fr;grid-gap:8px}.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{margin-bottom:0}.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-preview__container{min-height:100px}.block-editor-inserter__quick-inserter-separator{border-top:1px solid #ddd}.block-editor-inserter__popover.is-quick>.components-popover__content>div{padding:0}.block-editor-inserter__quick-inserter-expand.components-button{display:block;background:#1e1e1e;color:#fff;width:100%;height:44px;border-radius:0}.block-editor-inserter__quick-inserter-expand.components-button:hover{color:#fff}.block-editor-inserter__quick-inserter-expand.components-button:active{color:#ccc}.block-editor-inserter__quick-inserter-expand.components-button.components-button:focus:not(:disabled){box-shadow:none;background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.block-editor-block-patterns-explorer__sidebar{position:absolute;top:60px;right:0;bottom:0;width:280px;padding:24px 32px 32px;overflow-x:visible;overflow-y:scroll}.block-editor-block-patterns-explorer__sidebar__categories-list__item{display:block;width:100%;height:48px;text-align:right}.block-editor-block-patterns-explorer__search{margin-bottom:32px}.block-editor-block-patterns-explorer__search-results-count{padding-bottom:32px}.block-editor-block-patterns-explorer__list{margin-right:248px}.block-editor-block-patterns-explorer .block-editor-block-patterns-list{display:grid;grid-gap:32px;grid-template-columns:repeat(1,1fr)}@media (min-width:1080px){.block-editor-block-patterns-explorer .block-editor-block-patterns-list{grid-template-columns:repeat(2,1fr)}}@media (min-width:1440px){.block-editor-block-patterns-explorer .block-editor-block-patterns-list{grid-template-columns:repeat(3,1fr)}}.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{min-height:240px}.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-preview__container{height:inherit;min-height:100px;max-height:800px}.block-editor-post-preview__dropdown{padding:0}.block-editor-post-preview__button-resize.block-editor-post-preview__button-resize{padding-right:40px}.block-editor-post-preview__button-resize.block-editor-post-preview__button-resize.has-icon{padding-right:8px}.block-editor-post-preview__dropdown-content .components-popover__content{overflow-y:visible}.block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:first-child{padding-bottom:8px}.block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:last-child{margin-bottom:0}.block-editor-post-preview__dropdown-content .components-menu-group+.components-menu-group{padding:8px}@media (min-width:600px){.edit-post-header__settings .editor-post-preview,.edit-site-header__actions .editor-post-preview{display:none}}@media (min-width:600px){.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state{transition:opacity .1s linear}}@media (min-width:600px) and (prefers-reduced-motion:reduce){.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle,.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-save-draft,.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-saved-state{opacity:0}.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle.is-opened{opacity:1}}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/style.css b/static/wp-includes/css/dist/block-editor/style.css
new file mode 100755
index 0000000..11a6448
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/style.css
@@ -0,0 +1,4557 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.block-editor-autocompleters__block {
+ white-space: nowrap;
+}
+.block-editor-autocompleters__block .block-editor-block-icon {
+ margin-right: 8px;
+}
+
+.block-editor-autocompleters__link {
+ white-space: nowrap;
+}
+.block-editor-autocompleters__link .block-editor-block-icon {
+ margin-right: 8px;
+}
+
+.block-editor-block-alignment-control__menu-group .components-menu-item__info {
+ margin-top: 0;
+}
+
+.block-editor-block-alignment-matrix-control__popover .components-popover__content {
+ min-width: 0;
+ width: auto;
+}
+.block-editor-block-alignment-matrix-control__popover .components-popover__content > div {
+ padding: 8px;
+}
+
+.block-editor-block-icon {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 24px;
+ height: 24px;
+}
+.block-editor-block-icon.has-colors svg {
+ fill: currentColor;
+}
+@media (forced-colors: active) {
+ .block-editor-block-icon.has-colors svg {
+ fill: CanvasText;
+ }
+}
+.block-editor-block-icon svg {
+ min-width: 20px;
+ min-height: 20px;
+ max-width: 24px;
+ max-height: 24px;
+}
+
+.block-editor-block-inspector p {
+ margin-top: 0;
+}
+.block-editor-block-inspector h2,
+.block-editor-block-inspector h3 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.block-editor-block-inspector .components-base-control {
+ margin-bottom: 24px;
+}
+.block-editor-block-inspector .components-base-control:last-child {
+ margin-bottom: 8px;
+}
+.block-editor-block-inspector .components-panel__body {
+ border: none;
+ border-top: 1px solid #e0e0e0;
+}
+.block-editor-block-inspector .block-editor-block-card {
+ padding: 16px;
+}
+
+.block-editor-block-inspector__no-blocks {
+ display: block;
+ font-size: 13px;
+ background: #fff;
+ padding: 32px 16px;
+ text-align: center;
+}
+
+.block-editor-block-styles .block-editor-block-list__block {
+ margin: 0;
+}
+
+/**
+ * Notices & Block Selected/Hover Styles.
+ */
+/**
+ * Cross-Block Selection
+ */
+.block-editor-block-list__layout {
+ position: relative;
+}
+.block-editor-block-list__layout.is-navigate-mode {
+ cursor: default;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered::after,
+.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable])::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-highlighted ~ .is-multi-selected::after {
+ position: absolute;
+ z-index: 1;
+ pointer-events: none;
+ content: "";
+ top: 1px;
+ bottom: 1px;
+ left: 1px;
+ right: 1px;
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 1px;
+ outline: 2px solid transparent;
+}
+.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered::after,
+.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable])::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-highlighted ~ .is-multi-selected::after {
+ box-shadow: 0 0 0 1px #fff;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected .components-placeholder ::selection, .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered .components-placeholder ::selection,
+.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]) .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-highlighted ~ .is-multi-selected .components-placeholder ::selection {
+ background: transparent;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:not(.is-selected)::after {
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 1px solid transparent;
+}
+.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected::before {
+ content: "";
+ position: absolute;
+ z-index: 0;
+ pointer-events: none;
+ transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;
+ right: 0;
+ left: 0;
+ top: -14px;
+ border-radius: 2px;
+ border-top: 4px solid #ccc;
+}
+.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected::after {
+ content: none;
+}
+.block-editor-block-list__layout .is-block-moving-mode.can-insert-moving-block.block-editor-block-list__block.is-selected::before {
+ border-color: var(--wp-admin-theme-color);
+}
+
+.is-block-moving-mode.block-editor-block-list__block-selection-button {
+ opacity: 0;
+ font-size: 1px;
+ height: 1px;
+ padding: 0;
+}
+
+.block-editor-block-list__layout .block-editor-block-list__block {
+ position: relative;
+ overflow-wrap: break-word;
+ /**
+ * Notices
+ */
+ /**
+ * Block Layout
+ */
+ /**
+ * Block styles and alignments
+ */
+}
+.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel * {
+ z-index: 1;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui {
+ margin: -10px 0 12px 0;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui {
+ margin: 0 0 12px 0;
+ width: 100%;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice {
+ margin-left: 0;
+ margin-right: 0;
+}
+.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content {
+ font-size: 13px;
+}
+.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus {
+ outline: none;
+}
+.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {
+ position: absolute;
+ z-index: 1;
+ pointer-events: none;
+ content: "";
+ top: 1px;
+ bottom: 1px;
+ left: 1px;
+ right: 1px;
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 1px;
+ outline: 2px solid transparent;
+}
+.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff;
+}
+.block-editor-block-list__layout .block-editor-block-list__block::after {
+ content: "";
+ pointer-events: none;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border-radius: 2px;
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) transparent;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning {
+ min-height: 48px;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning > * {
+ pointer-events: none;
+ -webkit-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 {
+ content: "";
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border-radius: 2px;
+ background-color: rgba(255, 255, 255, 0.4);
+}
+.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected::after {
+ background-color: transparent;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay::after {
+ display: none;
+}
+.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 {
+ display: block;
+}
+.block-editor-block-list__layout .block-editor-block-list__block.is-reusable.has-child-selected::after {
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+.block-editor-block-list__layout .block-editor-block-list__block[data-clear=true] {
+ float: none;
+}
+
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered {
+ cursor: default;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered::after {
+ top: 1px;
+ left: 1px;
+ right: 1px;
+ bottom: 1px;
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ border-radius: 1px;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected {
+ cursor: unset;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ top: 1px;
+ left: 1px;
+ right: 1px;
+ bottom: 1px;
+ border-radius: 1px;
+}
+.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:focus::after {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) {
+ opacity: 0.5;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .is-focus-mode .block-editor-block-list__block:not(.has-child-selected) {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) .block-editor-block-list__block, .is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-selected, .is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-multi-selected {
+ opacity: 1;
+}
+
+.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity {
+ opacity: 0.5;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.has-child-selected, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity:not(.has-child-selected) .block-editor-block-list__block, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity .block-editor-block-list__block,
+.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity .is-active-entity .block-editor-block-list__block {
+ opacity: 1;
+}
+
+.wp-block[data-align=left] > *,
+.wp-block[data-align=right] > *,
+.wp-block.alignleft,
+.wp-block.alignright {
+ z-index: 21;
+}
+
+.wp-site-blocks > [data-align=left] {
+ float: left;
+ margin-right: 2em;
+}
+
+.wp-site-blocks > [data-align=right] {
+ float: right;
+ margin-left: 2em;
+}
+
+.wp-site-blocks > [data-align=center] {
+ justify-content: center;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+/**
+ * In-Canvas Inserter
+ */
+.block-editor-block-list .block-editor-inserter {
+ margin: 8px;
+ cursor: move;
+ cursor: grab;
+}
+
+@keyframes block-editor-inserter__toggle__fade-in-animation {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 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;
+ animation-delay: 0s;
+ }
+}
+
+.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender {
+ display: none;
+}
+.block-editor-block-list__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__block-html-textarea {
+ display: block;
+ margin: 0;
+ padding: 12px;
+ width: 100%;
+ border: none;
+ outline: none;
+ border-radius: 2px;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ resize: none;
+ overflow: hidden;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 15px;
+ line-height: 1.5;
+ transition: padding 0.2s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-list__block .block-editor-block-list__block-html-textarea {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+/**
+ * Warnings.
+ */
+.block-editor-block-list__block .block-editor-warning {
+ z-index: 5;
+ position: relative;
+}
+.block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning {
+ margin-bottom: auto;
+}
+
+/**
+ * Insertion Point.
+ */
+.block-editor-block-list__insertion-point {
+ position: absolute;
+}
+
+.block-editor-block-list__insertion-point-indicator {
+ position: absolute;
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-block-list__insertion-point.is-vertical > .block-editor-block-list__insertion-point-indicator {
+ top: 50%;
+ height: 1px;
+}
+.block-editor-block-list__insertion-point.is-horizontal > .block-editor-block-list__insertion-point-indicator {
+ top: 0;
+ right: 0;
+ left: 50%;
+ width: 1px;
+}
+
+.block-editor-block-list__insertion-point-inserter {
+ display: none;
+ position: absolute;
+ justify-content: center;
+ top: calc(50% - 12px);
+ left: calc(50% - 12px);
+}
+@media (min-width: 480px) {
+ .block-editor-block-list__insertion-point-inserter {
+ display: flex;
+ }
+}
+
+.block-editor-block-list__block-popover-inserter {
+ position: absolute;
+ top: -9999em;
+ margin-bottom: 14px;
+}
+.block-editor-block-list__block-popover-inserter.is-visible {
+ position: static;
+}
+
+.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon {
+ background: #1e1e1e;
+ border-radius: 2px;
+ color: #fff;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+}
+.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
+ color: #fff;
+ background: var(--wp-admin-theme-color);
+}
+
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon {
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
+ background: #1e1e1e;
+}
+
+/**
+ * Block Toolbar when contextual.
+ */
+.block-editor-block-contextual-toolbar {
+ display: inline-flex;
+ 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;
+}
+.block-editor-block-contextual-toolbar.is-fixed {
+ position: sticky;
+ top: 0;
+ width: 100%;
+ z-index: 31;
+ min-height: 48px;
+ display: block;
+ border: none;
+ border-bottom: 1px solid #e0e0e0;
+ border-radius: 0;
+}
+.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar-group,
+.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar {
+ border-right-color: #e0e0e0;
+}
+.block-editor-block-contextual-toolbar .block-editor-block-mover-button {
+ overflow: hidden;
+}
+.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button {
+ min-width: 24px;
+ width: 24px;
+}
+.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button svg {
+ min-width: 24px;
+}
+
+.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button:focus::before {
+ left: 0 !important;
+ min-width: 0;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-up-button svg {
+ top: 5px;
+ }
+ .block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-down-button svg {
+ bottom: 5px;
+ }
+}
+
+/**
+ * Block Label for Navigation/Selection Mode
+ */
+.block-editor-block-list__block-selection-button {
+ display: inline-flex;
+ padding: 0 12px;
+ z-index: 22;
+ border-radius: 2px;
+ background-color: #1e1e1e;
+ font-size: 13px;
+ height: 48px;
+}
+.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content {
+ margin: auto;
+ display: inline-flex;
+ align-items: center;
+}
+.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content > .components-flex__item {
+ margin-right: 6px;
+}
+.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle {
+ cursor: grab;
+ padding: 0;
+ height: 24px;
+ min-width: 24px;
+ margin-left: -2px;
+}
+.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle svg {
+ min-width: 18px;
+ min-height: 18px;
+}
+.block-editor-block-list__block-selection-button .block-editor-block-icon {
+ font-size: 13px;
+ color: #fff;
+ height: 48px;
+}
+.block-editor-block-list__block-selection-button .components-button {
+ min-width: 36px;
+ color: #fff;
+ height: 48px;
+ display: flex;
+}
+.block-editor-block-list__block-selection-button .components-button:focus {
+ box-shadow: none;
+ border: none;
+}
+.block-editor-block-list__block-selection-button .components-button:active {
+ color: #fff;
+}
+.block-editor-block-list__block-selection-button .block-selection-button_select-button.components-button {
+ padding: 0;
+}
+
+/**
+ * Popovers.
+ */
+.block-editor-block-list__insertion-point-popover.is-without-arrow {
+ z-index: 28;
+ position: absolute;
+ pointer-events: none;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow * {
+ pointer-events: none;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter {
+ pointer-events: all;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter * {
+ pointer-events: all;
+}
+.block-editor-block-list__insertion-point-popover.is-without-arrow .components-popover__content.components-popover__content {
+ background: none;
+ border: none;
+ box-shadow: none;
+ overflow-y: visible;
+ margin-left: 0;
+}
+
+@keyframes hide-during-dragging {
+ to {
+ position: fixed;
+ transform: translate(9999px, 9999px);
+ }
+}
+.components-popover.block-editor-block-list__block-popover {
+ z-index: 31;
+ position: absolute;
+}
+.components-popover.block-editor-block-list__block-popover .components-popover__content {
+ margin: 0 !important;
+ min-width: auto;
+ width: max-content;
+ background: none;
+ border: none;
+ box-shadow: none;
+ overflow-y: visible;
+ pointer-events: none;
+}
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar,
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__empty-block-inserter {
+ pointer-events: all;
+}
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,
+.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar {
+ margin-top: 12px;
+ margin-bottom: 12px;
+}
+.components-popover.block-editor-block-list__block-popover.is-insertion-point-visible {
+ visibility: hidden;
+}
+.is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover {
+ opacity: 0;
+ animation: hide-during-dragging 1ms linear forwards;
+}
+
+.is-dragging-components-draggable .components-tooltip {
+ display: none;
+}
+
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown,
+.block-editor-block-toolbar .components-toolbar-group {
+ padding-left: 6px;
+ padding-right: 6px;
+}
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button,
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon,
+.block-editor-block-toolbar .components-toolbar-group .components-button,
+.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon {
+ min-width: 36px;
+ padding-left: 6px;
+ padding-right: 6px;
+}
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button svg,
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button svg,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon svg,
+.block-editor-block-toolbar .components-toolbar-group .components-button svg,
+.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon svg {
+ min-width: 24px;
+}
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button::before,
+.block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button::before,
+.block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon::before,
+.block-editor-block-toolbar .components-toolbar-group .components-button::before,
+.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon::before {
+ left: 2px;
+ right: 2px;
+}
+
+.is-vertical .block-list-appender {
+ width: 24px;
+ margin-right: auto;
+ margin-top: 12px;
+ margin-left: 12px;
+}
+
+.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-lock-modal {
+ z-index: 1000001;
+}
+@media (min-width: 600px) {
+ .block-editor-block-lock-modal .components-modal__frame {
+ max-width: 480px;
+ }
+}
+
+.block-editor-block-lock-modal__checklist {
+ margin: 0;
+}
+
+.block-editor-block-lock-modal__options-title {
+ padding: 12px 0;
+}
+.block-editor-block-lock-modal__options-title .components-checkbox-control__label {
+ font-weight: 600;
+}
+.block-editor-block-lock-modal__options-title .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin: 0;
+}
+
+.block-editor-block-lock-modal__checklist-item {
+ margin-bottom: 0;
+ padding: 12px 0 12px 32px;
+}
+.block-editor-block-lock-modal__checklist-item .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin: 0;
+}
+.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ flex-grow: 1;
+}
+.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label svg {
+ margin-right: 12px;
+ fill: #1e1e1e;
+}
+.block-editor-block-lock-modal__checklist-item:hover {
+ background-color: #f0f0f0;
+ border-radius: 2px;
+}
+
+.block-editor-block-lock-modal__actions {
+ margin-top: 24px;
+}
+
+.block-editor-block-lock-toolbar .components-button.has-icon {
+ min-width: 36px !important;
+ padding-left: 0 !important;
+}
+.block-editor-block-lock-toolbar .components-button.has-icon:focus::before {
+ right: 8px !important;
+}
+
+.block-editor-block-breadcrumb {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+.block-editor-block-breadcrumb li {
+ display: inline-flex;
+ margin: 0;
+}
+.block-editor-block-breadcrumb li .block-editor-block-breadcrumb__separator {
+ fill: currentColor;
+ margin-left: -4px;
+ margin-right: -4px;
+ transform: scaleX(1) /*rtl:scaleX(-1);*/;
+}
+.block-editor-block-breadcrumb li:last-child .block-editor-block-breadcrumb__separator {
+ display: none;
+}
+
+.block-editor-block-breadcrumb__button.components-button {
+ height: 24px;
+ line-height: 24px;
+ 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 {
+ 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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.block-editor-block-breadcrumb__current {
+ cursor: default;
+}
+
+.block-editor-block-breadcrumb__button.components-button,
+.block-editor-block-breadcrumb__current {
+ color: #1e1e1e;
+ padding: 0 8px;
+ font-size: inherit;
+}
+
+.block-editor-block-card {
+ display: flex;
+ align-items: flex-start;
+}
+
+.block-editor-block-card__content {
+ flex-grow: 1;
+ margin-bottom: 4px;
+}
+
+.block-editor-block-card__title {
+ font-weight: 500;
+}
+.block-editor-block-card__title.block-editor-block-card__title {
+ line-height: 24px;
+ margin: 0 0 4px;
+}
+
+.block-editor-block-card__description {
+ font-size: 13px;
+}
+
+.block-editor-block-card .block-editor-block-icon {
+ flex: 0 0 24px;
+ margin-left: 0;
+ margin-right: 12px;
+ width: 24px;
+ height: 24px;
+}
+
+/**
+ * Invalid block comparison
+ */
+.block-editor-block-compare {
+ height: auto;
+}
+
+.block-editor-block-compare__wrapper {
+ display: flex;
+ padding-bottom: 16px;
+}
+.block-editor-block-compare__wrapper > div {
+ display: flex;
+ justify-content: space-between;
+ flex-direction: column;
+ width: 50%;
+ padding: 0 16px 0 0;
+ min-width: 200px;
+ max-width: 600px;
+}
+.block-editor-block-compare__wrapper > div button {
+ float: right;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__converted {
+ border-left: 1px solid #ddd;
+ padding-left: 15px;
+ padding-right: 0;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html {
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 12px;
+ color: #1e1e1e;
+ border-bottom: 1px solid #ddd;
+ padding-bottom: 15px;
+ line-height: 1.7;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html span {
+ background-color: #e6ffed;
+ padding-top: 3px;
+ padding-bottom: 3px;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added {
+ background-color: #acf2bd;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed {
+ background-color: #cc1818;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__preview {
+ padding: 0;
+ padding-top: 16px;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__preview p {
+ font-size: 12px;
+ margin-top: 0;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__action {
+ margin-top: 16px;
+}
+.block-editor-block-compare__wrapper .block-editor-block-compare__heading {
+ font-size: 1em;
+ font-weight: 400;
+ margin: 0.67em 0;
+}
+
+.block-editor-block-content-overlay.overlay-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: transparent;
+ border: none;
+ border-radius: 2px;
+ z-index: 10;
+}
+.block-editor-block-content-overlay:hover:not(.is-dragging-blocks).overlay-active::before, .block-editor-block-content-overlay.parent-highlighted.overlay-active::before {
+ background: rgba(var(--wp-admin-theme-color--rgb), 0.1);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color) inset;
+}
+.block-editor-block-content-overlay.overlay-active:not(.is-dragging-blocks) * {
+ pointer-events: none;
+}
+.block-editor-block-content-overlay.is-dragging-blocks {
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+
+.block-editor-block-draggable-chip-wrapper {
+ position: absolute;
+ top: -24px;
+ left: 0;
+}
+
+.block-editor-block-draggable-chip {
+ background-color: #1e1e1e;
+ border-radius: 2px;
+ box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
+ color: #fff;
+ cursor: grabbing;
+ display: inline-flex;
+ height: 48px;
+ padding: 0 13px;
+ -webkit-user-select: none;
+ user-select: none;
+}
+.block-editor-block-draggable-chip svg {
+ fill: currentColor;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content {
+ margin: auto;
+ justify-content: flex-start;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content > .components-flex__item {
+ margin-right: 6px;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content > .components-flex__item:last-child {
+ margin-right: 0;
+}
+.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content .block-editor-block-icon svg {
+ min-width: 18px;
+ min-height: 18px;
+}
+.block-editor-block-draggable-chip .components-flex__item {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.block-editor-block-list__layout .is-dragging {
+ background-color: currentColor !important;
+ opacity: 0.05 !important;
+ border-radius: 2px !important;
+ pointer-events: none !important;
+}
+.block-editor-block-list__layout .is-dragging::selection {
+ background: transparent !important;
+}
+.block-editor-block-list__layout .is-dragging::after {
+ content: none !important;
+}
+
+.block-editor-block-mobile-toolbar {
+ display: flex;
+ flex-direction: row;
+ border-right: 1px solid #ddd;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover-button {
+ width: 36px;
+ height: 36px;
+ border-radius: 2px;
+ padding: 3px;
+ margin: 0;
+ justify-content: center;
+ align-items: center;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover-button .dashicon {
+ margin: auto;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover {
+ display: flex;
+ margin-right: auto;
+}
+.block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover-button {
+ float: left;
+}
+
+.block-editor-block-mover-button__description {
+ display: none;
+}
+
+.block-editor-block-mover-button.has-icon {
+ padding: 0;
+}
+
+.block-editor-block-mover {
+ display: inline-flex;
+ flex-direction: row;
+}
+.block-editor-block-mover .block-editor-block-mover__move-button-container,
+.block-editor-block-mover .components-toolbar {
+ flex: 1;
+ flex-direction: row;
+ border-right: none !important;
+ padding: 0;
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .block-editor-block-mover__move-button-container,
+.block-editor-block-mover .components-toolbar {
+ flex-direction: column;
+ }
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container, .block-editor-block-mover.is-horizontal .components-toolbar {
+ flex-direction: row;
+}
+.block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button {
+ padding-right: 0;
+ padding-left: 0;
+ min-width: 36px;
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .block-editor-block-mover-button {
+ height: 24px;
+ width: 42px;
+ padding-right: 11px !important;
+ padding-left: 6px !important;
+ }
+ .block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button {
+ min-width: 42px;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .block-editor-block-mover-button::before {
+ left: 8px !important;
+ right: 8px !important;
+ }
+}
+.block-editor-block-mover .block-editor-block-mover__drag-handle {
+ width: 24px;
+ cursor: grab;
+ min-width: 24px !important;
+ padding: 0 !important;
+}
+.block-editor-block-mover .block-editor-block-mover__drag-handle:focus::before {
+ left: 0 !important;
+ right: 0 !important;
+}
+@media (min-width: 600px) {
+ .block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button,
+.block-editor-block-mover .components-toolbar .block-editor-block-mover-button {
+ margin: 0 auto 0 0;
+ }
+ .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% - 1px);
+ }
+ .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% - 1px);
+ }
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon {
+ height: 48px;
+ width: 24px;
+ padding-left: 0;
+ padding-right: 0;
+}
+.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon::before {
+ top: 1px;
+ bottom: 1px;
+ min-width: 0;
+ width: auto;
+ height: auto;
+}
+.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-button.is-up-button.has-icon::before {
+ left: 0 !important;
+ right: 0 !important;
+}
+.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-button.is-down-button.has-icon::before {
+ left: 0 !important;
+ right: 0 !important;
+ width: calc(100% + 1px);
+}
+
+.block-editor-block-navigation__container {
+ min-width: 280px;
+}
+
+.block-editor-block-navigation__label {
+ margin: 0 0 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.block-editor-block-parent-selector {
+ background: #fff;
+ border-radius: 2px;
+}
+.block-editor-block-parent-selector .block-editor-block-parent-selector__button {
+ width: 48px;
+ height: 48px;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
+}
+
+.block-editor-block-patterns-list__list-item {
+ cursor: pointer;
+ margin-bottom: 24px;
+}
+.block-editor-block-patterns-list__list-item.is-placeholder {
+ min-height: 100px;
+}
+.block-editor-block-patterns-list__list-item[draggable=true] .block-editor-block-preview__container {
+ cursor: grab;
+}
+
+.block-editor-block-patterns-list__item {
+ height: 100%;
+}
+.block-editor-block-patterns-list__item .block-editor-block-preview__container {
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ border-radius: 2px;
+ border: 1px solid #f0f0f0;
+}
+.block-editor-block-patterns-list__item .block-editor-block-patterns-list__item-title {
+ padding-top: 8px;
+ font-size: 12px;
+ text-align: center;
+}
+.block-editor-block-patterns-list__item:hover .block-editor-block-preview__container {
+ border: 1px solid var(--wp-admin-theme-color);
+}
+.block-editor-block-patterns-list__item:focus .block-editor-block-preview__container {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-block-patterns-list__item:hover .block-editor-block-patterns-list__item-title, .block-editor-block-patterns-list__item:focus .block-editor-block-patterns-list__item-title {
+ color: var(--wp-admin-theme-color);
+}
+
+.block-editor-block-preview__container {
+ position: relative;
+ width: 100%;
+ overflow: hidden;
+}
+.block-editor-block-preview__container .block-editor-block-preview__content {
+ top: 0;
+ left: 0;
+ transform-origin: top left;
+ text-align: initial;
+ margin: 0;
+ overflow: visible;
+ min-height: auto;
+}
+.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-list__insertion-point,
+.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-drop-zone,
+.block-editor-block-preview__container .block-editor-block-preview__content .reusable-block-indicator,
+.block-editor-block-preview__container .block-editor-block-preview__content .block-list-appender {
+ display: none;
+}
+
+.block-editor-block-preview__content-iframe .block-list-appender {
+ display: none;
+}
+
+.block-editor-block-preview__live-content * {
+ pointer-events: none;
+}
+.block-editor-block-preview__live-content .block-list-appender {
+ display: none;
+}
+.block-editor-block-preview__live-content .components-button:disabled {
+ opacity: initial;
+}
+.block-editor-block-preview__live-content .components-placeholder,
+.block-editor-block-preview__live-content .block-editor-block-list__block[data-empty=true] {
+ display: none;
+}
+
+.block-editor-block-settings-menu__popover .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.block-editor-block-styles + .default-style-picker__default-switcher {
+ margin-top: 16px;
+}
+
+.block-editor-block-styles__preview-panel {
+ display: none;
+ position: absolute;
+ right: 16px;
+ left: auto;
+ z-index: 90;
+}
+@media (min-width: 782px) {
+ .block-editor-block-styles__preview-panel {
+ display: block;
+ }
+}
+.block-editor-block-styles__preview-panel .block-editor-inserter__preview-container {
+ left: auto;
+ right: auto;
+ top: auto;
+ position: static;
+}
+.block-editor-block-styles__preview-panel .block-editor-block-card__title.block-editor-block-card__title {
+ margin: 0;
+}
+.block-editor-block-styles__preview-panel .block-editor-block-icon {
+ display: none;
+}
+
+.block-editor-block-styles__variants {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ gap: 8px;
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item {
+ color: #2f2f2f;
+ box-shadow: inset 0 0 0 1px #ccc;
+ display: inline-block;
+ width: calc(50% - 4px);
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item:focus, .block-editor-block-styles__variants .block-editor-block-styles__item:hover {
+ color: var(--wp-admin-theme-color);
+ box-shadow: inset 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item.is-active, .block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover {
+ background-color: #2f2f2f;
+ box-shadow: none;
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item.is-active .block-editor-block-styles__item-text, .block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover .block-editor-block-styles__item-text {
+ color: #fff;
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-editor-block-styles__variants .block-editor-block-styles__item-text {
+ word-break: break-all;
+ white-space: normal;
+ text-align: start;
+ text-align-last: center;
+}
+
+.block-editor-block-styles__block-preview-container,
+.block-editor-block-styles__block-preview-container * {
+ box-sizing: border-box !important;
+}
+
+.block-editor-block-switcher {
+ position: relative;
+ padding: 0 6px;
+}
+.block-editor-block-switcher .components-button.components-dropdown-menu__toggle.has-icon.has-icon {
+ min-width: 36px;
+}
+
+.block-editor-block-switcher__no-switcher-icon,
+.block-editor-block-switcher__toggle {
+ position: relative;
+}
+
+.components-button.block-editor-block-switcher__toggle,
+.components-button.block-editor-block-switcher__no-switcher-icon {
+ margin: 0;
+ display: block;
+ height: 48px;
+}
+.components-button.block-editor-block-switcher__toggle .block-editor-block-icon,
+.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ margin: auto;
+}
+
+.block-editor-block-switcher__toggle-text {
+ margin-left: 8px;
+}
+.show-icon-labels .block-editor-block-switcher__toggle-text {
+ display: none;
+}
+
+.show-icon-labels .block-editor-block-toolbar .block-editor-block-switcher .components-button.has-icon::after {
+ font-size: 14px;
+}
+
+.block-editor-block-switcher__popover {
+ margin-left: 6px;
+}
+
+.components-button.block-editor-block-switcher__no-switcher-icon {
+ display: flex;
+ padding: 6px 12px !important;
+}
+.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ margin-right: auto;
+ margin-left: auto;
+ min-width: 24px !important;
+}
+
+.components-button.block-editor-block-switcher__no-switcher-icon:disabled {
+ 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;
+}
+
+.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon .block-editor-block-icon,
+.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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;
+ min-width: 100%;
+}
+.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon::before,
+.block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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;
+ left: 8px;
+}
+
+.components-popover.block-editor-block-switcher__popover .components-popover__content {
+ min-width: 300px;
+}
+
+.components-popover.block-editor-block-switcher__popover .components-popover__content > div {
+ min-width: auto;
+ display: flex;
+ background: #fff;
+ padding: 0;
+}
+.components-popover.block-editor-block-switcher__popover .components-popover__content > div .components-menu-group {
+ margin: 0;
+}
+
+.block-editor-block-switcher__popover .components-popover__content .block-editor-block-styles {
+ margin: 0 -3px;
+}
+.block-editor-block-switcher__popover .components-popover__content .components-panel__body {
+ border: 0;
+ position: relative;
+ z-index: 1;
+}
+.block-editor-block-switcher__popover .components-popover__content .components-panel__body + .components-panel__body {
+ border-top: 1px solid #e0e0e0;
+}
+
+.block-editor-block-switcher__popover__preview__parent .block-editor-block-switcher__popover__preview__container {
+ position: absolute;
+ top: -12px;
+ left: calc(100% + 32px);
+}
+
+.block-editor-block-switcher__preview__popover {
+ display: none;
+}
+.block-editor-block-switcher__preview__popover.components-popover {
+ margin-left: 4px;
+ margin-top: 11px;
+}
+@media (min-width: 782px) {
+ .block-editor-block-switcher__preview__popover {
+ display: block;
+ }
+}
+.block-editor-block-switcher__preview__popover .components-popover__content {
+ box-shadow: none;
+ border: 1px solid #1e1e1e;
+ background: #fff;
+ border-radius: 2px;
+}
+.block-editor-block-switcher__preview__popover .block-editor-block-switcher__preview {
+ width: 300px;
+ height: auto;
+ max-height: 500px;
+ padding: 16px;
+}
+
+.block-editor-block-switcher__preview-title {
+ margin-bottom: 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {
+ min-width: 36px;
+}
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon,
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle {
+ height: 48px;
+}
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
+.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;
+ height: 48px;
+}
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
+.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {
+ padding: 12px;
+}
+
+.block-editor-block-switcher__preview-patterns-container {
+ padding-bottom: 16px;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item {
+ margin-top: 16px;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-preview__container {
+ cursor: pointer;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item {
+ height: 100%;
+ border-radius: 2px;
+ transition: all 0.05s ease-in-out;
+ position: relative;
+ border: 1px solid transparent;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover, .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:focus {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
+}
+.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item .block-editor-block-switcher__preview-patterns-container-list__item-title {
+ padding: 4px;
+ font-size: 12px;
+ text-align: center;
+ cursor: pointer;
+}
+
+.block-editor-block-types-list > [role=presentation] {
+ overflow: hidden;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.block-editor-block-variation-picker .components-placeholder__instructions {
+ margin-bottom: 0;
+}
+.block-editor-block-variation-picker .components-placeholder__fieldset {
+ flex-direction: column;
+}
+.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset {
+ max-width: 90%;
+}
+
+.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations {
+ display: flex;
+ justify-content: flex-start;
+ flex-direction: row;
+ flex-wrap: wrap;
+ width: 100%;
+ margin: 16px 0;
+ padding: 0;
+ list-style: none;
+}
+.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li {
+ list-style: none;
+ margin: 8px 20px 0 0;
+ flex-shrink: 1;
+ width: 75px;
+ text-align: center;
+}
+.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li button {
+ display: inline-flex;
+ margin-right: 0;
+}
+.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;
+ line-height: 1.4;
+}
+
+.block-editor-block-variation-picker__variation {
+ width: 100%;
+}
+.block-editor-block-variation-picker__variation.components-button.has-icon {
+ justify-content: center;
+ width: auto;
+}
+.block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary {
+ background-color: #fff;
+}
+.block-editor-block-variation-picker__variation.components-button {
+ height: auto;
+ padding: 0;
+}
+.block-editor-block-variation-picker__variation::before {
+ content: "";
+ padding-bottom: 100%;
+}
+.block-editor-block-variation-picker__variation:first-child {
+ margin-left: 0;
+}
+.block-editor-block-variation-picker__variation:last-child {
+ margin-right: 0;
+}
+
+.block-editor-block-pattern-setup {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-start;
+ width: 100%;
+ border-radius: 2px;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__toolbar {
+ justify-content: center;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
+ column-gap: 24px;
+ display: block;
+ width: 100%;
+ padding: 32px;
+ column-count: 2;
+}
+@media (min-width: 1440px) {
+ .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
+ column-count: 3;
+ }
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-preview__container,
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container div[role=button] {
+ cursor: pointer;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item {
+ break-inside: avoid-column;
+ margin-bottom: 24px;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__container {
+ min-height: 100px;
+ border-radius: 2px;
+ border: 1px solid #ddd;
+}
+.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__content {
+ width: 100%;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar {
+ height: 60px;
+ box-sizing: border-box;
+ padding: 16px;
+ width: 100%;
+ text-align: left;
+ margin: 0;
+ color: #1e1e1e;
+ border-radius: 2px 2px 0 0;
+ background-color: #fff;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: space-between;
+ border-top: 1px solid #ddd;
+ align-self: flex-end;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__display-controls {
+ display: flex;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__navigation,
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions {
+ width: calc(50% - 36px);
+ display: flex;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions {
+ justify-content: flex-end;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ box-sizing: border-box;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container {
+ overflow: hidden;
+ position: relative;
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ transform-style: preserve-3d;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container * {
+ box-sizing: border-box;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide {
+ position: absolute;
+ top: 0;
+ width: 100%;
+ margin: auto;
+ padding: 0;
+ transition: transform 0.5s, z-index 0.5s;
+ z-index: 100;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.active-slide {
+ opacity: 1;
+ position: relative;
+ z-index: 102;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.previous-slide {
+ transform: translateX(-100%);
+ z-index: 101;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.next-slide {
+ transform: translateX(100%);
+ z-index: 101;
+}
+.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .block-list-appender {
+ display: none;
+}
+
+.block-editor-block-pattern-setup__carousel,
+.block-editor-block-pattern-setup__grid {
+ width: 100%;
+ overflow-y: auto;
+}
+
+.block-editor-block-variation-transforms {
+ padding: 0 16px 16px 52px;
+ width: 100%;
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle {
+ border: 1px solid #757575;
+ border-radius: 2px;
+ min-height: 30px;
+ width: 100%;
+ position: relative;
+ text-align: left;
+ justify-content: left;
+ padding: 6px 12px;
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle.components-dropdown-menu__toggle {
+ padding-right: 24px;
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle:focus:not(:disabled) {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 calc(var(--wp-admin-border-width-focus) - 1px) var(--wp-admin-theme-color);
+}
+.block-editor-block-variation-transforms .components-dropdown-menu__toggle svg {
+ height: 100%;
+ padding: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+
+.block-editor-block-variation-transforms__popover .components-popover__content {
+ min-width: 230px;
+}
+
+.components-border-radius-control {
+ margin-bottom: 12px;
+}
+.components-border-radius-control legend {
+ margin-bottom: 8px;
+}
+.components-border-radius-control .components-border-radius-control__wrapper {
+ display: flex;
+ justify-content: space-between;
+ align-items: flex-start;
+}
+.components-border-radius-control .components-border-radius-control__wrapper > .components-unit-control-wrapper {
+ width: calc(50% - 26px);
+ margin-bottom: 0;
+}
+.components-border-radius-control .components-border-radius-control__wrapper .components-range-control {
+ width: calc(50% - 26px);
+ margin-bottom: 0;
+}
+.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-base-control__field {
+ margin-bottom: 0;
+ height: 30px;
+}
+.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-range-control__wrapper {
+ margin-right: 10px;
+}
+.components-border-radius-control .components-border-radius-control__wrapper > span {
+ flex: 0 0 auto;
+}
+.components-border-radius-control .components-border-radius-control__input-controls-wrapper {
+ display: flex;
+ width: 70%;
+ flex-wrap: wrap;
+}
+.components-border-radius-control .components-border-radius-control__input-controls-wrapper .components-unit-control-wrapper {
+ width: calc(50% - 8px);
+ margin-bottom: 8px;
+ margin-right: 8px;
+}
+.components-border-radius-control .component-border-radius-control__linked-button.has-icon {
+ display: flex;
+ justify-content: center;
+}
+.components-border-radius-control .component-border-radius-control__linked-button.has-icon svg {
+ margin-right: 0;
+}
+
+.components-border-style-control legend {
+ line-height: 1.4;
+ margin-bottom: 8px;
+ padding: 0;
+}
+.components-border-style-control .components-border-style-control__buttons {
+ display: inline-flex;
+}
+.components-border-style-control .components-border-style-control__buttons .components-button.has-icon {
+ min-width: 30px;
+ height: 30px;
+ padding: 3px;
+ margin-right: 4px;
+}
+
+.block-editor-button-block-appender {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ height: auto;
+ color: #1e1e1e;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+}
+.block-editor-button-block-appender.components-button.components-button {
+ padding: 12px;
+}
+.is-dark-theme .block-editor-button-block-appender {
+ color: rgba(255, 255, 255, 0.65);
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
+}
+.block-editor-button-block-appender:hover {
+ color: var(--wp-admin-theme-color);
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
+}
+.block-editor-button-block-appender:focus {
+ box-shadow: inset 0 0 0 2px var(--wp-admin-theme-color);
+}
+.block-editor-button-block-appender:active {
+ color: #000;
+}
+
+.block-editor-color-gradient-control .block-editor-color-gradient-control__color-indicator {
+ margin-bottom: 12px;
+}
+
+.block-editor-color-gradient-control__fieldset {
+ min-width: 0;
+}
+
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title {
+ display: flex;
+ gap: 8px;
+}
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {
+ width: 12px;
+ height: 12px;
+ align-self: center;
+}
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator:first-child {
+ margin-left: 12px;
+}
+.block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {
+ display: none;
+}
+@media screen and (min-width: 782px) {
+ .block-editor-panel-color-gradient-settings .components-circular-option-picker__swatches {
+ display: grid;
+ grid-template-columns: repeat(6, 28px);
+ justify-content: space-between;
+ }
+}
+.block-editor-block-inspector .block-editor-panel-color-gradient-settings .components-base-control {
+ margin-bottom: inherit;
+}
+.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__dropdown {
+ display: block;
+}
+
+.block-editor-panel-color-gradient-settings__dropdown {
+ width: 100%;
+}
+
+.block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content > div {
+ width: 280px;
+}
+
+@media (min-width: 782px) {
+ .block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content {
+ margin-right: 156px !important;
+ }
+ .block-editor-panel-color-gradient-settings__dropdown-content.is-from-top .components-popover__content {
+ margin-top: -60px !important;
+ }
+ .block-editor-panel-color-gradient-settings__dropdown-content.is-from-bottom .components-popover__content {
+ margin-bottom: -60px !important;
+ }
+}
+.block-editor-panel-color-gradient-settings__dropdown:last-child > div {
+ border-bottom-width: 0;
+}
+
+.block-editor-panel-color-gradient-settings__item {
+ padding-top: 12px !important;
+ padding-bottom: 12px !important;
+}
+.block-editor-panel-color-gradient-settings__item .block-editor-panel-color-gradient-settings__color-indicator {
+ background: linear-gradient(-45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
+}
+.block-editor-panel-color-gradient-settings__item.is-open {
+ background: #f0f0f0;
+ color: var(--wp-admin-theme-color);
+}
+
+.block-editor-contrast-checker > .components-notice {
+ margin: 0;
+}
+
+/**
+ * Default block appender.
+ *
+ * This component shows up in 3 places:
+ * - the black plus that sits at the end of the canvas, if the last block isn't a paragraph
+ * - on the right, inside empty paragraphs
+ * - absolute positioned and blue inside nesting containers
+ */
+.block-editor-default-block-appender {
+ clear: both;
+ margin-left: auto;
+ margin-right: auto;
+ position: relative;
+}
+.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 .block-editor-default-block-appender__content {
+ opacity: 0.62;
+}
+.block-editor-default-block-appender .components-drop-zone__content-icon {
+ display: none;
+}
+
+.block-editor-default-block-appender .block-editor-inserter,
+.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter {
+ position: absolute;
+ top: 0;
+ right: 0;
+ line-height: 0;
+}
+.block-editor-default-block-appender .block-editor-inserter:disabled,
+.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled {
+ display: none;
+}
+
+/**
+ * Fixed position appender.
+ * These styles apply to all in-canvas inserters that exist inside nesting containers.
+ */
+.block-editor-block-list__block .block-list-appender {
+ position: absolute;
+ list-style: none;
+ padding: 0;
+ z-index: 2;
+ bottom: 0;
+ right: 0;
+}
+.block-editor-block-list__block .block-list-appender.block-list-appender {
+ margin: 0;
+ line-height: 0;
+}
+.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender {
+ height: 24px;
+}
+.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block .block-list-appender .block-list-appender__toggle {
+ flex-direction: row;
+ box-shadow: none;
+ height: 24px;
+ width: 24px;
+ display: none;
+ padding: 0 !important;
+ background: #1e1e1e;
+ color: #fff;
+}
+.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon:hover,
+.block-editor-block-list__block .block-list-appender .block-list-appender__toggle:hover {
+ color: #fff;
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender__content {
+ display: none;
+}
+.block-editor-block-list__block .block-list-appender:only-child {
+ position: relative;
+ right: auto;
+ align-self: center;
+ list-style: none;
+ line-height: inherit;
+}
+.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content {
+ display: block;
+}
+
+.block-editor-block-list__block.is-selected .block-editor-block-list__layout > .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block.is-selected .block-editor-block-list__layout > .block-list-appender .block-list-appender__toggle,
+.block-editor-block-list__block.is-selected > .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
+.block-editor-block-list__block.is-selected > .block-list-appender .block-list-appender__toggle {
+ display: flex;
+}
+
+.block-editor-default-block-appender__content {
+ cursor: text;
+}
+
+.block-editor-date-format-picker {
+ margin-bottom: 16px;
+}
+
+.block-editor-date-format-picker__default-format-toggle-control__hint {
+ color: #757575;
+ display: block;
+}
+
+.block-editor-date-format-picker__custom-format-select-control.components-base-control {
+ margin-bottom: 0;
+}
+.block-editor-date-format-picker__custom-format-select-control .components-custom-select-control__button {
+ width: 100%;
+}
+
+.block-editor-date-format-picker__custom-format-select-control__custom-option {
+ border-top: 1px solid #ddd;
+}
+.block-editor-date-format-picker__custom-format-select-control__custom-option.has-hint {
+ grid-template-columns: auto 30px;
+}
+.block-editor-date-format-picker__custom-format-select-control__custom-option .components-custom-select-control__item-hint {
+ grid-row: 2;
+ text-align: left;
+}
+
+.block-editor-duotone-control__popover > .components-popover__content > div {
+ padding: 16px;
+ width: 280px;
+}
+.block-editor-duotone-control__popover .components-menu-group__label {
+ padding: 0;
+}
+.block-editor-duotone-control__popover .components-custom-gradient-picker__gradient-bar {
+ margin: 16px 0 12px;
+}
+.block-editor-duotone-control__popover .components-circular-option-picker__swatches {
+ display: grid;
+ grid-template-columns: repeat(6, 28px);
+ gap: 12px;
+ justify-content: space-between;
+}
+
+.block-editor-duotone-control__description {
+ margin: 16px 0;
+ font-size: 12px;
+}
+
+.block-editor-duotone-control__popover:not([data-y-axis=middle][data-x-axis=right]) > .components-popover__content {
+ margin-left: -14px;
+}
+
+.components-font-appearance-control {
+ margin-bottom: 24px;
+}
+.components-font-appearance-control ul li {
+ color: #1e1e1e;
+ text-transform: capitalize;
+}
+
+.block-editor-image-size-control {
+ margin-bottom: 1em;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row {
+ display: flex;
+ justify-content: space-between;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width,
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {
+ margin-bottom: 0.5em;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input,
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input {
+ line-height: 1.25;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width {
+ margin-right: 5px;
+}
+.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {
+ margin-left: 5px;
+}
+
+.block-editor-block-list__layout.has-overlay::after {
+ content: "";
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 60;
+}
+
+.block-editor-block-types-list__list-item {
+ display: block;
+ width: 33.33%;
+ padding: 0;
+ margin: 0;
+}
+
+.components-button.block-editor-block-types-list__item {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ font-size: 13px;
+ color: #1e1e1e;
+ padding: 8px;
+ align-items: stretch;
+ justify-content: center;
+ cursor: pointer;
+ background: transparent;
+ word-break: break-word;
+ border-radius: 2px;
+ transition: all 0.05s ease-in-out;
+ position: relative;
+ height: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-button.block-editor-block-types-list__item {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-button.block-editor-block-types-list__item:disabled {
+ opacity: 0.6;
+ cursor: default;
+}
+.components-button.block-editor-block-types-list__item:not(:disabled):hover {
+ color: var(--wp-admin-theme-color) !important;
+}
+.components-button.block-editor-block-types-list__item:not(:disabled):focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-button.block-editor-block-types-list__item:not(:disabled).is-active {
+ color: #fff;
+ background: #1e1e1e;
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+
+.block-editor-block-types-list__item-icon {
+ padding: 12px 20px;
+ border-radius: 2px;
+ color: #1e1e1e;
+ transition: all 0.05s ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-types-list__item-icon {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-block-types-list__item-icon .block-editor-block-icon {
+ margin-left: auto;
+ margin-right: auto;
+}
+.block-editor-block-types-list__item-icon svg {
+ transition: all 0.15s ease-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-types-list__item-icon svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-block-types-list__list-item[draggable=true] .block-editor-block-types-list__item-icon {
+ cursor: grab;
+}
+
+.block-editor-block-types-list__item-title {
+ padding: 4px 2px 8px;
+ font-size: 12px;
+}
+
+.items-justified-left {
+ justify-content: flex-start;
+}
+
+.items-justified-center {
+ justify-content: center;
+}
+
+.items-justified-right {
+ justify-content: flex-end;
+}
+
+.items-justified-space-between {
+ justify-content: space-between;
+}
+
+@keyframes loadingpulse {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.block-editor-link-control {
+ position: relative;
+ min-width: 360px;
+}
+.components-popover__content .block-editor-link-control {
+ min-width: auto;
+ width: 90vw;
+ max-width: 360px;
+}
+
+.block-editor-link-control__search-input-wrapper {
+ position: relative;
+}
+
+.block-editor-link-control__search-input-container {
+ position: relative;
+}
+
+.block-editor-link-control__search-input.has-no-label .block-editor-url-input__input {
+ flex: 1;
+}
+
+.block-editor-link-control__field {
+ margin: 16px;
+}
+.block-editor-link-control__field > .components-base-control__field {
+ display: flex;
+ align-items: center;
+ margin: 0;
+}
+.block-editor-link-control__field .components-base-control__label {
+ margin-right: 16px;
+ margin-bottom: 0;
+}
+.block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
+ 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;
+ width: calc(100% - 32px);
+ display: block;
+ padding: 11px 16px;
+ padding-right: 36px;
+ margin: 0;
+ position: relative;
+ border: 1px solid #ddd;
+ border-radius: 2px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.block-editor-link-control__field input[type=text]:focus, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-link-control__field input[type=text]::-webkit-input-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-link-control__field input[type=text]::-moz-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-link-control__field input[type=text]:-ms-input-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.block-editor-link-control__search-error {
+ margin: -8px 16px 16px;
+}
+
+.block-editor-link-control__search-actions {
+ position: absolute;
+ /*
+ * Actions must be positioned on top of URLInput, since the input will grow
+ * when suggestions are rendered.
+ *
+ * Compensate for:
+ * - Border (1px)
+ * - Vertically, for the difference in height between the input (40px) and
+ * the icon buttons.
+ * - Horizontally, pad to the minimum of: default input padding, or the
+ * equivalent of the vertical padding.
+ */
+ top: 3px;
+ right: 19px;
+}
+
+.components-button .block-editor-link-control__search-submit .has-icon {
+ margin: -1px;
+}
+
+.block-editor-link-control__search-results-wrapper {
+ position: relative;
+ margin-top: -15px;
+}
+.block-editor-link-control__search-results-wrapper::before, .block-editor-link-control__search-results-wrapper::after {
+ content: "";
+ position: absolute;
+ left: -1px;
+ right: 16px;
+ display: block;
+ pointer-events: none;
+ z-index: 100;
+}
+.block-editor-link-control__search-results-wrapper::before {
+ height: 8px;
+ top: 0;
+ bottom: auto;
+}
+.block-editor-link-control__search-results-wrapper::after {
+ height: 16px;
+ bottom: 0;
+ top: auto;
+}
+
+.block-editor-link-control__search-results-label {
+ padding: 16px 32px 0;
+ display: block;
+ font-weight: 600;
+}
+
+.block-editor-link-control__search-results {
+ margin: 0;
+ padding: 8px 16px 8px;
+ max-height: 200px;
+ overflow-y: auto;
+}
+.block-editor-link-control__search-results.is-loading {
+ opacity: 0.2;
+}
+
+.block-editor-link-control__search-item {
+ position: relative;
+ display: flex;
+ align-items: flex-start;
+ font-size: 13px;
+ cursor: pointer;
+ background: #fff;
+ width: 100%;
+ border: none;
+ text-align: left;
+ padding: 12px 16px;
+ border-radius: 2px;
+ height: auto;
+}
+.block-editor-link-control__search-item:hover, .block-editor-link-control__search-item:focus {
+ background-color: #f0f0f0;
+}
+.block-editor-link-control__search-item:hover .block-editor-link-control__search-item-type, .block-editor-link-control__search-item:focus .block-editor-link-control__search-item-type {
+ background: #fff;
+}
+.block-editor-link-control__search-item:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color) inset;
+}
+.block-editor-link-control__search-item.is-selected {
+ background: #f0f0f0;
+}
+.block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type {
+ background: #fff;
+}
+.block-editor-link-control__search-item.is-current {
+ flex-direction: column;
+ background: transparent;
+ border: 0;
+ width: 100%;
+ cursor: default;
+ padding: 16px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-header {
+ display: block;
+ flex-direction: row;
+ align-items: flex-start;
+ margin-right: 8px;
+ white-space: pre-wrap;
+ overflow-wrap: break-word;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-header .block-editor-link-control__search-item-info {
+ word-break: break-all;
+}
+.block-editor-link-control__search-item.is-preview .block-editor-link-control__search-item-header {
+ display: flex;
+ flex: 1;
+}
+.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-header {
+ align-items: center;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-icon {
+ position: relative;
+ top: 0.2em;
+ margin-right: 8px;
+ max-height: 24px;
+ flex-shrink: 0;
+ width: 24px;
+ display: flex;
+ justify-content: center;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-icon img {
+ width: 16px;
+}
+.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-icon {
+ top: 0;
+ width: 32px;
+ max-height: 32px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-info,
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title {
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-info .components-external-link__icon,
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title .components-external-link__icon {
+ position: absolute;
+ right: 0;
+ margin-top: 0;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title {
+ display: block;
+ margin-bottom: 0.2em;
+ font-weight: 500;
+ position: relative;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {
+ font-weight: 700;
+ color: inherit;
+ background-color: transparent;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title span {
+ font-weight: normal;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-title svg {
+ display: none;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-info {
+ display: block;
+ color: #757575;
+ font-size: 0.9em;
+ line-height: 1.3;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-error-notice {
+ font-style: italic;
+ font-size: 1.1em;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-type {
+ display: block;
+ padding: 3px 6px;
+ margin-left: auto;
+ font-size: 0.9em;
+ background-color: #f0f0f0;
+ border-radius: 2px;
+ white-space: nowrap;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description {
+ padding-top: 12px;
+ margin: 0;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder {
+ margin-top: 12px;
+ padding-top: 0;
+ height: 28px;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-around;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder::before, .block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder::after {
+ display: block;
+ content: "";
+ height: 0.7em;
+ width: 100%;
+ background-color: #f0f0f0;
+ border-radius: 3px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-description .components-text {
+ font-size: 0.9em;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-image {
+ display: flex;
+ width: 100%;
+ background-color: #f0f0f0;
+ justify-content: center;
+ height: 140px;
+ max-height: 140px;
+ overflow: hidden;
+ border-radius: 2px;
+ margin-top: 12px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-image.is-placeholder {
+ background-color: #f0f0f0;
+ border-radius: 3px;
+}
+.block-editor-link-control__search-item .block-editor-link-control__search-item-image img {
+ display: block;
+ max-width: 100%;
+ height: 140px;
+ max-height: 140px;
+}
+
+.block-editor-link-control__search-item-top {
+ display: flex;
+ flex-direction: row;
+ width: 100%;
+}
+
+.block-editor-link-control__search-item-bottom {
+ transition: opacity 1.5s;
+ width: 100%;
+}
+
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description::before, .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description::after {
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-image {
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon svg,
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon img {
+ opacity: 0;
+}
+.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon::before {
+ content: "";
+ display: block;
+ background-color: #f0f0f0;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ border-radius: 100%;
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+
+.block-editor-link-control__loading {
+ margin: 16px;
+ display: flex;
+ align-items: center;
+}
+.block-editor-link-control__loading .components-spinner {
+ margin-top: 0;
+}
+
+.components-button + .block-editor-link-control__search-create {
+ overflow: visible;
+ padding: 12px 16px;
+}
+.components-button + .block-editor-link-control__search-create::before {
+ content: "";
+ position: absolute;
+ top: -10px;
+ left: 0;
+ display: block;
+ width: 100%;
+}
+
+.block-editor-link-control__search-create {
+ align-items: center;
+}
+.block-editor-link-control__search-create .block-editor-link-control__search-item-title {
+ margin-bottom: 0;
+}
+.block-editor-link-control__search-create .block-editor-link-control__search-item-icon {
+ top: 0;
+}
+
+.block-editor-link-control__search-results div[role=menu] > .block-editor-link-control__search-item.block-editor-link-control__search-item {
+ padding: 10px;
+}
+
+.block-editor-link-control__tools {
+ display: flex;
+ align-items: center;
+ border-top: 1px solid #ddd;
+ margin: 0;
+ padding: 16px;
+}
+
+.block-editor-link-control__unlink {
+ padding-left: 16px;
+ padding-right: 16px;
+}
+
+.block-editor-link-control__settings {
+ flex: 1;
+ margin: 0;
+}
+.block-editor-link-control__settings :last-child {
+ margin-bottom: 0;
+}
+.is-alternate .block-editor-link-control__settings {
+ border-top: 1px solid #1e1e1e;
+}
+
+.block-editor-link-control__setting {
+ margin-bottom: 16px;
+}
+.block-editor-link-control__setting :last-child {
+ margin-bottom: 0;
+}
+
+.block-editor-link-control .block-editor-link-control__search-input .components-spinner {
+ display: block;
+}
+.block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner {
+ position: absolute;
+ left: auto;
+ bottom: auto;
+ /*
+ * Position spinner to the left of the actions.
+ *
+ * Compensate for:
+ * - Input padding right ($button-size)
+ */
+ top: calc(50% - 16px / 2);
+ right: 36px;
+}
+
+.block-editor-link-control__search-item-action {
+ margin-left: auto;
+ flex-shrink: 0;
+}
+
+.block-editor-list-view-tree {
+ width: 100%;
+ border-collapse: collapse;
+ padding: 0;
+ margin: 0;
+}
+.components-modal__content .block-editor-list-view-tree {
+ margin: -12px -6px 0;
+ width: calc(100% + 12px);
+}
+
+.block-editor-list-view-leaf {
+ position: relative;
+}
+.block-editor-list-view-leaf.is-selected td {
+ background: var(--wp-admin-theme-color);
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents, .block-editor-list-view-leaf.is-selected .components-button.has-icon {
+ color: #fff;
+}
+.is-dragging-components-draggable .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents {
+ background: none;
+ color: #1e1e1e;
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents:focus::after {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block__menu:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff;
+}
+.block-editor-list-view-leaf.is-dragging {
+ display: none;
+}
+.block-editor-list-view-leaf.is-first-selected td:first-child {
+ border-top-left-radius: 2px;
+}
+.block-editor-list-view-leaf.is-first-selected td:last-child {
+ border-top-right-radius: 2px;
+}
+.block-editor-list-view-leaf.is-last-selected td:first-child {
+ border-bottom-left-radius: 2px;
+}
+.block-editor-list-view-leaf.is-last-selected td:last-child {
+ border-bottom-right-radius: 2px;
+}
+.block-editor-list-view-leaf.is-branch-selected:not(.is-selected) {
+ background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), linear-gradient(var(--wp-admin-theme-color), var(--wp-admin-theme-color));
+}
+.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:first-child {
+ border-top-left-radius: 2px;
+}
+.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:last-child {
+ border-top-right-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:first-child {
+ border-top-left-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:last-child {
+ border-top-right-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:first-child {
+ border-bottom-left-radius: 2px;
+}
+.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:last-child {
+ border-bottom-right-radius: 2px;
+}
+.block-editor-list-view-leaf.is-branch-selected:not(.is-selected) td {
+ border-radius: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ height: auto;
+ padding: 6px 12px 6px 0;
+ text-align: left;
+ color: #1e1e1e;
+ border-radius: 2px;
+ position: relative;
+ white-space: nowrap;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents.is-dropping-before::before {
+ content: "";
+ position: absolute;
+ pointer-events: none;
+ transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;
+ top: -2px;
+ right: 0;
+ left: 0;
+ border-top: 4px solid var(--wp-admin-theme-color);
+}
+.components-modal__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
+ padding-left: 0;
+ padding-right: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus {
+ box-shadow: none;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus::after {
+ content: "";
+ position: absolute;
+ top: 0;
+ right: -29px;
+ bottom: 0;
+ left: 0;
+ border-radius: inherit;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ z-index: 2;
+ pointer-events: none;
+}
+.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block-contents:focus::after {
+ box-shadow: none;
+}
+.block-editor-list-view-leaf.has-single-cell .block-editor-list-view-block-contents:focus::after {
+ right: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ z-index: 1;
+}
+.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block__menu:focus {
+ box-shadow: none;
+}
+.block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
+ opacity: 1;
+ animation: edit-post__fade-in-animation 0.2s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-block-icon {
+ align-self: flex-start;
+ margin-right: 8px;
+ width: 24px;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__contents-cell {
+ padding-top: 0;
+ padding-bottom: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
+ line-height: 0;
+ width: 36px;
+ vertical-align: middle;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell > * {
+ opacity: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible {
+ position: relative;
+ z-index: 1;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover > *, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible > * {
+ opacity: 1;
+ animation: edit-post__fade-in-animation 0.2s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover > *, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover > *,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible > * {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell .components-button.has-icon {
+ width: 24px;
+ min-width: 24px;
+ padding: 0;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell {
+ padding-right: 5px;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon {
+ height: 24px;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell-alignment-wrapper {
+ display: flex;
+ height: 100%;
+ flex-direction: column;
+ align-items: center;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button {
+ position: relative;
+ width: 36px;
+ height: 24px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button svg {
+ position: relative;
+ height: 24px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button {
+ margin-top: -6px;
+ align-items: flex-end;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button svg {
+ bottom: -4px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button {
+ margin-bottom: -6px;
+ align-items: flex-start;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button svg {
+ top: -4px;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button:focus:enabled {
+ box-shadow: none;
+ outline: none;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button:focus {
+ box-shadow: none;
+ outline: none;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button:focus::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
+ outline: 2px solid transparent;
+}
+.block-editor-list-view-leaf .block-editor-block-mover-button::before {
+ content: "";
+ position: absolute;
+ display: block;
+ border-radius: 2px;
+ height: 16px;
+ min-width: 100%;
+ left: 0;
+ right: 0;
+ animation: components-button__appear-animation 0.1s ease;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf .block-editor-block-mover-button::before {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.block-editor-list-view-leaf .block-editor-inserter__toggle {
+ background: #1e1e1e;
+ color: #fff;
+ height: 24px;
+ margin: 6px 6px 6px 1px;
+ min-width: 24px;
+}
+.block-editor-list-view-leaf .block-editor-inserter__toggle:active {
+ color: #fff;
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-select-button__anchor {
+ background: rgba(0, 0, 0, 0.1);
+ border-radius: 2px;
+ display: inline-block;
+ padding: 2px 6px;
+ margin: 0 8px;
+ max-width: 120px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-select-button__anchor {
+ background: rgba(0, 0, 0, 0.3);
+}
+.block-editor-list-view-leaf .block-editor-list-view-block-select-button__lock {
+ line-height: 0;
+ width: 24px;
+ min-width: 24px;
+ margin-left: auto;
+ padding: 0;
+ vertical-align: middle;
+}
+
+.block-editor-list-view-block-select-button__description,
+.block-editor-list-view-appender__description {
+ display: none;
+}
+
+.block-editor-list-view-block__contents-cell .block-editor-list-view-block__contents-container,
+.block-editor-list-view-block__contents-cell .block-editor-list-view-appender__container,
+.block-editor-list-view-appender__cell .block-editor-list-view-block__contents-container,
+.block-editor-list-view-appender__cell .block-editor-list-view-appender__container {
+ display: flex;
+}
+
+.block-editor-list-view__expander {
+ height: 24px;
+ margin-left: 4px;
+ width: 24px;
+}
+
+.block-editor-list-view-leaf[aria-level] .block-editor-list-view__expander {
+ margin-left: 220px;
+}
+
+.block-editor-list-view-leaf:not([aria-level="1"]) .block-editor-list-view__expander {
+ margin-right: 4px;
+}
+
+.block-editor-list-view-leaf[aria-level="1"] .block-editor-list-view__expander {
+ margin-left: 0px;
+}
+
+.block-editor-list-view-leaf[aria-level="2"] .block-editor-list-view__expander {
+ margin-left: 24px;
+}
+
+.block-editor-list-view-leaf[aria-level="3"] .block-editor-list-view__expander {
+ margin-left: 52px;
+}
+
+.block-editor-list-view-leaf[aria-level="4"] .block-editor-list-view__expander {
+ margin-left: 80px;
+}
+
+.block-editor-list-view-leaf[aria-level="5"] .block-editor-list-view__expander {
+ margin-left: 108px;
+}
+
+.block-editor-list-view-leaf[aria-level="6"] .block-editor-list-view__expander {
+ margin-left: 136px;
+}
+
+.block-editor-list-view-leaf[aria-level="7"] .block-editor-list-view__expander {
+ margin-left: 164px;
+}
+
+.block-editor-list-view-leaf[aria-level="8"] .block-editor-list-view__expander {
+ margin-left: 192px;
+}
+
+.block-editor-list-view-leaf .block-editor-list-view__expander {
+ visibility: hidden;
+}
+
+.block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg {
+ visibility: visible;
+ transition: transform 0.2s ease;
+ transform: rotate(90deg);
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg {
+ visibility: visible;
+ transform: rotate(0deg);
+ transition: transform 0.2s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-list-view-drop-indicator {
+ pointer-events: none;
+}
+.block-editor-list-view-drop-indicator .block-editor-list-view-drop-indicator__line {
+ background: var(--wp-admin-theme-color);
+ height: 1px;
+}
+
+.block-editor-list-view-drop-indicator:not([data-y-axis=middle][data-x-axis=right]) > .components-popover__content {
+ margin-left: 0;
+ border: none;
+ box-shadow: none;
+}
+
+.block-editor-list-view-placeholder {
+ padding: 0;
+ margin: 0;
+ height: 36px;
+}
+
+.modal-open .block-editor-media-replace-flow__options {
+ display: none;
+}
+
+.block-editor-media-replace-flow__indicator {
+ margin-left: 4px;
+}
+
+.block-editor-media-flow__url-input {
+ border-top: 1px solid #1e1e1e;
+ margin-top: 8px;
+ margin-right: -8px;
+ margin-left: -8px;
+ padding: 16px;
+}
+.block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label {
+ display: block;
+ top: 16px;
+ margin-bottom: 8px;
+}
+.block-editor-media-flow__url-input .block-editor-link-control {
+ width: 220px;
+}
+.block-editor-media-flow__url-input .block-editor-link-control .block-editor-url-input {
+ padding: 0;
+}
+.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;
+ white-space: nowrap;
+}
+.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-info {
+ white-space: nowrap;
+}
+.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: 0;
+ width: 100%;
+}
+.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions {
+ top: 0;
+ 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;
+}
+
+.block-editor-media-placeholder__url-input-form {
+ display: flex;
+}
+.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field {
+ width: 100%;
+ min-width: 200px;
+ flex-grow: 1;
+ border: none;
+ border-radius: 0;
+ margin: 2px;
+}
+@media (min-width: 600px) {
+ .block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field {
+ width: 300px;
+ }
+}
+
+.block-editor-media-placeholder__url-input-submit-button {
+ flex-shrink: 1;
+}
+
+.block-editor-media-placeholder__button {
+ margin-bottom: 0.5rem;
+}
+
+.block-editor-media-placeholder__cancel-button.is-link {
+ margin: 1em;
+ display: block;
+}
+
+.block-editor-media-placeholder.is-appender {
+ min-height: 0;
+}
+.block-editor-media-placeholder.is-appender:hover {
+ cursor: pointer;
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+
+.block-editor-multi-selection-inspector__card {
+ display: flex;
+ align-items: flex-start;
+ padding: 16px;
+}
+
+.block-editor-multi-selection-inspector__card-content {
+ flex-grow: 1;
+}
+
+.block-editor-multi-selection-inspector__card-title {
+ font-weight: 500;
+ margin-bottom: 5px;
+}
+
+.block-editor-multi-selection-inspector__card-description {
+ font-size: 13px;
+}
+
+.block-editor-multi-selection-inspector__card .block-editor-block-icon {
+ margin-left: -2px;
+ margin-right: 10px;
+ padding: 0 3px;
+ width: 36px;
+ height: 24px;
+}
+
+.block-editor-plain-text {
+ box-shadow: none;
+ font-family: inherit;
+ font-size: inherit;
+ color: inherit;
+ line-height: inherit;
+ border: none;
+ padding: 0;
+ margin: 0;
+ width: 100%;
+}
+
+.block-editor-responsive-block-control {
+ margin-bottom: 28px;
+ border-bottom: 1px solid #ccc;
+ padding-bottom: 14px;
+}
+.block-editor-responsive-block-control:last-child {
+ padding-bottom: 0;
+ border-bottom: 0;
+}
+
+.block-editor-responsive-block-control__title {
+ margin: 0;
+ margin-bottom: 0.6em;
+ margin-left: -3px;
+}
+
+.block-editor-responsive-block-control__label {
+ font-weight: 600;
+ margin-bottom: 0.6em;
+ margin-left: -3px;
+}
+
+.block-editor-responsive-block-control__inner {
+ margin-left: -1px;
+}
+
+.block-editor-responsive-block-control__toggle {
+ margin-left: 1px;
+}
+
+.block-editor-responsive-block-control .components-base-control__help {
+ 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;
+}
+
+.rich-text [data-rich-text-placeholder] {
+ pointer-events: none;
+}
+.rich-text [data-rich-text-placeholder]::after {
+ content: attr(data-rich-text-placeholder);
+ opacity: 0.62;
+}
+.rich-text:focus {
+ outline: none;
+}
+.rich-text:focus [data-rich-text-format-boundary] {
+ border-radius: 2px;
+}
+
+.block-editor-rich-text__editable > p:first-child {
+ margin-top: 0;
+}
+
+figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before {
+ opacity: 0.8;
+}
+
+.components-popover.block-editor-rich-text__inline-format-toolbar {
+ z-index: 99998;
+}
+.components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content {
+ width: auto;
+ min-width: auto;
+ margin-bottom: 8px;
+ box-shadow: none;
+ 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,
+.components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle {
+ min-width: 48px;
+ min-height: 48px;
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.block-editor-rich-text__inline-format-toolbar-group .components-dropdown-menu__toggle {
+ justify-content: center;
+}
+
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon::after {
+ content: attr(aria-label);
+}
+
+[data-rich-text-script] {
+ display: inline;
+}
+[data-rich-text-script]::before {
+ content: ">";
+ background: yellow;
+}
+
+.block-editor-skip-to-selected-block {
+ position: absolute;
+ top: -9999em;
+}
+.block-editor-skip-to-selected-block:focus {
+ height: auto;
+ width: auto;
+ display: block;
+ font-size: 14px;
+ font-weight: 600;
+ padding: 15px 23px 14px;
+ background: #f1f1f1;
+ color: var(--wp-admin-theme-color);
+ line-height: normal;
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+ text-decoration: none;
+ outline: none;
+ z-index: 100000;
+}
+
+.block-editor-text-transform-control {
+ flex: 0 0 50%;
+}
+.block-editor-text-transform-control legend {
+ margin-bottom: 8px;
+}
+.block-editor-text-transform-control .block-editor-text-transform-control__buttons {
+ display: inline-flex;
+ margin-bottom: 24px;
+}
+.block-editor-text-transform-control .block-editor-text-transform-control__buttons .components-button.has-icon {
+ min-width: 24px;
+ padding: 0;
+ margin-right: 4px;
+}
+
+.block-editor-text-decoration-control {
+ flex: 0 0 50%;
+}
+.block-editor-text-decoration-control legend {
+ margin-bottom: 8px;
+}
+.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons {
+ display: inline-flex;
+ margin-bottom: 24px;
+}
+.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons .components-button.has-icon {
+ min-width: 24px;
+ padding: 0;
+ margin-right: 4px;
+}
+
+.block-editor-tool-selector__help {
+ margin-top: 8px;
+ margin-left: -8px;
+ margin-right: -8px;
+ margin-bottom: -8px;
+ padding: 16px;
+ border-top: 1px solid #ddd;
+ color: #757575;
+ min-width: 280px;
+}
+
+.block-editor-block-list__block .block-editor-url-input,
+.components-popover .block-editor-url-input,
+.block-editor-url-input {
+ flex-grow: 1;
+ position: relative;
+ padding: 1px;
+}
+.block-editor-block-list__block .block-editor-url-input input[type=text],
+.components-popover .block-editor-url-input input[type=text],
+.block-editor-url-input input[type=text] {
+ width: 100%;
+ padding: 8px 8px 8px 12px;
+ border: none;
+ border-radius: 0;
+ margin-left: 0;
+ margin-right: 0;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px;
+}
+@media (min-width: 600px) {
+ .block-editor-block-list__block .block-editor-url-input input[type=text],
+.components-popover .block-editor-url-input input[type=text],
+.block-editor-url-input input[type=text] {
+ width: 300px;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-block-list__block .block-editor-url-input input[type=text],
+.components-popover .block-editor-url-input input[type=text],
+.block-editor-url-input input[type=text] {
+ font-size: 13px;
+ }
+}
+.block-editor-block-list__block .block-editor-url-input input[type=text]::-ms-clear,
+.components-popover .block-editor-url-input input[type=text]::-ms-clear,
+.block-editor-url-input input[type=text]::-ms-clear {
+ display: none;
+}
+.block-editor-block-list__block .block-editor-url-input.is-full-width,
+.components-popover .block-editor-url-input.is-full-width,
+.block-editor-url-input.is-full-width {
+ width: 100%;
+}
+.block-editor-block-list__block .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],
+.components-popover .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],
+.block-editor-url-input.is-full-width .block-editor-url-input__input[type=text] {
+ width: 100%;
+}
+.block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,
+.components-popover .block-editor-url-input.is-full-width__suggestions,
+.block-editor-url-input.is-full-width__suggestions {
+ width: 100%;
+}
+.block-editor-block-list__block .block-editor-url-input .components-spinner,
+.components-popover .block-editor-url-input .components-spinner,
+.block-editor-url-input .components-spinner {
+ position: absolute;
+ right: 8px 8px 8px 12px;
+ bottom: 8px 8px 8px 12px8px1;
+ margin: 0;
+}
+
+.block-editor-url-input__input[type=text] {
+ 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) {
+ .block-editor-url-input__input[type=text] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .block-editor-url-input__input[type=text] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.block-editor-url-input__input[type=text]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.block-editor-url-input__input[type=text]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-url-input__input[type=text]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.block-editor-url-input__input[type=text]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.block-editor-url-input__suggestions {
+ max-height: 200px;
+ transition: all 0.15s ease-in-out;
+ padding: 4px 0;
+ width: 302px;
+ overflow-y: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-url-input__suggestions {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-url-input__suggestions,
+.block-editor-url-input .components-spinner {
+ display: none;
+}
+@media (min-width: 600px) {
+ .block-editor-url-input__suggestions,
+.block-editor-url-input .components-spinner {
+ display: grid;
+ }
+}
+
+.block-editor-url-input__suggestion {
+ min-height: 36px;
+ height: auto;
+ color: #757575;
+ display: block;
+ font-size: 13px;
+ cursor: pointer;
+ background: #fff;
+ width: 100%;
+ border: none;
+ text-align: left;
+ box-shadow: none;
+}
+.block-editor-url-input__suggestion:hover {
+ background: #ddd;
+}
+.block-editor-url-input__suggestion:focus, .block-editor-url-input__suggestion.is-selected {
+ background: var(--wp-admin-theme-color-darker-20);
+ color: #fff;
+ outline: none;
+}
+
+.components-toolbar-group > .block-editor-url-input__button,
+.components-toolbar > .block-editor-url-input__button {
+ position: inherit;
+}
+
+.block-editor-url-input__button .block-editor-url-input__back {
+ margin-right: 4px;
+ overflow: visible;
+}
+.block-editor-url-input__button .block-editor-url-input__back::after {
+ content: "";
+ position: absolute;
+ display: block;
+ width: 1px;
+ height: 24px;
+ right: -1px;
+ background: #ddd;
+}
+
+.block-editor-url-input__button-modal {
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
+ border: 1px solid #ddd;
+ background: #fff;
+}
+
+.block-editor-url-input__button-modal-line {
+ display: flex;
+ flex-direction: row;
+ flex-grow: 1;
+ flex-shrink: 1;
+ min-width: 0;
+ align-items: flex-start;
+}
+.block-editor-url-input__button-modal-line .components-button {
+ flex-shrink: 0;
+ width: 36px;
+ height: 36px;
+}
+
+.block-editor-url-popover__additional-controls {
+ border-top: 1px solid #ddd;
+}
+
+.block-editor-url-popover__additional-controls > div[role=menu] .components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) > svg {
+ box-shadow: none;
+}
+
+.block-editor-url-popover__additional-controls div[role=menu] > .components-button {
+ padding-left: 12px;
+}
+
+.block-editor-url-popover__row {
+ display: flex;
+}
+
+.block-editor-url-popover__row > :not(.block-editor-url-popover__settings-toggle) {
+ flex-grow: 1;
+}
+
+.block-editor-url-popover .components-button.has-icon {
+ padding: 3px;
+}
+.block-editor-url-popover .components-button.has-icon > svg {
+ padding: 5px;
+ border-radius: 2px;
+ height: 30px;
+ width: 30px;
+}
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
+ outline: 2px solid transparent;
+}
+
+.block-editor-url-popover__settings-toggle {
+ flex-shrink: 0;
+ border-radius: 0;
+ border-left: 1px solid #ddd;
+ margin-left: 1px;
+}
+.block-editor-url-popover__settings-toggle[aria-expanded=true] .dashicon {
+ transform: rotate(180deg);
+}
+
+.block-editor-url-popover__input-container .components-base-control:last-child,
+.block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field {
+ margin-bottom: 0;
+}
+
+.block-editor-url-popover__settings {
+ display: block;
+ padding: 16px;
+ border-top: 1px solid #ddd;
+}
+
+.block-editor-url-popover__link-editor,
+.block-editor-url-popover__link-viewer {
+ display: flex;
+}
+.block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field,
+.block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field {
+ margin-bottom: 0;
+}
+.block-editor-url-popover__link-editor .block-editor-url-input .components-spinner,
+.block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner {
+ bottom: 8px 8px 8px 12px1;
+}
+
+.block-editor-url-popover__link-viewer-url {
+ margin: 7px;
+ flex-grow: 1;
+ flex-shrink: 1;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ min-width: 150px;
+ max-width: 500px;
+}
+.block-editor-url-popover__link-viewer-url.has-invalid-link {
+ color: #cc1818;
+}
+
+.block-editor-warning {
+ align-items: center;
+ display: flex;
+ flex-wrap: wrap;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ padding: 1em;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
+ background-color: #fff;
+}
+.block-editor-warning .block-editor-warning__message {
+ line-height: 1.4;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ color: #1e1e1e;
+ margin: 0;
+}
+.block-editor-warning p.block-editor-warning__message.block-editor-warning__message {
+ min-height: auto;
+}
+.block-editor-warning .block-editor-warning__contents {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ flex-wrap: wrap;
+ align-items: baseline;
+ width: 100%;
+}
+.block-editor-warning .block-editor-warning__actions {
+ display: flex;
+ margin-top: 1em;
+}
+.block-editor-warning .block-editor-warning__action {
+ margin: 0 8px 0 0;
+}
+
+.block-editor-warning__secondary {
+ margin: auto 0 auto 8px;
+}
+
+.components-popover.block-editor-warning__dropdown {
+ z-index: 99998;
+}
+
+.html-anchor-control .components-external-link {
+ display: block;
+ margin-top: 8px;
+}
+
+.block-editor-hooks__layout-controls {
+ display: flex;
+ margin-bottom: 16px;
+}
+.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit {
+ display: flex;
+ margin-right: 24px;
+}
+.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit svg {
+ margin: auto 0 4px 8px;
+}
+
+.block-editor-hooks__layout-controls-reset {
+ display: flex;
+ justify-content: flex-end;
+ margin-bottom: 24px;
+}
+
+.block-editor-hooks__layout-controls-helptext {
+ font-size: 12px;
+}
+
+.block-editor-hooks__flex-layout-justification-controls,
+.block-editor-hooks__flex-layout-orientation-controls {
+ margin-bottom: 12px;
+}
+.block-editor-hooks__flex-layout-justification-controls legend,
+.block-editor-hooks__flex-layout-orientation-controls legend {
+ margin-bottom: 8px;
+}
+
+.border-block-support-panel .single-column {
+ grid-column: span 1;
+}
+
+.dimensions-block-support-panel .single-column {
+ grid-column: span 1;
+}
+
+.typography-block-support-panel .components-font-appearance-control,
+.typography-block-support-panel .components-font-size-picker__controls,
+.typography-block-support-panel .block-editor-text-decoration-control__buttons,
+.typography-block-support-panel .block-editor-text-transform-control__buttons {
+ margin-bottom: 0;
+}
+.typography-block-support-panel .single-column {
+ grid-column: span 1;
+}
+
+.color-block-support-panel {
+ /* Increased specificity required to remove the slot wrapper's row gap */
+ /**
+ * The following styles replicate the separated border of the
+ * `ItemGroup` component but allows for hidden items. This is because
+ * to maintain the order of `ToolsPanel` controls, each `ToolsPanelItem`
+ * must at least render a placeholder which would otherwise interfere
+ * with the `:last-child` styles.
+ */
+ /**
+ * The following few styles fix the layout and spacing for the due to the
+ * introduced wrapper element by the `Item` component.
+ */
+}
+.color-block-support-panel .block-editor-contrast-checker {
+ /**
+ * Contrast checkers are forced to the bottom of the panel so all
+ * injected color controls can appear as a single item group without
+ * the contrast checkers suddenly appearing between items.
+ */
+ order: 9999;
+ grid-column: span 2;
+ margin-top: 16px;
+}
+.color-block-support-panel .block-editor-contrast-checker .components-notice__content {
+ margin-right: 0;
+}
+.color-block-support-panel.color-block-support-panel .color-block-support-panel__inner-wrapper {
+ row-gap: 0;
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item {
+ padding: 0;
+ border-left: 1px solid rgba(0, 0, 0, 0.1);
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.first {
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.last {
+ border-bottom-left-radius: 2px;
+ border-bottom-right-radius: 2px;
+}
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item > div,
+.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item > div > button {
+ border-radius: inherit;
+}
+.color-block-support-panel .block-editor-panel-color-gradient-settings__color-indicator {
+ background: linear-gradient(-45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
+}
+.color-block-support-panel .block-editor-tools-panel-color-dropdown {
+ display: block;
+ padding: 0;
+}
+.color-block-support-panel .block-editor-tools-panel-color-dropdown > button {
+ height: 46px;
+}
+.color-block-support-panel .block-editor-tools-panel-color-dropdown > button.is-open {
+ background: #f0f0f0;
+ color: var(--wp-admin-theme-color);
+}
+.color-block-support-panel .color-block-support-panel__item-group > div {
+ grid-column: span 2;
+ border-radius: inherit;
+}
+
+/**
+ * Block Toolbar
+ */
+.block-editor-block-toolbar {
+ display: flex;
+ flex-grow: 1;
+ width: 100%;
+ position: relative;
+ overflow-y: hidden;
+ overflow-x: auto;
+ transition: border-color 0.1s linear, box-shadow 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-block-toolbar {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@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;
+ margin-top: -1px;
+ margin-bottom: -1px;
+ border: 0;
+ border-right: 1px solid #ddd;
+}
+.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-contextual-toolbar.has-parent:not(.is-fixed) {
+ margin-left: calc(48px + 8px);
+}
+.show-icon-labels .block-editor-block-contextual-toolbar.has-parent:not(.is-fixed) {
+ margin-left: 0;
+}
+
+.block-editor-block-parent-selector {
+ position: absolute;
+ top: -1px;
+ left: calc(-48px - 8px - 1px);
+}
+.show-icon-labels .block-editor-block-parent-selector {
+ position: relative;
+ left: auto;
+ top: auto;
+ margin-top: -1px;
+ margin-left: -1px;
+ margin-bottom: -1px;
+}
+
+.block-editor-block-toolbar__block-controls {
+ height: auto !important;
+ padding: 0 !important;
+ margin-left: -1px;
+}
+.block-editor-block-toolbar__block-controls .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
+.block-editor-block-toolbar__block-controls .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ width: 24px !important;
+ margin: 0 !important;
+}
+.block-editor-block-toolbar__block-controls .block-editor-block-mover {
+ margin-left: -6px;
+}
+.block-editor-block-toolbar__block-controls .block-editor-block-lock-toolbar {
+ margin-left: -6px !important;
+}
+.block-editor-block-toolbar__block-controls .components-toolbar-group {
+ padding: 0;
+}
+
+.block-editor-block-toolbar .components-toolbar-group,
+.block-editor-block-toolbar .components-toolbar,
+.block-editor-rich-text__inline-format-toolbar-group .components-toolbar-group,
+.block-editor-rich-text__inline-format-toolbar-group .components-toolbar {
+ display: flex;
+ flex-wrap: nowrap;
+}
+
+.block-editor-block-toolbar__slot {
+ display: inline-block;
+ line-height: 0;
+}
+@supports (position: sticky) {
+ .block-editor-block-toolbar__slot {
+ display: inline-flex;
+ }
+}
+
+.show-icon-labels .block-editor-block-toolbar .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels .block-editor-block-toolbar .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels .block-editor-block-toolbar .components-button.has-icon::after {
+ content: attr(aria-label);
+ font-size: 12px;
+}
+.show-icon-labels .components-accessible-toolbar .components-toolbar-group > div:first-child:last-child > .components-button.has-icon {
+ padding-left: 6px;
+ padding-right: 6px;
+}
+.show-icon-labels .block-editor-block-switcher {
+ border-right: 1px solid #1e1e1e;
+}
+.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle {
+ margin-left: 0;
+}
+.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
+.show-icon-labels .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
+ width: 0 !important;
+ height: 0 !important;
+}
+.show-icon-labels .block-editor-block-parent-selector__button .block-editor-block-icon {
+ width: 0;
+}
+.show-icon-labels .block-editor-block-toolbar__block-controls .block-editor-block-mover {
+ margin-left: 0;
+ white-space: nowrap;
+}
+.show-icon-labels .block-editor-block-mover-button {
+ padding-left: 8px !important;
+ padding-right: 8px !important;
+}
+.show-icon-labels .block-editor-block-mover__drag-handle.has-icon {
+ padding-left: 6px !important;
+ padding-right: 6px !important;
+ border-right: 1px solid #1e1e1e;
+}
+@media (min-width: 600px) {
+ .show-icon-labels .is-up-button.is-up-button.is-up-button {
+ border-bottom: 1px solid #1e1e1e;
+ margin-right: 0;
+ border-radius: 0;
+ }
+}
+.show-icon-labels .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button {
+ width: auto;
+}
+.show-icon-labels .components-toolbar,
+.show-icon-labels .components-toolbar-group {
+ flex-shrink: 1;
+}
+.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button + .components-button {
+ margin-left: 6px;
+}
+
+.block-editor-inserter {
+ display: inline-block;
+ background: none;
+ border: none;
+ padding: 0;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ line-height: 0;
+}
+@media (min-width: 782px) {
+ .block-editor-inserter {
+ position: relative;
+ }
+}
+
+.block-editor-inserter__content {
+ position: relative;
+}
+
+.block-editor-inserter__popover.is-quick .components-popover__content {
+ border: none;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > * {
+ border-left: 1px solid #ccc;
+ border-right: 1px solid #ccc;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *:first-child {
+ border-top: 1px solid #ccc;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *:last-child {
+ border-bottom: 1px solid #ccc;
+}
+.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *.components-button {
+ border: 1px solid #1e1e1e;
+}
+
+.block-editor-inserter__popover .block-editor-inserter__menu {
+ margin: -12px;
+}
+.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__tabs .components-tab-panel__tabs {
+ top: 60px;
+}
+.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__main-area {
+ overflow: visible;
+ height: auto;
+}
+.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__preview-container {
+ display: none;
+}
+
+.block-editor-inserter__toggle.components-button {
+ display: inline-flex;
+ align-items: center;
+ cursor: pointer;
+ border: none;
+ outline: none;
+ padding: 0;
+ transition: color 0.2s ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-editor-inserter__toggle.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.block-editor-inserter__menu {
+ height: 100%;
+ position: relative;
+ overflow: visible;
+}
+
+.block-editor-inserter__main-area {
+ width: auto;
+ overflow-y: auto;
+ height: 100%;
+}
+@media (min-width: 782px) {
+ .block-editor-inserter__main-area {
+ width: 350px;
+ }
+}
+
+.block-editor-inserter__inline-elements {
+ margin-top: -1px;
+}
+
+.block-editor-inserter__menu.is-bottom::after {
+ border-bottom-color: #fff;
+}
+
+.components-popover.block-editor-inserter__popover {
+ z-index: 99999;
+}
+
+.block-editor-inserter__search {
+ background: #fff;
+ padding: 16px 16px 0 16px;
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.block-editor-inserter__search .components-search-control__icon {
+ right: 20px;
+}
+.block-editor-inserter__search .components-base-control__field {
+ margin-bottom: 0;
+}
+
+.block-editor-inserter__tabs {
+ display: flex;
+ flex-direction: column;
+}
+.block-editor-inserter__tabs .components-tab-panel__tabs {
+ position: sticky;
+ top: 64px;
+ background: #fff;
+ z-index: 1;
+ border-bottom: 1px solid #ddd;
+}
+.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;
+ z-index: 0;
+}
+
+.block-editor-inserter__panel-header {
+ display: inline-flex;
+ align-items: center;
+ padding: 16px 16px 0;
+}
+
+.block-editor-inserter__panel-header-patterns {
+ padding: 16px 16px 0;
+}
+
+.block-editor-inserter__panel-content {
+ padding: 16px;
+}
+
+.block-editor-inserter__panel-title,
+.block-editor-inserter__panel-title button {
+ margin: 0 12px 0 0;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.block-editor-inserter__panel-dropdown select.components-select-control__input.components-select-control__input.components-select-control__input {
+ height: 36px;
+ line-height: 36px;
+}
+
+.block-editor-inserter__panel-dropdown select {
+ border: none;
+}
+
+.block-editor-inserter__block-list {
+ flex-grow: 1;
+ position: relative;
+}
+
+.block-editor-inserter__reusable-blocks-panel {
+ position: relative;
+ text-align: right;
+}
+
+.block-editor-inserter__manage-reusable-blocks {
+ display: inline-block;
+ margin: 16px;
+}
+
+.block-editor-inserter__no-results {
+ padding: 32px;
+ text-align: center;
+}
+
+.block-editor-inserter__no-results-icon {
+ fill: #949494;
+}
+
+.block-editor-inserter__child-blocks {
+ padding: 0 16px;
+}
+
+.block-editor-inserter__parent-block-header {
+ display: flex;
+ align-items: center;
+}
+.block-editor-inserter__parent-block-header h2 {
+ font-size: 13px;
+}
+.block-editor-inserter__parent-block-header .block-editor-block-icon {
+ margin-right: 8px;
+}
+
+.block-editor-inserter__preview-container {
+ display: none;
+ width: 300px;
+ background: #fff;
+ border-radius: 2px;
+ border: 1px solid #ddd;
+ position: absolute;
+ top: 16px;
+ left: calc(100% + 16px);
+ max-height: calc(100% - 32px);
+ overflow-y: hidden;
+}
+@media (min-width: 782px) {
+ .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 {
+ min-height: 144px;
+ background: #f0f0f0;
+ display: grid;
+ 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: #757575;
+ background: #f0f0f0;
+}
+
+.block-editor-inserter__tips {
+ border-top: 1px solid #ddd;
+ padding: 16px;
+ flex-shrink: 0;
+ position: relative;
+}
+
+.block-editor-inserter__manage-reusable-blocks-container {
+ padding: 16px;
+}
+
+.block-editor-inserter__quick-inserter {
+ width: 100%;
+ max-width: 100%;
+}
+@media (min-width: 782px) {
+ .block-editor-inserter__quick-inserter {
+ width: 350px;
+ }
+}
+
+.block-editor-inserter__quick-inserter-results .block-editor-inserter__panel-header {
+ height: 0;
+ padding: 0;
+ float: left;
+}
+
+.block-editor-inserter__quick-inserter.has-search .block-editor-inserter__panel-content,
+.block-editor-inserter__quick-inserter.has-expand .block-editor-inserter__panel-content {
+ padding: 16px;
+}
+
+.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-gap: 8px;
+}
+.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ margin-bottom: 0;
+}
+.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-preview__container {
+ min-height: 100px;
+}
+
+.block-editor-inserter__quick-inserter-separator {
+ border-top: 1px solid #ddd;
+}
+
+.block-editor-inserter__popover.is-quick > .components-popover__content > div {
+ padding: 0;
+}
+
+.block-editor-inserter__quick-inserter-expand.components-button {
+ display: block;
+ background: #1e1e1e;
+ color: #fff;
+ width: 100%;
+ height: 44px;
+ border-radius: 0;
+}
+.block-editor-inserter__quick-inserter-expand.components-button:hover {
+ color: #fff;
+}
+.block-editor-inserter__quick-inserter-expand.components-button:active {
+ color: #ccc;
+}
+.block-editor-inserter__quick-inserter-expand.components-button.components-button:focus:not(:disabled) {
+ box-shadow: none;
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+
+.block-editor-block-patterns-explorer__sidebar {
+ position: absolute;
+ top: 60px;
+ left: 0;
+ bottom: 0;
+ width: 280px;
+ padding: 24px 32px 32px;
+ overflow-x: visible;
+ overflow-y: scroll;
+}
+.block-editor-block-patterns-explorer__sidebar__categories-list__item {
+ display: block;
+ width: 100%;
+ height: 48px;
+ text-align: left;
+}
+.block-editor-block-patterns-explorer__search {
+ margin-bottom: 32px;
+}
+.block-editor-block-patterns-explorer__search-results-count {
+ padding-bottom: 32px;
+}
+.block-editor-block-patterns-explorer__list {
+ margin-left: 248px;
+}
+.block-editor-block-patterns-explorer .block-editor-block-patterns-list {
+ display: grid;
+ grid-gap: 32px;
+ grid-template-columns: repeat(1, 1fr);
+}
+@media (min-width: 1080px) {
+ .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
+ grid-template-columns: repeat(2, 1fr);
+ }
+}
+@media (min-width: 1440px) {
+ .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
+ grid-template-columns: repeat(3, 1fr);
+ }
+}
+.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ min-height: 240px;
+}
+.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-preview__container {
+ height: inherit;
+ min-height: 100px;
+ max-height: 800px;
+}
+
+.block-editor-post-preview__dropdown {
+ padding: 0;
+}
+
+.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.edit-post-post-preview-dropdown .components-menu-group:first-child {
+ padding-bottom: 8px;
+}
+.block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:last-child {
+ margin-bottom: 0;
+}
+.block-editor-post-preview__dropdown-content .components-menu-group + .components-menu-group {
+ padding: 8px;
+}
+
+@media (min-width: 600px) {
+ .edit-post-header__settings .editor-post-preview,
+.edit-site-header__actions .editor-post-preview {
+ display: none;
+ }
+}
+
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle {
+ transition: opacity 0.1s linear;
+ }
+}
+@media (min-width: 600px) and (prefers-reduced-motion: reduce) {
+ .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-save-draft,
+.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle {
+ opacity: 0;
+ }
+ .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle.is-opened {
+ opacity: 1;
+ }
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-editor/style.min.css b/static/wp-includes/css/dist/block-editor/style.min.css
new file mode 100755
index 0000000..268f482
--- /dev/null
+++ b/static/wp-includes/css/dist/block-editor/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-editor-autocompleters__block{white-space:nowrap}.block-editor-autocompleters__block .block-editor-block-icon{margin-right:8px}.block-editor-autocompleters__link{white-space:nowrap}.block-editor-autocompleters__link .block-editor-block-icon{margin-right:8px}.block-editor-block-alignment-control__menu-group .components-menu-item__info{margin-top:0}.block-editor-block-alignment-matrix-control__popover .components-popover__content{min-width:0;width:auto}.block-editor-block-alignment-matrix-control__popover .components-popover__content>div{padding:8px}.block-editor-block-icon{display:flex;align-items:center;justify-content:center;width:24px;height:24px}.block-editor-block-icon.has-colors svg{fill:currentColor}@media (forced-colors:active){.block-editor-block-icon.has-colors svg{fill:CanvasText}}.block-editor-block-icon svg{min-width:20px;min-height:20px;max-width:24px;max-height:24px}.block-editor-block-inspector p{margin-top:0}.block-editor-block-inspector h2,.block-editor-block-inspector h3{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.block-editor-block-inspector .components-base-control{margin-bottom:24px}.block-editor-block-inspector .components-base-control:last-child{margin-bottom:8px}.block-editor-block-inspector .components-panel__body{border:none;border-top:1px solid #e0e0e0}.block-editor-block-inspector .block-editor-block-card{padding:16px}.block-editor-block-inspector__no-blocks{display:block;font-size:13px;background:#fff;padding:32px 16px;text-align:center}.block-editor-block-styles .block-editor-block-list__block{margin:0}.block-editor-block-list__layout{position:relative}.block-editor-block-list__layout.is-navigate-mode{cursor:default}.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]):after,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:after,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{position:absolute;z-index:1;pointer-events:none;content:"";top:1px;bottom:1px;left:1px;right:1px;box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:1px;outline:2px solid transparent}.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-highlighted~.is-multi-selected:after,.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]):after,.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:after,.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{box-shadow:0 0 0 1px #fff}.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-highlighted~.is-multi-selected .components-placeholder ::selection,.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]) .components-placeholder ::selection,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered .components-placeholder ::selection,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected .components-placeholder ::selection{background:transparent}.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:not(.is-selected):after{box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:1px solid transparent}.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected:before{content:"";position:absolute;z-index:0;pointer-events:none;transition:border-color .1s linear,border-style .1s linear,box-shadow .1s linear;right:0;left:0;top:-14px;border-radius:2px;border-top:4px solid #ccc}.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected:after{content:none}.block-editor-block-list__layout .is-block-moving-mode.can-insert-moving-block.block-editor-block-list__block.is-selected:before{border-color:var(--wp-admin-theme-color)}.is-block-moving-mode.block-editor-block-list__block-selection-button{opacity:0;font-size:1px;height:1px;padding:0}.block-editor-block-list__layout .block-editor-block-list__block{position:relative;overflow-wrap:break-word}.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel *{z-index:1}.block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui{margin:-10px 0 12px}.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui{margin:0 0 12px;width:100%}.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice{margin-left:0;margin-right:0}.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content{font-size:13px}.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus{outline:none}.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after{position:absolute;z-index:1;pointer-events:none;content:"";top:1px;bottom:1px;left:1px;right:1px;box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:1px;outline:2px solid transparent}.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff}.block-editor-block-list__layout .block-editor-block-list__block:after{content:"";pointer-events:none;position:absolute;top:0;right:0;bottom:0;left:0;border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus) transparent}.block-editor-block-list__layout .block-editor-block-list__block.has-warning{min-height:48px}.block-editor-block-list__layout .block-editor-block-list__block.has-warning>*{pointer-events:none;-webkit-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{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:2px;background-color:hsla(0,0%,100%,.4)}.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected:after{background-color:transparent}.block-editor-block-list__layout .block-editor-block-list__block.is-reusable>.block-editor-inner-blocks>.block-editor-block-list__layout.has-overlay:after{display:none}.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{display:block}.block-editor-block-list__layout .block-editor-block-list__block.is-reusable.has-child-selected:after{box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-block-list__layout .block-editor-block-list__block[data-clear=true]{float:none}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered{cursor:default}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered:after{top:1px;left:1px;right:1px;bottom:1px;box-shadow:0 0 0 1px var(--wp-admin-theme-color);border-radius:1px}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected{cursor:unset}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);top:1px;left:1px;right:1px;bottom:1px;border-radius:1px}.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:focus:after{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){opacity:.5;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){transition-duration:0s;transition-delay:0s}}.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-multi-selected,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-selected{opacity:1}.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity{opacity:.5;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity{transition-duration:0s;transition-delay:0s}}.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.has-child-selected,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity .block-editor-block-list__block,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity .is-active-entity .block-editor-block-list__block,.is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity:not(.has-child-selected) .block-editor-block-list__block{opacity:1}.wp-block.alignleft,.wp-block.alignright,.wp-block[data-align=left]>*,.wp-block[data-align=right]>*{z-index:21}.wp-site-blocks>[data-align=left]{float:left;margin-right:2em}.wp-site-blocks>[data-align=right]{float:right;margin-left:2em}.wp-site-blocks>[data-align=center]{justify-content:center;margin-left:auto;margin-right:auto}.block-editor-block-list .block-editor-inserter{margin:8px;cursor:move;cursor:grab}@keyframes block-editor-inserter__toggle__fade-in-animation{0%{opacity:0}to{opacity:1}}.wp-block .block-list-appender .block-editor-inserter__toggle{animation:block-editor-inserter__toggle__fade-in-animation .1s ease;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.wp-block .block-list-appender .block-editor-inserter__toggle{animation-duration:1ms;animation-delay:0s}}.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender{display:none}.block-editor-block-list__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__block-html-textarea{display:block;margin:0;padding:12px;width:100%;border:none;outline:none;border-radius:2px;box-shadow:inset 0 0 0 1px #1e1e1e;resize:none;overflow:hidden;font-family:Menlo,Consolas,monaco,monospace;font-size:15px;line-height:1.5;transition:padding .2s linear}@media (prefers-reduced-motion:reduce){.block-editor-block-list__block .block-editor-block-list__block-html-textarea{transition-duration:0s;transition-delay:0s}}.block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.block-editor-block-list__block .block-editor-warning{z-index:5;position:relative}.block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning{margin-bottom:auto}.block-editor-block-list__insertion-point{position:absolute}.block-editor-block-list__insertion-point-indicator{position:absolute;background:var(--wp-admin-theme-color)}.block-editor-block-list__insertion-point.is-vertical>.block-editor-block-list__insertion-point-indicator{top:50%;height:1px}.block-editor-block-list__insertion-point.is-horizontal>.block-editor-block-list__insertion-point-indicator{top:0;right:0;left:50%;width:1px}.block-editor-block-list__insertion-point-inserter{display:none;position:absolute;justify-content:center;top:calc(50% - 12px);left:calc(50% - 12px)}@media (min-width:480px){.block-editor-block-list__insertion-point-inserter{display:flex}}.block-editor-block-list__block-popover-inserter{position:absolute;top:-9999em;margin-bottom:14px}.block-editor-block-list__block-popover-inserter.is-visible{position:static}.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon,.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon{background:#1e1e1e;border-radius:2px;color:#fff;padding:0;min-width:24px;height:24px}.block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon:hover{color:#fff;background:var(--wp-admin-theme-color)}.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon{background:var(--wp-admin-theme-color)}.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover{background:#1e1e1e}.block-editor-block-contextual-toolbar{display:inline-flex;border:1px solid #1e1e1e;border-radius:2px;background-color:#fff}.block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar,.block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar-group{border-right-color:#1e1e1e}.block-editor-block-contextual-toolbar.is-fixed{position:sticky;top:0;width:100%;z-index:31;min-height:48px;display:block;border:none;border-bottom:1px solid #e0e0e0;border-radius:0}.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar,.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar-group{border-right-color:#e0e0e0}.block-editor-block-contextual-toolbar .block-editor-block-mover-button{overflow:hidden}.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button{min-width:24px;width:24px}.block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button svg{min-width:24px}.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button:focus:before{left:0!important;min-width:0;width:100%}@media (min-width:600px){.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-up-button svg{top:5px}.block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-down-button svg{bottom:5px}}.block-editor-block-list__block-selection-button{display:inline-flex;padding:0 12px;z-index:22;border-radius:2px;background-color:#1e1e1e;font-size:13px;height:48px}.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content{margin:auto;display:inline-flex;align-items:center}.block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content>.components-flex__item{margin-right:6px}.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle{cursor:grab;padding:0;height:24px;min-width:24px;margin-left:-2px}.block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle svg{min-width:18px;min-height:18px}.block-editor-block-list__block-selection-button .block-editor-block-icon{font-size:13px;color:#fff;height:48px}.block-editor-block-list__block-selection-button .components-button{min-width:36px;color:#fff;height:48px;display:flex}.block-editor-block-list__block-selection-button .components-button:focus{box-shadow:none;border:none}.block-editor-block-list__block-selection-button .components-button:active{color:#fff}.block-editor-block-list__block-selection-button .block-selection-button_select-button.components-button{padding:0}.block-editor-block-list__insertion-point-popover.is-without-arrow{z-index:28;position:absolute;pointer-events:none}.block-editor-block-list__insertion-point-popover.is-without-arrow *{pointer-events:none}.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter,.block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter *{pointer-events:all}.block-editor-block-list__insertion-point-popover.is-without-arrow .components-popover__content.components-popover__content{background:none;border:none;box-shadow:none;overflow-y:visible;margin-left:0}@keyframes hide-during-dragging{to{position:fixed;transform:translate(9999px,9999px)}}.components-popover.block-editor-block-list__block-popover{z-index:31;position:absolute}.components-popover.block-editor-block-list__block-popover .components-popover__content{margin:0!important;min-width:auto;width:max-content;background:none;border:none;box-shadow:none;overflow-y:visible;pointer-events:none}.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar,.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__empty-block-inserter{pointer-events:all}.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar,.components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button{margin-top:12px;margin-bottom:12px}.components-popover.block-editor-block-list__block-popover.is-insertion-point-visible{visibility:hidden}.is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover{opacity:0;animation:hide-during-dragging 1ms linear forwards}.is-dragging-components-draggable .components-tooltip{display:none}.block-editor-block-toolbar .components-toolbar-group,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot{padding-left:6px;padding-right:6px}.block-editor-block-toolbar .components-toolbar-group .components-button,.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button.has-icon.has-icon,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button.has-icon.has-icon,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button.has-icon.has-icon{min-width:36px;padding-left:6px;padding-right:6px}.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon svg,.block-editor-block-toolbar .components-toolbar-group .components-button svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button.has-icon.has-icon svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button.has-icon.has-icon svg,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button svg,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button.has-icon.has-icon svg,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button svg{min-width:24px}.block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon:before,.block-editor-block-toolbar .components-toolbar-group .components-button:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button.has-icon.has-icon:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-dropdown .components-button:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button.has-icon.has-icon:before,.block-editor-block-toolbar>.block-editor-block-toolbar__slot>.components-toolbar .components-button:before,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button.has-icon.has-icon:before,.block-editor-block-toolbar>.components-toolbar>.block-editor-block-toolbar__slot .components-button:before{left:2px;right:2px}.is-vertical .block-list-appender{width:24px;margin-right:auto;margin-top:12px;margin-left:12px}.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-lock-modal{z-index:1000001}@media (min-width:600px){.block-editor-block-lock-modal .components-modal__frame{max-width:480px}}.block-editor-block-lock-modal__checklist{margin:0}.block-editor-block-lock-modal__options-title{padding:12px 0}.block-editor-block-lock-modal__options-title .components-checkbox-control__label{font-weight:600}.block-editor-block-lock-modal__options-title .components-base-control__field{align-items:center;display:flex;margin:0}.block-editor-block-lock-modal__checklist-item{margin-bottom:0;padding:12px 0 12px 32px}.block-editor-block-lock-modal__checklist-item .components-base-control__field{align-items:center;display:flex;margin:0}.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label{display:flex;align-items:center;justify-content:space-between;flex-grow:1}.block-editor-block-lock-modal__checklist-item .components-checkbox-control__label svg{margin-right:12px;fill:#1e1e1e}.block-editor-block-lock-modal__checklist-item:hover{background-color:#f0f0f0;border-radius:2px}.block-editor-block-lock-modal__actions{margin-top:24px}.block-editor-block-lock-toolbar .components-button.has-icon{min-width:36px!important;padding-left:0!important}.block-editor-block-lock-toolbar .components-button.has-icon:focus:before{right:8px!important}.block-editor-block-breadcrumb{list-style:none;padding:0;margin:0}.block-editor-block-breadcrumb li{display:inline-flex;margin:0}.block-editor-block-breadcrumb li .block-editor-block-breadcrumb__separator{fill:currentColor;margin-left:-4px;margin-right:-4px;transform:scaleX(1)}.block-editor-block-breadcrumb li:last-child .block-editor-block-breadcrumb__separator{display:none}.block-editor-block-breadcrumb__button.components-button{height:24px;line-height:24px;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{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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.block-editor-block-breadcrumb__current{cursor:default}.block-editor-block-breadcrumb__button.components-button,.block-editor-block-breadcrumb__current{color:#1e1e1e;padding:0 8px;font-size:inherit}.block-editor-block-card{display:flex;align-items:flex-start}.block-editor-block-card__content{flex-grow:1;margin-bottom:4px}.block-editor-block-card__title{font-weight:500}.block-editor-block-card__title.block-editor-block-card__title{line-height:24px;margin:0 0 4px}.block-editor-block-card__description{font-size:13px}.block-editor-block-card .block-editor-block-icon{flex:0 0 24px;margin-left:0;margin-right:12px;width:24px;height:24px}.block-editor-block-compare{height:auto}.block-editor-block-compare__wrapper{display:flex;padding-bottom:16px}.block-editor-block-compare__wrapper>div{display:flex;justify-content:space-between;flex-direction:column;width:50%;padding:0 16px 0 0;min-width:200px;max-width:600px}.block-editor-block-compare__wrapper>div button{float:right}.block-editor-block-compare__wrapper .block-editor-block-compare__converted{border-left:1px solid #ddd;padding-left:15px;padding-right:0}.block-editor-block-compare__wrapper .block-editor-block-compare__html{font-family:Menlo,Consolas,monaco,monospace;font-size:12px;color:#1e1e1e;border-bottom:1px solid #ddd;padding-bottom:15px;line-height:1.7}.block-editor-block-compare__wrapper .block-editor-block-compare__html span{background-color:#e6ffed;padding-top:3px;padding-bottom:3px}.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added{background-color:#acf2bd}.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed{background-color:#cc1818}.block-editor-block-compare__wrapper .block-editor-block-compare__preview{padding:16px 0 0}.block-editor-block-compare__wrapper .block-editor-block-compare__preview p{font-size:12px;margin-top:0}.block-editor-block-compare__wrapper .block-editor-block-compare__action{margin-top:16px}.block-editor-block-compare__wrapper .block-editor-block-compare__heading{font-size:1em;font-weight:400;margin:.67em 0}.block-editor-block-content-overlay.overlay-active:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:transparent;border:none;border-radius:2px;z-index:10}.block-editor-block-content-overlay.parent-highlighted.overlay-active:before,.block-editor-block-content-overlay:hover:not(.is-dragging-blocks).overlay-active:before{background:rgba(var(--wp-admin-theme-color--rgb),.1);box-shadow:0 0 0 1px var(--wp-admin-theme-color) inset}.block-editor-block-content-overlay.overlay-active:not(.is-dragging-blocks) *{pointer-events:none}.block-editor-block-content-overlay.is-dragging-blocks{box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-block-draggable-chip-wrapper{position:absolute;top:-24px;left:0}.block-editor-block-draggable-chip{background-color:#1e1e1e;border-radius:2px;box-shadow:0 6px 8px rgba(0,0,0,.3);color:#fff;cursor:grabbing;display:inline-flex;height:48px;padding:0 13px;-webkit-user-select:none;user-select:none}.block-editor-block-draggable-chip svg{fill:currentColor}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content{margin:auto;justify-content:flex-start}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content>.components-flex__item{margin-right:6px}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content>.components-flex__item:last-child{margin-right:0}.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content .block-editor-block-icon svg{min-width:18px;min-height:18px}.block-editor-block-draggable-chip .components-flex__item{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.block-editor-block-list__layout .is-dragging{background-color:currentColor!important;opacity:.05!important;border-radius:2px!important;pointer-events:none!important}.block-editor-block-list__layout .is-dragging::selection{background:transparent!important}.block-editor-block-list__layout .is-dragging:after{content:none!important}.block-editor-block-mobile-toolbar{display:flex;flex-direction:row;border-right:1px solid #ddd}.block-editor-block-mobile-toolbar .block-editor-block-mover-button{width:36px;height:36px;border-radius:2px;padding:3px;margin:0;justify-content:center;align-items:center}.block-editor-block-mobile-toolbar .block-editor-block-mover-button .dashicon{margin:auto}.block-editor-block-mobile-toolbar .block-editor-block-mover{display:flex;margin-right:auto}.block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover-button{float:left}.block-editor-block-mover-button__description{display:none}.block-editor-block-mover-button.has-icon{padding:0}.block-editor-block-mover{display:inline-flex;flex-direction:row}.block-editor-block-mover .block-editor-block-mover__move-button-container,.block-editor-block-mover .components-toolbar{flex:1;flex-direction:row;border-right:none!important;padding:0}@media (min-width:600px){.block-editor-block-mover .block-editor-block-mover__move-button-container,.block-editor-block-mover .components-toolbar{flex-direction:column}}.block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container,.block-editor-block-mover.is-horizontal .components-toolbar{flex-direction:row}.block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button{padding-right:0;padding-left:0;min-width:36px}@media (min-width:600px){.block-editor-block-mover .block-editor-block-mover-button{height:24px;width:42px;padding-right:11px!important;padding-left:6px!important}.block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button{min-width:42px}}@media (min-width:600px){.block-editor-block-mover .block-editor-block-mover-button:before{left:8px!important;right:8px!important}}.block-editor-block-mover .block-editor-block-mover__drag-handle{width:24px;cursor:grab;min-width:24px!important;padding:0!important}.block-editor-block-mover .block-editor-block-mover__drag-handle:focus:before{left:0!important;right:0!important}@media (min-width:600px){.block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button,.block-editor-block-mover .components-toolbar .block-editor-block-mover-button{margin:0 auto 0 0}.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% - 1px)}.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% - 1px)}}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon{height:48px;width:24px;padding-left:0;padding-right:0}.block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon:before{top:1px;bottom:1px;min-width:0;width:auto;height:auto}.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-button.is-up-button.has-icon:before{left:0!important;right:0!important}.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-button.is-down-button.has-icon:before{left:0!important;right:0!important;width:calc(100% + 1px)}.block-editor-block-navigation__container{min-width:280px}.block-editor-block-navigation__label{margin:0 0 12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500}.block-editor-block-parent-selector{background:#fff;border-radius:2px}.block-editor-block-parent-selector .block-editor-block-parent-selector__button{width:48px;height:48px;border:1px solid #1e1e1e;border-radius:2px}.block-editor-block-patterns-list__list-item{cursor:pointer;margin-bottom:24px}.block-editor-block-patterns-list__list-item.is-placeholder{min-height:100px}.block-editor-block-patterns-list__list-item[draggable=true] .block-editor-block-preview__container{cursor:grab}.block-editor-block-patterns-list__item{height:100%}.block-editor-block-patterns-list__item .block-editor-block-preview__container{display:flex;align-items:center;overflow:hidden;border-radius:2px;border:1px solid #f0f0f0}.block-editor-block-patterns-list__item .block-editor-block-patterns-list__item-title{padding-top:8px;font-size:12px;text-align:center}.block-editor-block-patterns-list__item:hover .block-editor-block-preview__container{border:1px solid var(--wp-admin-theme-color)}.block-editor-block-patterns-list__item:focus .block-editor-block-preview__container{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-block-patterns-list__item:focus .block-editor-block-patterns-list__item-title,.block-editor-block-patterns-list__item:hover .block-editor-block-patterns-list__item-title{color:var(--wp-admin-theme-color)}.block-editor-block-preview__container{position:relative;width:100%;overflow:hidden}.block-editor-block-preview__container .block-editor-block-preview__content{top:0;left:0;transform-origin:top left;text-align:initial;margin:0;overflow:visible;min-height:auto}.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-drop-zone,.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-list__insertion-point,.block-editor-block-preview__container .block-editor-block-preview__content .block-list-appender,.block-editor-block-preview__container .block-editor-block-preview__content .reusable-block-indicator,.block-editor-block-preview__content-iframe .block-list-appender{display:none}.block-editor-block-preview__live-content *{pointer-events:none}.block-editor-block-preview__live-content .block-list-appender{display:none}.block-editor-block-preview__live-content .components-button:disabled{opacity:1}.block-editor-block-preview__live-content .block-editor-block-list__block[data-empty=true],.block-editor-block-preview__live-content .components-placeholder{display:none}.block-editor-block-settings-menu__popover .components-dropdown-menu__menu{padding:0}.block-editor-block-styles+.default-style-picker__default-switcher{margin-top:16px}.block-editor-block-styles__preview-panel{display:none;position:absolute;right:16px;left:auto;z-index:90}@media (min-width:782px){.block-editor-block-styles__preview-panel{display:block}}.block-editor-block-styles__preview-panel .block-editor-inserter__preview-container{left:auto;right:auto;top:auto;position:static}.block-editor-block-styles__preview-panel .block-editor-block-card__title.block-editor-block-card__title{margin:0}.block-editor-block-styles__preview-panel .block-editor-block-icon{display:none}.block-editor-block-styles__variants{display:flex;flex-wrap:wrap;justify-content:space-between;gap:8px}.block-editor-block-styles__variants .block-editor-block-styles__item{color:#2f2f2f;box-shadow:inset 0 0 0 1px #ccc;display:inline-block;width:calc(50% - 4px)}.block-editor-block-styles__variants .block-editor-block-styles__item:focus,.block-editor-block-styles__variants .block-editor-block-styles__item:hover{color:var(--wp-admin-theme-color);box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color)}.block-editor-block-styles__variants .block-editor-block-styles__item.is-active,.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover{background-color:#2f2f2f;box-shadow:none}.block-editor-block-styles__variants .block-editor-block-styles__item.is-active .block-editor-block-styles__item-text,.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover .block-editor-block-styles__item-text{color:#fff}.block-editor-block-styles__variants .block-editor-block-styles__item.is-active:focus{box-shadow:inset 0 0 0 1px #fff,0 0 0 2px var(--wp-admin-theme-color)}.block-editor-block-styles__variants .block-editor-block-styles__item-text{word-break:break-all;white-space:normal;text-align:start;text-align-last:center}.block-editor-block-styles__block-preview-container,.block-editor-block-styles__block-preview-container *{box-sizing:border-box!important}.block-editor-block-switcher{position:relative;padding:0 6px}.block-editor-block-switcher .components-button.components-dropdown-menu__toggle.has-icon.has-icon{min-width:36px}.block-editor-block-switcher__no-switcher-icon,.block-editor-block-switcher__toggle{position:relative}.components-button.block-editor-block-switcher__no-switcher-icon,.components-button.block-editor-block-switcher__toggle{margin:0;display:block;height:48px}.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,.components-button.block-editor-block-switcher__toggle .block-editor-block-icon{margin:auto}.block-editor-block-switcher__toggle-text{margin-left:8px}.show-icon-labels .block-editor-block-switcher__toggle-text{display:none}.show-icon-labels .block-editor-block-toolbar .block-editor-block-switcher .components-button.has-icon:after{font-size:14px}.block-editor-block-switcher__popover{margin-left:6px}.components-button.block-editor-block-switcher__no-switcher-icon{display:flex;padding:6px 12px!important}.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon{margin-right:auto;margin-left:auto;min-width:24px!important}.components-button.block-editor-block-switcher__no-switcher-icon:disabled{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}.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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__no-switcher-icon.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;min-width:100%}.block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.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__no-switcher-icon.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;left:8px}.components-popover.block-editor-block-switcher__popover .components-popover__content{min-width:300px}.components-popover.block-editor-block-switcher__popover .components-popover__content>div{min-width:auto;display:flex;background:#fff;padding:0}.components-popover.block-editor-block-switcher__popover .components-popover__content>div .components-menu-group{margin:0}.block-editor-block-switcher__popover .components-popover__content .block-editor-block-styles{margin:0 -3px}.block-editor-block-switcher__popover .components-popover__content .components-panel__body{border:0;position:relative;z-index:1}.block-editor-block-switcher__popover .components-popover__content .components-panel__body+.components-panel__body{border-top:1px solid #e0e0e0}.block-editor-block-switcher__popover__preview__parent .block-editor-block-switcher__popover__preview__container{position:absolute;top:-12px;left:calc(100% + 32px)}.block-editor-block-switcher__preview__popover{display:none}.block-editor-block-switcher__preview__popover.components-popover{margin-left:4px;margin-top:11px}@media (min-width:782px){.block-editor-block-switcher__preview__popover{display:block}}.block-editor-block-switcher__preview__popover .components-popover__content{box-shadow:none;border:1px solid #1e1e1e;background:#fff;border-radius:2px}.block-editor-block-switcher__preview__popover .block-editor-block-switcher__preview{width:300px;height:auto;max-height:500px;padding:16px}.block-editor-block-switcher__preview-title{margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon{min-width:36px}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon,.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle{height:48px}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,.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;height:48px}.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform{padding:12px}.block-editor-block-switcher__preview-patterns-container{padding-bottom:16px}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item{margin-top:16px}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-preview__container{cursor:pointer}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item{height:100%;border-radius:2px;transition:all .05s ease-in-out;position:relative;border:1px solid transparent}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:focus,.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) #1e1e1e}.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item .block-editor-block-switcher__preview-patterns-container-list__item-title{padding:4px;font-size:12px;text-align:center;cursor:pointer}.block-editor-block-types-list>[role=presentation]{overflow:hidden;display:flex;flex-wrap:wrap}.block-editor-block-variation-picker .components-placeholder__instructions{margin-bottom:0}.block-editor-block-variation-picker .components-placeholder__fieldset{flex-direction:column}.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset{max-width:90%}.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations{display:flex;justify-content:flex-start;flex-direction:row;flex-wrap:wrap;width:100%;margin:16px 0;padding:0;list-style:none}.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li{list-style:none;margin:8px 20px 0 0;flex-shrink:1;width:75px;text-align:center}.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li button{display:inline-flex;margin-right:0}.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;line-height:1.4}.block-editor-block-variation-picker__variation{width:100%}.block-editor-block-variation-picker__variation.components-button.has-icon{justify-content:center;width:auto}.block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary{background-color:#fff}.block-editor-block-variation-picker__variation.components-button{height:auto;padding:0}.block-editor-block-variation-picker__variation:before{content:"";padding-bottom:100%}.block-editor-block-variation-picker__variation:first-child{margin-left:0}.block-editor-block-variation-picker__variation:last-child{margin-right:0}.block-editor-block-pattern-setup{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;width:100%;border-radius:2px}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__toolbar{justify-content:center}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container{column-gap:24px;display:block;width:100%;padding:32px;column-count:2}@media (min-width:1440px){.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container{column-count:3}}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-preview__container,.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container div[role=button]{cursor:pointer}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item{break-inside:avoid-column;margin-bottom:24px}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__container{min-height:100px;border-radius:2px;border:1px solid #ddd}.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__content{width:100%}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar{height:60px;box-sizing:border-box;padding:16px;width:100%;text-align:left;margin:0;color:#1e1e1e;border-radius:2px 2px 0 0;background-color:#fff;display:flex;flex-direction:row;align-items:center;justify-content:space-between;border-top:1px solid #ddd;align-self:flex-end}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__display-controls{display:flex}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions,.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__navigation{width:calc(50% - 36px);display:flex}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions{justify-content:flex-end}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container{display:flex;flex-direction:column;width:100%;box-sizing:border-box}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container{overflow:hidden;position:relative;padding:0;margin:0;list-style:none;transform-style:preserve-3d}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container *{box-sizing:border-box}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide{position:absolute;top:0;width:100%;margin:auto;padding:0;transition:transform .5s,z-index .5s;z-index:100}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.active-slide{opacity:1;position:relative;z-index:102}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.previous-slide{transform:translateX(-100%);z-index:101}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.next-slide{transform:translateX(100%);z-index:101}.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .block-list-appender{display:none}.block-editor-block-pattern-setup__carousel,.block-editor-block-pattern-setup__grid{width:100%;overflow-y:auto}.block-editor-block-variation-transforms{padding:0 16px 16px 52px;width:100%}.block-editor-block-variation-transforms .components-dropdown-menu__toggle{border:1px solid #757575;border-radius:2px;min-height:30px;width:100%;position:relative;text-align:left;justify-content:left;padding:6px 12px}.block-editor-block-variation-transforms .components-dropdown-menu__toggle.components-dropdown-menu__toggle{padding-right:24px}.block-editor-block-variation-transforms .components-dropdown-menu__toggle:focus:not(:disabled){border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 calc(var(--wp-admin-border-width-focus) - 1px) var(--wp-admin-theme-color)}.block-editor-block-variation-transforms .components-dropdown-menu__toggle svg{height:100%;padding:0;position:absolute;right:0;top:0}.block-editor-block-variation-transforms__popover .components-popover__content{min-width:230px}.components-border-radius-control{margin-bottom:12px}.components-border-radius-control legend{margin-bottom:8px}.components-border-radius-control .components-border-radius-control__wrapper{display:flex;justify-content:space-between;align-items:flex-start}.components-border-radius-control .components-border-radius-control__wrapper .components-range-control,.components-border-radius-control .components-border-radius-control__wrapper>.components-unit-control-wrapper{width:calc(50% - 26px);margin-bottom:0}.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-base-control__field{margin-bottom:0;height:30px}.components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-range-control__wrapper{margin-right:10px}.components-border-radius-control .components-border-radius-control__wrapper>span{flex:0 0 auto}.components-border-radius-control .components-border-radius-control__input-controls-wrapper{display:flex;width:70%;flex-wrap:wrap}.components-border-radius-control .components-border-radius-control__input-controls-wrapper .components-unit-control-wrapper{width:calc(50% - 8px);margin-bottom:8px;margin-right:8px}.components-border-radius-control .component-border-radius-control__linked-button.has-icon{display:flex;justify-content:center}.components-border-radius-control .component-border-radius-control__linked-button.has-icon svg{margin-right:0}.components-border-style-control legend{line-height:1.4;margin-bottom:8px;padding:0}.components-border-style-control .components-border-style-control__buttons{display:inline-flex}.components-border-style-control .components-border-style-control__buttons .components-button.has-icon{min-width:30px;height:30px;padding:3px;margin-right:4px}.block-editor-button-block-appender{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:auto;color:#1e1e1e;box-shadow:inset 0 0 0 1px #1e1e1e}.block-editor-button-block-appender.components-button.components-button{padding:12px}.is-dark-theme .block-editor-button-block-appender{color:hsla(0,0%,100%,.65);box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.65)}.block-editor-button-block-appender:hover{color:var(--wp-admin-theme-color);box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color)}.block-editor-button-block-appender:focus{box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color)}.block-editor-button-block-appender:active{color:#000}.block-editor-color-gradient-control .block-editor-color-gradient-control__color-indicator{margin-bottom:12px}.block-editor-color-gradient-control__fieldset{min-width:0}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title{display:flex;gap:8px}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator{width:12px;height:12px;align-self:center}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator:first-child{margin-left:12px}.block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator{display:none}@media screen and (min-width:782px){.block-editor-panel-color-gradient-settings .components-circular-option-picker__swatches{display:grid;grid-template-columns:repeat(6,28px);justify-content:space-between}}.block-editor-block-inspector .block-editor-panel-color-gradient-settings .components-base-control{margin-bottom:inherit}.block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__dropdown{display:block}.block-editor-panel-color-gradient-settings__dropdown{width:100%}.block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content>div{width:280px}@media (min-width:782px){.block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content{margin-right:156px!important}.block-editor-panel-color-gradient-settings__dropdown-content.is-from-top .components-popover__content{margin-top:-60px!important}.block-editor-panel-color-gradient-settings__dropdown-content.is-from-bottom .components-popover__content{margin-bottom:-60px!important}}.block-editor-panel-color-gradient-settings__dropdown:last-child>div{border-bottom-width:0}.block-editor-panel-color-gradient-settings__item{padding-top:12px!important;padding-bottom:12px!important}.block-editor-panel-color-gradient-settings__item .block-editor-panel-color-gradient-settings__color-indicator{background:linear-gradient(-45deg,transparent 48%,#ddd 0,#ddd 52%,transparent 0)}.block-editor-panel-color-gradient-settings__item.is-open{background:#f0f0f0;color:var(--wp-admin-theme-color)}.block-editor-contrast-checker>.components-notice{margin:0}.block-editor-default-block-appender{clear:both;margin-left:auto;margin-right:auto;position:relative}.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 .block-editor-default-block-appender__content{opacity:.62}.block-editor-default-block-appender .components-drop-zone__content-icon{display:none}.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:0;right:0;line-height:0}.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled,.block-editor-default-block-appender .block-editor-inserter:disabled{display:none}.block-editor-block-list__block .block-list-appender{position:absolute;list-style:none;padding:0;z-index:2;bottom:0;right:0}.block-editor-block-list__block .block-list-appender.block-list-appender{margin:0;line-height:0}.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender{height:24px}.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle{flex-direction:row;box-shadow:none;height:24px;width:24px;display:none;padding:0!important;background:#1e1e1e;color:#fff}.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle:hover{color:#fff;background:var(--wp-admin-theme-color)}.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender__content{display:none}.block-editor-block-list__block .block-list-appender:only-child{position:relative;right:auto;align-self:center;list-style:none;line-height:inherit}.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content{display:block}.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-list-appender__toggle,.block-editor-block-list__block.is-selected>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected>.block-list-appender .block-list-appender__toggle{display:flex}.block-editor-default-block-appender__content{cursor:text}.block-editor-date-format-picker{margin-bottom:16px}.block-editor-date-format-picker__default-format-toggle-control__hint{color:#757575;display:block}.block-editor-date-format-picker__custom-format-select-control.components-base-control{margin-bottom:0}.block-editor-date-format-picker__custom-format-select-control .components-custom-select-control__button{width:100%}.block-editor-date-format-picker__custom-format-select-control__custom-option{border-top:1px solid #ddd}.block-editor-date-format-picker__custom-format-select-control__custom-option.has-hint{grid-template-columns:auto 30px}.block-editor-date-format-picker__custom-format-select-control__custom-option .components-custom-select-control__item-hint{grid-row:2;text-align:left}.block-editor-duotone-control__popover>.components-popover__content>div{padding:16px;width:280px}.block-editor-duotone-control__popover .components-menu-group__label{padding:0}.block-editor-duotone-control__popover .components-custom-gradient-picker__gradient-bar{margin:16px 0 12px}.block-editor-duotone-control__popover .components-circular-option-picker__swatches{display:grid;grid-template-columns:repeat(6,28px);gap:12px;justify-content:space-between}.block-editor-duotone-control__description{margin:16px 0;font-size:12px}.block-editor-duotone-control__popover:not([data-y-axis=middle][data-x-axis=right])>.components-popover__content{margin-left:-14px}.components-font-appearance-control{margin-bottom:24px}.components-font-appearance-control ul li{color:#1e1e1e;text-transform:capitalize}.block-editor-image-size-control{margin-bottom:1em}.block-editor-image-size-control .block-editor-image-size-control__row{display:flex;justify-content:space-between}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height,.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width{margin-bottom:.5em}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input,.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input{line-height:1.25}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width{margin-right:5px}.block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height{margin-left:5px}.block-editor-block-list__layout.has-overlay:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:60}.block-editor-block-types-list__list-item{display:block;width:33.33%;padding:0;margin:0}.components-button.block-editor-block-types-list__item{display:flex;flex-direction:column;width:100%;font-size:13px;color:#1e1e1e;padding:8px;align-items:stretch;justify-content:center;cursor:pointer;background:transparent;word-break:break-word;border-radius:2px;transition:all .05s ease-in-out;position:relative;height:auto}@media (prefers-reduced-motion:reduce){.components-button.block-editor-block-types-list__item{transition-duration:0s;transition-delay:0s}}.components-button.block-editor-block-types-list__item:disabled{opacity:.6;cursor:default}.components-button.block-editor-block-types-list__item:not(:disabled):hover{color:var(--wp-admin-theme-color)!important}.components-button.block-editor-block-types-list__item:not(:disabled):focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-button.block-editor-block-types-list__item:not(:disabled).is-active{color:#fff;background:#1e1e1e;outline:2px solid transparent;outline-offset:-2px}.block-editor-block-types-list__item-icon{padding:12px 20px;border-radius:2px;color:#1e1e1e;transition:all .05s ease-in-out}@media (prefers-reduced-motion:reduce){.block-editor-block-types-list__item-icon{transition-duration:0s;transition-delay:0s}}.block-editor-block-types-list__item-icon .block-editor-block-icon{margin-left:auto;margin-right:auto}.block-editor-block-types-list__item-icon svg{transition:all .15s ease-out}@media (prefers-reduced-motion:reduce){.block-editor-block-types-list__item-icon svg{transition-duration:0s;transition-delay:0s}}.block-editor-block-types-list__list-item[draggable=true] .block-editor-block-types-list__item-icon{cursor:grab}.block-editor-block-types-list__item-title{padding:4px 2px 8px;font-size:12px}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}@keyframes loadingpulse{0%{opacity:1}50%{opacity:0}to{opacity:1}}.block-editor-link-control{position:relative;min-width:360px}.components-popover__content .block-editor-link-control{min-width:auto;width:90vw;max-width:360px}.block-editor-link-control__search-input-container,.block-editor-link-control__search-input-wrapper{position:relative}.block-editor-link-control__search-input.has-no-label .block-editor-url-input__input{flex:1}.block-editor-link-control__field{margin:16px}.block-editor-link-control__field>.components-base-control__field{display:flex;align-items:center;margin:0}.block-editor-link-control__field .components-base-control__label{margin-right:16px;margin-bottom:0}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input,.block-editor-link-control__field input[type=text]{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;font-size:16px;line-height:normal;width:calc(100% - 32px);display:block;padding:11px 36px 11px 16px;margin:0;position:relative;border:1px solid #ddd;border-radius:2px}@media (prefers-reduced-motion:reduce){.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input,.block-editor-link-control__field input[type=text]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input,.block-editor-link-control__field input[type=text]{font-size:13px;line-height:normal}}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:focus,.block-editor-link-control__field input[type=text]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-webkit-input-placeholder,.block-editor-link-control__field input[type=text]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-moz-placeholder,.block-editor-link-control__field input[type=text]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:-ms-input-placeholder,.block-editor-link-control__field input[type=text]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-link-control__search-error{margin:-8px 16px 16px}.block-editor-link-control__search-actions{position:absolute;top:3px;right:19px}.components-button .block-editor-link-control__search-submit .has-icon{margin:-1px}.block-editor-link-control__search-results-wrapper{position:relative;margin-top:-15px}.block-editor-link-control__search-results-wrapper:after,.block-editor-link-control__search-results-wrapper:before{content:"";position:absolute;left:-1px;right:16px;display:block;pointer-events:none;z-index:100}.block-editor-link-control__search-results-wrapper:before{height:8px;top:0;bottom:auto}.block-editor-link-control__search-results-wrapper:after{height:16px;bottom:0;top:auto}.block-editor-link-control__search-results-label{padding:16px 32px 0;display:block;font-weight:600}.block-editor-link-control__search-results{margin:0;padding:8px 16px;max-height:200px;overflow-y:auto}.block-editor-link-control__search-results.is-loading{opacity:.2}.block-editor-link-control__search-item{position:relative;display:flex;align-items:flex-start;font-size:13px;cursor:pointer;background:#fff;width:100%;border:none;text-align:left;padding:12px 16px;border-radius:2px;height:auto}.block-editor-link-control__search-item:focus,.block-editor-link-control__search-item:hover{background-color:#f0f0f0}.block-editor-link-control__search-item:focus .block-editor-link-control__search-item-type,.block-editor-link-control__search-item:hover .block-editor-link-control__search-item-type{background:#fff}.block-editor-link-control__search-item:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color) inset}.block-editor-link-control__search-item.is-selected{background:#f0f0f0}.block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type{background:#fff}.block-editor-link-control__search-item.is-current{flex-direction:column;background:transparent;border:0;width:100%;cursor:default;padding:16px}.block-editor-link-control__search-item .block-editor-link-control__search-item-header{display:block;flex-direction:row;align-items:flex-start;margin-right:8px;white-space:pre-wrap;overflow-wrap:break-word}.block-editor-link-control__search-item .block-editor-link-control__search-item-header .block-editor-link-control__search-item-info{word-break:break-all}.block-editor-link-control__search-item.is-preview .block-editor-link-control__search-item-header{display:flex;flex:1}.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-header{align-items:center}.block-editor-link-control__search-item .block-editor-link-control__search-item-icon{position:relative;top:.2em;margin-right:8px;max-height:24px;flex-shrink:0;width:24px;display:flex;justify-content:center}.block-editor-link-control__search-item .block-editor-link-control__search-item-icon img{width:16px}.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-icon{top:0;width:32px;max-height:32px}.block-editor-link-control__search-item .block-editor-link-control__search-item-info,.block-editor-link-control__search-item .block-editor-link-control__search-item-title{overflow:hidden;text-overflow:ellipsis}.block-editor-link-control__search-item .block-editor-link-control__search-item-info .components-external-link__icon,.block-editor-link-control__search-item .block-editor-link-control__search-item-title .components-external-link__icon{position:absolute;right:0;margin-top:0}.block-editor-link-control__search-item .block-editor-link-control__search-item-title{display:block;margin-bottom:.2em;font-weight:500;position:relative}.block-editor-link-control__search-item .block-editor-link-control__search-item-title mark{font-weight:700;color:inherit;background-color:transparent}.block-editor-link-control__search-item .block-editor-link-control__search-item-title span{font-weight:400}.block-editor-link-control__search-item .block-editor-link-control__search-item-title svg{display:none}.block-editor-link-control__search-item .block-editor-link-control__search-item-info{display:block;color:#757575;font-size:.9em;line-height:1.3}.block-editor-link-control__search-item .block-editor-link-control__search-item-error-notice{font-style:italic;font-size:1.1em}.block-editor-link-control__search-item .block-editor-link-control__search-item-type{display:block;padding:3px 6px;margin-left:auto;font-size:.9em;background-color:#f0f0f0;border-radius:2px;white-space:nowrap}.block-editor-link-control__search-item .block-editor-link-control__search-item-description{padding-top:12px;margin:0}.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder{margin-top:12px;padding-top:0;height:28px;display:flex;flex-direction:column;justify-content:space-around}.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder:after,.block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder:before{display:block;content:"";height:.7em;width:100%;background-color:#f0f0f0;border-radius:3px}.block-editor-link-control__search-item .block-editor-link-control__search-item-description .components-text{font-size:.9em}.block-editor-link-control__search-item .block-editor-link-control__search-item-image{display:flex;width:100%;background-color:#f0f0f0;justify-content:center;height:140px;max-height:140px;overflow:hidden;border-radius:2px;margin-top:12px}.block-editor-link-control__search-item .block-editor-link-control__search-item-image.is-placeholder{background-color:#f0f0f0;border-radius:3px}.block-editor-link-control__search-item .block-editor-link-control__search-item-image img{display:block;max-width:100%;height:140px;max-height:140px}.block-editor-link-control__search-item-top{display:flex;flex-direction:row;width:100%}.block-editor-link-control__search-item-bottom{transition:opacity 1.5s;width:100%}.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description:after,.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description:before,.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-image{animation:loadingpulse 1s linear infinite;animation-delay:.5s}.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon img,.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon svg{opacity:0}.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon:before{content:"";display:block;background-color:#f0f0f0;position:absolute;top:0;left:0;right:0;bottom:0;border-radius:100%;animation:loadingpulse 1s linear infinite;animation-delay:.5s}.block-editor-link-control__loading{margin:16px;display:flex;align-items:center}.block-editor-link-control__loading .components-spinner{margin-top:0}.components-button+.block-editor-link-control__search-create{overflow:visible;padding:12px 16px}.components-button+.block-editor-link-control__search-create:before{content:"";position:absolute;top:-10px;left:0;display:block;width:100%}.block-editor-link-control__search-create{align-items:center}.block-editor-link-control__search-create .block-editor-link-control__search-item-title{margin-bottom:0}.block-editor-link-control__search-create .block-editor-link-control__search-item-icon{top:0}.block-editor-link-control__search-results div[role=menu]>.block-editor-link-control__search-item.block-editor-link-control__search-item{padding:10px}.block-editor-link-control__tools{display:flex;align-items:center;border-top:1px solid #ddd;margin:0;padding:16px}.block-editor-link-control__unlink{padding-left:16px;padding-right:16px}.block-editor-link-control__settings{flex:1;margin:0}.block-editor-link-control__settings :last-child{margin-bottom:0}.is-alternate .block-editor-link-control__settings{border-top:1px solid #1e1e1e}.block-editor-link-control__setting{margin-bottom:16px}.block-editor-link-control__setting :last-child{margin-bottom:0}.block-editor-link-control .block-editor-link-control__search-input .components-spinner{display:block}.block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner{position:absolute;left:auto;bottom:auto;top:calc(50% - 8px);right:36px}.block-editor-link-control__search-item-action{margin-left:auto;flex-shrink:0}.block-editor-list-view-tree{width:100%;border-collapse:collapse;padding:0;margin:0}.components-modal__content .block-editor-list-view-tree{margin:-12px -6px 0;width:calc(100% + 12px)}.block-editor-list-view-leaf{position:relative}.block-editor-list-view-leaf.is-selected td{background:var(--wp-admin-theme-color)}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents,.block-editor-list-view-leaf.is-selected .components-button.has-icon{color:#fff}.is-dragging-components-draggable .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents{background:none;color:#1e1e1e}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents:focus:after{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block__menu:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #fff}.block-editor-list-view-leaf.is-dragging{display:none}.block-editor-list-view-leaf.is-first-selected td:first-child{border-top-left-radius:2px}.block-editor-list-view-leaf.is-first-selected td:last-child{border-top-right-radius:2px}.block-editor-list-view-leaf.is-last-selected td:first-child{border-bottom-left-radius:2px}.block-editor-list-view-leaf.is-last-selected td:last-child{border-bottom-right-radius:2px}.block-editor-list-view-leaf.is-branch-selected:not(.is-selected){background:linear-gradient(hsla(0,0%,100%,.9),hsla(0,0%,100%,.9)),linear-gradient(var(--wp-admin-theme-color),var(--wp-admin-theme-color))}.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:first-child{border-top-left-radius:2px}.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:last-child{border-top-right-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:first-child{border-top-left-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:last-child{border-top-right-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:first-child{border-bottom-left-radius:2px}.block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:last-child{border-bottom-right-radius:2px}.block-editor-list-view-leaf.is-branch-selected:not(.is-selected) td{border-radius:0}.block-editor-list-view-leaf .block-editor-list-view-block-contents{display:flex;align-items:center;width:100%;height:auto;padding:6px 12px 6px 0;text-align:left;color:#1e1e1e;border-radius:2px;position:relative;white-space:nowrap}.block-editor-list-view-leaf .block-editor-list-view-block-contents.is-dropping-before:before{content:"";position:absolute;pointer-events:none;transition:border-color .1s linear,border-style .1s linear,box-shadow .1s linear;top:-2px;right:0;left:0;border-top:4px solid var(--wp-admin-theme-color)}.components-modal__content .block-editor-list-view-leaf .block-editor-list-view-block-contents{padding-left:0;padding-right:0}.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus{box-shadow:none}.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus:after{content:"";position:absolute;top:0;right:-29px;bottom:0;left:0;border-radius:inherit;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);z-index:2;pointer-events:none}.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block-contents:focus:after{box-shadow:none}.block-editor-list-view-leaf.has-single-cell .block-editor-list-view-block-contents:focus:after{right:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);z-index:1}.is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block__menu:focus{box-shadow:none}.block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents{opacity:1;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents{animation-duration:1ms;animation-delay:0s}}.block-editor-list-view-leaf .block-editor-block-icon{align-self:flex-start;margin-right:8px;width:24px}.block-editor-list-view-leaf .block-editor-list-view-block__contents-cell,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell{padding-top:0;padding-bottom:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell{line-height:0;width:36px;vertical-align:middle}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell{transition-duration:0s;transition-delay:0s}}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell>*{opacity:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover{position:relative;z-index:1}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover>*{opacity:1;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible>*,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover>*{animation-duration:1ms;animation-delay:0s}}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell .components-button.has-icon{width:24px;min-width:24px;padding:0}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell{padding-right:5px}.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon{height:24px}.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell-alignment-wrapper{display:flex;height:100%;flex-direction:column;align-items:center}.block-editor-list-view-leaf .block-editor-block-mover-button{position:relative;width:36px;height:24px}.block-editor-list-view-leaf .block-editor-block-mover-button svg{position:relative;height:24px}.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button{margin-top:-6px;align-items:flex-end}.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button svg{bottom:-4px}.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button{margin-bottom:-6px;align-items:flex-start}.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button svg{top:-4px}.block-editor-list-view-leaf .block-editor-block-mover-button:focus,.block-editor-list-view-leaf .block-editor-block-mover-button:focus:enabled{box-shadow:none;outline:none}.block-editor-list-view-leaf .block-editor-block-mover-button:focus:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 4px #fff;outline:2px solid transparent}.block-editor-list-view-leaf .block-editor-block-mover-button:before{content:"";position:absolute;display:block;border-radius:2px;height:16px;min-width:100%;left:0;right:0;animation:components-button__appear-animation .1s ease;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf .block-editor-block-mover-button:before{animation-duration:1ms;animation-delay:0s}}.block-editor-list-view-leaf .block-editor-inserter__toggle{background:#1e1e1e;color:#fff;height:24px;margin:6px 6px 6px 1px;min-width:24px}.block-editor-list-view-leaf .block-editor-inserter__toggle:active{color:#fff}.block-editor-list-view-leaf .block-editor-list-view-block-select-button__anchor{background:rgba(0,0,0,.1);border-radius:2px;display:inline-block;padding:2px 6px;margin:0 8px;max-width:120px;overflow:hidden;text-overflow:ellipsis}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-select-button__anchor{background:rgba(0,0,0,.3)}.block-editor-list-view-leaf .block-editor-list-view-block-select-button__lock{line-height:0;width:24px;min-width:24px;margin-left:auto;padding:0;vertical-align:middle}.block-editor-list-view-appender__description,.block-editor-list-view-block-select-button__description{display:none}.block-editor-list-view-appender__cell .block-editor-list-view-appender__container,.block-editor-list-view-appender__cell .block-editor-list-view-block__contents-container,.block-editor-list-view-block__contents-cell .block-editor-list-view-appender__container,.block-editor-list-view-block__contents-cell .block-editor-list-view-block__contents-container{display:flex}.block-editor-list-view__expander{height:24px;margin-left:4px;width:24px}.block-editor-list-view-leaf[aria-level] .block-editor-list-view__expander{margin-left:220px}.block-editor-list-view-leaf:not([aria-level="1"]) .block-editor-list-view__expander{margin-right:4px}.block-editor-list-view-leaf[aria-level="1"] .block-editor-list-view__expander{margin-left:0}.block-editor-list-view-leaf[aria-level="2"] .block-editor-list-view__expander{margin-left:24px}.block-editor-list-view-leaf[aria-level="3"] .block-editor-list-view__expander{margin-left:52px}.block-editor-list-view-leaf[aria-level="4"] .block-editor-list-view__expander{margin-left:80px}.block-editor-list-view-leaf[aria-level="5"] .block-editor-list-view__expander{margin-left:108px}.block-editor-list-view-leaf[aria-level="6"] .block-editor-list-view__expander{margin-left:136px}.block-editor-list-view-leaf[aria-level="7"] .block-editor-list-view__expander{margin-left:164px}.block-editor-list-view-leaf[aria-level="8"] .block-editor-list-view__expander{margin-left:192px}.block-editor-list-view-leaf .block-editor-list-view__expander{visibility:hidden}.block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg{visibility:visible;transition:transform .2s ease;transform:rotate(90deg)}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg{transition-duration:0s;transition-delay:0s}}.block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg{visibility:visible;transform:rotate(0deg);transition:transform .2s ease}@media (prefers-reduced-motion:reduce){.block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg{transition-duration:0s;transition-delay:0s}}.block-editor-list-view-drop-indicator{pointer-events:none}.block-editor-list-view-drop-indicator .block-editor-list-view-drop-indicator__line{background:var(--wp-admin-theme-color);height:1px}.block-editor-list-view-drop-indicator:not([data-y-axis=middle][data-x-axis=right])>.components-popover__content{margin-left:0;border:none;box-shadow:none}.block-editor-list-view-placeholder{padding:0;margin:0;height:36px}.modal-open .block-editor-media-replace-flow__options{display:none}.block-editor-media-replace-flow__indicator{margin-left:4px}.block-editor-media-flow__url-input{border-top:1px solid #1e1e1e;margin-top:8px;margin-right:-8px;margin-left:-8px;padding:16px}.block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label{display:block;top:16px;margin-bottom:8px}.block-editor-media-flow__url-input .block-editor-link-control{width:220px}.block-editor-media-flow__url-input .block-editor-link-control .block-editor-url-input{padding:0}.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;white-space:nowrap}.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-info{white-space:nowrap}.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:0;width:100%}.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions{top:0;right:4px}.block-editor-media-flow__error{padding:0 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}.block-editor-media-placeholder__url-input-form{display:flex}.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{width:100%;min-width:200px;flex-grow:1;border:none;border-radius:0;margin:2px}@media (min-width:600px){.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{width:300px}}.block-editor-media-placeholder__url-input-submit-button{flex-shrink:1}.block-editor-media-placeholder__button{margin-bottom:.5rem}.block-editor-media-placeholder__cancel-button.is-link{margin:1em;display:block}.block-editor-media-placeholder.is-appender{min-height:0}.block-editor-media-placeholder.is-appender:hover{cursor:pointer;box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.block-editor-multi-selection-inspector__card{display:flex;align-items:flex-start;padding:16px}.block-editor-multi-selection-inspector__card-content{flex-grow:1}.block-editor-multi-selection-inspector__card-title{font-weight:500;margin-bottom:5px}.block-editor-multi-selection-inspector__card-description{font-size:13px}.block-editor-multi-selection-inspector__card .block-editor-block-icon{margin-left:-2px;margin-right:10px;padding:0 3px;width:36px;height:24px}.block-editor-plain-text{box-shadow:none;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;border:none;padding:0;margin:0;width:100%}.block-editor-responsive-block-control{margin-bottom:28px;border-bottom:1px solid #ccc;padding-bottom:14px}.block-editor-responsive-block-control:last-child{padding-bottom:0;border-bottom:0}.block-editor-responsive-block-control__title{margin:0 0 .6em -3px}.block-editor-responsive-block-control__label{font-weight:600;margin-bottom:.6em;margin-left:-3px}.block-editor-responsive-block-control__inner{margin-left:-1px}.block-editor-responsive-block-control__toggle{margin-left:1px}.block-editor-responsive-block-control .components-base-control__help{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}.rich-text [data-rich-text-placeholder]{pointer-events:none}.rich-text [data-rich-text-placeholder]:after{content:attr(data-rich-text-placeholder);opacity:.62}.rich-text:focus{outline:none}.rich-text:focus [data-rich-text-format-boundary]{border-radius:2px}.block-editor-rich-text__editable>p:first-child{margin-top:0}figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]:before{opacity:.8}.components-popover.block-editor-rich-text__inline-format-toolbar{z-index:99998}.components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content{width:auto;min-width:auto;margin-bottom:8px;box-shadow:none;border:1px solid #1e1e1e;border-radius:2px;background-color:#fff}.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar,.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar-group{border:none}.components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle,.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar__control{min-width:48px;min-height:48px;padding-left:12px;padding-right:12px}.block-editor-rich-text__inline-format-toolbar-group .components-dropdown-menu__toggle{justify-content:center}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon{width:auto}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon svg{display:none}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon:after{content:attr(aria-label)}[data-rich-text-script]{display:inline}[data-rich-text-script]:before{content:">";background:#ff0}.block-editor-skip-to-selected-block{position:absolute;top:-9999em}.block-editor-skip-to-selected-block:focus{height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f1f1f1;color:var(--wp-admin-theme-color);line-height:normal;box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none;outline:none;z-index:100000}.block-editor-text-transform-control{flex:0 0 50%}.block-editor-text-transform-control legend{margin-bottom:8px}.block-editor-text-transform-control .block-editor-text-transform-control__buttons{display:inline-flex;margin-bottom:24px}.block-editor-text-transform-control .block-editor-text-transform-control__buttons .components-button.has-icon{min-width:24px;padding:0;margin-right:4px}.block-editor-text-decoration-control{flex:0 0 50%}.block-editor-text-decoration-control legend{margin-bottom:8px}.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons{display:inline-flex;margin-bottom:24px}.block-editor-text-decoration-control .block-editor-text-decoration-control__buttons .components-button.has-icon{min-width:24px;padding:0;margin-right:4px}.block-editor-tool-selector__help{margin:8px -8px -8px;padding:16px;border-top:1px solid #ddd;color:#757575;min-width:280px}.block-editor-block-list__block .block-editor-url-input,.block-editor-url-input,.components-popover .block-editor-url-input{flex-grow:1;position:relative;padding:1px}.block-editor-block-list__block .block-editor-url-input input[type=text],.block-editor-url-input input[type=text],.components-popover .block-editor-url-input input[type=text]{width:100%;padding:8px 8px 8px 12px;border:none;border-radius:0;margin-left:0;margin-right:0;font-size:16px}@media (min-width:600px){.block-editor-block-list__block .block-editor-url-input input[type=text],.block-editor-url-input input[type=text],.components-popover .block-editor-url-input input[type=text]{width:300px;font-size:13px}}.block-editor-block-list__block .block-editor-url-input input[type=text]::-ms-clear,.block-editor-url-input input[type=text]::-ms-clear,.components-popover .block-editor-url-input input[type=text]::-ms-clear{display:none}.block-editor-block-list__block .block-editor-url-input.is-full-width,.block-editor-block-list__block .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],.block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,.block-editor-url-input.is-full-width,.block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],.block-editor-url-input.is-full-width__suggestions,.components-popover .block-editor-url-input.is-full-width,.components-popover .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],.components-popover .block-editor-url-input.is-full-width__suggestions{width:100%}.block-editor-block-list__block .block-editor-url-input .components-spinner,.block-editor-url-input .components-spinner,.components-popover .block-editor-url-input .components-spinner{position:absolute;right:8px 8px 8px 12px;bottom:8px 8px 8px 12px8px1;margin:0}.block-editor-url-input__input[type=text]{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal}@media (prefers-reduced-motion:reduce){.block-editor-url-input__input[type=text]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.block-editor-url-input__input[type=text]{font-size:13px;line-height:normal}}.block-editor-url-input__input[type=text]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.block-editor-url-input__input[type=text]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-url-input__input[type=text]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.block-editor-url-input__input[type=text]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.block-editor-url-input__suggestions{max-height:200px;transition:all .15s ease-in-out;padding:4px 0;width:302px;overflow-y:auto}@media (prefers-reduced-motion:reduce){.block-editor-url-input__suggestions{transition-duration:0s;transition-delay:0s}}.block-editor-url-input .components-spinner,.block-editor-url-input__suggestions{display:none}@media (min-width:600px){.block-editor-url-input .components-spinner,.block-editor-url-input__suggestions{display:grid}}.block-editor-url-input__suggestion{min-height:36px;height:auto;color:#757575;display:block;font-size:13px;cursor:pointer;background:#fff;width:100%;border:none;text-align:left;box-shadow:none}.block-editor-url-input__suggestion:hover{background:#ddd}.block-editor-url-input__suggestion.is-selected,.block-editor-url-input__suggestion:focus{background:var(--wp-admin-theme-color-darker-20);color:#fff;outline:none}.components-toolbar-group>.block-editor-url-input__button,.components-toolbar>.block-editor-url-input__button{position:inherit}.block-editor-url-input__button .block-editor-url-input__back{margin-right:4px;overflow:visible}.block-editor-url-input__button .block-editor-url-input__back:after{content:"";position:absolute;display:block;width:1px;height:24px;right:-1px;background:#ddd}.block-editor-url-input__button-modal{box-shadow:0 2px 6px rgba(0,0,0,.05);border:1px solid #ddd;background:#fff}.block-editor-url-input__button-modal-line{display:flex;flex-direction:row;flex-grow:1;flex-shrink:1;min-width:0;align-items:flex-start}.block-editor-url-input__button-modal-line .components-button{flex-shrink:0;width:36px;height:36px}.block-editor-url-popover__additional-controls{border-top:1px solid #ddd}.block-editor-url-popover__additional-controls>div[role=menu] .components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary)>svg{box-shadow:none}.block-editor-url-popover__additional-controls div[role=menu]>.components-button{padding-left:12px}.block-editor-url-popover__row{display:flex}.block-editor-url-popover__row>:not(.block-editor-url-popover__settings-toggle){flex-grow:1}.block-editor-url-popover .components-button.has-icon{padding:3px}.block-editor-url-popover .components-button.has-icon>svg{padding:5px;border-radius:2px;height:30px;width:30px}.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 4px #fff;outline:2px solid transparent}.block-editor-url-popover__settings-toggle{flex-shrink:0;border-radius:0;border-left:1px solid #ddd;margin-left:1px}.block-editor-url-popover__settings-toggle[aria-expanded=true] .dashicon{transform:rotate(180deg)}.block-editor-url-popover__input-container .components-base-control:last-child,.block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field{margin-bottom:0}.block-editor-url-popover__settings{display:block;padding:16px;border-top:1px solid #ddd}.block-editor-url-popover__link-editor,.block-editor-url-popover__link-viewer{display:flex}.block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field,.block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field{margin-bottom:0}.block-editor-url-popover__link-editor .block-editor-url-input .components-spinner,.block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner{bottom:8px 8px 8px 12px1}.block-editor-url-popover__link-viewer-url{margin:7px;flex-grow:1;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:150px;max-width:500px}.block-editor-url-popover__link-viewer-url.has-invalid-link{color:#cc1818}.block-editor-warning{align-items:center;display:flex;flex-wrap:wrap;padding:1em;border:1px solid #1e1e1e;border-radius:2px;background-color:#fff}.block-editor-warning,.block-editor-warning .block-editor-warning__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.block-editor-warning .block-editor-warning__message{line-height:1.4;font-size:13px;color:#1e1e1e;margin:0}.block-editor-warning p.block-editor-warning__message.block-editor-warning__message{min-height:auto}.block-editor-warning .block-editor-warning__contents{display:flex;flex-direction:row;justify-content:space-between;flex-wrap:wrap;align-items:baseline;width:100%}.block-editor-warning .block-editor-warning__actions{display:flex;margin-top:1em}.block-editor-warning .block-editor-warning__action{margin:0 8px 0 0}.block-editor-warning__secondary{margin:auto 0 auto 8px}.components-popover.block-editor-warning__dropdown{z-index:99998}.html-anchor-control .components-external-link{display:block;margin-top:8px}.block-editor-hooks__layout-controls{display:flex;margin-bottom:16px}.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit{display:flex;margin-right:24px}.block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit svg{margin:auto 0 4px 8px}.block-editor-hooks__layout-controls-reset{display:flex;justify-content:flex-end;margin-bottom:24px}.block-editor-hooks__layout-controls-helptext{font-size:12px}.block-editor-hooks__flex-layout-justification-controls,.block-editor-hooks__flex-layout-orientation-controls{margin-bottom:12px}.block-editor-hooks__flex-layout-justification-controls legend,.block-editor-hooks__flex-layout-orientation-controls legend{margin-bottom:8px}.border-block-support-panel .single-column,.dimensions-block-support-panel .single-column{grid-column:span 1}.typography-block-support-panel .block-editor-text-decoration-control__buttons,.typography-block-support-panel .block-editor-text-transform-control__buttons,.typography-block-support-panel .components-font-appearance-control,.typography-block-support-panel .components-font-size-picker__controls{margin-bottom:0}.typography-block-support-panel .single-column{grid-column:span 1}.color-block-support-panel .block-editor-contrast-checker{order:9999;grid-column:span 2;margin-top:16px}.color-block-support-panel .block-editor-contrast-checker .components-notice__content{margin-right:0}.color-block-support-panel.color-block-support-panel .color-block-support-panel__inner-wrapper{row-gap:0}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item{padding:0;border-left:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1)}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.first{border-top-left-radius:2px;border-top-right-radius:2px;border-top:1px solid rgba(0,0,0,.1)}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.last{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item>div,.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item>div>button{border-radius:inherit}.color-block-support-panel .block-editor-panel-color-gradient-settings__color-indicator{background:linear-gradient(-45deg,transparent 48%,#ddd 0,#ddd 52%,transparent 0)}.color-block-support-panel .block-editor-tools-panel-color-dropdown{display:block;padding:0}.color-block-support-panel .block-editor-tools-panel-color-dropdown>button{height:46px}.color-block-support-panel .block-editor-tools-panel-color-dropdown>button.is-open{background:#f0f0f0;color:var(--wp-admin-theme-color)}.color-block-support-panel .color-block-support-panel__item-group>div{grid-column:span 2;border-radius:inherit}.block-editor-block-toolbar{display:flex;flex-grow:1;width:100%;position:relative;overflow-y:hidden;overflow-x:auto;transition:border-color .1s linear,box-shadow .1s linear}@media (prefers-reduced-motion:reduce){.block-editor-block-toolbar{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.block-editor-block-toolbar{overflow:inherit}}.block-editor-block-toolbar .components-toolbar,.block-editor-block-toolbar .components-toolbar-group{background:none;line-height:0;margin-top:-1px;margin-bottom:-1px;border:0;border-right:1px solid #ddd}.block-editor-block-toolbar>:last-child,.block-editor-block-toolbar>:last-child .components-toolbar,.block-editor-block-toolbar>:last-child .components-toolbar-group{border-right:none}.block-editor-block-contextual-toolbar.has-parent:not(.is-fixed){margin-left:56px}.show-icon-labels .block-editor-block-contextual-toolbar.has-parent:not(.is-fixed){margin-left:0}.block-editor-block-parent-selector{position:absolute;top:-1px;left:-57px}.show-icon-labels .block-editor-block-parent-selector{position:relative;left:auto;top:auto;margin-top:-1px;margin-left:-1px;margin-bottom:-1px}.block-editor-block-toolbar__block-controls{height:auto!important;padding:0!important;margin-left:-1px}.block-editor-block-toolbar__block-controls .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,.block-editor-block-toolbar__block-controls .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon{width:24px!important;margin:0!important}.block-editor-block-toolbar__block-controls .block-editor-block-mover{margin-left:-6px}.block-editor-block-toolbar__block-controls .block-editor-block-lock-toolbar{margin-left:-6px!important}.block-editor-block-toolbar__block-controls .components-toolbar-group{padding:0}.block-editor-block-toolbar .components-toolbar,.block-editor-block-toolbar .components-toolbar-group,.block-editor-rich-text__inline-format-toolbar-group .components-toolbar,.block-editor-rich-text__inline-format-toolbar-group .components-toolbar-group{display:flex;flex-wrap:nowrap}.block-editor-block-toolbar__slot{display:inline-block;line-height:0}@supports (position:sticky){.block-editor-block-toolbar__slot{display:inline-flex}}.show-icon-labels .block-editor-block-toolbar .components-button.has-icon{width:auto}.show-icon-labels .block-editor-block-toolbar .components-button.has-icon svg{display:none}.show-icon-labels .block-editor-block-toolbar .components-button.has-icon:after{content:attr(aria-label);font-size:12px}.show-icon-labels .components-accessible-toolbar .components-toolbar-group>div:first-child:last-child>.components-button.has-icon{padding-left:6px;padding-right:6px}.show-icon-labels .block-editor-block-switcher{border-right:1px solid #1e1e1e}.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle{margin-left:0}.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,.show-icon-labels .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon{width:0!important;height:0!important}.show-icon-labels .block-editor-block-parent-selector__button .block-editor-block-icon{width:0}.show-icon-labels .block-editor-block-toolbar__block-controls .block-editor-block-mover{margin-left:0;white-space:nowrap}.show-icon-labels .block-editor-block-mover-button{padding-left:8px!important;padding-right:8px!important}.show-icon-labels .block-editor-block-mover__drag-handle.has-icon{padding-left:6px!important;padding-right:6px!important;border-right:1px solid #1e1e1e}@media (min-width:600px){.show-icon-labels .is-up-button.is-up-button.is-up-button{border-bottom:1px solid #1e1e1e;margin-right:0;border-radius:0}}.show-icon-labels .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button{width:auto}.show-icon-labels .components-toolbar,.show-icon-labels .components-toolbar-group{flex-shrink:1}.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button+.components-button{margin-left:6px}.block-editor-inserter{display:inline-block;background:none;border:none;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:0}@media (min-width:782px){.block-editor-inserter{position:relative}}.block-editor-inserter__content{position:relative}.block-editor-inserter__popover.is-quick .components-popover__content{border:none}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>*{border-left:1px solid #ccc;border-right:1px solid #ccc}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>:first-child{border-top:1px solid #ccc}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>:last-child{border-bottom:1px solid #ccc}.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>.components-button{border:1px solid #1e1e1e}.block-editor-inserter__popover .block-editor-inserter__menu{margin:-12px}.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__tabs .components-tab-panel__tabs{top:60px}.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__main-area{overflow:visible;height:auto}.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__preview-container{display:none}.block-editor-inserter__toggle.components-button{display:inline-flex;align-items:center;cursor:pointer;border:none;outline:none;padding:0;transition:color .2s ease}@media (prefers-reduced-motion:reduce){.block-editor-inserter__toggle.components-button{transition-duration:0s;transition-delay:0s}}.block-editor-inserter__menu{height:100%;position:relative;overflow:visible}.block-editor-inserter__main-area{width:auto;overflow-y:auto;height:100%}@media (min-width:782px){.block-editor-inserter__main-area{width:350px}}.block-editor-inserter__inline-elements{margin-top:-1px}.block-editor-inserter__menu.is-bottom:after{border-bottom-color:#fff}.components-popover.block-editor-inserter__popover{z-index:99999}.block-editor-inserter__search{background:#fff;padding:16px 16px 0;position:sticky;top:0;z-index:1}.block-editor-inserter__search .components-search-control__icon{right:20px}.block-editor-inserter__search .components-base-control__field{margin-bottom:0}.block-editor-inserter__tabs{display:flex;flex-direction:column}.block-editor-inserter__tabs .components-tab-panel__tabs{position:sticky;top:64px;background:#fff;z-index:1;border-bottom:1px solid #ddd}.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;z-index:0}.block-editor-inserter__panel-header{display:inline-flex;align-items:center;padding:16px 16px 0}.block-editor-inserter__panel-header-patterns{padding:16px 16px 0}.block-editor-inserter__panel-content{padding:16px}.block-editor-inserter__panel-title,.block-editor-inserter__panel-title button{margin:0 12px 0 0;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500}.block-editor-inserter__panel-dropdown select.components-select-control__input.components-select-control__input.components-select-control__input{height:36px;line-height:36px}.block-editor-inserter__panel-dropdown select{border:none}.block-editor-inserter__block-list{flex-grow:1;position:relative}.block-editor-inserter__reusable-blocks-panel{position:relative;text-align:right}.block-editor-inserter__manage-reusable-blocks{display:inline-block;margin:16px}.block-editor-inserter__no-results{padding:32px;text-align:center}.block-editor-inserter__no-results-icon{fill:#949494}.block-editor-inserter__child-blocks{padding:0 16px}.block-editor-inserter__parent-block-header{display:flex;align-items:center}.block-editor-inserter__parent-block-header h2{font-size:13px}.block-editor-inserter__parent-block-header .block-editor-block-icon{margin-right:8px}.block-editor-inserter__preview-container{display:none;width:300px;background:#fff;border-radius:2px;border:1px solid #ddd;position:absolute;top:16px;left:calc(100% + 16px);max-height:calc(100% - 32px);overflow-y:hidden}@media (min-width:782px){.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{min-height:144px;background:#f0f0f0;display:grid;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:#757575;background:#f0f0f0}.block-editor-inserter__tips{border-top:1px solid #ddd;padding:16px;flex-shrink:0;position:relative}.block-editor-inserter__manage-reusable-blocks-container{padding:16px}.block-editor-inserter__quick-inserter{width:100%;max-width:100%}@media (min-width:782px){.block-editor-inserter__quick-inserter{width:350px}}.block-editor-inserter__quick-inserter-results .block-editor-inserter__panel-header{height:0;padding:0;float:left}.block-editor-inserter__quick-inserter.has-expand .block-editor-inserter__panel-content,.block-editor-inserter__quick-inserter.has-search .block-editor-inserter__panel-content{padding:16px}.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list{display:grid;grid-template-columns:1fr 1fr;grid-gap:8px}.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{margin-bottom:0}.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-preview__container{min-height:100px}.block-editor-inserter__quick-inserter-separator{border-top:1px solid #ddd}.block-editor-inserter__popover.is-quick>.components-popover__content>div{padding:0}.block-editor-inserter__quick-inserter-expand.components-button{display:block;background:#1e1e1e;color:#fff;width:100%;height:44px;border-radius:0}.block-editor-inserter__quick-inserter-expand.components-button:hover{color:#fff}.block-editor-inserter__quick-inserter-expand.components-button:active{color:#ccc}.block-editor-inserter__quick-inserter-expand.components-button.components-button:focus:not(:disabled){box-shadow:none;background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.block-editor-block-patterns-explorer__sidebar{position:absolute;top:60px;left:0;bottom:0;width:280px;padding:24px 32px 32px;overflow-x:visible;overflow-y:scroll}.block-editor-block-patterns-explorer__sidebar__categories-list__item{display:block;width:100%;height:48px;text-align:left}.block-editor-block-patterns-explorer__search{margin-bottom:32px}.block-editor-block-patterns-explorer__search-results-count{padding-bottom:32px}.block-editor-block-patterns-explorer__list{margin-left:248px}.block-editor-block-patterns-explorer .block-editor-block-patterns-list{display:grid;grid-gap:32px;grid-template-columns:repeat(1,1fr)}@media (min-width:1080px){.block-editor-block-patterns-explorer .block-editor-block-patterns-list{grid-template-columns:repeat(2,1fr)}}@media (min-width:1440px){.block-editor-block-patterns-explorer .block-editor-block-patterns-list{grid-template-columns:repeat(3,1fr)}}.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{min-height:240px}.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-preview__container{height:inherit;min-height:100px;max-height:800px}.block-editor-post-preview__dropdown{padding:0}.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.edit-post-post-preview-dropdown .components-menu-group:first-child{padding-bottom:8px}.block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:last-child{margin-bottom:0}.block-editor-post-preview__dropdown-content .components-menu-group+.components-menu-group{padding:8px}@media (min-width:600px){.edit-post-header__settings .editor-post-preview,.edit-site-header__actions .editor-post-preview{display:none}}@media (min-width:600px){.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state{transition:opacity .1s linear}}@media (min-width:600px) and (prefers-reduced-motion:reduce){.edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,.edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle,.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-save-draft,.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-saved-state{opacity:0}.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle.is-opened{opacity:1}}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/common-rtl.css b/static/wp-includes/css/dist/block-library/common-rtl.css
new file mode 100755
index 0000000..c325499
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/common-rtl.css
@@ -0,0 +1,245 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+:root {
+ /*
+ * Our classes uses the same values we set for gradient value attributes,
+ * and we can not use spacing because of WP multi site kses rule.
+ */
+ /* stylelint-disable function-comma-space-after */
+ /* stylelint-enable function-comma-space-after */
+ --wp--preset--font-size--normal: 16px;
+ --wp--preset--font-size--huge: 42px;
+}
+:root .has-very-light-gray-background-color {
+ background-color: #eee;
+}
+:root .has-very-dark-gray-background-color {
+ background-color: #313131;
+}
+:root .has-very-light-gray-color {
+ color: #eee;
+}
+:root .has-very-dark-gray-color {
+ color: #313131;
+}
+:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
+ background: linear-gradient(-135deg, #00d084 0%, #0693e3 100%);
+}
+:root .has-purple-crush-gradient-background {
+ background: linear-gradient(-135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%);
+}
+:root .has-hazy-dawn-gradient-background {
+ background: linear-gradient(-135deg, #faaca8 0%, #dad0ec 100%);
+}
+:root .has-subdued-olive-gradient-background {
+ background: linear-gradient(-135deg, #fafae1 0%, #67a671 100%);
+}
+:root .has-atomic-cream-gradient-background {
+ background: linear-gradient(-135deg, #fdd79a 0%, #004a59 100%);
+}
+:root .has-nightshade-gradient-background {
+ background: linear-gradient(-135deg, #330968 0%, #31cdcf 100%);
+}
+:root .has-midnight-gradient-background {
+ background: linear-gradient(-135deg, #020381 0%, #2874fc 100%);
+}
+
+.has-regular-font-size {
+ font-size: 1em;
+}
+
+.has-larger-font-size {
+ font-size: 2.625em;
+}
+
+.has-normal-font-size {
+ font-size: var(--wp--preset--font-size--normal);
+}
+
+.has-huge-font-size {
+ font-size: var(--wp--preset--font-size--huge);
+}
+
+.has-text-align-center {
+ text-align: center;
+}
+
+.has-text-align-left {
+ text-align: left;
+}
+
+.has-text-align-right {
+ text-align: right;
+}
+
+#end-resizable-editor-section {
+ display: none;
+}
+
+.aligncenter {
+ clear: both;
+}
+
+.items-justified-left {
+ justify-content: flex-start;
+}
+
+.items-justified-center {
+ justify-content: center;
+}
+
+.items-justified-right {
+ justify-content: flex-end;
+}
+
+.items-justified-space-between {
+ justify-content: space-between;
+}
+
+.screen-reader-text {
+ 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;
+}
+
+.screen-reader-text:focus {
+ background-color: #ddd;
+ clip: auto !important;
+ -webkit-clip-path: none;
+ clip-path: none;
+ color: #444;
+ display: block;
+ font-size: 1em;
+ height: auto;
+ right: 5px;
+ line-height: normal;
+ padding: 15px 23px 14px;
+ text-decoration: none;
+ top: 5px;
+ width: auto;
+ z-index: 100000;
+}
+
+/**
+ * The following provide a simple means of applying a default border style when
+ * a user first makes a selection in the border block support panel.
+ * This prevents issues such as where the user could set a border width
+ * and see no border due there being no border style set.
+ *
+ * This is intended to be removed once intelligent defaults can be set while
+ * making border selections via the block support.
+ *
+ * See: https://github.com/WordPress/gutenberg/pull/33743
+ */
+html :where(.has-border-color) {
+ border-style: solid;
+}
+
+html :where([style*="border-width"]) {
+ border-style: solid;
+}
+
+/**
+ * Provide baseline responsiveness for images.
+ */
+html :where(img[class*="wp-image-"]) {
+ height: auto;
+ max-width: 100%;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/common-rtl.min.css b/static/wp-includes/css/dist/block-library/common-rtl.min.css
new file mode 100755
index 0000000..2243a8f
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/common-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(-135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(-135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(-135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(-135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(-135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(-135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(-135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{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}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color),html :where([style*=border-width]){border-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/common.css b/static/wp-includes/css/dist/block-library/common.css
new file mode 100755
index 0000000..d457f17
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/common.css
@@ -0,0 +1,247 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+:root {
+ /*
+ * Our classes uses the same values we set for gradient value attributes,
+ * and we can not use spacing because of WP multi site kses rule.
+ */
+ /* stylelint-disable function-comma-space-after */
+ /* stylelint-enable function-comma-space-after */
+ --wp--preset--font-size--normal: 16px;
+ --wp--preset--font-size--huge: 42px;
+}
+:root .has-very-light-gray-background-color {
+ background-color: #eee;
+}
+:root .has-very-dark-gray-background-color {
+ background-color: #313131;
+}
+:root .has-very-light-gray-color {
+ color: #eee;
+}
+:root .has-very-dark-gray-color {
+ color: #313131;
+}
+:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
+ background: linear-gradient(135deg, #00d084 0%, #0693e3 100%);
+}
+:root .has-purple-crush-gradient-background {
+ background: linear-gradient(135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%);
+}
+:root .has-hazy-dawn-gradient-background {
+ background: linear-gradient(135deg, #faaca8 0%, #dad0ec 100%);
+}
+:root .has-subdued-olive-gradient-background {
+ background: linear-gradient(135deg, #fafae1 0%, #67a671 100%);
+}
+:root .has-atomic-cream-gradient-background {
+ background: linear-gradient(135deg, #fdd79a 0%, #004a59 100%);
+}
+:root .has-nightshade-gradient-background {
+ background: linear-gradient(135deg, #330968 0%, #31cdcf 100%);
+}
+:root .has-midnight-gradient-background {
+ background: linear-gradient(135deg, #020381 0%, #2874fc 100%);
+}
+
+.has-regular-font-size {
+ font-size: 1em;
+}
+
+.has-larger-font-size {
+ font-size: 2.625em;
+}
+
+.has-normal-font-size {
+ font-size: var(--wp--preset--font-size--normal);
+}
+
+.has-huge-font-size {
+ font-size: var(--wp--preset--font-size--huge);
+}
+
+.has-text-align-center {
+ text-align: center;
+}
+
+.has-text-align-left {
+ /*rtl:ignore*/
+ text-align: left;
+}
+
+.has-text-align-right {
+ /*rtl:ignore*/
+ text-align: right;
+}
+
+#end-resizable-editor-section {
+ display: none;
+}
+
+.aligncenter {
+ clear: both;
+}
+
+.items-justified-left {
+ justify-content: flex-start;
+}
+
+.items-justified-center {
+ justify-content: center;
+}
+
+.items-justified-right {
+ justify-content: flex-end;
+}
+
+.items-justified-space-between {
+ justify-content: space-between;
+}
+
+.screen-reader-text {
+ 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;
+}
+
+.screen-reader-text:focus {
+ background-color: #ddd;
+ clip: auto !important;
+ -webkit-clip-path: none;
+ clip-path: none;
+ color: #444;
+ display: block;
+ font-size: 1em;
+ height: auto;
+ left: 5px;
+ line-height: normal;
+ padding: 15px 23px 14px;
+ text-decoration: none;
+ top: 5px;
+ width: auto;
+ z-index: 100000;
+}
+
+/**
+ * The following provide a simple means of applying a default border style when
+ * a user first makes a selection in the border block support panel.
+ * This prevents issues such as where the user could set a border width
+ * and see no border due there being no border style set.
+ *
+ * This is intended to be removed once intelligent defaults can be set while
+ * making border selections via the block support.
+ *
+ * See: https://github.com/WordPress/gutenberg/pull/33743
+ */
+html :where(.has-border-color) {
+ border-style: solid;
+}
+
+html :where([style*="border-width"]) {
+ border-style: solid;
+}
+
+/**
+ * Provide baseline responsiveness for images.
+ */
+html :where(img[class*="wp-image-"]) {
+ height: auto;
+ max-width: 100%;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/common.min.css b/static/wp-includes/css/dist/block-library/common.min.css
new file mode 100755
index 0000000..bed0005
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/common.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{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}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color),html :where([style*=border-width]){border-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/editor-rtl.css b/static/wp-includes/css/dist/block-library/editor-rtl.css
new file mode 100755
index 0000000..4424a54
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/editor-rtl.css
@@ -0,0 +1,2776 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+ul.wp-block-archives {
+ padding-right: 2.5em;
+}
+
+.wp-block-audio {
+ margin-right: 0;
+ margin-left: 0;
+ position: relative;
+}
+.wp-block-audio.is-transient audio {
+ opacity: 0.3;
+}
+.wp-block-audio .components-spinner {
+ position: absolute;
+ top: 50%;
+ right: 50%;
+ margin-top: -9px;
+ margin-right: -9px;
+}
+
+.wp-block-avatar__image img {
+ width: 100%;
+}
+
+.wp-block-avatar.aligncenter .components-resizable-box__container {
+ margin: 0 auto;
+}
+
+.edit-post-visual-editor .block-library-block__reusable-block-container .is-root-container {
+ padding-right: 0;
+ padding-left: 0;
+}
+.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow {
+ display: block;
+}
+.edit-post-visual-editor .block-library-block__reusable-block-container .components-disabled .block-list-appender {
+ display: none;
+}
+
+.wp-block[data-align=center] > .wp-block-button {
+ text-align: center;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+.wp-block[data-align=right] > .wp-block-button {
+ text-align: right;
+}
+
+.wp-block-button {
+ position: relative;
+ cursor: text;
+}
+.wp-block-button:focus {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+.wp-block-button[data-rich-text-placeholder]::after {
+ opacity: 0.8;
+}
+
+.wp-block-button__inline-link {
+ color: #757575;
+ height: 0;
+ overflow: hidden;
+ max-width: 290px;
+}
+.wp-block-button__inline-link-input__suggestions {
+ max-width: 290px;
+}
+@media (min-width: 782px) {
+ .wp-block-button__inline-link {
+ max-width: 260px;
+ }
+ .wp-block-button__inline-link-input__suggestions {
+ max-width: 260px;
+ }
+}
+@media (min-width: 960px) {
+ .wp-block-button__inline-link {
+ max-width: 290px;
+ }
+ .wp-block-button__inline-link-input__suggestions {
+ max-width: 290px;
+ }
+}
+.is-selected .wp-block-button__inline-link {
+ height: auto;
+ overflow: visible;
+}
+
+.wp-button-label__width .components-button-group {
+ display: block;
+}
+.wp-button-label__width .components-base-control__field {
+ margin-bottom: 12px;
+}
+
+div[data-type="core/button"] {
+ display: table;
+}
+
+.wp-block-buttons {
+ /* stylelint-disable indentation */
+}
+.wp-block-buttons > .wp-block {
+ margin: 0;
+}
+.wp-block-buttons > .wp-block-button.wp-block-button.wp-block-button.wp-block-button.wp-block-button {
+ margin: 0;
+}
+.wp-block-buttons > .block-list-appender {
+ display: inline-flex;
+ align-items: center;
+}
+.wp-block-buttons.is-vertical > .block-list-appender .block-list-appender__toggle {
+ justify-content: flex-start;
+}
+.wp-block-buttons > .wp-block-button:focus {
+ box-shadow: none;
+}
+.wp-block-buttons:not(.is-content-justification-space-between,
+.is-content-justification-right,
+.is-content-justification-left,
+.is-content-justification-center) .wp-block[data-align=center] {
+ /* stylelint-enable indentation */
+ margin-right: auto;
+ margin-left: auto;
+ margin-top: 0;
+ width: 100%;
+}
+.wp-block-buttons:not(.is-content-justification-space-between,
+.is-content-justification-right,
+.is-content-justification-left,
+.is-content-justification-center) .wp-block[data-align=center] .wp-block-button {
+ margin-bottom: 0;
+}
+
+.wp-block[data-align=center] > .wp-block-buttons {
+ align-items: center;
+ justify-content: center;
+}
+
+.wp-block[data-align=right] > .wp-block-buttons {
+ justify-content: flex-end;
+}
+
+.wp-block-categories ul {
+ padding-right: 2.5em;
+}
+.wp-block-categories ul ul {
+ margin-top: 6px;
+}
+
+.wp-block-columns :where(.wp-block) {
+ max-width: none;
+ margin-right: 0;
+ margin-left: 0;
+}
+
+html :where(.wp-block-column) {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.wp-block-comment-author-avatar__placeholder {
+ border: currentColor 1px dashed;
+ width: 100%;
+ height: 100%;
+ stroke: currentColor;
+ stroke-dasharray: 3;
+}
+
+.block-library-comments-toolbar__popover .components-popover__content {
+ min-width: 230px;
+}
+
+.wp-block[data-align=center] > .wp-block-comments-pagination {
+ justify-content: center;
+}
+
+.editor-styles-wrapper .wp-block-comments-pagination {
+ max-width: 100%;
+}
+.editor-styles-wrapper .wp-block-comments-pagination.block-editor-block-list__layout {
+ margin: 0;
+}
+
+.wp-block-comments-pagination > .wp-block-comments-pagination-next,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers {
+ margin-right: 0;
+ margin-top: 0.5em;
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-comments-pagination > .wp-block-comments-pagination-next:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers:last-child {
+ margin-right: 0;
+}
+
+.wp-block-comments-pagination-numbers a {
+ text-decoration: underline;
+}
+.wp-block-comments-pagination-numbers .page-numbers {
+ margin-left: 2px;
+}
+.wp-block-comments-pagination-numbers .page-numbers:last-child {
+ margin-right: 0;
+}
+
+.wp-block-comments-title.has-background {
+ padding: inherit;
+}
+
+.wp-block-cover {
+ /* Extra specificity needed because the reset.css applied in the editor context is overriding this rule. */
+}
+.editor-styles-wrapper .wp-block-cover {
+ box-sizing: border-box;
+}
+.wp-block-cover.is-placeholder {
+ min-height: auto !important;
+ padding: 0 !important;
+}
+.wp-block-cover.is-placeholder .block-library-cover__resize-container {
+ display: none;
+}
+.wp-block-cover.is-placeholder .components-placeholder.is-large {
+ min-height: 240px;
+ justify-content: flex-start;
+ z-index: 1;
+}
+.wp-block-cover.is-placeholder .components-placeholder.is-large + .block-library-cover__resize-container {
+ min-height: 240px;
+ display: block;
+}
+.wp-block-cover.components-placeholder h2 {
+ color: inherit;
+}
+.wp-block-cover.is-transient::before {
+ background-color: #fff;
+ opacity: 0.3;
+}
+.wp-block-cover .components-spinner {
+ position: absolute;
+ z-index: 1;
+ top: 50%;
+ right: 50%;
+ transform: translate(50%, -50%);
+ margin: 0;
+}
+.wp-block-cover .block-editor-block-list__layout {
+ width: 100%;
+}
+.wp-block-cover .wp-block-cover__inner-container {
+ text-align: right;
+ margin-right: 0;
+ margin-left: 0;
+}
+.wp-block-cover .wp-block-cover__placeholder-background-options {
+ width: 100%;
+}
+
+[data-align=left] > .wp-block-cover,
+[data-align=right] > .wp-block-cover {
+ max-width: 420px;
+ width: 100%;
+}
+
+.block-library-cover__reset-button {
+ margin-right: auto;
+}
+
+.block-library-cover__resize-container {
+ position: absolute !important;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ min-height: 50px;
+}
+
+.block-library-cover__resize-container:not(.is-resizing) {
+ height: auto !important;
+}
+
+.wp-block-cover > .components-drop-zone .components-drop-zone__content {
+ opacity: 0.8 !important;
+}
+
+.block-editor-block-patterns-list__list-item .has-parallax.wp-block-cover {
+ background-attachment: scroll;
+}
+
+.wp-block-embed {
+ margin-right: 0;
+ margin-left: 0;
+ clear: both;
+}
+.wp-block-embed.is-loading {
+ display: flex;
+ justify-content: center;
+}
+.wp-block-embed .components-placeholder__error {
+ word-break: break-word;
+}
+.wp-block-embed .components-placeholder__learn-more {
+ margin-top: 1em;
+}
+
+.block-library-embed__interactive-overlay {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ opacity: 0;
+}
+
+.wp-block[data-align=left] > .wp-block-embed,
+.wp-block[data-align=right] > .wp-block-embed {
+ max-width: 360px;
+ width: 100%;
+}
+.wp-block[data-align=left] > .wp-block-embed .wp-block-embed__wrapper,
+.wp-block[data-align=right] > .wp-block-embed .wp-block-embed__wrapper {
+ min-width: 280px;
+}
+
+.wp-block-file {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 0;
+}
+.wp-block[data-align=left] > .wp-block-file, .wp-block[data-align=right] > .wp-block-file {
+ height: auto;
+}
+.wp-block-file .components-resizable-box__container {
+ margin-bottom: 1em;
+}
+.wp-block-file .wp-block-file__preview {
+ margin-bottom: 1em;
+ width: 100%;
+ height: 100%;
+}
+.wp-block-file .wp-block-file__preview-overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+}
+.wp-block-file .wp-block-file__content-wrapper {
+ flex-grow: 1;
+}
+.wp-block-file a {
+ min-width: 1em;
+}
+.wp-block-file .wp-block-file__button-richtext-wrapper {
+ display: inline-block;
+ margin-right: 0.75em;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce {
+ height: auto;
+ /* Allow height of embed iframes to be calculated properly */
+ /* Remove blue highlighting of selected images in WebKit */
+ /* Image captions */
+ /* WP Views */
+}
+.wp-block-freeform.block-library-rich-text__tinymce p,
+.wp-block-freeform.block-library-rich-text__tinymce li {
+ line-height: 1.8;
+}
+.wp-block-freeform.block-library-rich-text__tinymce ul,
+.wp-block-freeform.block-library-rich-text__tinymce ol {
+ padding-right: 2.5em;
+ margin-right: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+ margin: 0;
+ box-shadow: inset 0 0 0 0 #ddd;
+ border-right: 4px solid #000;
+ padding-right: 1em;
+}
+.wp-block-freeform.block-library-rich-text__tinymce pre {
+ white-space: pre-wrap;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 15px;
+ color: #1e1e1e;
+}
+.wp-block-freeform.block-library-rich-text__tinymce > *:first-child {
+ margin-top: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce > *:last-child {
+ margin-bottom: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus {
+ outline: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce a {
+ color: var(--wp-admin-theme-color);
+}
+.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected] {
+ padding: 0 2px;
+ margin: 0 -2px;
+ border-radius: 2px;
+ box-shadow: 0 0 0 1px #e5f5fa;
+ background: #e5f5fa;
+}
+.wp-block-freeform.block-library-rich-text__tinymce code {
+ padding: 2px;
+ border-radius: 2px;
+ color: #1e1e1e;
+ background: #f0f0f0;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 14px;
+}
+.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected] {
+ background: #ddd;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .alignright {
+ float: right;
+ margin: 0.5em 0 0.5em 1em;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .alignleft {
+ float: left;
+ margin: 0.5em 1em 0.5em 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .aligncenter {
+ display: block;
+ margin-right: auto;
+ margin-left: auto;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag {
+ width: 96%;
+ height: 20px;
+ display: block;
+ margin: 15px auto;
+ outline: 0;
+ cursor: default;
+ 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);
+ background-size: 1900px 20px;
+ background-repeat: no-repeat;
+ background-position: center;
+}
+.wp-block-freeform.block-library-rich-text__tinymce img::selection {
+ background-color: transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce div.mceTemp {
+ -ms-user-select: element;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption {
+ margin: 0;
+ /* dl browser reset */
+ max-width: 100%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a,
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img {
+ display: block;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption, .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption * {
+ -webkit-user-drag: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd {
+ padding-top: 0.5em;
+ margin: 0;
+ /* browser dd reset */
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview {
+ width: 99.99%;
+ /* All IE need hasLayout, incl. 11 (ugh, not again!!) */
+ position: relative;
+ clear: both;
+ margin-bottom: 16px;
+ border: 1px solid transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview iframe {
+ display: block;
+ max-width: 100%;
+ background: transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected="2"] .mce-shim {
+ display: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder {
+ border: 1px dashed #ddd;
+ padding: 10px;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error {
+ border: 1px solid #ddd;
+ padding: 1em 0;
+ margin: 0;
+ word-wrap: break-word;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p {
+ margin: 0;
+ text-align: center;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder, .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error {
+ border-color: transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons {
+ display: block;
+ margin: 0 auto;
+ width: 32px;
+ height: 32px;
+ font-size: 32px;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery::after {
+ content: "";
+ display: table;
+ clear: both;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus {
+ outline: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery a {
+ cursor: default;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery {
+ margin: auto -6px;
+ padding: 6px 0;
+ line-height: 1;
+ overflow-x: hidden;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item {
+ float: right;
+ margin: 0;
+ text-align: center;
+ padding: 6px;
+ box-sizing: border-box;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption,
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon {
+ margin: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption {
+ font-size: 13px;
+ margin: 4px 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item {
+ width: 100%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item {
+ width: 50%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item {
+ width: 33.3333333333%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item {
+ width: 25%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item {
+ width: 20%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item {
+ width: 16.6666666667%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item {
+ width: 14.2857142857%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item {
+ width: 12.5%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item {
+ width: 11.1111111111%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery img {
+ max-width: 100%;
+ height: auto;
+ border: none;
+ padding: 0;
+}
+
+div[data-type="core/freeform"]::before {
+ transition: border-color 0.1s linear, box-shadow 0.1s linear;
+ border: 1px solid #ddd;
+ outline: 1px solid transparent;
+}
+@media (prefers-reduced-motion: reduce) {
+ div[data-type="core/freeform"]::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+div[data-type="core/freeform"].is-selected::before {
+ border-color: #1e1e1e;
+}
+div[data-type="core/freeform"] .block-editor-block-contextual-toolbar + div {
+ margin-top: 0;
+ padding-top: 0;
+}
+div[data-type="core/freeform"].is-selected .block-library-rich-text__tinymce::after {
+ content: "";
+ display: table;
+ clear: both;
+}
+
+.mce-toolbar-grp .mce-btn.mce-active button,
+.mce-toolbar-grp .mce-btn.mce-active:hover button,
+.mce-toolbar-grp .mce-btn.mce-active i,
+.mce-toolbar-grp .mce-btn.mce-active:hover i {
+ color: #1e1e1e;
+}
+.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last {
+ margin-left: 0;
+ margin-right: 8px;
+}
+.mce-toolbar-grp .mce-btn i {
+ font-style: normal;
+}
+
+.block-library-classic__toolbar {
+ display: none;
+ width: auto;
+ margin: 0;
+ position: sticky;
+ z-index: 31;
+ top: 0;
+ border: 1px solid #ddd;
+ border-bottom: none;
+ border-radius: 2px;
+ margin-bottom: 8px;
+ padding: 0;
+}
+div[data-type="core/freeform"].is-selected .block-library-classic__toolbar {
+ display: block;
+ border-color: #1e1e1e;
+}
+.block-library-classic__toolbar .mce-tinymce {
+ box-shadow: none;
+}
+@media (min-width: 600px) {
+ .block-library-classic__toolbar {
+ padding: 0;
+ }
+}
+.block-library-classic__toolbar:empty {
+ display: block;
+ background: #f5f5f5;
+ border-bottom: 1px solid #e2e4e7;
+}
+.block-library-classic__toolbar:empty::before {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ content: attr(data-placeholder);
+ color: #555d66;
+ line-height: 37px;
+ padding: 14px;
+}
+.block-library-classic__toolbar div.mce-toolbar-grp {
+ border-bottom: 1px solid #1e1e1e;
+}
+.block-library-classic__toolbar .mce-tinymce-inline,
+.block-library-classic__toolbar .mce-tinymce-inline > div,
+.block-library-classic__toolbar div.mce-toolbar-grp,
+.block-library-classic__toolbar div.mce-toolbar-grp > div,
+.block-library-classic__toolbar .mce-menubar,
+.block-library-classic__toolbar .mce-menubar > div {
+ height: auto !important;
+ width: 100% !important;
+}
+.block-library-classic__toolbar .mce-container-body.mce-abs-layout {
+ overflow: visible;
+}
+.block-library-classic__toolbar .mce-menubar,
+.block-library-classic__toolbar div.mce-toolbar-grp {
+ position: static;
+}
+.block-library-classic__toolbar .mce-toolbar-grp > div {
+ padding: 1px 3px;
+}
+.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) {
+ display: none;
+}
+.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar {
+ display: block;
+}
+
+figure.wp-block-gallery {
+ display: block;
+}
+figure.wp-block-gallery.has-nested-images .components-drop-zone {
+ display: none;
+ pointer-events: none;
+}
+figure.wp-block-gallery > .blocks-gallery-caption {
+ flex: 0 0 100%;
+}
+figure.wp-block-gallery > .blocks-gallery-media-placeholder-wrapper {
+ flex-basis: 100%;
+}
+figure.wp-block-gallery .wp-block-image .components-notice.is-error {
+ display: block;
+}
+figure.wp-block-gallery .wp-block-image .components-notice__content {
+ margin: 4px 0;
+}
+figure.wp-block-gallery .wp-block-image .components-notice__dismiss {
+ position: absolute;
+ top: 0;
+ left: 5px;
+}
+figure.wp-block-gallery .block-editor-media-placeholder.is-appender .components-placeholder__label {
+ display: none;
+}
+figure.wp-block-gallery .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__button {
+ margin-bottom: 0;
+}
+figure.wp-block-gallery .block-editor-media-placeholder {
+ margin: 0;
+}
+figure.wp-block-gallery .block-editor-media-placeholder .components-placeholder__label {
+ display: flex;
+}
+figure.wp-block-gallery .block-editor-media-placeholder figcaption {
+ z-index: 2;
+}
+figure.wp-block-gallery .components-spinner {
+ position: absolute;
+ top: 50%;
+ right: 50%;
+ margin-top: -9px;
+ margin-right: -9px;
+}
+
+/**
+ * Gallery inspector controls settings.
+ */
+.gallery-settings-buttons .components-button:first-child {
+ margin-left: 8px;
+}
+
+.gallery-image-sizes .components-base-control__label {
+ display: block;
+ margin-bottom: 4px;
+}
+.gallery-image-sizes .gallery-image-sizes__loading {
+ display: flex;
+ align-items: center;
+ color: #757575;
+ font-size: 12px;
+}
+.gallery-image-sizes .components-spinner {
+ margin: 0 4px 0 8px;
+}
+
+/**
+ * Deprecated css past this point. This can be removed once all galleries are migrated
+ * to V2.
+ */
+.blocks-gallery-item figure:not(.is-selected):focus,
+.blocks-gallery-item img:focus {
+ outline: none;
+}
+.blocks-gallery-item figure.is-selected::before {
+ box-shadow: 0 0 0 1px #fff inset, 0 0 0 3px var(--wp-admin-theme-color) inset;
+ content: "";
+ outline: 2px solid transparent;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ z-index: 1;
+ pointer-events: none;
+}
+.blocks-gallery-item figure.is-transient img {
+ opacity: 0.3;
+}
+.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {
+ display: inline-flex;
+}
+.blocks-gallery-item .block-editor-media-placeholder {
+ margin: 0;
+ height: 100%;
+}
+.blocks-gallery-item .block-editor-media-placeholder .components-placeholder__label {
+ display: flex;
+}
+
+.block-library-gallery-item__inline-menu {
+ display: none;
+ position: absolute;
+ top: -2px;
+ margin: 8px;
+ z-index: 20;
+ transition: box-shadow 0.2s ease-out;
+ border-radius: 2px;
+ background: #fff;
+ border: 1px solid #1e1e1e;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-library-gallery-item__inline-menu {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-library-gallery-item__inline-menu:hover {
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
+}
+@media (min-width: 600px) {
+ .columns-7 .block-library-gallery-item__inline-menu, .columns-8 .block-library-gallery-item__inline-menu {
+ padding: 2px;
+ }
+}
+.block-library-gallery-item__inline-menu .components-button.has-icon:not(:focus) {
+ border: none;
+ box-shadow: none;
+}
+@media (min-width: 600px) {
+ .columns-7 .block-library-gallery-item__inline-menu .components-button.has-icon, .columns-8 .block-library-gallery-item__inline-menu .components-button.has-icon {
+ padding: 0;
+ width: inherit;
+ height: inherit;
+ }
+}
+.block-library-gallery-item__inline-menu.is-left {
+ right: -2px;
+}
+.block-library-gallery-item__inline-menu.is-right {
+ left: -2px;
+}
+
+.wp-block-gallery ul.blocks-gallery-grid {
+ padding: 0;
+ margin: 0;
+}
+
+@media (min-width: 600px) {
+ .wp-block-update-gallery-modal {
+ max-width: 480px;
+ }
+}
+
+.wp-block-update-gallery-modal-buttons {
+ display: flex;
+ justify-content: flex-end;
+ gap: 12px;
+}
+
+/**
+ * Group: All Alignment Settings
+ */
+.wp-block-group .block-editor-block-list__insertion-point {
+ right: 0;
+ left: 0;
+}
+
+[data-type="core/group"].is-selected .block-list-appender {
+ margin-right: 0;
+ margin-left: 0;
+}
+[data-type="core/group"].is-selected .has-background .block-list-appender {
+ margin-top: 18px;
+ margin-bottom: 18px;
+}
+
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child {
+ gap: inherit;
+ pointer-events: none;
+}
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child,
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content,
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter {
+ display: inherit;
+ width: 100%;
+ flex-direction: inherit;
+ flex: 1;
+}
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child::after {
+ content: "";
+ display: flex;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ border-radius: 2px;
+ flex: 1;
+ pointer-events: none;
+ min-height: 48px;
+}
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter {
+ pointer-events: all;
+}
+
+.block-library-html__edit .block-library-html__preview-overlay {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ right: 0;
+}
+.block-library-html__edit .block-editor-plain-text {
+ font-family: Menlo, Consolas, monaco, monospace !important;
+ color: #1e1e1e !important;
+ background: #fff !important;
+ padding: 12px !important;
+ border: 1px solid #1e1e1e !important;
+ box-shadow: none !important;
+ border-radius: 2px !important;
+ max-height: 250px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px !important;
+}
+@media (min-width: 600px) {
+ .block-library-html__edit .block-editor-plain-text {
+ font-size: 13px !important;
+ }
+}
+.block-library-html__edit .block-editor-plain-text:focus {
+ border-color: var(--wp-admin-theme-color) !important;
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color) !important;
+ outline: 2px solid transparent !important;
+}
+
+figure.wp-block-image:not(.wp-block) {
+ margin: 0;
+}
+
+.wp-block-image {
+ position: relative;
+}
+.wp-block-image .is-applying img, .wp-block-image.is-transient img {
+ opacity: 0.3;
+}
+.wp-block-image figcaption img {
+ display: inline;
+}
+.wp-block-image .components-spinner {
+ position: absolute;
+ top: 50%;
+ right: 50%;
+ margin-top: -9px;
+ margin-right: -9px;
+}
+.wp-block-image:not(.is-style-rounded) > div:not(.components-placeholder) {
+ border-radius: inherit;
+}
+
+.wp-block-image .components-resizable-box__container {
+ display: inline-block;
+}
+.wp-block-image .components-resizable-box__container img {
+ display: block;
+ width: inherit;
+ height: inherit;
+}
+
+.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
+ position: absolute;
+ right: 0;
+ left: 0;
+ margin: -1px 0;
+}
+@media (min-width: 600px) {
+ .block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
+ margin: -1px;
+ }
+}
+
+[data-align=wide] > .wp-block-image img,
+[data-align=full] > .wp-block-image img {
+ height: auto;
+ width: 100%;
+}
+
+.wp-block[data-align=left] > .wp-block-image,
+.wp-block[data-align=center] > .wp-block-image,
+.wp-block[data-align=right] > .wp-block-image {
+ display: table;
+}
+.wp-block[data-align=left] > .wp-block-image > figcaption,
+.wp-block[data-align=center] > .wp-block-image > figcaption,
+.wp-block[data-align=right] > .wp-block-image > figcaption {
+ display: table-caption;
+ caption-side: bottom;
+}
+
+.wp-block[data-align=left] > .wp-block-image {
+ margin-left: 1em;
+ margin-right: 0;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+
+.wp-block[data-align=right] > .wp-block-image {
+ margin-right: 1em;
+ margin-left: 0;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+
+.wp-block[data-align=center] > .wp-block-image {
+ margin-right: auto;
+ margin-left: auto;
+ text-align: center;
+}
+
+.wp-block-image__crop-area {
+ position: relative;
+ max-width: 100%;
+ width: 100%;
+}
+
+.wp-block-image__crop-icon {
+ padding: 0 8px;
+ min-width: 48px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.wp-block-image__crop-icon svg {
+ fill: currentColor;
+}
+
+.wp-block-image__zoom .components-popover__content {
+ overflow: visible;
+ min-width: 260px;
+}
+.wp-block-image__zoom .components-range-control {
+ flex: 1;
+}
+.wp-block-image__zoom .components-base-control__field {
+ display: flex;
+ margin-bottom: 0;
+ flex-direction: column;
+ align-items: flex-start;
+}
+
+.wp-block-image__aspect-ratio {
+ height: 46px;
+ margin-bottom: -8px;
+ display: flex;
+ align-items: center;
+}
+.wp-block-image__aspect-ratio .components-button {
+ width: 36px;
+ padding-right: 0;
+ padding-left: 0;
+}
+
+.wp-block-latest-posts {
+ padding-right: 2.5em;
+}
+.wp-block-latest-posts.is-grid {
+ padding-right: 0;
+}
+
+.wp-block-latest-posts li a > div {
+ display: inline;
+}
+
+.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
+ margin-bottom: 20px;
+}
+
+.editor-latest-posts-image-alignment-control .components-base-control__label {
+ display: block;
+}
+.editor-latest-posts-image-alignment-control .components-toolbar {
+ border-radius: 2px;
+}
+
+.wp-block-media-text__media {
+ position: relative;
+}
+.wp-block-media-text__media.is-transient img {
+ opacity: 0.3;
+}
+.wp-block-media-text__media .components-spinner {
+ position: absolute;
+ top: 50%;
+ right: 50%;
+ margin-top: -9px;
+ margin-right: -9px;
+}
+
+.wp-block-media-text .__resizable_base__ {
+ grid-column: 1/span 2;
+ grid-row: 2;
+}
+
+.wp-block-media-text .editor-media-container__resizer {
+ width: 100% !important;
+}
+
+.wp-block-media-text.is-image-fill .editor-media-container__resizer {
+ height: 100% !important;
+}
+
+.wp-block-media-text > .block-editor-block-list__layout > .block-editor-block-list__block {
+ max-width: unset;
+}
+
+.block-editor-block-list__block[data-type="core/more"] {
+ max-width: 100%;
+ text-align: center;
+ margin-top: 28px;
+ margin-bottom: 28px;
+}
+
+.wp-block-more {
+ display: block;
+ text-align: center;
+ white-space: nowrap;
+}
+.wp-block-more input[type=text] {
+ position: relative;
+ font-size: 13px;
+ text-transform: uppercase;
+ font-weight: 600;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ color: #757575;
+ border: none;
+ box-shadow: none;
+ white-space: nowrap;
+ text-align: center;
+ margin: 0;
+ border-radius: 4px;
+ background: #fff;
+ padding: 6px 8px;
+ height: 24px;
+ max-width: 100%;
+}
+.wp-block-more input[type=text]:focus {
+ box-shadow: none;
+}
+.wp-block-more::before {
+ content: "";
+ position: absolute;
+ top: calc(50%);
+ right: 0;
+ left: 0;
+ border-top: 3px dashed #ccc;
+}
+
+/**
+ * Editor only CSS.
+ */
+.editor-styles-wrapper .wp-block-navigation ul {
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-right: 0;
+ padding-right: 0;
+}
+.editor-styles-wrapper .wp-block-navigation .wp-block-navigation-item.wp-block {
+ margin: revert;
+}
+
+.wp-block-navigation-item__label {
+ display: inline;
+}
+
+/**
+ * Submenus.
+ */
+.wp-block-navigation__container.is-parent-of-selected-block {
+ visibility: visible;
+ opacity: 1;
+ overflow: visible;
+}
+
+.wp-block-navigation__container,
+.wp-block-navigation-item {
+ background-color: inherit;
+}
+
+.wp-block-navigation:not(.is-selected):not(.has-child-selected) .has-child:hover > .wp-block-navigation__submenu-container {
+ opacity: 0;
+ visibility: hidden;
+}
+
+.has-child.is-selected > .wp-block-navigation__submenu-container, .has-child.has-child-selected > .wp-block-navigation__submenu-container {
+ display: flex;
+ opacity: 1;
+ visibility: visible;
+}
+
+.is-dragging-components-draggable .has-child.is-dragging-within > .wp-block-navigation__submenu-container {
+ opacity: 1;
+ visibility: visible;
+}
+
+.is-editing > .wp-block-navigation__container {
+ visibility: visible;
+ opacity: 1;
+ display: flex;
+ flex-direction: column;
+}
+
+.is-dragging-components-draggable .wp-block-navigation-link > .wp-block-navigation__container {
+ opacity: 1;
+ visibility: hidden;
+}
+.is-dragging-components-draggable .wp-block-navigation-link > .wp-block-navigation__container .block-editor-block-draggable-chip-wrapper {
+ visibility: visible;
+}
+
+.is-editing > .wp-block-navigation__submenu-container > .block-list-appender {
+ display: block;
+ position: static;
+ width: 100%;
+}
+.is-editing > .wp-block-navigation__submenu-container > .block-list-appender .block-editor-button-block-appender {
+ color: #fff;
+ background: #1e1e1e;
+ padding: 0;
+ width: 24px;
+ border-radius: 2px;
+ margin-left: 0;
+ margin-right: auto;
+}
+
+.wp-block-navigation__submenu-container .block-list-appender {
+ display: none;
+}
+
+/**
+ * Colors Selector component
+ */
+.block-library-colors-selector {
+ width: auto;
+}
+.block-library-colors-selector .block-library-colors-selector__toggle {
+ display: block;
+ margin: 0 auto;
+ padding: 3px;
+ width: auto;
+}
+.block-library-colors-selector .block-library-colors-selector__icon-container {
+ height: 30px;
+ position: relative;
+ margin: 0 auto;
+ padding: 3px;
+ display: flex;
+ align-items: center;
+ border-radius: 4px;
+}
+.block-library-colors-selector .block-library-colors-selector__state-selection {
+ margin-right: auto;
+ margin-left: auto;
+ border-radius: 11px;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ width: 22px;
+ min-width: 22px;
+ height: 22px;
+ min-height: 22px;
+ line-height: 20px;
+ padding: 2px;
+}
+.block-library-colors-selector .block-library-colors-selector__state-selection > svg {
+ min-width: auto !important;
+}
+.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg,
+.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg path {
+ color: inherit;
+}
+
+.block-library-colors-selector__popover .color-palette-controller-container {
+ padding: 16px;
+}
+.block-library-colors-selector__popover .components-base-control__label {
+ height: 20px;
+ line-height: 20px;
+}
+.block-library-colors-selector__popover .component-color-indicator {
+ float: left;
+ margin-top: 2px;
+}
+.block-library-colors-selector__popover .components-panel__body-title {
+ display: none;
+}
+
+.wp-block-navigation .block-editor-button-block-appender {
+ background-color: #1e1e1e;
+ color: #fff;
+}
+.wp-block-navigation .block-editor-button-block-appender.block-editor-button-block-appender.block-editor-button-block-appender {
+ padding: 0;
+}
+
+.wp-block-navigation .wp-block .wp-block .block-editor-button-block-appender {
+ background-color: transparent;
+ color: #1e1e1e;
+}
+
+/**
+ * Setup state
+ */
+@keyframes loadingpulse {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0.5;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.components-placeholder.wp-block-navigation-placeholder {
+ outline: none;
+ padding: 0;
+ box-shadow: none;
+ background: none;
+ min-height: 0;
+ color: inherit;
+}
+.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset {
+ font-size: inherit;
+}
+.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset .components-button {
+ margin-bottom: 0;
+}
+.wp-block-navigation.is-selected .components-placeholder.wp-block-navigation-placeholder {
+ color: #1e1e1e;
+}
+
+.wp-block-navigation-placeholder .components-spinner {
+ margin-top: 0;
+}
+
+.wp-block-navigation-placeholder__preview {
+ display: flex;
+ align-items: center;
+ min-width: 96px;
+ font-size: 13px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ color: currentColor;
+ background: transparent;
+}
+.wp-block-navigation.is-selected .wp-block-navigation-placeholder__preview {
+ display: none;
+}
+.wp-block-navigation-placeholder__preview::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ pointer-events: none;
+ border-radius: inherit;
+}
+.wp-block-navigation-placeholder__preview > svg {
+ fill: currentColor;
+ opacity: 0.4;
+}
+
+.wp-block-navigation.is-vertical .is-small .components-placeholder__fieldset,
+.wp-block-navigation.is-vertical .is-medium .components-placeholder__fieldset {
+ min-height: 90px;
+}
+
+.wp-block-navigation.is-vertical .is-large .components-placeholder__fieldset {
+ min-height: 132px;
+}
+
+.wp-block-navigation-placeholder__preview,
+.wp-block-navigation-placeholder__controls {
+ padding: 6px 8px;
+ flex-direction: row;
+ align-items: flex-start;
+}
+
+.wp-block-navigation-placeholder__controls {
+ border-radius: 2px;
+ background-color: #fff;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ display: none;
+ position: relative;
+ z-index: 1;
+ float: right;
+ width: 100%;
+}
+.wp-block-navigation.is-selected .wp-block-navigation-placeholder__controls {
+ display: flex;
+}
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator + hr, .is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,
+.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator + hr {
+ display: none;
+}
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions, .wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions {
+ flex-direction: column;
+ align-items: flex-start;
+}
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr, .wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr {
+ display: none;
+}
+.wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__icon {
+ margin-left: 12px;
+ height: 36px;
+}
+
+.wp-block-navigation-placeholder__actions__indicator {
+ display: flex;
+ padding: 0 0 0 6px;
+ align-items: center;
+ justify-content: flex-start;
+ line-height: 0;
+ height: 36px;
+ margin-right: 4px;
+}
+.wp-block-navigation-placeholder__actions__indicator svg {
+ margin-left: 4px;
+ fill: currentColor;
+}
+
+.wp-block-navigation .components-placeholder.is-medium .components-placeholder__fieldset {
+ flex-direction: row !important;
+}
+
+.wp-block-navigation-placeholder__actions {
+ display: flex;
+ font-size: 13px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ gap: 6px;
+ align-items: center;
+ height: 100%;
+}
+.wp-block-navigation-placeholder__actions .components-dropdown,
+.wp-block-navigation-placeholder__actions > .components-button {
+ margin-left: 0;
+}
+.wp-block-navigation-placeholder__actions.wp-block-navigation-placeholder__actions hr {
+ border: 0;
+ min-height: 1px;
+ min-width: 1px;
+ background-color: #1e1e1e;
+ margin: auto 0;
+ height: 100%;
+ max-height: 16px;
+}
+
+/**
+ * Mobile menu.
+ */
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-container:not(.is-menu-open) .components-button.wp-block-navigation__responsive-container-close {
+ display: none;
+ }
+}
+
+.wp-block-navigation__responsive-container.is-menu-open {
+ position: fixed;
+ top: 155px;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation__responsive-container.is-menu-open {
+ top: 93px;
+ }
+}
+@media (min-width: 782px) {
+ .wp-block-navigation__responsive-container.is-menu-open {
+ right: 36px;
+ }
+}
+@media (min-width: 960px) {
+ .wp-block-navigation__responsive-container.is-menu-open {
+ right: 160px;
+ }
+}
+
+@media (min-width: 782px) {
+ .has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open {
+ top: 141px;
+ }
+}
+
+.is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,
+.is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open {
+ top: 141px;
+}
+
+.is-sidebar-opened .wp-block-navigation__responsive-container.is-menu-open {
+ left: 280px;
+}
+
+.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open {
+ right: 0;
+ top: 155px;
+}
+@media (min-width: 782px) {
+ .is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open {
+ top: 61px;
+ }
+}
+@media (min-width: 782px) {
+ .is-fullscreen-mode .has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open {
+ top: 109px;
+ }
+}
+.is-fullscreen-mode .is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,
+.is-fullscreen-mode .is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open {
+ top: 109px;
+}
+
+body.editor-styles-wrapper .wp-block-navigation__responsive-container.is-menu-open {
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+}
+
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-close {
+ pointer-events: none;
+ }
+ .wp-block-navigation__responsive-close .wp-block-navigation__responsive-container-close,
+.wp-block-navigation__responsive-close .block-editor-block-list__layout * {
+ pointer-events: all;
+ }
+}
+.wp-block-navigation__responsive-close .wp-block-pages-list__item__link {
+ pointer-events: none;
+}
+
+.components-button.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open,
+.components-button.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
+ padding: 0;
+ height: auto;
+ color: inherit;
+}
+
+.is-menu-open .wp-block-navigation__responsive-container-content * .block-list-appender {
+ margin-top: 16px;
+}
+
+@keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.wp-block-navigation .components-spinner {
+ padding: 8px 12px;
+}
+
+.wp-block-navigation__unsaved-changes {
+ position: relative;
+}
+.wp-block-navigation__unsaved-changes .components-spinner {
+ position: absolute;
+ top: calc(50% - 16px / 2);
+ right: calc(50% - 16px / 2);
+ opacity: 0;
+ animation: 0.5s linear 2s normal forwards fadein;
+}
+
+@keyframes fadeouthalf {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0.5;
+ }
+}
+.wp-block-navigation__unsaved-changes-overlay.is-saving {
+ opacity: 1;
+ animation: 0.5s linear 2s normal forwards fadeouthalf;
+}
+
+.wp-block-navigation-delete-menu-button {
+ width: 100%;
+ justify-content: center;
+ margin-bottom: 16px;
+}
+
+.wp-block-navigation__overlay-menu-preview {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ background-color: #f0f0f0;
+ padding: 0 24px;
+ height: 64px;
+ margin-bottom: 12px;
+}
+.wp-block-navigation__overlay-menu-preview.open {
+ box-shadow: inset 0 0 0 1px #e0e0e0;
+ outline: 1px solid transparent;
+ background-color: #fff;
+}
+
+.wp-block-navigation__toolbar-menu-selector.components-toolbar-group:empty {
+ display: none;
+}
+
+.wp-block-navigation-placeholder__actions hr + hr {
+ display: none;
+}
+
+/**
+ * Submenus.
+ */
+.wp-block-navigation .has-child {
+ cursor: pointer;
+}
+.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
+ z-index: 28;
+}
+.wp-block-navigation .has-child:hover .wp-block-navigation__submenu-container {
+ z-index: 29;
+}
+.wp-block-navigation .has-child.is-selected > .wp-block-navigation__submenu-container, .wp-block-navigation .has-child.has-child-selected > .wp-block-navigation__submenu-container {
+ visibility: visible !important;
+ opacity: 1 !important;
+ min-width: 200px !important;
+ height: auto !important;
+ width: auto !important;
+ overflow: visible !important;
+}
+
+/**
+ * Navigation Items.
+ */
+.wp-block-navigation-item .wp-block-navigation-item__content {
+ cursor: text;
+}
+.wp-block-navigation-item.is-editing, .wp-block-navigation-item.is-selected {
+ min-width: 20px;
+}
+.wp-block-navigation-item .block-list-appender {
+ margin-top: 16px;
+ margin-left: auto;
+ margin-bottom: 16px;
+ margin-right: 16px;
+}
+
+.wp-block-navigation-link__invalid-item {
+ color: #000;
+}
+
+.wp-block-navigation-link__missing_text-tooltip {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+}
+
+/**
+ * Menu item setup state. Is shown when a menu item has no URL configured.
+ */
+.wp-block-navigation-link__placeholder {
+ position: relative;
+ text-decoration: none !important;
+ box-shadow: none !important;
+ background-image: none !important;
+}
+.wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span {
+ --wp-underline-color: var(--wp-admin-theme-color);
+ background-image: linear-gradient(-45deg, transparent 20%, var(--wp-underline-color) 30%, var(--wp-underline-color) 36%, transparent 46%), linear-gradient(-135deg, transparent 54%, var(--wp-underline-color) 64%, var(--wp-underline-color) 70%, transparent 80%);
+ background-position: 100% 100%;
+ background-size: 6px 3px;
+ background-repeat: repeat-x;
+ padding-bottom: 0.1em;
+}
+.is-dark-theme .wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span {
+ --wp-underline-color: #fff;
+}
+.wp-block-navigation-link__placeholder.wp-block-navigation-item__content {
+ cursor: pointer;
+}
+
+/**
+* Link Control Transforms
+*/
+.link-control-transform {
+ border-top: 1px solid #ccc;
+ padding: 0 16px 8px 16px;
+}
+
+.link-control-transform__subheading {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+
+.link-control-transform__items {
+ display: flex;
+ justify-content: space-between;
+}
+
+.link-control-transform__item {
+ flex-basis: 33%;
+ flex-direction: column;
+ gap: 8px;
+ height: auto;
+}
+
+.wp-block-navigation-submenu {
+ display: block;
+}
+.wp-block-navigation-submenu .wp-block-navigation__submenu-container {
+ z-index: 28;
+}
+.wp-block-navigation-submenu.is-selected > .wp-block-navigation__submenu-container, .wp-block-navigation-submenu.has-child-selected > .wp-block-navigation__submenu-container {
+ visibility: visible !important;
+ opacity: 1 !important;
+ min-width: 200px !important;
+ height: auto !important;
+ width: auto !important;
+ position: absolute;
+ right: -1px;
+ top: 100%;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation-submenu.is-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container, .wp-block-navigation-submenu.has-child-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ right: 100%;
+ top: -1px;
+ }
+ .wp-block-navigation-submenu.is-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container::before, .wp-block-navigation-submenu.has-child-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container::before {
+ content: "";
+ position: absolute;
+ left: 100%;
+ height: 100%;
+ display: block;
+ width: 0.5em;
+ background: transparent;
+ }
+}
+
+.block-editor-block-list__block[data-type="core/nextpage"] {
+ max-width: 100%;
+ text-align: center;
+ margin-top: 28px;
+ margin-bottom: 28px;
+}
+
+.wp-block-nextpage {
+ display: block;
+ text-align: center;
+ white-space: nowrap;
+}
+.wp-block-nextpage > span {
+ font-size: 13px;
+ position: relative;
+ text-transform: uppercase;
+ font-weight: 600;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ color: #757575;
+ border-radius: 4px;
+ background: #fff;
+ padding: 6px 8px;
+ height: 24px;
+}
+.wp-block-nextpage::before {
+ content: "";
+ position: absolute;
+ top: calc(50%);
+ right: 0;
+ left: 0;
+ border-top: 3px dashed #ccc;
+}
+
+.wp-block-navigation .wp-block-page-list > div,
+.wp-block-navigation .wp-block-page-list {
+ background-color: inherit;
+}
+.wp-block-navigation.items-justified-space-between .wp-block-page-list > div,
+.wp-block-navigation.items-justified-space-between .wp-block-page-list {
+ display: contents;
+ flex: 1;
+}
+.wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list > div, .wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list, .wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list > div, .wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list {
+ flex: inherit;
+}
+
+.wp-block-pages-list__item__link {
+ pointer-events: none;
+}
+
+@media (min-width: 600px) {
+ .wp-block-page-list-modal {
+ max-width: 480px;
+ }
+}
+
+.wp-block-page-list-modal-buttons {
+ display: flex;
+ justify-content: flex-end;
+ gap: 12px;
+}
+
+.wp-block-page-list .open-on-click:focus-within > .wp-block-navigation__submenu-container {
+ visibility: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+
+.wp-block-page-list .components-notice {
+ margin-right: 0;
+}
+
+.block-editor-block-list__block[data-type="core/paragraph"].has-drop-cap:focus {
+ min-height: auto !important;
+}
+
+.block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder] {
+ opacity: 1;
+}
+
+.block-editor-block-list__block[data-empty=true] + .block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder] {
+ opacity: 0;
+}
+
+.wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline {
+ display: inline-block;
+}
+
+.wp-block-pullquote.has-text-align-left p,
+.wp-block-pullquote.has-text-align-right p,
+.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 {
+ font-size: 28px;
+ line-height: 1.6;
+}
+
+.wp-block-pullquote.is-style-solid-color blockquote p {
+ font-size: 32px;
+}
+.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {
+ text-transform: none;
+ font-style: normal;
+}
+
+.wp-block-pullquote .wp-block-pullquote__citation {
+ color: inherit;
+}
+
+.wp-block-rss li a > div {
+ display: inline;
+}
+
+.wp-block-rss__placeholder-form {
+ display: flex;
+ align-items: stretch;
+}
+.wp-block-rss__placeholder-form > * {
+ margin-bottom: 8px;
+}
+@media (min-width: 782px) {
+ .wp-block-rss__placeholder-form > * {
+ margin-bottom: 0;
+ }
+}
+
+.wp-block-rss__placeholder-input {
+ display: flex;
+ align-items: stretch;
+ flex-grow: 1;
+}
+.wp-block-rss__placeholder-input .components-base-control__field {
+ margin: 0;
+ display: flex;
+ align-items: stretch;
+ flex-grow: 1;
+ margin-left: 8px;
+}
+
+.wp-block[data-align=center] .wp-block-search .wp-block-search__inside-wrapper {
+ margin: auto;
+}
+
+.wp-block-search .wp-block-search__button {
+ height: auto;
+ border-radius: initial;
+ display: flex;
+ align-items: center;
+}
+.wp-block-search__components-button-group {
+ margin-top: 10px;
+}
+
+.block-editor-block-list__block[data-type="core/separator"] {
+ padding-top: 0.1px;
+ padding-bottom: 0.1px;
+}
+.block-editor-block-list__block[data-type="core/separator"].wp-block-separator.is-style-dots {
+ background: none !important;
+}
+
+[data-type="core/shortcode"] .block-editor-plain-text {
+ max-height: 250px;
+}
+[data-type="core/shortcode"].components-placeholder {
+ min-height: 0;
+}
+
+.blocks-shortcode__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) {
+ .blocks-shortcode__textarea {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .blocks-shortcode__textarea {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.blocks-shortcode__textarea:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.blocks-shortcode__textarea::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.blocks-shortcode__textarea::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.blocks-shortcode__textarea:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.wp-block[data-align=center] > .wp-block-site-logo,
+.wp-block-site-logo.aligncenter > div {
+ display: table;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+.wp-block-site-logo a {
+ pointer-events: none;
+}
+.wp-block-site-logo .custom-logo-link {
+ cursor: inherit;
+}
+.wp-block-site-logo .custom-logo-link:focus {
+ box-shadow: none;
+}
+.wp-block-site-logo .custom-logo-link.is-transient img {
+ opacity: 0.3;
+}
+.wp-block-site-logo img {
+ display: block;
+ height: auto;
+ max-width: 100%;
+}
+
+.wp-block-site-logo.wp-block-site-logo .components-placeholder,
+.wp-block-site-logo.wp-block-site-logo .components-resizable-box__container {
+ border-radius: inherit;
+}
+.wp-block-site-logo.wp-block-site-logo.is-default-size .components-placeholder {
+ height: 120px;
+ width: 120px;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ box-shadow: none;
+ padding: 0;
+ min-height: 48px;
+ min-width: 48px;
+ height: 100%;
+ width: 100%;
+ color: currentColor;
+ background: transparent;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-form-file-upload {
+ display: none;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__preview {
+ position: absolute;
+ top: 4px;
+ left: 4px;
+ bottom: 4px;
+ right: 4px;
+ background: rgba(255, 255, 255, 0.8);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-drop-zone__content-text {
+ display: none;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ pointer-events: none;
+ border-radius: inherit;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__fieldset {
+ width: auto;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button {
+ color: inherit;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 48px;
+ height: 48px;
+ border-radius: 50%;
+ position: relative;
+ visibility: hidden;
+ background: transparent;
+ transition: all 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button > svg {
+ color: #fff;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__illustration {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ stroke: currentColor;
+ stroke-dasharray: 3;
+ opacity: 0.4;
+}
+.wp-block-site-logo.wp-block-site-logo.is-selected .components-button.components-button {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+ border-style: solid;
+ color: #fff;
+ opacity: 1;
+ visibility: visible;
+}
+
+.wp-block-site-tagline__placeholder {
+ padding: 1em 0;
+ border: 1px dashed;
+}
+
+.wp-block-site-title__placeholder {
+ padding: 1em 0;
+ border: 1px dashed;
+}
+
+.wp-block-social-links .wp-social-link {
+ line-height: 0;
+}
+.wp-block-social-links .wp-social-link button {
+ font-size: inherit;
+ color: currentColor;
+ height: auto;
+ line-height: 0;
+ padding: 0.25em;
+}
+
+.wp-block-social-links.is-style-pill-shape .wp-social-link button {
+ padding-right: calc((2/3) * 1em);
+ padding-left: calc((2/3) * 1em);
+}
+
+.wp-block-social-links.is-style-logos-only .wp-social-link button {
+ padding: 0;
+}
+
+.wp-block-social-links div.block-editor-url-input {
+ display: inline-block;
+ margin-right: 8px;
+}
+.wp-block-social-links.wp-block-social-links {
+ background: none;
+}
+
+.wp-social-link:hover {
+ transform: none;
+}
+
+.editor-styles-wrapper .wp-block-social-links {
+ padding: 0;
+}
+
+.wp-block-social-links__social-placeholder {
+ display: flex;
+ opacity: 0.8;
+ list-style: none;
+}
+.wp-block-social-links__social-placeholder > .wp-social-link {
+ padding-right: 0 !important;
+ margin-right: 0 !important;
+ padding-left: 0 !important;
+ margin-left: 0 !important;
+ width: 0 !important;
+ visibility: hidden;
+}
+.wp-block-social-links__social-placeholder > .wp-block-social-links__social-placeholder-icons {
+ display: flex;
+}
+.wp-block-social-links__social-placeholder .wp-social-link {
+ padding: 0.25em;
+}
+.is-style-pill-shape .wp-block-social-links__social-placeholder .wp-social-link {
+ padding-right: calc((2/3) * 1em);
+ padding-left: calc((2/3) * 1em);
+}
+.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link {
+ padding: 0;
+}
+.wp-block-social-links__social-placeholder .wp-social-link::before {
+ content: "";
+ display: block;
+ width: 1em;
+ height: 1em;
+ border-radius: 50%;
+}
+.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link::before {
+ background: currentColor;
+}
+
+.wp-block-social-links .wp-block-social-links__social-prompt {
+ min-height: 24px;
+ list-style: none;
+ order: 2;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ line-height: 24px;
+ margin-top: auto;
+ margin-bottom: auto;
+ cursor: default;
+ padding-left: 8px;
+}
+
+.wp-block[data-align=center] > .wp-block-social-links {
+ justify-content: center;
+}
+
+.block-editor-block-preview__content .components-button:disabled {
+ opacity: 1;
+}
+
+.wp-social-link.wp-social-link__is-incomplete {
+ opacity: 0.5;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-social-link.wp-social-link__is-incomplete {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.wp-block-social-links .is-selected .wp-social-link__is-incomplete,
+.wp-social-link.wp-social-link__is-incomplete:hover,
+.wp-social-link.wp-social-link__is-incomplete:focus {
+ opacity: 1;
+}
+
+.block-editor-block-list__block[data-type="core/spacer"]::before {
+ content: "";
+ display: block;
+ position: absolute;
+ z-index: 1;
+ width: 100%;
+ min-height: 8px;
+ min-width: 8px;
+ height: 100%;
+}
+
+.wp-block-spacer.is-hovered .block-library-spacer__resize-container,
+.block-library-spacer__resize-container.has-show-handle {
+ background: rgba(0, 0, 0, 0.1);
+}
+.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container,
+.is-dark-theme .block-library-spacer__resize-container.has-show-handle {
+ background: rgba(255, 255, 255, 0.15);
+}
+
+.block-library-spacer__resize-container {
+ clear: both;
+}
+.block-library-spacer__resize-container:not(.is-resizing) {
+ height: 100% !important;
+ width: 100% !important;
+}
+.block-library-spacer__resize-container .components-resizable-box__handle::before {
+ content: none;
+}
+.block-library-spacer__resize-container.resize-horizontal {
+ margin-bottom: 0;
+}
+
+.wp-block-table {
+ margin: 0;
+}
+.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;
+}
+.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;
+}
+.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;
+}
+.wp-block[data-align=center] > .wp-block-table {
+ text-align: initial;
+}
+.wp-block[data-align=center] > .wp-block-table table {
+ margin: 0 auto;
+}
+.wp-block-table td,
+.wp-block-table th {
+ border: 1px solid;
+}
+.wp-block-table td.is-selected,
+.wp-block-table th.is-selected {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
+ border-style: double;
+}
+.wp-block-table figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-table figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.blocks-table__placeholder-form.blocks-table__placeholder-form {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+}
+.blocks-table__placeholder-form.blocks-table__placeholder-form > * {
+ margin-bottom: 8px;
+}
+@media (min-width: 782px) {
+ .blocks-table__placeholder-form.blocks-table__placeholder-form {
+ flex-direction: row;
+ align-items: flex-end;
+ }
+ .blocks-table__placeholder-form.blocks-table__placeholder-form > * {
+ margin-bottom: 0;
+ }
+}
+
+.blocks-table__placeholder-input {
+ width: 112px;
+ margin-left: 8px;
+ margin-bottom: 0;
+}
+.blocks-table__placeholder-input input {
+ height: 36px;
+}
+.blocks-table__placeholder-input .components-base-control__field {
+ margin-bottom: 0;
+}
+
+@media (min-width: 600px) {
+ .block-editor-template-part__selection-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .block-editor-template-part__selection-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .block-editor-template-part__selection-modal {
+ height: 70%;
+ }
+}
+
+.wp-block-text-columns .block-editor-rich-text__editable:focus {
+ outline: 1px solid #ddd;
+}
+
+.wp-block[data-align=center] > .wp-block-video {
+ text-align: center;
+}
+
+.wp-block-video {
+ position: relative;
+}
+.wp-block-video.is-transient video {
+ opacity: 0.3;
+}
+.wp-block-video .components-spinner {
+ position: absolute;
+ top: 50%;
+ right: 50%;
+ margin-top: -9px;
+ margin-right: -9px;
+}
+
+.editor-video-poster-control .components-base-control__label {
+ display: block;
+}
+.editor-video-poster-control .components-button {
+ margin-left: 8px;
+}
+
+.block-library-video-tracks-editor {
+ z-index: 159990;
+}
+
+.block-library-video-tracks-editor > .components-popover__content {
+ width: 360px;
+}
+
+.block-library-video-tracks-editor__track-list-track {
+ display: flex;
+ place-content: space-between;
+ align-items: baseline;
+ padding-right: 12px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-label-language {
+ display: flex;
+ margin-top: 12px;
+}
+.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control {
+ width: 50%;
+}
+.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control:first-child {
+ margin-left: 16px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-kind-select {
+ max-width: 240px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-buttons-container {
+ display: flex;
+ place-content: space-between;
+ margin-top: 32px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-edit-track-label {
+ margin-top: 4px;
+ margin-bottom: 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+ display: block;
+}
+
+.block-library-video-tracks-editor > .components-popover__content > div {
+ padding: 0;
+}
+
+.block-library-video-tracks-editor__track-list .components-menu-group__label,
+.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label {
+ padding: 0;
+}
+
+.block-library-video-tracks-editor__single-track-editor,
+.block-library-video-tracks-editor__track-list,
+.block-library-video-tracks-editor__add-tracks-container {
+ padding: 12px;
+}
+
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label {
+ margin-bottom: 4px;
+}
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field {
+ margin-bottom: 12px;
+}
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input {
+ margin-right: 0;
+}
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label {
+ margin-bottom: 4px;
+}
+
+.editor-styles-wrapper ul.wp-block-post-template {
+ padding-right: 0;
+ margin-right: 0;
+ list-style: none;
+}
+
+.block-library-query-toolbar__popover .components-popover__content {
+ min-width: 230px;
+}
+
+.wp-block-query__create-new-link {
+ padding: 0 56px 16px 16px;
+}
+
+.block-library-query__pattern-selection-content .block-editor-block-patterns-list {
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr;
+ grid-gap: 8px;
+}
+.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ margin-bottom: 0;
+}
+.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container {
+ max-height: 250px;
+}
+
+.block-editor-query-pattern__selection-modal .components-modal__content {
+ overflow: hidden;
+ padding: 0;
+}
+.block-editor-query-pattern__selection-modal .components-modal__content::before {
+ margin-bottom: 0;
+}
+
+@media (min-width: 600px) {
+ .block-editor-query-pattern__selection-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .block-editor-query-pattern__selection-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .block-editor-query-pattern__selection-modal {
+ height: 80%;
+ width: 80%;
+ max-height: none;
+ }
+}
+
+.wp-block[data-align=center] > .wp-block-query-pagination {
+ justify-content: center;
+}
+
+.editor-styles-wrapper .wp-block-query-pagination {
+ max-width: 100%;
+}
+.editor-styles-wrapper .wp-block-query-pagination.block-editor-block-list__layout {
+ margin: 0;
+}
+
+.wp-block-query-pagination > .wp-block-query-pagination-next,
+.wp-block-query-pagination > .wp-block-query-pagination-previous,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers {
+ margin-right: 0;
+ margin-top: 0.5em;
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-query-pagination > .wp-block-query-pagination-next:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-previous:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers:last-child {
+ margin-right: 0;
+}
+
+.wp-block-query-pagination-numbers a {
+ text-decoration: underline;
+}
+.wp-block-query-pagination-numbers .page-numbers {
+ margin-left: 2px;
+}
+.wp-block-query-pagination-numbers .page-numbers:last-child {
+ margin-right: 0;
+}
+
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-resizable-box__container {
+ border-radius: inherit;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder {
+ justify-content: center;
+ align-items: center;
+ box-shadow: none;
+ padding: 0;
+ color: currentColor;
+ background: transparent;
+ min-height: 200px;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-form-file-upload,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-form-file-upload {
+ display: none;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__preview,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__preview {
+ position: absolute;
+ top: 4px;
+ left: 4px;
+ bottom: 4px;
+ right: 4px;
+ background: rgba(255, 255, 255, 0.8);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder::before,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ pointer-events: none;
+ border-radius: inherit;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__fieldset,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__fieldset {
+ width: auto;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button {
+ color: inherit;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 48px;
+ height: 48px;
+ border-radius: 50%;
+ position: relative;
+ visibility: hidden;
+ background: transparent;
+ transition: all 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button > svg,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button > svg {
+ color: #fff;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__illustration,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__illustration {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ stroke: currentColor;
+ stroke-dasharray: 3;
+ opacity: 0.4;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image[style*=height] .components-placeholder {
+ min-height: 48px;
+ min-width: 48px;
+ height: 100%;
+ width: 100%;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image.is-selected .components-button.components-button {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+ border-style: solid;
+ color: #fff;
+ opacity: 1;
+ visibility: visible;
+}
+
+div[data-type="core/post-featured-image"] img {
+ max-width: 100%;
+ height: auto;
+ display: block;
+}
+
+.wp-block-post-comments__placeholder * {
+ pointer-events: none;
+}
+
+.wp-block-post-comments-form * {
+ pointer-events: none;
+}
+.wp-block-post-comments-form *.block-editor-warning * {
+ pointer-events: auto;
+}
+
+:root .editor-styles-wrapper {
+ /*
+ * Our classes uses the same values we set for gradient value attributes,
+ * and we can not use spacing because of WP multi site kses rule.
+ */
+ /* stylelint-disable function-comma-space-after */
+ /* stylelint-enable function-comma-space-after */
+}
+:root .editor-styles-wrapper .has-very-light-gray-background-color {
+ background-color: #eee;
+}
+:root .editor-styles-wrapper .has-very-dark-gray-background-color {
+ background-color: #313131;
+}
+:root .editor-styles-wrapper .has-very-light-gray-color {
+ color: #eee;
+}
+:root .editor-styles-wrapper .has-very-dark-gray-color {
+ color: #313131;
+}
+:root .editor-styles-wrapper .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
+ background: linear-gradient(-135deg, #00d084 0%, #0693e3 100%);
+}
+:root .editor-styles-wrapper .has-purple-crush-gradient-background {
+ background: linear-gradient(-135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%);
+}
+:root .editor-styles-wrapper .has-hazy-dawn-gradient-background {
+ background: linear-gradient(-135deg, #faaca8 0%, #dad0ec 100%);
+}
+:root .editor-styles-wrapper .has-subdued-olive-gradient-background {
+ background: linear-gradient(-135deg, #fafae1 0%, #67a671 100%);
+}
+:root .editor-styles-wrapper .has-atomic-cream-gradient-background {
+ background: linear-gradient(-135deg, #fdd79a 0%, #004a59 100%);
+}
+:root .editor-styles-wrapper .has-nightshade-gradient-background {
+ background: linear-gradient(-135deg, #330968 0%, #31cdcf 100%);
+}
+:root .editor-styles-wrapper .has-midnight-gradient-background {
+ background: linear-gradient(-135deg, #020381 0%, #2874fc 100%);
+}
+
+.editor-styles-wrapper {
+ --wp--preset--font-size--normal: 16px;
+ --wp--preset--font-size--huge: 42px;
+}
+
+.editor-styles-wrapper .has-regular-font-size {
+ font-size: 16px;
+}
+
+.editor-styles-wrapper .has-larger-font-size {
+ font-size: 42px;
+}
+
+.editor-styles-wrapper .has-normal-font-size {
+ font-size: var(--wp--preset--font-size--normal);
+}
+
+.editor-styles-wrapper .has-huge-font-size {
+ font-size: var(--wp--preset--font-size--huge);
+}
+
+/**
+ * Editor Normalization Styles
+ *
+ * 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.
+ */
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/editor-rtl.min.css b/static/wp-includes/css/dist/block-library/editor-rtl.min.css
new file mode 100755
index 0000000..2242cb5
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/editor-rtl.min.css
@@ -0,0 +1 @@
+ul.wp-block-archives{padding-right:2.5em}.wp-block-audio{margin-right:0;margin-left:0;position:relative}.wp-block-audio.is-transient audio{opacity:.3}.wp-block-audio .components-spinner{position:absolute;top:50%;right:50%;margin-top:-9px;margin-right:-9px}.wp-block-avatar__image img{width:100%}.wp-block-avatar.aligncenter .components-resizable-box__container{margin:0 auto}.edit-post-visual-editor .block-library-block__reusable-block-container .is-root-container{padding-right:0;padding-left:0}.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow{display:block}.edit-post-visual-editor .block-library-block__reusable-block-container .components-disabled .block-list-appender{display:none}.wp-block[data-align=center]>.wp-block-button{text-align:center;margin-right:auto;margin-left:auto}.wp-block[data-align=right]>.wp-block-button{text-align:right}.wp-block-button{position:relative;cursor:text}.wp-block-button:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:-2px}.wp-block-button[data-rich-text-placeholder]:after{opacity:.8}.wp-block-button__inline-link{color:#757575;height:0;overflow:hidden;max-width:290px}.wp-block-button__inline-link-input__suggestions{max-width:290px}@media (min-width:782px){.wp-block-button__inline-link,.wp-block-button__inline-link-input__suggestions{max-width:260px}}@media (min-width:960px){.wp-block-button__inline-link,.wp-block-button__inline-link-input__suggestions{max-width:290px}}.is-selected .wp-block-button__inline-link{height:auto;overflow:visible}.wp-button-label__width .components-button-group{display:block}.wp-button-label__width .components-base-control__field{margin-bottom:12px}div[data-type="core/button"]{display:table}.wp-block-buttons>.wp-block,.wp-block-buttons>.wp-block-button.wp-block-button.wp-block-button.wp-block-button.wp-block-button{margin:0}.wp-block-buttons>.block-list-appender{display:inline-flex;align-items:center}.wp-block-buttons.is-vertical>.block-list-appender .block-list-appender__toggle{justify-content:flex-start}.wp-block-buttons>.wp-block-button:focus{box-shadow:none}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block[data-align=center]{margin-right:auto;margin-left:auto;margin-top:0;width:100%}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block[data-align=center] .wp-block-button{margin-bottom:0}.wp-block[data-align=center]>.wp-block-buttons{align-items:center;justify-content:center}.wp-block[data-align=right]>.wp-block-buttons{justify-content:flex-end}.wp-block-categories ul{padding-right:2.5em}.wp-block-categories ul ul{margin-top:6px}.wp-block-columns :where(.wp-block){max-width:none;margin-right:0;margin-left:0}html :where(.wp-block-column){margin-top:0;margin-bottom:0}.wp-block-comment-author-avatar__placeholder{border:1px dashed;width:100%;height:100%;stroke:currentColor;stroke-dasharray:3}.block-library-comments-toolbar__popover .components-popover__content{min-width:230px}.wp-block[data-align=center]>.wp-block-comments-pagination{justify-content:center}.editor-styles-wrapper .wp-block-comments-pagination{max-width:100%}.editor-styles-wrapper .wp-block-comments-pagination.block-editor-block-list__layout{margin:0}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{margin-top:.5em;margin-right:.5em;margin-bottom:.5em}.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child{margin-right:0}.wp-block-comments-pagination-numbers a{text-decoration:underline}.wp-block-comments-pagination-numbers .page-numbers{margin-left:2px}.wp-block-comments-pagination-numbers .page-numbers:last-child{margin-right:0}.wp-block-comments-title.has-background{padding:inherit}.editor-styles-wrapper .wp-block-cover{box-sizing:border-box}.wp-block-cover.is-placeholder{min-height:auto!important;padding:0!important}.wp-block-cover.is-placeholder .block-library-cover__resize-container{display:none}.wp-block-cover.is-placeholder .components-placeholder.is-large{min-height:240px;justify-content:flex-start;z-index:1}.wp-block-cover.is-placeholder .components-placeholder.is-large+.block-library-cover__resize-container{min-height:240px;display:block}.wp-block-cover.components-placeholder h2{color:inherit}.wp-block-cover.is-transient:before{background-color:#fff;opacity:.3}.wp-block-cover .components-spinner{position:absolute;z-index:1;top:50%;right:50%;transform:translate(50%,-50%);margin:0}.wp-block-cover .block-editor-block-list__layout{width:100%}.wp-block-cover .wp-block-cover__inner-container{text-align:right;margin-right:0;margin-left:0}.wp-block-cover .wp-block-cover__placeholder-background-options{width:100%}[data-align=left]>.wp-block-cover,[data-align=right]>.wp-block-cover{max-width:420px;width:100%}.block-library-cover__reset-button{margin-right:auto}.block-library-cover__resize-container{position:absolute!important;top:0;right:0;left:0;bottom:0;min-height:50px}.block-library-cover__resize-container:not(.is-resizing){height:auto!important}.wp-block-cover>.components-drop-zone .components-drop-zone__content{opacity:.8!important}.block-editor-block-patterns-list__list-item .has-parallax.wp-block-cover{background-attachment:scroll}.wp-block-embed{margin-right:0;margin-left:0;clear:both}.wp-block-embed.is-loading{display:flex;justify-content:center}.wp-block-embed .components-placeholder__error{word-break:break-word}.wp-block-embed .components-placeholder__learn-more{margin-top:1em}.block-library-embed__interactive-overlay{position:absolute;top:0;right:0;left:0;bottom:0;opacity:0}.wp-block[data-align=left]>.wp-block-embed,.wp-block[data-align=right]>.wp-block-embed{max-width:360px;width:100%}.wp-block[data-align=left]>.wp-block-embed .wp-block-embed__wrapper,.wp-block[data-align=right]>.wp-block-embed .wp-block-embed__wrapper{min-width:280px}.wp-block-file{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;margin-bottom:0}.wp-block[data-align=left]>.wp-block-file,.wp-block[data-align=right]>.wp-block-file{height:auto}.wp-block-file .components-resizable-box__container{margin-bottom:1em}.wp-block-file .wp-block-file__preview{margin-bottom:1em;width:100%;height:100%}.wp-block-file .wp-block-file__preview-overlay{position:absolute;top:0;left:0;bottom:0;right:0}.wp-block-file .wp-block-file__content-wrapper{flex-grow:1}.wp-block-file a{min-width:1em}.wp-block-file .wp-block-file__button-richtext-wrapper{display:inline-block;margin-right:.75em}.wp-block-freeform.block-library-rich-text__tinymce{height:auto}.wp-block-freeform.block-library-rich-text__tinymce li,.wp-block-freeform.block-library-rich-text__tinymce p{line-height:1.8}.wp-block-freeform.block-library-rich-text__tinymce ol,.wp-block-freeform.block-library-rich-text__tinymce ul{padding-right:2.5em;margin-right:0}.wp-block-freeform.block-library-rich-text__tinymce blockquote{margin:0;box-shadow:inset 0 0 0 0 #ddd;border-right:4px solid #000;padding-right:1em}.wp-block-freeform.block-library-rich-text__tinymce pre{white-space:pre-wrap;font-family:Menlo,Consolas,monaco,monospace;font-size:15px;color:#1e1e1e}.wp-block-freeform.block-library-rich-text__tinymce>:first-child{margin-top:0}.wp-block-freeform.block-library-rich-text__tinymce>:last-child{margin-bottom:0}.wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus{outline:none}.wp-block-freeform.block-library-rich-text__tinymce a{color:var(--wp-admin-theme-color)}.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected]{padding:0 2px;margin:0 -2px;border-radius:2px;box-shadow:0 0 0 1px #e5f5fa;background:#e5f5fa}.wp-block-freeform.block-library-rich-text__tinymce code{padding:2px;border-radius:2px;color:#1e1e1e;background:#f0f0f0;font-family:Menlo,Consolas,monaco,monospace;font-size:14px}.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected]{background:#ddd}.wp-block-freeform.block-library-rich-text__tinymce .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-freeform.block-library-rich-text__tinymce .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-freeform.block-library-rich-text__tinymce .aligncenter{display:block;margin-right:auto;margin-left:auto}.wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag{width:96%;height:20px;display:block;margin:15px auto;outline:0;cursor:default;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);background-size:1900px 20px;background-repeat:no-repeat;background-position:50%}.wp-block-freeform.block-library-rich-text__tinymce img::selection{background-color:transparent}.wp-block-freeform.block-library-rich-text__tinymce div.mceTemp{-ms-user-select:element}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption{margin:0;max-width:100%}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a,.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img{display:block}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption,.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption *{-webkit-user-drag:none}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd{padding-top:.5em;margin:0}.wp-block-freeform.block-library-rich-text__tinymce .wpview{width:99.99%;position:relative;clear:both;margin-bottom:16px;border:1px solid transparent}.wp-block-freeform.block-library-rich-text__tinymce .wpview iframe{display:block;max-width:100%;background:transparent}.wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim{position:absolute;top:0;left:0;bottom:0;right:0}.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected="2"] .mce-shim{display:none}.wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder{border:1px dashed #ddd;padding:10px}.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error{border:1px solid #ddd;padding:1em 0;margin:0;word-wrap:break-word}.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p{margin:0;text-align:center}.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder,.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error{border-color:transparent}.wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons{display:block;margin:0 auto;width:32px;height:32px;font-size:32px}.wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery:after{content:"";display:table;clear:both}.wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus{outline:none}.wp-block-freeform.block-library-rich-text__tinymce .gallery a{cursor:default}.wp-block-freeform.block-library-rich-text__tinymce .gallery{margin:auto -6px;padding:6px 0;line-height:1;overflow-x:hidden}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item{float:right;margin:0;text-align:center;padding:6px;box-sizing:border-box}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption,.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon{margin:0}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption{font-size:13px;margin:4px 0}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item{width:100%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item{width:50%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item{width:33.3333333333%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item{width:25%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item{width:20%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item{width:16.6666666667%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item{width:14.2857142857%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item{width:12.5%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item{width:11.1111111111%}.wp-block-freeform.block-library-rich-text__tinymce .gallery img{max-width:100%;height:auto;border:none;padding:0}div[data-type="core/freeform"]:before{transition:border-color .1s linear,box-shadow .1s linear;border:1px solid #ddd;outline:1px solid transparent}@media (prefers-reduced-motion:reduce){div[data-type="core/freeform"]:before{transition-duration:0s;transition-delay:0s}}div[data-type="core/freeform"].is-selected:before{border-color:#1e1e1e}div[data-type="core/freeform"] .block-editor-block-contextual-toolbar+div{margin-top:0;padding-top:0}div[data-type="core/freeform"].is-selected .block-library-rich-text__tinymce:after{content:"";display:table;clear:both}.mce-toolbar-grp .mce-btn.mce-active:hover button,.mce-toolbar-grp .mce-btn.mce-active:hover i,.mce-toolbar-grp .mce-btn.mce-active button,.mce-toolbar-grp .mce-btn.mce-active i{color:#1e1e1e}.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last{margin-left:0;margin-right:8px}.mce-toolbar-grp .mce-btn i{font-style:normal}.block-library-classic__toolbar{display:none;width:auto;position:sticky;z-index:31;top:0;border:1px solid #ddd;border-bottom:none;border-radius:2px;margin:0 0 8px;padding:0}div[data-type="core/freeform"].is-selected .block-library-classic__toolbar{display:block;border-color:#1e1e1e}.block-library-classic__toolbar .mce-tinymce{box-shadow:none}@media (min-width:600px){.block-library-classic__toolbar{padding:0}}.block-library-classic__toolbar:empty{display:block;background:#f5f5f5;border-bottom:1px solid #e2e4e7}.block-library-classic__toolbar:empty:before{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;content:attr(data-placeholder);color:#555d66;line-height:37px;padding:14px}.block-library-classic__toolbar div.mce-toolbar-grp{border-bottom:1px solid #1e1e1e}.block-library-classic__toolbar .mce-menubar,.block-library-classic__toolbar .mce-menubar>div,.block-library-classic__toolbar .mce-tinymce-inline,.block-library-classic__toolbar .mce-tinymce-inline>div,.block-library-classic__toolbar div.mce-toolbar-grp,.block-library-classic__toolbar div.mce-toolbar-grp>div{height:auto!important;width:100%!important}.block-library-classic__toolbar .mce-container-body.mce-abs-layout{overflow:visible}.block-library-classic__toolbar .mce-menubar,.block-library-classic__toolbar div.mce-toolbar-grp{position:static}.block-library-classic__toolbar .mce-toolbar-grp>div{padding:1px 3px}.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar,figure.wp-block-gallery{display:block}figure.wp-block-gallery.has-nested-images .components-drop-zone{display:none;pointer-events:none}figure.wp-block-gallery>.blocks-gallery-caption{flex:0 0 100%}figure.wp-block-gallery>.blocks-gallery-media-placeholder-wrapper{flex-basis:100%}figure.wp-block-gallery .wp-block-image .components-notice.is-error{display:block}figure.wp-block-gallery .wp-block-image .components-notice__content{margin:4px 0}figure.wp-block-gallery .wp-block-image .components-notice__dismiss{position:absolute;top:0;left:5px}figure.wp-block-gallery .block-editor-media-placeholder.is-appender .components-placeholder__label{display:none}figure.wp-block-gallery .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__button{margin-bottom:0}figure.wp-block-gallery .block-editor-media-placeholder{margin:0}figure.wp-block-gallery .block-editor-media-placeholder .components-placeholder__label{display:flex}figure.wp-block-gallery .block-editor-media-placeholder figcaption{z-index:2}figure.wp-block-gallery .components-spinner{position:absolute;top:50%;right:50%;margin-top:-9px;margin-right:-9px}.gallery-settings-buttons .components-button:first-child{margin-left:8px}.gallery-image-sizes .components-base-control__label{display:block;margin-bottom:4px}.gallery-image-sizes .gallery-image-sizes__loading{display:flex;align-items:center;color:#757575;font-size:12px}.gallery-image-sizes .components-spinner{margin:0 4px 0 8px}.blocks-gallery-item figure:not(.is-selected):focus,.blocks-gallery-item img:focus{outline:none}.blocks-gallery-item figure.is-selected:before{box-shadow:0 0 0 1px #fff inset,0 0 0 3px var(--wp-admin-theme-color) inset;content:"";outline:2px solid transparent;position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;pointer-events:none}.blocks-gallery-item figure.is-transient img{opacity:.3}.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu{display:inline-flex}.blocks-gallery-item .block-editor-media-placeholder{margin:0;height:100%}.blocks-gallery-item .block-editor-media-placeholder .components-placeholder__label{display:flex}.block-library-gallery-item__inline-menu{display:none;position:absolute;top:-2px;margin:8px;z-index:20;transition:box-shadow .2s ease-out;border-radius:2px;background:#fff;border:1px solid #1e1e1e}@media (prefers-reduced-motion:reduce){.block-library-gallery-item__inline-menu{transition-duration:0s;transition-delay:0s}}.block-library-gallery-item__inline-menu:hover{box-shadow:0 2px 6px rgba(0,0,0,.05)}@media (min-width:600px){.columns-7 .block-library-gallery-item__inline-menu,.columns-8 .block-library-gallery-item__inline-menu{padding:2px}}.block-library-gallery-item__inline-menu .components-button.has-icon:not(:focus){border:none;box-shadow:none}@media (min-width:600px){.columns-7 .block-library-gallery-item__inline-menu .components-button.has-icon,.columns-8 .block-library-gallery-item__inline-menu .components-button.has-icon{padding:0;width:inherit;height:inherit}}.block-library-gallery-item__inline-menu.is-left{right:-2px}.block-library-gallery-item__inline-menu.is-right{left:-2px}.wp-block-gallery ul.blocks-gallery-grid{padding:0;margin:0}@media (min-width:600px){.wp-block-update-gallery-modal{max-width:480px}}.wp-block-update-gallery-modal-buttons{display:flex;justify-content:flex-end;gap:12px}.wp-block-group .block-editor-block-list__insertion-point{right:0;left:0}[data-type="core/group"].is-selected .block-list-appender{margin-right:0;margin-left:0}[data-type="core/group"].is-selected .has-background .block-list-appender{margin-top:18px;margin-bottom:18px}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child{gap:inherit;pointer-events:none}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child,.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content,.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter{display:inherit;width:100%;flex-direction:inherit;flex:1}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child:after{content:"";display:flex;border:1px dashed;opacity:.4;border-radius:2px;flex:1;pointer-events:none;min-height:48px}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter{pointer-events:all}.block-library-html__edit .block-library-html__preview-overlay{position:absolute;width:100%;height:100%;top:0;right:0}.block-library-html__edit .block-editor-plain-text{font-family:Menlo,Consolas,monaco,monospace!important;color:#1e1e1e!important;background:#fff!important;padding:12px!important;border:1px solid #1e1e1e!important;box-shadow:none!important;border-radius:2px!important;max-height:250px;font-size:16px!important}@media (min-width:600px){.block-library-html__edit .block-editor-plain-text{font-size:13px!important}}.block-library-html__edit .block-editor-plain-text:focus{border-color:var(--wp-admin-theme-color)!important;box-shadow:0 0 0 1px var(--wp-admin-theme-color)!important;outline:2px solid transparent!important}figure.wp-block-image:not(.wp-block){margin:0}.wp-block-image{position:relative}.wp-block-image .is-applying img,.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{position:absolute;top:50%;right:50%;margin-top:-9px;margin-right:-9px}.wp-block-image:not(.is-style-rounded)>div:not(.components-placeholder){border-radius:inherit}.wp-block-image .components-resizable-box__container{display:inline-block}.wp-block-image .components-resizable-box__container img{display:block;width:inherit;height:inherit}.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{position:absolute;right:0;left:0;margin:-1px 0}@media (min-width:600px){.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{margin:-1px}}[data-align=full]>.wp-block-image img,[data-align=wide]>.wp-block-image img{height:auto;width:100%}.wp-block[data-align=center]>.wp-block-image,.wp-block[data-align=left]>.wp-block-image,.wp-block[data-align=right]>.wp-block-image{display:table}.wp-block[data-align=center]>.wp-block-image>figcaption,.wp-block[data-align=left]>.wp-block-image>figcaption,.wp-block[data-align=right]>.wp-block-image>figcaption{display:table-caption;caption-side:bottom}.wp-block[data-align=left]>.wp-block-image{margin:.5em 0 .5em 1em}.wp-block[data-align=right]>.wp-block-image{margin:.5em 1em .5em 0}.wp-block[data-align=center]>.wp-block-image{margin-right:auto;margin-left:auto;text-align:center}.wp-block-image__crop-area{position:relative;max-width:100%;width:100%}.wp-block-image__crop-icon{padding:0 8px;min-width:48px;display:flex;justify-content:center;align-items:center}.wp-block-image__crop-icon svg{fill:currentColor}.wp-block-image__zoom .components-popover__content{overflow:visible;min-width:260px}.wp-block-image__zoom .components-range-control{flex:1}.wp-block-image__zoom .components-base-control__field{display:flex;margin-bottom:0;flex-direction:column;align-items:flex-start}.wp-block-image__aspect-ratio{height:46px;margin-bottom:-8px;display:flex;align-items:center}.wp-block-image__aspect-ratio .components-button{width:36px;padding-right:0;padding-left:0}.wp-block-latest-posts{padding-right:2.5em}.wp-block-latest-posts.is-grid{padding-right:0}.wp-block-latest-posts li a>div{display:inline}.edit-post-visual-editor .wp-block-latest-posts.is-grid li{margin-bottom:20px}.editor-latest-posts-image-alignment-control .components-base-control__label{display:block}.editor-latest-posts-image-alignment-control .components-toolbar{border-radius:2px}.wp-block-media-text__media{position:relative}.wp-block-media-text__media.is-transient img{opacity:.3}.wp-block-media-text__media .components-spinner{position:absolute;top:50%;right:50%;margin-top:-9px;margin-right:-9px}.wp-block-media-text .__resizable_base__{grid-column:1/span 2;grid-row:2}.wp-block-media-text .editor-media-container__resizer{width:100%!important}.wp-block-media-text.is-image-fill .editor-media-container__resizer{height:100%!important}.wp-block-media-text>.block-editor-block-list__layout>.block-editor-block-list__block{max-width:unset}.block-editor-block-list__block[data-type="core/more"]{max-width:100%;text-align:center;margin-top:28px;margin-bottom:28px}.wp-block-more{display:block;text-align:center;white-space:nowrap}.wp-block-more input[type=text]{position:relative;font-size:13px;text-transform:uppercase;font-weight:600;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:#757575;border:none;box-shadow:none;white-space:nowrap;text-align:center;margin:0;border-radius:4px;background:#fff;padding:6px 8px;height:24px;max-width:100%}.wp-block-more input[type=text]:focus{box-shadow:none}.wp-block-more:before{content:"";position:absolute;top:50%;right:0;left:0;border-top:3px dashed #ccc}.editor-styles-wrapper .wp-block-navigation ul{margin-top:0;margin-bottom:0;margin-right:0;padding-right:0}.editor-styles-wrapper .wp-block-navigation .wp-block-navigation-item.wp-block{margin:revert}.wp-block-navigation-item__label{display:inline}.wp-block-navigation__container.is-parent-of-selected-block{visibility:visible;opacity:1;overflow:visible}.wp-block-navigation-item,.wp-block-navigation__container{background-color:inherit}.wp-block-navigation:not(.is-selected):not(.has-child-selected) .has-child:hover>.wp-block-navigation__submenu-container{opacity:0;visibility:hidden}.has-child.has-child-selected>.wp-block-navigation__submenu-container,.has-child.is-selected>.wp-block-navigation__submenu-container{display:flex;opacity:1;visibility:visible}.is-dragging-components-draggable .has-child.is-dragging-within>.wp-block-navigation__submenu-container{opacity:1;visibility:visible}.is-editing>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.is-dragging-components-draggable .wp-block-navigation-link>.wp-block-navigation__container{opacity:1;visibility:hidden}.is-dragging-components-draggable .wp-block-navigation-link>.wp-block-navigation__container .block-editor-block-draggable-chip-wrapper{visibility:visible}.is-editing>.wp-block-navigation__submenu-container>.block-list-appender{display:block;position:static;width:100%}.is-editing>.wp-block-navigation__submenu-container>.block-list-appender .block-editor-button-block-appender{color:#fff;background:#1e1e1e;padding:0;width:24px;border-radius:2px;margin-left:0;margin-right:auto}.wp-block-navigation__submenu-container .block-list-appender{display:none}.block-library-colors-selector{width:auto}.block-library-colors-selector .block-library-colors-selector__toggle{display:block;margin:0 auto;padding:3px;width:auto}.block-library-colors-selector .block-library-colors-selector__icon-container{height:30px;position:relative;margin:0 auto;padding:3px;display:flex;align-items:center;border-radius:4px}.block-library-colors-selector .block-library-colors-selector__state-selection{margin-right:auto;margin-left:auto;border-radius:11px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);width:22px;min-width:22px;height:22px;min-height:22px;line-height:20px;padding:2px}.block-library-colors-selector .block-library-colors-selector__state-selection>svg{min-width:auto!important}.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color>svg,.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color>svg path{color:inherit}.block-library-colors-selector__popover .color-palette-controller-container{padding:16px}.block-library-colors-selector__popover .components-base-control__label{height:20px;line-height:20px}.block-library-colors-selector__popover .component-color-indicator{float:left;margin-top:2px}.block-library-colors-selector__popover .components-panel__body-title{display:none}.wp-block-navigation .block-editor-button-block-appender{background-color:#1e1e1e;color:#fff}.wp-block-navigation .block-editor-button-block-appender.block-editor-button-block-appender.block-editor-button-block-appender{padding:0}.wp-block-navigation .wp-block .wp-block .block-editor-button-block-appender{background-color:transparent;color:#1e1e1e}@keyframes loadingpulse{0%{opacity:1}50%{opacity:.5}to{opacity:1}}.components-placeholder.wp-block-navigation-placeholder{outline:none;padding:0;box-shadow:none;background:none;min-height:0;color:inherit}.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset{font-size:inherit}.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset .components-button{margin-bottom:0}.wp-block-navigation.is-selected .components-placeholder.wp-block-navigation-placeholder{color:#1e1e1e}.wp-block-navigation-placeholder .components-spinner{margin-top:0}.wp-block-navigation-placeholder__preview{display:flex;align-items:center;min-width:96px;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:currentColor;background:transparent}.wp-block-navigation.is-selected .wp-block-navigation-placeholder__preview{display:none}.wp-block-navigation-placeholder__preview:before{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;border:1px dashed;opacity:.4;pointer-events:none;border-radius:inherit}.wp-block-navigation-placeholder__preview>svg{fill:currentColor;opacity:.4}.wp-block-navigation.is-vertical .is-medium .components-placeholder__fieldset,.wp-block-navigation.is-vertical .is-small .components-placeholder__fieldset{min-height:90px}.wp-block-navigation.is-vertical .is-large .components-placeholder__fieldset{min-height:132px}.wp-block-navigation-placeholder__controls,.wp-block-navigation-placeholder__preview{padding:6px 8px;flex-direction:row;align-items:flex-start}.wp-block-navigation-placeholder__controls{border-radius:2px;background-color:#fff;box-shadow:inset 0 0 0 1px #1e1e1e;display:none;position:relative;z-index:1;float:right;width:100%}.wp-block-navigation.is-selected .wp-block-navigation-placeholder__controls{display:flex}.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator+hr,.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator+hr{display:none}.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions,.wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions{flex-direction:column;align-items:flex-start}.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr,.wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr{display:none}.wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__icon{margin-left:12px;height:36px}.wp-block-navigation-placeholder__actions__indicator{display:flex;padding:0 0 0 6px;align-items:center;justify-content:flex-start;line-height:0;height:36px;margin-right:4px}.wp-block-navigation-placeholder__actions__indicator svg{margin-left:4px;fill:currentColor}.wp-block-navigation .components-placeholder.is-medium .components-placeholder__fieldset{flex-direction:row!important}.wp-block-navigation-placeholder__actions{display:flex;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;gap:6px;align-items:center;height:100%}.wp-block-navigation-placeholder__actions .components-dropdown,.wp-block-navigation-placeholder__actions>.components-button{margin-left:0}.wp-block-navigation-placeholder__actions.wp-block-navigation-placeholder__actions hr{border:0;min-height:1px;min-width:1px;background-color:#1e1e1e;margin:auto 0;height:100%;max-height:16px}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.is-menu-open) .components-button.wp-block-navigation__responsive-container-close{display:none}}.wp-block-navigation__responsive-container.is-menu-open{position:fixed;top:155px}@media (min-width:782px){.wp-block-navigation__responsive-container.is-menu-open{top:93px;right:36px}}@media (min-width:960px){.wp-block-navigation__responsive-container.is-menu-open{right:160px}}@media (min-width:782px){.has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open{top:141px}}.is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,.is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open{top:141px}.is-sidebar-opened .wp-block-navigation__responsive-container.is-menu-open{left:280px}.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open{right:0;top:155px}@media (min-width:782px){.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open{top:61px}}@media (min-width:782px){.is-fullscreen-mode .has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open{top:109px}}.is-fullscreen-mode .is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,.is-fullscreen-mode .is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open{top:109px}body.editor-styles-wrapper .wp-block-navigation__responsive-container.is-menu-open{top:0;left:0;bottom:0;right:0}@media (min-width:600px){.wp-block-navigation__responsive-close{pointer-events:none}.wp-block-navigation__responsive-close .block-editor-block-list__layout *,.wp-block-navigation__responsive-close .wp-block-navigation__responsive-container-close{pointer-events:all}}.wp-block-navigation__responsive-close .wp-block-pages-list__item__link{pointer-events:none}.components-button.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close,.components-button.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{padding:0;height:auto;color:inherit}.is-menu-open .wp-block-navigation__responsive-container-content * .block-list-appender{margin-top:16px}@keyframes fadein{0%{opacity:0}to{opacity:1}}.wp-block-navigation .components-spinner{padding:8px 12px}.wp-block-navigation__unsaved-changes{position:relative}.wp-block-navigation__unsaved-changes .components-spinner{position:absolute;top:calc(50% - 8px);right:calc(50% - 8px);opacity:0;animation:fadein .5s linear 2s normal forwards}@keyframes fadeouthalf{0%{opacity:1}to{opacity:.5}}.wp-block-navigation__unsaved-changes-overlay.is-saving{opacity:1;animation:fadeouthalf .5s linear 2s normal forwards}.wp-block-navigation-delete-menu-button{width:100%;justify-content:center;margin-bottom:16px}.wp-block-navigation__overlay-menu-preview{display:flex;align-items:center;width:100%;background-color:#f0f0f0;padding:0 24px;height:64px;margin-bottom:12px}.wp-block-navigation__overlay-menu-preview.open{box-shadow:inset 0 0 0 1px #e0e0e0;outline:1px solid transparent;background-color:#fff}.wp-block-navigation-placeholder__actions hr+hr,.wp-block-navigation__toolbar-menu-selector.components-toolbar-group:empty{display:none}.wp-block-navigation .has-child{cursor:pointer}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{z-index:28}.wp-block-navigation .has-child:hover .wp-block-navigation__submenu-container{z-index:29}.wp-block-navigation .has-child.has-child-selected>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child.is-selected>.wp-block-navigation__submenu-container{visibility:visible!important;opacity:1!important;min-width:200px!important;height:auto!important;width:auto!important;overflow:visible!important}.wp-block-navigation-item .wp-block-navigation-item__content{cursor:text}.wp-block-navigation-item.is-editing,.wp-block-navigation-item.is-selected{min-width:20px}.wp-block-navigation-item .block-list-appender{margin:16px 16px 16px auto}.wp-block-navigation-link__invalid-item{color:#000}.wp-block-navigation-link__missing_text-tooltip{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden}.wp-block-navigation-link__placeholder{position:relative;text-decoration:none!important;box-shadow:none!important;background-image:none!important}.wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span{--wp-underline-color:var(--wp-admin-theme-color);background-image:linear-gradient(-45deg,transparent 20%,var(--wp-underline-color) 30%,var(--wp-underline-color) 36%,transparent 46%),linear-gradient(-135deg,transparent 54%,var(--wp-underline-color) 64%,var(--wp-underline-color) 70%,transparent 80%);background-position:100% 100%;background-size:6px 3px;background-repeat:repeat-x;padding-bottom:.1em}.is-dark-theme .wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span{--wp-underline-color:#fff}.wp-block-navigation-link__placeholder.wp-block-navigation-item__content{cursor:pointer}.link-control-transform{border-top:1px solid #ccc;padding:0 16px 8px}.link-control-transform__subheading{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.link-control-transform__items{display:flex;justify-content:space-between}.link-control-transform__item{flex-basis:33%;flex-direction:column;gap:8px;height:auto}.wp-block-navigation-submenu{display:block}.wp-block-navigation-submenu .wp-block-navigation__submenu-container{z-index:28}.wp-block-navigation-submenu.has-child-selected>.wp-block-navigation__submenu-container,.wp-block-navigation-submenu.is-selected>.wp-block-navigation__submenu-container{visibility:visible!important;opacity:1!important;min-width:200px!important;height:auto!important;width:auto!important;position:absolute;right:-1px;top:100%}@media (min-width:782px){.wp-block-navigation-submenu.has-child-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation-submenu.is-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{right:100%;top:-1px}.wp-block-navigation-submenu.has-child-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before,.wp-block-navigation-submenu.is-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{content:"";position:absolute;left:100%;height:100%;display:block;width:.5em;background:transparent}}.block-editor-block-list__block[data-type="core/nextpage"]{max-width:100%;text-align:center;margin-top:28px;margin-bottom:28px}.wp-block-nextpage{display:block;text-align:center;white-space:nowrap}.wp-block-nextpage>span{font-size:13px;position:relative;text-transform:uppercase;font-weight:600;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:#757575;border-radius:4px;background:#fff;padding:6px 8px;height:24px}.wp-block-nextpage:before{content:"";position:absolute;top:50%;right:0;left:0;border-top:3px dashed #ccc}.wp-block-navigation .wp-block-page-list,.wp-block-navigation .wp-block-page-list>div{background-color:inherit}.wp-block-navigation.items-justified-space-between .wp-block-page-list,.wp-block-navigation.items-justified-space-between .wp-block-page-list>div{display:contents;flex:1}.wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list,.wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list>div,.wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list,.wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list>div{flex:inherit}.wp-block-pages-list__item__link{pointer-events:none}@media (min-width:600px){.wp-block-page-list-modal{max-width:480px}}.wp-block-page-list-modal-buttons{display:flex;justify-content:flex-end;gap:12px}.wp-block-page-list .open-on-click:focus-within>.wp-block-navigation__submenu-container{visibility:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-page-list .components-notice{margin-right:0}.block-editor-block-list__block[data-type="core/paragraph"].has-drop-cap:focus{min-height:auto!important}.block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder]{opacity:1}.block-editor-block-list__block[data-empty=true]+.block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder]{opacity:0}.wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline{display:inline-block}.wp-block-pullquote.has-text-align-left p,.wp-block-pullquote.has-text-align-right p,.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{font-size:28px;line-height:1.6}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{text-transform:none;font-style:normal}.wp-block-pullquote .wp-block-pullquote__citation{color:inherit}.wp-block-rss li a>div{display:inline}.wp-block-rss__placeholder-form{display:flex;align-items:stretch}.wp-block-rss__placeholder-form>*{margin-bottom:8px}@media (min-width:782px){.wp-block-rss__placeholder-form>*{margin-bottom:0}}.wp-block-rss__placeholder-input{display:flex;align-items:stretch;flex-grow:1}.wp-block-rss__placeholder-input .components-base-control__field{display:flex;align-items:stretch;flex-grow:1;margin:0 0 0 8px}.wp-block[data-align=center] .wp-block-search .wp-block-search__inside-wrapper{margin:auto}.wp-block-search .wp-block-search__button{height:auto;border-radius:initial;display:flex;align-items:center}.wp-block-search__components-button-group{margin-top:10px}.block-editor-block-list__block[data-type="core/separator"]{padding-top:.1px;padding-bottom:.1px}.block-editor-block-list__block[data-type="core/separator"].wp-block-separator.is-style-dots{background:none!important}[data-type="core/shortcode"] .block-editor-plain-text{max-height:250px}[data-type="core/shortcode"].components-placeholder{min-height:0}.blocks-shortcode__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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal}@media (prefers-reduced-motion:reduce){.blocks-shortcode__textarea{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.blocks-shortcode__textarea{font-size:13px;line-height:normal}}.blocks-shortcode__textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.blocks-shortcode__textarea::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.blocks-shortcode__textarea::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.blocks-shortcode__textarea:-ms-input-placeholder{color:rgba(30,30,30,.62)}.wp-block-site-logo.aligncenter>div,.wp-block[data-align=center]>.wp-block-site-logo{display:table;margin-right:auto;margin-left:auto}.wp-block-site-logo a{pointer-events:none}.wp-block-site-logo .custom-logo-link{cursor:inherit}.wp-block-site-logo .custom-logo-link:focus{box-shadow:none}.wp-block-site-logo .custom-logo-link.is-transient img{opacity:.3}.wp-block-site-logo img{display:block;height:auto;max-width:100%}.wp-block-site-logo.wp-block-site-logo .components-placeholder,.wp-block-site-logo.wp-block-site-logo .components-resizable-box__container{border-radius:inherit}.wp-block-site-logo.wp-block-site-logo.is-default-size .components-placeholder{height:120px;width:120px}.wp-block-site-logo.wp-block-site-logo .components-placeholder{display:flex;justify-content:center;align-items:center;box-shadow:none;padding:0;min-height:48px;min-width:48px;height:100%;width:100%;color:currentColor;background:transparent}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-form-file-upload{display:none}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__preview{position:absolute;top:4px;left:4px;bottom:4px;right:4px;background:hsla(0,0%,100%,.8);display:flex;align-items:center;justify-content:center}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-drop-zone__content-text{display:none}.wp-block-site-logo.wp-block-site-logo .components-placeholder:before{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;border:1px dashed;opacity:.4;pointer-events:none;border-radius:inherit}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__fieldset{width:auto}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button{color:inherit;padding:0;display:flex;justify-content:center;align-items:center;width:48px;height:48px;border-radius:50%;position:relative;visibility:hidden;background:transparent;transition:all .1s linear}@media (prefers-reduced-motion:reduce){.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button{transition-duration:0s;transition-delay:0s}}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button>svg{color:#fff}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__illustration{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;stroke:currentColor;stroke-dasharray:3;opacity:.4}.wp-block-site-logo.wp-block-site-logo.is-selected .components-button.components-button{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);border-style:solid;color:#fff;opacity:1;visibility:visible}.wp-block-site-tagline__placeholder,.wp-block-site-title__placeholder{padding:1em 0;border:1px dashed}.wp-block-social-links .wp-social-link{line-height:0}.wp-block-social-links .wp-social-link button{font-size:inherit;color:currentColor;height:auto;line-height:0;padding:.25em}.wp-block-social-links.is-style-pill-shape .wp-social-link button{padding-right:.66667em;padding-left:.66667em}.wp-block-social-links.is-style-logos-only .wp-social-link button{padding:0}.wp-block-social-links div.block-editor-url-input{display:inline-block;margin-right:8px}.wp-block-social-links.wp-block-social-links{background:none}.wp-social-link:hover{transform:none}.editor-styles-wrapper .wp-block-social-links{padding:0}.wp-block-social-links__social-placeholder{display:flex;opacity:.8;list-style:none}.wp-block-social-links__social-placeholder>.wp-social-link{padding-right:0!important;margin-right:0!important;padding-left:0!important;margin-left:0!important;width:0!important;visibility:hidden}.wp-block-social-links__social-placeholder>.wp-block-social-links__social-placeholder-icons{display:flex}.wp-block-social-links__social-placeholder .wp-social-link{padding:.25em}.is-style-pill-shape .wp-block-social-links__social-placeholder .wp-social-link{padding-right:.66667em;padding-left:.66667em}.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link{padding:0}.wp-block-social-links__social-placeholder .wp-social-link:before{content:"";display:block;width:1em;height:1em;border-radius:50%}.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link:before{background:currentColor}.wp-block-social-links .wp-block-social-links__social-prompt{min-height:24px;list-style:none;order:2;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:24px;margin-top:auto;margin-bottom:auto;cursor:default;padding-left:8px}.wp-block[data-align=center]>.wp-block-social-links{justify-content:center}.block-editor-block-preview__content .components-button:disabled{opacity:1}.wp-social-link.wp-social-link__is-incomplete{opacity:.5}@media (prefers-reduced-motion:reduce){.wp-social-link.wp-social-link__is-incomplete{transition-duration:0s;transition-delay:0s}}.wp-block-social-links .is-selected .wp-social-link__is-incomplete,.wp-social-link.wp-social-link__is-incomplete:focus,.wp-social-link.wp-social-link__is-incomplete:hover{opacity:1}.block-editor-block-list__block[data-type="core/spacer"]:before{content:"";display:block;position:absolute;z-index:1;width:100%;min-height:8px;min-width:8px;height:100%}.block-library-spacer__resize-container.has-show-handle,.wp-block-spacer.is-hovered .block-library-spacer__resize-container{background:rgba(0,0,0,.1)}.is-dark-theme .block-library-spacer__resize-container.has-show-handle,.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container{background:hsla(0,0%,100%,.15)}.block-library-spacer__resize-container{clear:both}.block-library-spacer__resize-container:not(.is-resizing){height:100%!important;width:100%!important}.block-library-spacer__resize-container .components-resizable-box__handle:before{content:none}.block-library-spacer__resize-container.resize-horizontal{margin-bottom:0}.wp-block-table{margin:0}.wp-block[data-align=center]>.wp-block-table,.wp-block[data-align=left]>.wp-block-table,.wp-block[data-align=right]>.wp-block-table{height:auto}.wp-block[data-align=center]>.wp-block-table table,.wp-block[data-align=left]>.wp-block-table table,.wp-block[data-align=right]>.wp-block-table table{width:auto}.wp-block[data-align=center]>.wp-block-table td,.wp-block[data-align=center]>.wp-block-table 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{word-break:break-word}.wp-block[data-align=center]>.wp-block-table{text-align:initial}.wp-block[data-align=center]>.wp-block-table table{margin:0 auto}.wp-block-table td,.wp-block-table th{border:1px solid}.wp-block-table td.is-selected,.wp-block-table th.is-selected{border-color:var(--wp-admin-theme-color);box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color);border-style:double}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.blocks-table__placeholder-form.blocks-table__placeholder-form{display:flex;flex-direction:column;align-items:flex-start}.blocks-table__placeholder-form.blocks-table__placeholder-form>*{margin-bottom:8px}@media (min-width:782px){.blocks-table__placeholder-form.blocks-table__placeholder-form{flex-direction:row;align-items:flex-end}.blocks-table__placeholder-form.blocks-table__placeholder-form>*{margin-bottom:0}}.blocks-table__placeholder-input{width:112px;margin-left:8px;margin-bottom:0}.blocks-table__placeholder-input input{height:36px}.blocks-table__placeholder-input .components-base-control__field{margin-bottom:0}@media (min-width:600px){.block-editor-template-part__selection-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.block-editor-template-part__selection-modal{width:750px}}@media (min-width:960px){.block-editor-template-part__selection-modal{height:70%}}.wp-block-text-columns .block-editor-rich-text__editable:focus{outline:1px solid #ddd}.wp-block[data-align=center]>.wp-block-video{text-align:center}.wp-block-video{position:relative}.wp-block-video.is-transient video{opacity:.3}.wp-block-video .components-spinner{position:absolute;top:50%;right:50%;margin-top:-9px;margin-right:-9px}.editor-video-poster-control .components-base-control__label{display:block}.editor-video-poster-control .components-button{margin-left:8px}.block-library-video-tracks-editor{z-index:159990}.block-library-video-tracks-editor>.components-popover__content{width:360px}.block-library-video-tracks-editor__track-list-track{display:flex;place-content:space-between;align-items:baseline;padding-right:12px}.block-library-video-tracks-editor__single-track-editor-label-language{display:flex;margin-top:12px}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control{width:50%}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control:first-child{margin-left:16px}.block-library-video-tracks-editor__single-track-editor-kind-select{max-width:240px}.block-library-video-tracks-editor__single-track-editor-buttons-container{display:flex;place-content:space-between;margin-top:32px}.block-library-video-tracks-editor__single-track-editor-edit-track-label{margin-top:4px;margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500;display:block}.block-library-video-tracks-editor>.components-popover__content>div,.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label,.block-library-video-tracks-editor__track-list .components-menu-group__label{padding:0}.block-library-video-tracks-editor__add-tracks-container,.block-library-video-tracks-editor__single-track-editor,.block-library-video-tracks-editor__track-list{padding:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label{margin-bottom:4px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field{margin-bottom:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input{margin-right:0}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label{margin-bottom:4px}.editor-styles-wrapper ul.wp-block-post-template{padding-right:0;margin-right:0;list-style:none}.block-library-query-toolbar__popover .components-popover__content{min-width:230px}.wp-block-query__create-new-link{padding:0 56px 16px 16px}.block-library-query__pattern-selection-content .block-editor-block-patterns-list{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:8px}.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{margin-bottom:0}.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container{max-height:250px}.block-editor-query-pattern__selection-modal .components-modal__content{overflow:hidden;padding:0}.block-editor-query-pattern__selection-modal .components-modal__content:before{margin-bottom:0}@media (min-width:600px){.block-editor-query-pattern__selection-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.block-editor-query-pattern__selection-modal{width:750px}}@media (min-width:960px){.block-editor-query-pattern__selection-modal{height:80%;width:80%;max-height:none}}.wp-block[data-align=center]>.wp-block-query-pagination{justify-content:center}.editor-styles-wrapper .wp-block-query-pagination{max-width:100%}.editor-styles-wrapper .wp-block-query-pagination.block-editor-block-list__layout{margin:0}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{margin-top:.5em;margin-right:.5em;margin-bottom:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-query-pagination-numbers a{text-decoration:underline}.wp-block-query-pagination-numbers .page-numbers{margin-left:2px}.wp-block-query-pagination-numbers .page-numbers:last-child{margin-right:0}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder,.wp-block-post-featured-image.wp-block-post-featured-image .components-resizable-box__container{border-radius:inherit}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder{justify-content:center;align-items:center;box-shadow:none;padding:0;color:currentColor;background:transparent;min-height:200px}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-form-file-upload,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-form-file-upload{display:none}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__preview,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__preview{position:absolute;top:4px;left:4px;bottom:4px;right:4px;background:hsla(0,0%,100%,.8);display:flex;align-items:center;justify-content:center}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder:before,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder:before{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;border:1px dashed;opacity:.4;pointer-events:none;border-radius:inherit}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__fieldset,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__fieldset{width:auto}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button{color:inherit;padding:0;display:flex;justify-content:center;align-items:center;width:48px;height:48px;border-radius:50%;position:relative;visibility:hidden;background:transparent;transition:all .1s linear}@media (prefers-reduced-motion:reduce){.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button{transition-duration:0s;transition-delay:0s}}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button>svg,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button>svg{color:#fff}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__illustration,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__illustration{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;stroke:currentColor;stroke-dasharray:3;opacity:.4}.wp-block-post-featured-image.wp-block-post-featured-image[style*=height] .components-placeholder{min-height:48px;min-width:48px;height:100%;width:100%}.wp-block-post-featured-image.wp-block-post-featured-image.is-selected .components-button.components-button{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);border-style:solid;color:#fff;opacity:1;visibility:visible}div[data-type="core/post-featured-image"] img{max-width:100%;height:auto;display:block}.wp-block-post-comments-form *,.wp-block-post-comments__placeholder *{pointer-events:none}.wp-block-post-comments-form .block-editor-warning *{pointer-events:auto}:root .editor-styles-wrapper .has-very-light-gray-background-color{background-color:#eee}:root .editor-styles-wrapper .has-very-dark-gray-background-color{background-color:#313131}:root .editor-styles-wrapper .has-very-light-gray-color{color:#eee}:root .editor-styles-wrapper .has-very-dark-gray-color{color:#313131}:root .editor-styles-wrapper .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(-135deg,#00d084,#0693e3)}:root .editor-styles-wrapper .has-purple-crush-gradient-background{background:linear-gradient(-135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .editor-styles-wrapper .has-hazy-dawn-gradient-background{background:linear-gradient(-135deg,#faaca8,#dad0ec)}:root .editor-styles-wrapper .has-subdued-olive-gradient-background{background:linear-gradient(-135deg,#fafae1,#67a671)}:root .editor-styles-wrapper .has-atomic-cream-gradient-background{background:linear-gradient(-135deg,#fdd79a,#004a59)}:root .editor-styles-wrapper .has-nightshade-gradient-background{background:linear-gradient(-135deg,#330968,#31cdcf)}:root .editor-styles-wrapper .has-midnight-gradient-background{background:linear-gradient(-135deg,#020381,#2874fc)}.editor-styles-wrapper{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.editor-styles-wrapper .has-regular-font-size{font-size:16px}.editor-styles-wrapper .has-larger-font-size{font-size:42px}.editor-styles-wrapper .has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.editor-styles-wrapper .has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/editor.css b/static/wp-includes/css/dist/block-library/editor.css
new file mode 100755
index 0000000..9a361f0
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/editor.css
@@ -0,0 +1,2787 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+ul.wp-block-archives {
+ padding-left: 2.5em;
+}
+
+.wp-block-audio {
+ margin-left: 0;
+ margin-right: 0;
+ position: relative;
+}
+.wp-block-audio.is-transient audio {
+ opacity: 0.3;
+}
+.wp-block-audio .components-spinner {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-top: -9px;
+ margin-left: -9px;
+}
+
+.wp-block-avatar__image img {
+ width: 100%;
+}
+
+.wp-block-avatar.aligncenter .components-resizable-box__container {
+ margin: 0 auto;
+}
+
+.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;
+}
+.edit-post-visual-editor .block-library-block__reusable-block-container .components-disabled .block-list-appender {
+ display: none;
+}
+
+.wp-block[data-align=center] > .wp-block-button {
+ text-align: center;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.wp-block[data-align=right] > .wp-block-button {
+ /*!rtl:ignore*/
+ text-align: right;
+}
+
+.wp-block-button {
+ position: relative;
+ cursor: text;
+}
+.wp-block-button:focus {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+.wp-block-button[data-rich-text-placeholder]::after {
+ opacity: 0.8;
+}
+
+.wp-block-button__inline-link {
+ color: #757575;
+ height: 0;
+ overflow: hidden;
+ max-width: 290px;
+}
+.wp-block-button__inline-link-input__suggestions {
+ max-width: 290px;
+}
+@media (min-width: 782px) {
+ .wp-block-button__inline-link {
+ max-width: 260px;
+ }
+ .wp-block-button__inline-link-input__suggestions {
+ max-width: 260px;
+ }
+}
+@media (min-width: 960px) {
+ .wp-block-button__inline-link {
+ max-width: 290px;
+ }
+ .wp-block-button__inline-link-input__suggestions {
+ max-width: 290px;
+ }
+}
+.is-selected .wp-block-button__inline-link {
+ height: auto;
+ overflow: visible;
+}
+
+.wp-button-label__width .components-button-group {
+ display: block;
+}
+.wp-button-label__width .components-base-control__field {
+ margin-bottom: 12px;
+}
+
+div[data-type="core/button"] {
+ display: table;
+}
+
+.wp-block-buttons {
+ /* stylelint-disable indentation */
+}
+.wp-block-buttons > .wp-block {
+ margin: 0;
+}
+.wp-block-buttons > .wp-block-button.wp-block-button.wp-block-button.wp-block-button.wp-block-button {
+ margin: 0;
+}
+.wp-block-buttons > .block-list-appender {
+ display: inline-flex;
+ align-items: center;
+}
+.wp-block-buttons.is-vertical > .block-list-appender .block-list-appender__toggle {
+ justify-content: flex-start;
+}
+.wp-block-buttons > .wp-block-button:focus {
+ box-shadow: none;
+}
+.wp-block-buttons:not(.is-content-justification-space-between,
+.is-content-justification-right,
+.is-content-justification-left,
+.is-content-justification-center) .wp-block[data-align=center] {
+ /* stylelint-enable indentation */
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 0;
+ width: 100%;
+}
+.wp-block-buttons:not(.is-content-justification-space-between,
+.is-content-justification-right,
+.is-content-justification-left,
+.is-content-justification-center) .wp-block[data-align=center] .wp-block-button {
+ margin-bottom: 0;
+}
+
+.wp-block[data-align=center] > .wp-block-buttons {
+ align-items: center;
+ justify-content: center;
+}
+
+.wp-block[data-align=right] > .wp-block-buttons {
+ justify-content: flex-end;
+}
+
+.wp-block-categories ul {
+ padding-left: 2.5em;
+}
+.wp-block-categories ul ul {
+ margin-top: 6px;
+}
+
+.wp-block-columns :where(.wp-block) {
+ max-width: none;
+ margin-left: 0;
+ margin-right: 0;
+}
+
+html :where(.wp-block-column) {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.wp-block-comment-author-avatar__placeholder {
+ border: currentColor 1px dashed;
+ width: 100%;
+ height: 100%;
+ stroke: currentColor;
+ stroke-dasharray: 3;
+}
+
+.block-library-comments-toolbar__popover .components-popover__content {
+ min-width: 230px;
+}
+
+.wp-block[data-align=center] > .wp-block-comments-pagination {
+ justify-content: center;
+}
+
+.editor-styles-wrapper .wp-block-comments-pagination {
+ max-width: 100%;
+}
+.editor-styles-wrapper .wp-block-comments-pagination.block-editor-block-list__layout {
+ margin: 0;
+}
+
+.wp-block-comments-pagination > .wp-block-comments-pagination-next,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers {
+ margin-left: 0;
+ margin-top: 0.5em;
+ /*rtl:ignore*/
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-comments-pagination > .wp-block-comments-pagination-next:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers:last-child {
+ /*rtl:ignore*/
+ margin-right: 0;
+}
+
+.wp-block-comments-pagination-numbers a {
+ text-decoration: underline;
+}
+.wp-block-comments-pagination-numbers .page-numbers {
+ margin-right: 2px;
+}
+.wp-block-comments-pagination-numbers .page-numbers:last-child {
+ /*rtl:ignore*/
+ margin-right: 0;
+}
+
+.wp-block-comments-title.has-background {
+ padding: inherit;
+}
+
+.wp-block-cover {
+ /* Extra specificity needed because the reset.css applied in the editor context is overriding this rule. */
+}
+.editor-styles-wrapper .wp-block-cover {
+ box-sizing: border-box;
+}
+.wp-block-cover.is-placeholder {
+ min-height: auto !important;
+ padding: 0 !important;
+}
+.wp-block-cover.is-placeholder .block-library-cover__resize-container {
+ display: none;
+}
+.wp-block-cover.is-placeholder .components-placeholder.is-large {
+ min-height: 240px;
+ justify-content: flex-start;
+ z-index: 1;
+}
+.wp-block-cover.is-placeholder .components-placeholder.is-large + .block-library-cover__resize-container {
+ min-height: 240px;
+ display: block;
+}
+.wp-block-cover.components-placeholder h2 {
+ color: inherit;
+}
+.wp-block-cover.is-transient::before {
+ background-color: #fff;
+ opacity: 0.3;
+}
+.wp-block-cover .components-spinner {
+ position: absolute;
+ z-index: 1;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ margin: 0;
+}
+.wp-block-cover .block-editor-block-list__layout {
+ width: 100%;
+}
+.wp-block-cover .wp-block-cover__inner-container {
+ text-align: left;
+ margin-left: 0;
+ margin-right: 0;
+}
+.wp-block-cover .wp-block-cover__placeholder-background-options {
+ width: 100%;
+}
+
+[data-align=left] > .wp-block-cover,
+[data-align=right] > .wp-block-cover {
+ max-width: 420px;
+ width: 100%;
+}
+
+.block-library-cover__reset-button {
+ margin-left: auto;
+}
+
+.block-library-cover__resize-container {
+ position: absolute !important;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ min-height: 50px;
+}
+
+.block-library-cover__resize-container:not(.is-resizing) {
+ height: auto !important;
+}
+
+.wp-block-cover > .components-drop-zone .components-drop-zone__content {
+ opacity: 0.8 !important;
+}
+
+.block-editor-block-patterns-list__list-item .has-parallax.wp-block-cover {
+ background-attachment: scroll;
+}
+
+.wp-block-embed {
+ margin-left: 0;
+ margin-right: 0;
+ clear: both;
+}
+.wp-block-embed.is-loading {
+ display: flex;
+ justify-content: center;
+}
+.wp-block-embed .components-placeholder__error {
+ word-break: break-word;
+}
+.wp-block-embed .components-placeholder__learn-more {
+ margin-top: 1em;
+}
+
+.block-library-embed__interactive-overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ opacity: 0;
+}
+
+.wp-block[data-align=left] > .wp-block-embed,
+.wp-block[data-align=right] > .wp-block-embed {
+ max-width: 360px;
+ width: 100%;
+}
+.wp-block[data-align=left] > .wp-block-embed .wp-block-embed__wrapper,
+.wp-block[data-align=right] > .wp-block-embed .wp-block-embed__wrapper {
+ min-width: 280px;
+}
+
+.wp-block-file {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 0;
+}
+.wp-block[data-align=left] > .wp-block-file, .wp-block[data-align=right] > .wp-block-file {
+ height: auto;
+}
+.wp-block-file .components-resizable-box__container {
+ margin-bottom: 1em;
+}
+.wp-block-file .wp-block-file__preview {
+ margin-bottom: 1em;
+ width: 100%;
+ height: 100%;
+}
+.wp-block-file .wp-block-file__preview-overlay {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+.wp-block-file .wp-block-file__content-wrapper {
+ flex-grow: 1;
+}
+.wp-block-file a {
+ min-width: 1em;
+}
+.wp-block-file .wp-block-file__button-richtext-wrapper {
+ display: inline-block;
+ margin-left: 0.75em;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce {
+ height: auto;
+ /* Allow height of embed iframes to be calculated properly */
+ /* Remove blue highlighting of selected images in WebKit */
+ /* Image captions */
+ /* WP Views */
+}
+.wp-block-freeform.block-library-rich-text__tinymce p,
+.wp-block-freeform.block-library-rich-text__tinymce li {
+ line-height: 1.8;
+}
+.wp-block-freeform.block-library-rich-text__tinymce ul,
+.wp-block-freeform.block-library-rich-text__tinymce ol {
+ padding-left: 2.5em;
+ margin-left: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+ margin: 0;
+ box-shadow: inset 0 0 0 0 #ddd;
+ border-left: 4px solid #000;
+ padding-left: 1em;
+}
+.wp-block-freeform.block-library-rich-text__tinymce pre {
+ white-space: pre-wrap;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 15px;
+ color: #1e1e1e;
+}
+.wp-block-freeform.block-library-rich-text__tinymce > *:first-child {
+ margin-top: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce > *:last-child {
+ margin-bottom: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus {
+ outline: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce a {
+ color: var(--wp-admin-theme-color);
+}
+.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected] {
+ padding: 0 2px;
+ margin: 0 -2px;
+ border-radius: 2px;
+ box-shadow: 0 0 0 1px #e5f5fa;
+ background: #e5f5fa;
+}
+.wp-block-freeform.block-library-rich-text__tinymce code {
+ padding: 2px;
+ border-radius: 2px;
+ color: #1e1e1e;
+ background: #f0f0f0;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 14px;
+}
+.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected] {
+ background: #ddd;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .alignright {
+ /*rtl:ignore*/
+ float: right;
+ /*rtl:ignore*/
+ margin: 0.5em 0 0.5em 1em;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .alignleft {
+ /*rtl:ignore*/
+ float: left;
+ /*rtl:ignore*/
+ margin: 0.5em 1em 0.5em 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .aligncenter {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag {
+ width: 96%;
+ height: 20px;
+ display: block;
+ margin: 15px auto;
+ outline: 0;
+ cursor: default;
+ 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);
+ background-size: 1900px 20px;
+ background-repeat: no-repeat;
+ background-position: center;
+}
+.wp-block-freeform.block-library-rich-text__tinymce img::selection {
+ background-color: transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce div.mceTemp {
+ -ms-user-select: element;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption {
+ margin: 0;
+ /* dl browser reset */
+ max-width: 100%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a,
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img {
+ display: block;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption, .wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption * {
+ -webkit-user-drag: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd {
+ padding-top: 0.5em;
+ margin: 0;
+ /* browser dd reset */
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview {
+ width: 99.99%;
+ /* All IE need hasLayout, incl. 11 (ugh, not again!!) */
+ position: relative;
+ clear: both;
+ margin-bottom: 16px;
+ border: 1px solid transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview iframe {
+ display: block;
+ max-width: 100%;
+ background: transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected="2"] .mce-shim {
+ display: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder {
+ border: 1px dashed #ddd;
+ padding: 10px;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error {
+ border: 1px solid #ddd;
+ padding: 1em 0;
+ margin: 0;
+ word-wrap: break-word;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p {
+ margin: 0;
+ text-align: center;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder, .wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error {
+ border-color: transparent;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons {
+ display: block;
+ margin: 0 auto;
+ width: 32px;
+ height: 32px;
+ font-size: 32px;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery::after {
+ content: "";
+ display: table;
+ clear: both;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus {
+ outline: none;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery a {
+ cursor: default;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery {
+ margin: auto -6px;
+ padding: 6px 0;
+ line-height: 1;
+ overflow-x: hidden;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item {
+ float: left;
+ margin: 0;
+ text-align: center;
+ padding: 6px;
+ box-sizing: border-box;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption,
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon {
+ margin: 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption {
+ font-size: 13px;
+ margin: 4px 0;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item {
+ width: 100%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item {
+ width: 50%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item {
+ width: 33.3333333333%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item {
+ width: 25%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item {
+ width: 20%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item {
+ width: 16.6666666667%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item {
+ width: 14.2857142857%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item {
+ width: 12.5%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item {
+ width: 11.1111111111%;
+}
+.wp-block-freeform.block-library-rich-text__tinymce .gallery img {
+ max-width: 100%;
+ height: auto;
+ border: none;
+ padding: 0;
+}
+
+div[data-type="core/freeform"]::before {
+ transition: border-color 0.1s linear, box-shadow 0.1s linear;
+ border: 1px solid #ddd;
+ outline: 1px solid transparent;
+}
+@media (prefers-reduced-motion: reduce) {
+ div[data-type="core/freeform"]::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+div[data-type="core/freeform"].is-selected::before {
+ border-color: #1e1e1e;
+}
+div[data-type="core/freeform"] .block-editor-block-contextual-toolbar + div {
+ margin-top: 0;
+ padding-top: 0;
+}
+div[data-type="core/freeform"].is-selected .block-library-rich-text__tinymce::after {
+ content: "";
+ display: table;
+ clear: both;
+}
+
+.mce-toolbar-grp .mce-btn.mce-active button,
+.mce-toolbar-grp .mce-btn.mce-active:hover button,
+.mce-toolbar-grp .mce-btn.mce-active i,
+.mce-toolbar-grp .mce-btn.mce-active:hover i {
+ color: #1e1e1e;
+}
+.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last {
+ margin-right: 0;
+ margin-left: 8px;
+}
+.mce-toolbar-grp .mce-btn i {
+ font-style: normal;
+}
+
+.block-library-classic__toolbar {
+ display: none;
+ width: auto;
+ margin: 0;
+ position: sticky;
+ z-index: 31;
+ top: 0;
+ border: 1px solid #ddd;
+ border-bottom: none;
+ border-radius: 2px;
+ margin-bottom: 8px;
+ padding: 0;
+}
+div[data-type="core/freeform"].is-selected .block-library-classic__toolbar {
+ display: block;
+ border-color: #1e1e1e;
+}
+.block-library-classic__toolbar .mce-tinymce {
+ box-shadow: none;
+}
+@media (min-width: 600px) {
+ .block-library-classic__toolbar {
+ padding: 0;
+ }
+}
+.block-library-classic__toolbar:empty {
+ display: block;
+ background: #f5f5f5;
+ border-bottom: 1px solid #e2e4e7;
+}
+.block-library-classic__toolbar:empty::before {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ content: attr(data-placeholder);
+ color: #555d66;
+ line-height: 37px;
+ padding: 14px;
+}
+.block-library-classic__toolbar div.mce-toolbar-grp {
+ border-bottom: 1px solid #1e1e1e;
+}
+.block-library-classic__toolbar .mce-tinymce-inline,
+.block-library-classic__toolbar .mce-tinymce-inline > div,
+.block-library-classic__toolbar div.mce-toolbar-grp,
+.block-library-classic__toolbar div.mce-toolbar-grp > div,
+.block-library-classic__toolbar .mce-menubar,
+.block-library-classic__toolbar .mce-menubar > div {
+ height: auto !important;
+ width: 100% !important;
+}
+.block-library-classic__toolbar .mce-container-body.mce-abs-layout {
+ overflow: visible;
+}
+.block-library-classic__toolbar .mce-menubar,
+.block-library-classic__toolbar div.mce-toolbar-grp {
+ position: static;
+}
+.block-library-classic__toolbar .mce-toolbar-grp > div {
+ padding: 1px 3px;
+}
+.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) {
+ display: none;
+}
+.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar {
+ display: block;
+}
+
+figure.wp-block-gallery {
+ display: block;
+}
+figure.wp-block-gallery.has-nested-images .components-drop-zone {
+ display: none;
+ pointer-events: none;
+}
+figure.wp-block-gallery > .blocks-gallery-caption {
+ flex: 0 0 100%;
+}
+figure.wp-block-gallery > .blocks-gallery-media-placeholder-wrapper {
+ flex-basis: 100%;
+}
+figure.wp-block-gallery .wp-block-image .components-notice.is-error {
+ display: block;
+}
+figure.wp-block-gallery .wp-block-image .components-notice__content {
+ margin: 4px 0;
+}
+figure.wp-block-gallery .wp-block-image .components-notice__dismiss {
+ position: absolute;
+ top: 0;
+ right: 5px;
+}
+figure.wp-block-gallery .block-editor-media-placeholder.is-appender .components-placeholder__label {
+ display: none;
+}
+figure.wp-block-gallery .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__button {
+ margin-bottom: 0;
+}
+figure.wp-block-gallery .block-editor-media-placeholder {
+ margin: 0;
+}
+figure.wp-block-gallery .block-editor-media-placeholder .components-placeholder__label {
+ display: flex;
+}
+figure.wp-block-gallery .block-editor-media-placeholder figcaption {
+ z-index: 2;
+}
+figure.wp-block-gallery .components-spinner {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-top: -9px;
+ margin-left: -9px;
+}
+
+/**
+ * Gallery inspector controls settings.
+ */
+.gallery-settings-buttons .components-button:first-child {
+ margin-right: 8px;
+}
+
+.gallery-image-sizes .components-base-control__label {
+ display: block;
+ margin-bottom: 4px;
+}
+.gallery-image-sizes .gallery-image-sizes__loading {
+ display: flex;
+ align-items: center;
+ color: #757575;
+ font-size: 12px;
+}
+.gallery-image-sizes .components-spinner {
+ margin: 0 8px 0 4px;
+}
+
+/**
+ * Deprecated css past this point. This can be removed once all galleries are migrated
+ * to V2.
+ */
+.blocks-gallery-item figure:not(.is-selected):focus,
+.blocks-gallery-item img:focus {
+ outline: none;
+}
+.blocks-gallery-item figure.is-selected::before {
+ box-shadow: 0 0 0 1px #fff inset, 0 0 0 3px var(--wp-admin-theme-color) inset;
+ content: "";
+ outline: 2px solid transparent;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ pointer-events: none;
+}
+.blocks-gallery-item figure.is-transient img {
+ opacity: 0.3;
+}
+.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {
+ display: inline-flex;
+}
+.blocks-gallery-item .block-editor-media-placeholder {
+ margin: 0;
+ height: 100%;
+}
+.blocks-gallery-item .block-editor-media-placeholder .components-placeholder__label {
+ display: flex;
+}
+
+.block-library-gallery-item__inline-menu {
+ display: none;
+ position: absolute;
+ top: -2px;
+ margin: 8px;
+ z-index: 20;
+ transition: box-shadow 0.2s ease-out;
+ border-radius: 2px;
+ background: #fff;
+ border: 1px solid #1e1e1e;
+}
+@media (prefers-reduced-motion: reduce) {
+ .block-library-gallery-item__inline-menu {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.block-library-gallery-item__inline-menu:hover {
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
+}
+@media (min-width: 600px) {
+ .columns-7 .block-library-gallery-item__inline-menu, .columns-8 .block-library-gallery-item__inline-menu {
+ padding: 2px;
+ }
+}
+.block-library-gallery-item__inline-menu .components-button.has-icon:not(:focus) {
+ border: none;
+ box-shadow: none;
+}
+@media (min-width: 600px) {
+ .columns-7 .block-library-gallery-item__inline-menu .components-button.has-icon, .columns-8 .block-library-gallery-item__inline-menu .components-button.has-icon {
+ padding: 0;
+ width: inherit;
+ height: inherit;
+ }
+}
+.block-library-gallery-item__inline-menu.is-left {
+ left: -2px;
+}
+.block-library-gallery-item__inline-menu.is-right {
+ right: -2px;
+}
+
+.wp-block-gallery ul.blocks-gallery-grid {
+ padding: 0;
+ margin: 0;
+}
+
+@media (min-width: 600px) {
+ .wp-block-update-gallery-modal {
+ max-width: 480px;
+ }
+}
+
+.wp-block-update-gallery-modal-buttons {
+ display: flex;
+ justify-content: flex-end;
+ gap: 12px;
+}
+
+/**
+ * Group: All Alignment Settings
+ */
+.wp-block-group .block-editor-block-list__insertion-point {
+ left: 0;
+ right: 0;
+}
+
+[data-type="core/group"].is-selected .block-list-appender {
+ margin-left: 0;
+ margin-right: 0;
+}
+[data-type="core/group"].is-selected .has-background .block-list-appender {
+ margin-top: 18px;
+ margin-bottom: 18px;
+}
+
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child {
+ gap: inherit;
+ pointer-events: none;
+}
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child,
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content,
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter {
+ display: inherit;
+ width: 100%;
+ flex-direction: inherit;
+ flex: 1;
+}
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child::after {
+ content: "";
+ display: flex;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ border-radius: 2px;
+ flex: 1;
+ pointer-events: none;
+ min-height: 48px;
+}
+.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter {
+ pointer-events: all;
+}
+
+.block-library-html__edit .block-library-html__preview-overlay {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+}
+.block-library-html__edit .block-editor-plain-text {
+ font-family: Menlo, Consolas, monaco, monospace !important;
+ color: #1e1e1e !important;
+ background: #fff !important;
+ padding: 12px !important;
+ border: 1px solid #1e1e1e !important;
+ box-shadow: none !important;
+ border-radius: 2px !important;
+ max-height: 250px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px !important;
+}
+@media (min-width: 600px) {
+ .block-library-html__edit .block-editor-plain-text {
+ font-size: 13px !important;
+ }
+}
+.block-library-html__edit .block-editor-plain-text:focus {
+ border-color: var(--wp-admin-theme-color) !important;
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color) !important;
+ outline: 2px solid transparent !important;
+}
+
+figure.wp-block-image:not(.wp-block) {
+ margin: 0;
+}
+
+.wp-block-image {
+ position: relative;
+}
+.wp-block-image .is-applying img, .wp-block-image.is-transient img {
+ opacity: 0.3;
+}
+.wp-block-image figcaption img {
+ display: inline;
+}
+.wp-block-image .components-spinner {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-top: -9px;
+ margin-left: -9px;
+}
+.wp-block-image:not(.is-style-rounded) > div:not(.components-placeholder) {
+ border-radius: inherit;
+}
+
+.wp-block-image .components-resizable-box__container {
+ display: inline-block;
+}
+.wp-block-image .components-resizable-box__container img {
+ display: block;
+ width: inherit;
+ height: inherit;
+}
+
+.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
+ position: absolute;
+ left: 0;
+ right: 0;
+ margin: -1px 0;
+}
+@media (min-width: 600px) {
+ .block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
+ margin: -1px;
+ }
+}
+
+[data-align=wide] > .wp-block-image img,
+[data-align=full] > .wp-block-image img {
+ height: auto;
+ width: 100%;
+}
+
+.wp-block[data-align=left] > .wp-block-image,
+.wp-block[data-align=center] > .wp-block-image,
+.wp-block[data-align=right] > .wp-block-image {
+ display: table;
+}
+.wp-block[data-align=left] > .wp-block-image > figcaption,
+.wp-block[data-align=center] > .wp-block-image > figcaption,
+.wp-block[data-align=right] > .wp-block-image > figcaption {
+ display: table-caption;
+ caption-side: bottom;
+}
+
+.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-image__crop-area {
+ position: relative;
+ max-width: 100%;
+ width: 100%;
+}
+
+.wp-block-image__crop-icon {
+ padding: 0 8px;
+ min-width: 48px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.wp-block-image__crop-icon svg {
+ fill: currentColor;
+}
+
+.wp-block-image__zoom .components-popover__content {
+ overflow: visible;
+ min-width: 260px;
+}
+.wp-block-image__zoom .components-range-control {
+ flex: 1;
+}
+.wp-block-image__zoom .components-base-control__field {
+ display: flex;
+ margin-bottom: 0;
+ flex-direction: column;
+ align-items: flex-start;
+}
+
+.wp-block-image__aspect-ratio {
+ height: 46px;
+ margin-bottom: -8px;
+ display: flex;
+ align-items: center;
+}
+.wp-block-image__aspect-ratio .components-button {
+ width: 36px;
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.wp-block-latest-posts {
+ padding-left: 2.5em;
+}
+.wp-block-latest-posts.is-grid {
+ padding-left: 0;
+}
+
+.wp-block-latest-posts li a > div {
+ display: inline;
+}
+
+.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
+ margin-bottom: 20px;
+}
+
+.editor-latest-posts-image-alignment-control .components-base-control__label {
+ display: block;
+}
+.editor-latest-posts-image-alignment-control .components-toolbar {
+ border-radius: 2px;
+}
+
+.wp-block-media-text__media {
+ position: relative;
+}
+.wp-block-media-text__media.is-transient img {
+ opacity: 0.3;
+}
+.wp-block-media-text__media .components-spinner {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-top: -9px;
+ margin-left: -9px;
+}
+
+.wp-block-media-text .__resizable_base__ {
+ grid-column: 1/span 2;
+ grid-row: 2;
+}
+
+.wp-block-media-text .editor-media-container__resizer {
+ width: 100% !important;
+}
+
+.wp-block-media-text.is-image-fill .editor-media-container__resizer {
+ height: 100% !important;
+}
+
+.wp-block-media-text > .block-editor-block-list__layout > .block-editor-block-list__block {
+ max-width: unset;
+}
+
+.block-editor-block-list__block[data-type="core/more"] {
+ max-width: 100%;
+ text-align: center;
+ margin-top: 28px;
+ margin-bottom: 28px;
+}
+
+.wp-block-more {
+ display: block;
+ text-align: center;
+ white-space: nowrap;
+}
+.wp-block-more input[type=text] {
+ position: relative;
+ font-size: 13px;
+ text-transform: uppercase;
+ font-weight: 600;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ color: #757575;
+ border: none;
+ box-shadow: none;
+ white-space: nowrap;
+ text-align: center;
+ margin: 0;
+ border-radius: 4px;
+ background: #fff;
+ padding: 6px 8px;
+ height: 24px;
+ max-width: 100%;
+}
+.wp-block-more input[type=text]:focus {
+ box-shadow: none;
+}
+.wp-block-more::before {
+ content: "";
+ position: absolute;
+ top: calc(50%);
+ left: 0;
+ right: 0;
+ border-top: 3px dashed #ccc;
+}
+
+/**
+ * Editor only CSS.
+ */
+.editor-styles-wrapper .wp-block-navigation ul {
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: 0;
+ padding-left: 0;
+}
+.editor-styles-wrapper .wp-block-navigation .wp-block-navigation-item.wp-block {
+ margin: revert;
+}
+
+.wp-block-navigation-item__label {
+ display: inline;
+}
+
+/**
+ * Submenus.
+ */
+.wp-block-navigation__container.is-parent-of-selected-block {
+ visibility: visible;
+ opacity: 1;
+ overflow: visible;
+}
+
+.wp-block-navigation__container,
+.wp-block-navigation-item {
+ background-color: inherit;
+}
+
+.wp-block-navigation:not(.is-selected):not(.has-child-selected) .has-child:hover > .wp-block-navigation__submenu-container {
+ opacity: 0;
+ visibility: hidden;
+}
+
+.has-child.is-selected > .wp-block-navigation__submenu-container, .has-child.has-child-selected > .wp-block-navigation__submenu-container {
+ display: flex;
+ opacity: 1;
+ visibility: visible;
+}
+
+.is-dragging-components-draggable .has-child.is-dragging-within > .wp-block-navigation__submenu-container {
+ opacity: 1;
+ visibility: visible;
+}
+
+.is-editing > .wp-block-navigation__container {
+ visibility: visible;
+ opacity: 1;
+ display: flex;
+ flex-direction: column;
+}
+
+.is-dragging-components-draggable .wp-block-navigation-link > .wp-block-navigation__container {
+ opacity: 1;
+ visibility: hidden;
+}
+.is-dragging-components-draggable .wp-block-navigation-link > .wp-block-navigation__container .block-editor-block-draggable-chip-wrapper {
+ visibility: visible;
+}
+
+.is-editing > .wp-block-navigation__submenu-container > .block-list-appender {
+ display: block;
+ position: static;
+ width: 100%;
+}
+.is-editing > .wp-block-navigation__submenu-container > .block-list-appender .block-editor-button-block-appender {
+ color: #fff;
+ background: #1e1e1e;
+ padding: 0;
+ width: 24px;
+ border-radius: 2px;
+ margin-right: 0;
+ margin-left: auto;
+}
+
+.wp-block-navigation__submenu-container .block-list-appender {
+ display: none;
+}
+
+/**
+ * Colors Selector component
+ */
+.block-library-colors-selector {
+ width: auto;
+}
+.block-library-colors-selector .block-library-colors-selector__toggle {
+ display: block;
+ margin: 0 auto;
+ padding: 3px;
+ width: auto;
+}
+.block-library-colors-selector .block-library-colors-selector__icon-container {
+ height: 30px;
+ position: relative;
+ margin: 0 auto;
+ padding: 3px;
+ display: flex;
+ align-items: center;
+ border-radius: 4px;
+}
+.block-library-colors-selector .block-library-colors-selector__state-selection {
+ margin-left: auto;
+ margin-right: auto;
+ border-radius: 11px;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ width: 22px;
+ min-width: 22px;
+ height: 22px;
+ min-height: 22px;
+ line-height: 20px;
+ padding: 2px;
+}
+.block-library-colors-selector .block-library-colors-selector__state-selection > svg {
+ min-width: auto !important;
+}
+.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg,
+.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg path {
+ color: inherit;
+}
+
+.block-library-colors-selector__popover .color-palette-controller-container {
+ padding: 16px;
+}
+.block-library-colors-selector__popover .components-base-control__label {
+ height: 20px;
+ line-height: 20px;
+}
+.block-library-colors-selector__popover .component-color-indicator {
+ float: right;
+ margin-top: 2px;
+}
+.block-library-colors-selector__popover .components-panel__body-title {
+ display: none;
+}
+
+.wp-block-navigation .block-editor-button-block-appender {
+ background-color: #1e1e1e;
+ color: #fff;
+}
+.wp-block-navigation .block-editor-button-block-appender.block-editor-button-block-appender.block-editor-button-block-appender {
+ padding: 0;
+}
+
+.wp-block-navigation .wp-block .wp-block .block-editor-button-block-appender {
+ background-color: transparent;
+ color: #1e1e1e;
+}
+
+/**
+ * Setup state
+ */
+@keyframes loadingpulse {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0.5;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.components-placeholder.wp-block-navigation-placeholder {
+ outline: none;
+ padding: 0;
+ box-shadow: none;
+ background: none;
+ min-height: 0;
+ color: inherit;
+}
+.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset {
+ font-size: inherit;
+}
+.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset .components-button {
+ margin-bottom: 0;
+}
+.wp-block-navigation.is-selected .components-placeholder.wp-block-navigation-placeholder {
+ color: #1e1e1e;
+}
+
+.wp-block-navigation-placeholder .components-spinner {
+ margin-top: 0;
+}
+
+.wp-block-navigation-placeholder__preview {
+ display: flex;
+ align-items: center;
+ min-width: 96px;
+ font-size: 13px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ color: currentColor;
+ background: transparent;
+}
+.wp-block-navigation.is-selected .wp-block-navigation-placeholder__preview {
+ display: none;
+}
+.wp-block-navigation-placeholder__preview::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ pointer-events: none;
+ border-radius: inherit;
+}
+.wp-block-navigation-placeholder__preview > svg {
+ fill: currentColor;
+ opacity: 0.4;
+}
+
+.wp-block-navigation.is-vertical .is-small .components-placeholder__fieldset,
+.wp-block-navigation.is-vertical .is-medium .components-placeholder__fieldset {
+ min-height: 90px;
+}
+
+.wp-block-navigation.is-vertical .is-large .components-placeholder__fieldset {
+ min-height: 132px;
+}
+
+.wp-block-navigation-placeholder__preview,
+.wp-block-navigation-placeholder__controls {
+ padding: 6px 8px;
+ flex-direction: row;
+ align-items: flex-start;
+}
+
+.wp-block-navigation-placeholder__controls {
+ border-radius: 2px;
+ background-color: #fff;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ display: none;
+ position: relative;
+ z-index: 1;
+ float: left;
+ width: 100%;
+}
+.wp-block-navigation.is-selected .wp-block-navigation-placeholder__controls {
+ display: flex;
+}
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator + hr, .is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,
+.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator + hr {
+ display: none;
+}
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions, .wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions {
+ flex-direction: column;
+ align-items: flex-start;
+}
+.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr, .wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr {
+ display: none;
+}
+.wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__icon {
+ margin-right: 12px;
+ height: 36px;
+}
+
+.wp-block-navigation-placeholder__actions__indicator {
+ display: flex;
+ padding: 0 6px 0 0;
+ align-items: center;
+ justify-content: flex-start;
+ line-height: 0;
+ height: 36px;
+ margin-left: 4px;
+}
+.wp-block-navigation-placeholder__actions__indicator svg {
+ margin-right: 4px;
+ fill: currentColor;
+}
+
+.wp-block-navigation .components-placeholder.is-medium .components-placeholder__fieldset {
+ flex-direction: row !important;
+}
+
+.wp-block-navigation-placeholder__actions {
+ display: flex;
+ font-size: 13px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ gap: 6px;
+ align-items: center;
+ height: 100%;
+}
+.wp-block-navigation-placeholder__actions .components-dropdown,
+.wp-block-navigation-placeholder__actions > .components-button {
+ margin-right: 0;
+}
+.wp-block-navigation-placeholder__actions.wp-block-navigation-placeholder__actions hr {
+ border: 0;
+ min-height: 1px;
+ min-width: 1px;
+ background-color: #1e1e1e;
+ margin: auto 0;
+ height: 100%;
+ max-height: 16px;
+}
+
+/**
+ * Mobile menu.
+ */
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-container:not(.is-menu-open) .components-button.wp-block-navigation__responsive-container-close {
+ display: none;
+ }
+}
+
+.wp-block-navigation__responsive-container.is-menu-open {
+ position: fixed;
+ top: 155px;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation__responsive-container.is-menu-open {
+ top: 93px;
+ }
+}
+@media (min-width: 782px) {
+ .wp-block-navigation__responsive-container.is-menu-open {
+ left: 36px;
+ }
+}
+@media (min-width: 960px) {
+ .wp-block-navigation__responsive-container.is-menu-open {
+ left: 160px;
+ }
+}
+
+@media (min-width: 782px) {
+ .has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open {
+ top: 141px;
+ }
+}
+
+.is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,
+.is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open {
+ top: 141px;
+}
+
+.is-sidebar-opened .wp-block-navigation__responsive-container.is-menu-open {
+ right: 280px;
+}
+
+.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open {
+ left: 0;
+ top: 155px;
+}
+@media (min-width: 782px) {
+ .is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open {
+ top: 61px;
+ }
+}
+@media (min-width: 782px) {
+ .is-fullscreen-mode .has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open {
+ top: 109px;
+ }
+}
+.is-fullscreen-mode .is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,
+.is-fullscreen-mode .is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open {
+ top: 109px;
+}
+
+body.editor-styles-wrapper .wp-block-navigation__responsive-container.is-menu-open {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-close {
+ pointer-events: none;
+ }
+ .wp-block-navigation__responsive-close .wp-block-navigation__responsive-container-close,
+.wp-block-navigation__responsive-close .block-editor-block-list__layout * {
+ pointer-events: all;
+ }
+}
+.wp-block-navigation__responsive-close .wp-block-pages-list__item__link {
+ pointer-events: none;
+}
+
+.components-button.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open,
+.components-button.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
+ padding: 0;
+ height: auto;
+ color: inherit;
+}
+
+.is-menu-open .wp-block-navigation__responsive-container-content * .block-list-appender {
+ margin-top: 16px;
+}
+
+@keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.wp-block-navigation .components-spinner {
+ padding: 8px 12px;
+}
+
+.wp-block-navigation__unsaved-changes {
+ position: relative;
+}
+.wp-block-navigation__unsaved-changes .components-spinner {
+ position: absolute;
+ top: calc(50% - 16px / 2);
+ left: calc(50% - 16px / 2);
+ opacity: 0;
+ animation: 0.5s linear 2s normal forwards fadein;
+}
+
+@keyframes fadeouthalf {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0.5;
+ }
+}
+.wp-block-navigation__unsaved-changes-overlay.is-saving {
+ opacity: 1;
+ animation: 0.5s linear 2s normal forwards fadeouthalf;
+}
+
+.wp-block-navigation-delete-menu-button {
+ width: 100%;
+ justify-content: center;
+ margin-bottom: 16px;
+}
+
+.wp-block-navigation__overlay-menu-preview {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ background-color: #f0f0f0;
+ padding: 0 24px;
+ height: 64px;
+ margin-bottom: 12px;
+}
+.wp-block-navigation__overlay-menu-preview.open {
+ box-shadow: inset 0 0 0 1px #e0e0e0;
+ outline: 1px solid transparent;
+ background-color: #fff;
+}
+
+.wp-block-navigation__toolbar-menu-selector.components-toolbar-group:empty {
+ display: none;
+}
+
+.wp-block-navigation-placeholder__actions hr + hr {
+ display: none;
+}
+
+/**
+ * Submenus.
+ */
+.wp-block-navigation .has-child {
+ cursor: pointer;
+}
+.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
+ z-index: 28;
+}
+.wp-block-navigation .has-child:hover .wp-block-navigation__submenu-container {
+ z-index: 29;
+}
+.wp-block-navigation .has-child.is-selected > .wp-block-navigation__submenu-container, .wp-block-navigation .has-child.has-child-selected > .wp-block-navigation__submenu-container {
+ visibility: visible !important;
+ opacity: 1 !important;
+ min-width: 200px !important;
+ height: auto !important;
+ width: auto !important;
+ overflow: visible !important;
+}
+
+/**
+ * Navigation Items.
+ */
+.wp-block-navigation-item .wp-block-navigation-item__content {
+ cursor: text;
+}
+.wp-block-navigation-item.is-editing, .wp-block-navigation-item.is-selected {
+ min-width: 20px;
+}
+.wp-block-navigation-item .block-list-appender {
+ margin-top: 16px;
+ margin-right: auto;
+ margin-bottom: 16px;
+ margin-left: 16px;
+}
+
+.wp-block-navigation-link__invalid-item {
+ color: #000;
+}
+
+.wp-block-navigation-link__missing_text-tooltip {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+}
+
+/**
+ * Menu item setup state. Is shown when a menu item has no URL configured.
+ */
+.wp-block-navigation-link__placeholder {
+ position: relative;
+ text-decoration: none !important;
+ box-shadow: none !important;
+ background-image: none !important;
+}
+.wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span {
+ --wp-underline-color: var(--wp-admin-theme-color);
+ background-image: linear-gradient(45deg, transparent 20%, var(--wp-underline-color) 30%, var(--wp-underline-color) 36%, transparent 46%), linear-gradient(135deg, transparent 54%, var(--wp-underline-color) 64%, var(--wp-underline-color) 70%, transparent 80%);
+ background-position: 0 100%;
+ background-size: 6px 3px;
+ background-repeat: repeat-x;
+ padding-bottom: 0.1em;
+}
+.is-dark-theme .wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span {
+ --wp-underline-color: #fff;
+}
+.wp-block-navigation-link__placeholder.wp-block-navigation-item__content {
+ cursor: pointer;
+}
+
+/**
+* Link Control Transforms
+*/
+.link-control-transform {
+ border-top: 1px solid #ccc;
+ padding: 0 16px 8px 16px;
+}
+
+.link-control-transform__subheading {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+
+.link-control-transform__items {
+ display: flex;
+ justify-content: space-between;
+}
+
+.link-control-transform__item {
+ flex-basis: 33%;
+ flex-direction: column;
+ gap: 8px;
+ height: auto;
+}
+
+.wp-block-navigation-submenu {
+ display: block;
+}
+.wp-block-navigation-submenu .wp-block-navigation__submenu-container {
+ z-index: 28;
+}
+.wp-block-navigation-submenu.is-selected > .wp-block-navigation__submenu-container, .wp-block-navigation-submenu.has-child-selected > .wp-block-navigation__submenu-container {
+ visibility: visible !important;
+ opacity: 1 !important;
+ min-width: 200px !important;
+ height: auto !important;
+ width: auto !important;
+ position: absolute;
+ left: -1px;
+ top: 100%;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation-submenu.is-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container, .wp-block-navigation-submenu.has-child-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ left: 100%;
+ top: -1px;
+ }
+ .wp-block-navigation-submenu.is-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container::before, .wp-block-navigation-submenu.has-child-selected > .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container::before {
+ content: "";
+ position: absolute;
+ right: 100%;
+ height: 100%;
+ display: block;
+ width: 0.5em;
+ background: transparent;
+ }
+}
+
+.block-editor-block-list__block[data-type="core/nextpage"] {
+ max-width: 100%;
+ text-align: center;
+ margin-top: 28px;
+ margin-bottom: 28px;
+}
+
+.wp-block-nextpage {
+ display: block;
+ text-align: center;
+ white-space: nowrap;
+}
+.wp-block-nextpage > span {
+ font-size: 13px;
+ position: relative;
+ text-transform: uppercase;
+ font-weight: 600;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ color: #757575;
+ border-radius: 4px;
+ background: #fff;
+ padding: 6px 8px;
+ height: 24px;
+}
+.wp-block-nextpage::before {
+ content: "";
+ position: absolute;
+ top: calc(50%);
+ left: 0;
+ right: 0;
+ border-top: 3px dashed #ccc;
+}
+
+.wp-block-navigation .wp-block-page-list > div,
+.wp-block-navigation .wp-block-page-list {
+ background-color: inherit;
+}
+.wp-block-navigation.items-justified-space-between .wp-block-page-list > div,
+.wp-block-navigation.items-justified-space-between .wp-block-page-list {
+ display: contents;
+ flex: 1;
+}
+.wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list > div, .wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list, .wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list > div, .wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list {
+ flex: inherit;
+}
+
+.wp-block-pages-list__item__link {
+ pointer-events: none;
+}
+
+@media (min-width: 600px) {
+ .wp-block-page-list-modal {
+ max-width: 480px;
+ }
+}
+
+.wp-block-page-list-modal-buttons {
+ display: flex;
+ justify-content: flex-end;
+ gap: 12px;
+}
+
+.wp-block-page-list .open-on-click:focus-within > .wp-block-navigation__submenu-container {
+ visibility: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+
+.wp-block-page-list .components-notice {
+ margin-left: 0;
+}
+
+.block-editor-block-list__block[data-type="core/paragraph"].has-drop-cap:focus {
+ min-height: auto !important;
+}
+
+.block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder] {
+ opacity: 1;
+}
+
+.block-editor-block-list__block[data-empty=true] + .block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder] {
+ opacity: 0;
+}
+
+.wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline {
+ display: inline-block;
+}
+
+.wp-block-pullquote.has-text-align-left p,
+.wp-block-pullquote.has-text-align-right p,
+.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 {
+ font-size: 28px;
+ line-height: 1.6;
+}
+
+.wp-block-pullquote.is-style-solid-color blockquote p {
+ font-size: 32px;
+}
+.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {
+ text-transform: none;
+ font-style: normal;
+}
+
+.wp-block-pullquote .wp-block-pullquote__citation {
+ color: inherit;
+}
+
+.wp-block-rss li a > div {
+ display: inline;
+}
+
+.wp-block-rss__placeholder-form {
+ display: flex;
+ align-items: stretch;
+}
+.wp-block-rss__placeholder-form > * {
+ margin-bottom: 8px;
+}
+@media (min-width: 782px) {
+ .wp-block-rss__placeholder-form > * {
+ margin-bottom: 0;
+ }
+}
+
+.wp-block-rss__placeholder-input {
+ display: flex;
+ align-items: stretch;
+ flex-grow: 1;
+}
+.wp-block-rss__placeholder-input .components-base-control__field {
+ margin: 0;
+ display: flex;
+ align-items: stretch;
+ flex-grow: 1;
+ margin-right: 8px;
+}
+
+.wp-block[data-align=center] .wp-block-search .wp-block-search__inside-wrapper {
+ margin: auto;
+}
+
+.wp-block-search .wp-block-search__button {
+ height: auto;
+ border-radius: initial;
+ display: flex;
+ align-items: center;
+}
+.wp-block-search__components-button-group {
+ margin-top: 10px;
+}
+
+.block-editor-block-list__block[data-type="core/separator"] {
+ padding-top: 0.1px;
+ padding-bottom: 0.1px;
+}
+.block-editor-block-list__block[data-type="core/separator"].wp-block-separator.is-style-dots {
+ background: none !important;
+}
+
+[data-type="core/shortcode"] .block-editor-plain-text {
+ max-height: 250px;
+}
+[data-type="core/shortcode"].components-placeholder {
+ min-height: 0;
+}
+
+.blocks-shortcode__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) {
+ .blocks-shortcode__textarea {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .blocks-shortcode__textarea {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.blocks-shortcode__textarea:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.blocks-shortcode__textarea::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.blocks-shortcode__textarea::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.blocks-shortcode__textarea:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.wp-block[data-align=center] > .wp-block-site-logo,
+.wp-block-site-logo.aligncenter > div {
+ display: table;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.wp-block-site-logo a {
+ pointer-events: none;
+}
+.wp-block-site-logo .custom-logo-link {
+ cursor: inherit;
+}
+.wp-block-site-logo .custom-logo-link:focus {
+ box-shadow: none;
+}
+.wp-block-site-logo .custom-logo-link.is-transient img {
+ opacity: 0.3;
+}
+.wp-block-site-logo img {
+ display: block;
+ height: auto;
+ max-width: 100%;
+}
+
+.wp-block-site-logo.wp-block-site-logo .components-placeholder,
+.wp-block-site-logo.wp-block-site-logo .components-resizable-box__container {
+ border-radius: inherit;
+}
+.wp-block-site-logo.wp-block-site-logo.is-default-size .components-placeholder {
+ height: 120px;
+ width: 120px;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ box-shadow: none;
+ padding: 0;
+ min-height: 48px;
+ min-width: 48px;
+ height: 100%;
+ width: 100%;
+ color: currentColor;
+ background: transparent;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-form-file-upload {
+ display: none;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__preview {
+ position: absolute;
+ top: 4px;
+ right: 4px;
+ bottom: 4px;
+ left: 4px;
+ background: rgba(255, 255, 255, 0.8);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-drop-zone__content-text {
+ display: none;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ pointer-events: none;
+ border-radius: inherit;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__fieldset {
+ width: auto;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button {
+ color: inherit;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 48px;
+ height: 48px;
+ border-radius: 50%;
+ position: relative;
+ visibility: hidden;
+ background: transparent;
+ transition: all 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button > svg {
+ color: #fff;
+}
+.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__illustration {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ stroke: currentColor;
+ stroke-dasharray: 3;
+ opacity: 0.4;
+}
+.wp-block-site-logo.wp-block-site-logo.is-selected .components-button.components-button {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+ border-style: solid;
+ color: #fff;
+ opacity: 1;
+ visibility: visible;
+}
+
+.wp-block-site-tagline__placeholder {
+ padding: 1em 0;
+ border: 1px dashed;
+}
+
+.wp-block-site-title__placeholder {
+ padding: 1em 0;
+ border: 1px dashed;
+}
+
+.wp-block-social-links .wp-social-link {
+ line-height: 0;
+}
+.wp-block-social-links .wp-social-link button {
+ font-size: inherit;
+ color: currentColor;
+ height: auto;
+ line-height: 0;
+ padding: 0.25em;
+}
+
+.wp-block-social-links.is-style-pill-shape .wp-social-link button {
+ padding-left: calc((2/3) * 1em);
+ padding-right: calc((2/3) * 1em);
+}
+
+.wp-block-social-links.is-style-logos-only .wp-social-link button {
+ padding: 0;
+}
+
+.wp-block-social-links div.block-editor-url-input {
+ display: inline-block;
+ margin-left: 8px;
+}
+.wp-block-social-links.wp-block-social-links {
+ background: none;
+}
+
+.wp-social-link:hover {
+ transform: none;
+}
+
+.editor-styles-wrapper .wp-block-social-links {
+ padding: 0;
+}
+
+.wp-block-social-links__social-placeholder {
+ display: flex;
+ opacity: 0.8;
+ list-style: none;
+}
+.wp-block-social-links__social-placeholder > .wp-social-link {
+ padding-left: 0 !important;
+ margin-left: 0 !important;
+ padding-right: 0 !important;
+ margin-right: 0 !important;
+ width: 0 !important;
+ visibility: hidden;
+}
+.wp-block-social-links__social-placeholder > .wp-block-social-links__social-placeholder-icons {
+ display: flex;
+}
+.wp-block-social-links__social-placeholder .wp-social-link {
+ padding: 0.25em;
+}
+.is-style-pill-shape .wp-block-social-links__social-placeholder .wp-social-link {
+ padding-left: calc((2/3) * 1em);
+ padding-right: calc((2/3) * 1em);
+}
+.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link {
+ padding: 0;
+}
+.wp-block-social-links__social-placeholder .wp-social-link::before {
+ content: "";
+ display: block;
+ width: 1em;
+ height: 1em;
+ border-radius: 50%;
+}
+.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link::before {
+ background: currentColor;
+}
+
+.wp-block-social-links .wp-block-social-links__social-prompt {
+ min-height: 24px;
+ list-style: none;
+ order: 2;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ line-height: 24px;
+ margin-top: auto;
+ margin-bottom: auto;
+ cursor: default;
+ padding-right: 8px;
+}
+
+.wp-block[data-align=center] > .wp-block-social-links {
+ justify-content: center;
+}
+
+.block-editor-block-preview__content .components-button:disabled {
+ opacity: 1;
+}
+
+.wp-social-link.wp-social-link__is-incomplete {
+ opacity: 0.5;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-social-link.wp-social-link__is-incomplete {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.wp-block-social-links .is-selected .wp-social-link__is-incomplete,
+.wp-social-link.wp-social-link__is-incomplete:hover,
+.wp-social-link.wp-social-link__is-incomplete:focus {
+ opacity: 1;
+}
+
+.block-editor-block-list__block[data-type="core/spacer"]::before {
+ content: "";
+ display: block;
+ position: absolute;
+ z-index: 1;
+ width: 100%;
+ min-height: 8px;
+ min-width: 8px;
+ height: 100%;
+}
+
+.wp-block-spacer.is-hovered .block-library-spacer__resize-container,
+.block-library-spacer__resize-container.has-show-handle {
+ background: rgba(0, 0, 0, 0.1);
+}
+.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container,
+.is-dark-theme .block-library-spacer__resize-container.has-show-handle {
+ background: rgba(255, 255, 255, 0.15);
+}
+
+.block-library-spacer__resize-container {
+ clear: both;
+}
+.block-library-spacer__resize-container:not(.is-resizing) {
+ height: 100% !important;
+ width: 100% !important;
+}
+.block-library-spacer__resize-container .components-resizable-box__handle::before {
+ content: none;
+}
+.block-library-spacer__resize-container.resize-horizontal {
+ margin-bottom: 0;
+}
+
+.wp-block-table {
+ margin: 0;
+}
+.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;
+}
+.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;
+}
+.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;
+}
+.wp-block[data-align=center] > .wp-block-table {
+ text-align: initial;
+}
+.wp-block[data-align=center] > .wp-block-table table {
+ margin: 0 auto;
+}
+.wp-block-table td,
+.wp-block-table th {
+ border: 1px solid;
+}
+.wp-block-table td.is-selected,
+.wp-block-table th.is-selected {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
+ border-style: double;
+}
+.wp-block-table figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-table figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.blocks-table__placeholder-form.blocks-table__placeholder-form {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+}
+.blocks-table__placeholder-form.blocks-table__placeholder-form > * {
+ margin-bottom: 8px;
+}
+@media (min-width: 782px) {
+ .blocks-table__placeholder-form.blocks-table__placeholder-form {
+ flex-direction: row;
+ align-items: flex-end;
+ }
+ .blocks-table__placeholder-form.blocks-table__placeholder-form > * {
+ margin-bottom: 0;
+ }
+}
+
+.blocks-table__placeholder-input {
+ width: 112px;
+ margin-right: 8px;
+ margin-bottom: 0;
+}
+.blocks-table__placeholder-input input {
+ height: 36px;
+}
+.blocks-table__placeholder-input .components-base-control__field {
+ margin-bottom: 0;
+}
+
+@media (min-width: 600px) {
+ .block-editor-template-part__selection-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .block-editor-template-part__selection-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .block-editor-template-part__selection-modal {
+ height: 70%;
+ }
+}
+
+.wp-block-text-columns .block-editor-rich-text__editable:focus {
+ outline: 1px solid #ddd;
+}
+
+.wp-block[data-align=center] > .wp-block-video {
+ text-align: center;
+}
+
+.wp-block-video {
+ position: relative;
+}
+.wp-block-video.is-transient video {
+ opacity: 0.3;
+}
+.wp-block-video .components-spinner {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-top: -9px;
+ margin-left: -9px;
+}
+
+.editor-video-poster-control .components-base-control__label {
+ display: block;
+}
+.editor-video-poster-control .components-button {
+ margin-right: 8px;
+}
+
+.block-library-video-tracks-editor {
+ z-index: 159990;
+}
+
+.block-library-video-tracks-editor > .components-popover__content {
+ width: 360px;
+}
+
+.block-library-video-tracks-editor__track-list-track {
+ display: flex;
+ place-content: space-between;
+ align-items: baseline;
+ padding-left: 12px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-label-language {
+ display: flex;
+ margin-top: 12px;
+}
+.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control {
+ width: 50%;
+}
+.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control:first-child {
+ margin-right: 16px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-kind-select {
+ max-width: 240px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-buttons-container {
+ display: flex;
+ place-content: space-between;
+ margin-top: 32px;
+}
+
+.block-library-video-tracks-editor__single-track-editor-edit-track-label {
+ margin-top: 4px;
+ margin-bottom: 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+ display: block;
+}
+
+.block-library-video-tracks-editor > .components-popover__content > div {
+ padding: 0;
+}
+
+.block-library-video-tracks-editor__track-list .components-menu-group__label,
+.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label {
+ padding: 0;
+}
+
+.block-library-video-tracks-editor__single-track-editor,
+.block-library-video-tracks-editor__track-list,
+.block-library-video-tracks-editor__add-tracks-container {
+ padding: 12px;
+}
+
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label {
+ margin-bottom: 4px;
+}
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field {
+ margin-bottom: 12px;
+}
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input {
+ margin-left: 0;
+}
+.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label {
+ margin-bottom: 4px;
+}
+
+.editor-styles-wrapper ul.wp-block-post-template {
+ padding-left: 0;
+ margin-left: 0;
+ list-style: none;
+}
+
+.block-library-query-toolbar__popover .components-popover__content {
+ min-width: 230px;
+}
+
+.wp-block-query__create-new-link {
+ padding: 0 16px 16px 56px;
+}
+
+.block-library-query__pattern-selection-content .block-editor-block-patterns-list {
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr;
+ grid-gap: 8px;
+}
+.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ margin-bottom: 0;
+}
+.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container {
+ max-height: 250px;
+}
+
+.block-editor-query-pattern__selection-modal .components-modal__content {
+ overflow: hidden;
+ padding: 0;
+}
+.block-editor-query-pattern__selection-modal .components-modal__content::before {
+ margin-bottom: 0;
+}
+
+@media (min-width: 600px) {
+ .block-editor-query-pattern__selection-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .block-editor-query-pattern__selection-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .block-editor-query-pattern__selection-modal {
+ height: 80%;
+ width: 80%;
+ max-height: none;
+ }
+}
+
+.wp-block[data-align=center] > .wp-block-query-pagination {
+ justify-content: center;
+}
+
+.editor-styles-wrapper .wp-block-query-pagination {
+ max-width: 100%;
+}
+.editor-styles-wrapper .wp-block-query-pagination.block-editor-block-list__layout {
+ margin: 0;
+}
+
+.wp-block-query-pagination > .wp-block-query-pagination-next,
+.wp-block-query-pagination > .wp-block-query-pagination-previous,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers {
+ margin-left: 0;
+ margin-top: 0.5em;
+ /*rtl:ignore*/
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-query-pagination > .wp-block-query-pagination-next:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-previous:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers:last-child {
+ /*rtl:ignore*/
+ margin-right: 0;
+}
+
+.wp-block-query-pagination-numbers a {
+ text-decoration: underline;
+}
+.wp-block-query-pagination-numbers .page-numbers {
+ margin-right: 2px;
+}
+.wp-block-query-pagination-numbers .page-numbers:last-child {
+ /*rtl:ignore*/
+ margin-right: 0;
+}
+
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-resizable-box__container {
+ border-radius: inherit;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder {
+ justify-content: center;
+ align-items: center;
+ box-shadow: none;
+ padding: 0;
+ color: currentColor;
+ background: transparent;
+ min-height: 200px;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-form-file-upload,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-form-file-upload {
+ display: none;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__preview,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__preview {
+ position: absolute;
+ top: 4px;
+ right: 4px;
+ bottom: 4px;
+ left: 4px;
+ background: rgba(255, 255, 255, 0.8);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder::before,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border: 1px dashed currentColor;
+ opacity: 0.4;
+ pointer-events: none;
+ border-radius: inherit;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__fieldset,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__fieldset {
+ width: auto;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button {
+ color: inherit;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 48px;
+ height: 48px;
+ border-radius: 50%;
+ position: relative;
+ visibility: hidden;
+ background: transparent;
+ transition: all 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button > svg,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button > svg {
+ color: #fff;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__illustration,
+.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__illustration {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ stroke: currentColor;
+ stroke-dasharray: 3;
+ opacity: 0.4;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image[style*=height] .components-placeholder {
+ min-height: 48px;
+ min-width: 48px;
+ height: 100%;
+ width: 100%;
+}
+.wp-block-post-featured-image.wp-block-post-featured-image.is-selected .components-button.components-button {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+ border-style: solid;
+ color: #fff;
+ opacity: 1;
+ visibility: visible;
+}
+
+div[data-type="core/post-featured-image"] img {
+ max-width: 100%;
+ height: auto;
+ display: block;
+}
+
+.wp-block-post-comments__placeholder * {
+ pointer-events: none;
+}
+
+.wp-block-post-comments-form * {
+ pointer-events: none;
+}
+.wp-block-post-comments-form *.block-editor-warning * {
+ pointer-events: auto;
+}
+
+:root .editor-styles-wrapper {
+ /*
+ * Our classes uses the same values we set for gradient value attributes,
+ * and we can not use spacing because of WP multi site kses rule.
+ */
+ /* stylelint-disable function-comma-space-after */
+ /* stylelint-enable function-comma-space-after */
+}
+:root .editor-styles-wrapper .has-very-light-gray-background-color {
+ background-color: #eee;
+}
+:root .editor-styles-wrapper .has-very-dark-gray-background-color {
+ background-color: #313131;
+}
+:root .editor-styles-wrapper .has-very-light-gray-color {
+ color: #eee;
+}
+:root .editor-styles-wrapper .has-very-dark-gray-color {
+ color: #313131;
+}
+:root .editor-styles-wrapper .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
+ background: linear-gradient(135deg, #00d084 0%, #0693e3 100%);
+}
+:root .editor-styles-wrapper .has-purple-crush-gradient-background {
+ background: linear-gradient(135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%);
+}
+:root .editor-styles-wrapper .has-hazy-dawn-gradient-background {
+ background: linear-gradient(135deg, #faaca8 0%, #dad0ec 100%);
+}
+:root .editor-styles-wrapper .has-subdued-olive-gradient-background {
+ background: linear-gradient(135deg, #fafae1 0%, #67a671 100%);
+}
+:root .editor-styles-wrapper .has-atomic-cream-gradient-background {
+ background: linear-gradient(135deg, #fdd79a 0%, #004a59 100%);
+}
+:root .editor-styles-wrapper .has-nightshade-gradient-background {
+ background: linear-gradient(135deg, #330968 0%, #31cdcf 100%);
+}
+:root .editor-styles-wrapper .has-midnight-gradient-background {
+ background: linear-gradient(135deg, #020381 0%, #2874fc 100%);
+}
+
+.editor-styles-wrapper {
+ --wp--preset--font-size--normal: 16px;
+ --wp--preset--font-size--huge: 42px;
+}
+
+.editor-styles-wrapper .has-regular-font-size {
+ font-size: 16px;
+}
+
+.editor-styles-wrapper .has-larger-font-size {
+ font-size: 42px;
+}
+
+.editor-styles-wrapper .has-normal-font-size {
+ font-size: var(--wp--preset--font-size--normal);
+}
+
+.editor-styles-wrapper .has-huge-font-size {
+ font-size: var(--wp--preset--font-size--huge);
+}
+
+/**
+ * Editor Normalization Styles
+ *
+ * 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.
+ */
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/editor.min.css b/static/wp-includes/css/dist/block-library/editor.min.css
new file mode 100755
index 0000000..4e16470
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/editor.min.css
@@ -0,0 +1,2 @@
+ul.wp-block-archives{padding-left:2.5em}.wp-block-audio{margin-left:0;margin-right:0;position:relative}.wp-block-audio.is-transient audio{opacity:.3}.wp-block-audio .components-spinner{position:absolute;top:50%;left:50%;margin-top:-9px;margin-left:-9px}.wp-block-avatar__image img{width:100%}.wp-block-avatar.aligncenter .components-resizable-box__container{margin:0 auto}.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}.edit-post-visual-editor .block-library-block__reusable-block-container .components-disabled .block-list-appender{display:none}.wp-block[data-align=center]>.wp-block-button{text-align:center;margin-left:auto;margin-right:auto}.wp-block[data-align=right]>.wp-block-button{
+ /*!rtl:ignore*/text-align:right}.wp-block-button{position:relative;cursor:text}.wp-block-button:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:-2px}.wp-block-button[data-rich-text-placeholder]:after{opacity:.8}.wp-block-button__inline-link{color:#757575;height:0;overflow:hidden;max-width:290px}.wp-block-button__inline-link-input__suggestions{max-width:290px}@media (min-width:782px){.wp-block-button__inline-link,.wp-block-button__inline-link-input__suggestions{max-width:260px}}@media (min-width:960px){.wp-block-button__inline-link,.wp-block-button__inline-link-input__suggestions{max-width:290px}}.is-selected .wp-block-button__inline-link{height:auto;overflow:visible}.wp-button-label__width .components-button-group{display:block}.wp-button-label__width .components-base-control__field{margin-bottom:12px}div[data-type="core/button"]{display:table}.wp-block-buttons>.wp-block,.wp-block-buttons>.wp-block-button.wp-block-button.wp-block-button.wp-block-button.wp-block-button{margin:0}.wp-block-buttons>.block-list-appender{display:inline-flex;align-items:center}.wp-block-buttons.is-vertical>.block-list-appender .block-list-appender__toggle{justify-content:flex-start}.wp-block-buttons>.wp-block-button:focus{box-shadow:none}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block[data-align=center]{margin-left:auto;margin-right:auto;margin-top:0;width:100%}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block[data-align=center] .wp-block-button{margin-bottom:0}.wp-block[data-align=center]>.wp-block-buttons{align-items:center;justify-content:center}.wp-block[data-align=right]>.wp-block-buttons{justify-content:flex-end}.wp-block-categories ul{padding-left:2.5em}.wp-block-categories ul ul{margin-top:6px}.wp-block-columns :where(.wp-block){max-width:none;margin-left:0;margin-right:0}html :where(.wp-block-column){margin-top:0;margin-bottom:0}.wp-block-comment-author-avatar__placeholder{border:1px dashed;width:100%;height:100%;stroke:currentColor;stroke-dasharray:3}.block-library-comments-toolbar__popover .components-popover__content{min-width:230px}.wp-block[data-align=center]>.wp-block-comments-pagination{justify-content:center}.editor-styles-wrapper .wp-block-comments-pagination{max-width:100%}.editor-styles-wrapper .wp-block-comments-pagination.block-editor-block-list__layout{margin:0}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{margin:.5em .5em .5em 0}.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child{margin-right:0}.wp-block-comments-pagination-numbers a{text-decoration:underline}.wp-block-comments-pagination-numbers .page-numbers{margin-right:2px}.wp-block-comments-pagination-numbers .page-numbers:last-child{margin-right:0}.wp-block-comments-title.has-background{padding:inherit}.editor-styles-wrapper .wp-block-cover{box-sizing:border-box}.wp-block-cover.is-placeholder{min-height:auto!important;padding:0!important}.wp-block-cover.is-placeholder .block-library-cover__resize-container{display:none}.wp-block-cover.is-placeholder .components-placeholder.is-large{min-height:240px;justify-content:flex-start;z-index:1}.wp-block-cover.is-placeholder .components-placeholder.is-large+.block-library-cover__resize-container{min-height:240px;display:block}.wp-block-cover.components-placeholder h2{color:inherit}.wp-block-cover.is-transient:before{background-color:#fff;opacity:.3}.wp-block-cover .components-spinner{position:absolute;z-index:1;top:50%;left:50%;transform:translate(-50%,-50%);margin:0}.wp-block-cover .block-editor-block-list__layout{width:100%}.wp-block-cover .wp-block-cover__inner-container{text-align:left;margin-left:0;margin-right:0}.wp-block-cover .wp-block-cover__placeholder-background-options{width:100%}[data-align=left]>.wp-block-cover,[data-align=right]>.wp-block-cover{max-width:420px;width:100%}.block-library-cover__reset-button{margin-left:auto}.block-library-cover__resize-container{position:absolute!important;top:0;left:0;right:0;bottom:0;min-height:50px}.block-library-cover__resize-container:not(.is-resizing){height:auto!important}.wp-block-cover>.components-drop-zone .components-drop-zone__content{opacity:.8!important}.block-editor-block-patterns-list__list-item .has-parallax.wp-block-cover{background-attachment:scroll}.wp-block-embed{margin-left:0;margin-right:0;clear:both}.wp-block-embed.is-loading{display:flex;justify-content:center}.wp-block-embed .components-placeholder__error{word-break:break-word}.wp-block-embed .components-placeholder__learn-more{margin-top:1em}.block-library-embed__interactive-overlay{position:absolute;top:0;left:0;right:0;bottom:0;opacity:0}.wp-block[data-align=left]>.wp-block-embed,.wp-block[data-align=right]>.wp-block-embed{max-width:360px;width:100%}.wp-block[data-align=left]>.wp-block-embed .wp-block-embed__wrapper,.wp-block[data-align=right]>.wp-block-embed .wp-block-embed__wrapper{min-width:280px}.wp-block-file{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;margin-bottom:0}.wp-block[data-align=left]>.wp-block-file,.wp-block[data-align=right]>.wp-block-file{height:auto}.wp-block-file .components-resizable-box__container{margin-bottom:1em}.wp-block-file .wp-block-file__preview{margin-bottom:1em;width:100%;height:100%}.wp-block-file .wp-block-file__preview-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.wp-block-file .wp-block-file__content-wrapper{flex-grow:1}.wp-block-file a{min-width:1em}.wp-block-file .wp-block-file__button-richtext-wrapper{display:inline-block;margin-left:.75em}.wp-block-freeform.block-library-rich-text__tinymce{height:auto}.wp-block-freeform.block-library-rich-text__tinymce li,.wp-block-freeform.block-library-rich-text__tinymce p{line-height:1.8}.wp-block-freeform.block-library-rich-text__tinymce ol,.wp-block-freeform.block-library-rich-text__tinymce ul{padding-left:2.5em;margin-left:0}.wp-block-freeform.block-library-rich-text__tinymce blockquote{margin:0;box-shadow:inset 0 0 0 0 #ddd;border-left:4px solid #000;padding-left:1em}.wp-block-freeform.block-library-rich-text__tinymce pre{white-space:pre-wrap;font-family:Menlo,Consolas,monaco,monospace;font-size:15px;color:#1e1e1e}.wp-block-freeform.block-library-rich-text__tinymce>:first-child{margin-top:0}.wp-block-freeform.block-library-rich-text__tinymce>:last-child{margin-bottom:0}.wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus{outline:none}.wp-block-freeform.block-library-rich-text__tinymce a{color:var(--wp-admin-theme-color)}.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected]{padding:0 2px;margin:0 -2px;border-radius:2px;box-shadow:0 0 0 1px #e5f5fa;background:#e5f5fa}.wp-block-freeform.block-library-rich-text__tinymce code{padding:2px;border-radius:2px;color:#1e1e1e;background:#f0f0f0;font-family:Menlo,Consolas,monaco,monospace;font-size:14px}.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected]{background:#ddd}.wp-block-freeform.block-library-rich-text__tinymce .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-freeform.block-library-rich-text__tinymce .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-freeform.block-library-rich-text__tinymce .aligncenter{display:block;margin-left:auto;margin-right:auto}.wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag{width:96%;height:20px;display:block;margin:15px auto;outline:0;cursor:default;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);background-size:1900px 20px;background-repeat:no-repeat;background-position:50%}.wp-block-freeform.block-library-rich-text__tinymce img::selection{background-color:transparent}.wp-block-freeform.block-library-rich-text__tinymce div.mceTemp{-ms-user-select:element}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption{margin:0;max-width:100%}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a,.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img{display:block}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption,.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption *{-webkit-user-drag:none}.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd{padding-top:.5em;margin:0}.wp-block-freeform.block-library-rich-text__tinymce .wpview{width:99.99%;position:relative;clear:both;margin-bottom:16px;border:1px solid transparent}.wp-block-freeform.block-library-rich-text__tinymce .wpview iframe{display:block;max-width:100%;background:transparent}.wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim{position:absolute;top:0;right:0;bottom:0;left:0}.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected="2"] .mce-shim{display:none}.wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder{border:1px dashed #ddd;padding:10px}.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error{border:1px solid #ddd;padding:1em 0;margin:0;word-wrap:break-word}.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p{margin:0;text-align:center}.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder,.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error{border-color:transparent}.wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons{display:block;margin:0 auto;width:32px;height:32px;font-size:32px}.wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery:after{content:"";display:table;clear:both}.wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus{outline:none}.wp-block-freeform.block-library-rich-text__tinymce .gallery a{cursor:default}.wp-block-freeform.block-library-rich-text__tinymce .gallery{margin:auto -6px;padding:6px 0;line-height:1;overflow-x:hidden}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item{float:left;margin:0;text-align:center;padding:6px;box-sizing:border-box}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption,.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon{margin:0}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption{font-size:13px;margin:4px 0}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item{width:100%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item{width:50%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item{width:33.3333333333%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item{width:25%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item{width:20%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item{width:16.6666666667%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item{width:14.2857142857%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item{width:12.5%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item{width:11.1111111111%}.wp-block-freeform.block-library-rich-text__tinymce .gallery img{max-width:100%;height:auto;border:none;padding:0}div[data-type="core/freeform"]:before{transition:border-color .1s linear,box-shadow .1s linear;border:1px solid #ddd;outline:1px solid transparent}@media (prefers-reduced-motion:reduce){div[data-type="core/freeform"]:before{transition-duration:0s;transition-delay:0s}}div[data-type="core/freeform"].is-selected:before{border-color:#1e1e1e}div[data-type="core/freeform"] .block-editor-block-contextual-toolbar+div{margin-top:0;padding-top:0}div[data-type="core/freeform"].is-selected .block-library-rich-text__tinymce:after{content:"";display:table;clear:both}.mce-toolbar-grp .mce-btn.mce-active:hover button,.mce-toolbar-grp .mce-btn.mce-active:hover i,.mce-toolbar-grp .mce-btn.mce-active button,.mce-toolbar-grp .mce-btn.mce-active i{color:#1e1e1e}.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last{margin-right:0;margin-left:8px}.mce-toolbar-grp .mce-btn i{font-style:normal}.block-library-classic__toolbar{display:none;width:auto;position:sticky;z-index:31;top:0;border:1px solid #ddd;border-bottom:none;border-radius:2px;margin:0 0 8px;padding:0}div[data-type="core/freeform"].is-selected .block-library-classic__toolbar{display:block;border-color:#1e1e1e}.block-library-classic__toolbar .mce-tinymce{box-shadow:none}@media (min-width:600px){.block-library-classic__toolbar{padding:0}}.block-library-classic__toolbar:empty{display:block;background:#f5f5f5;border-bottom:1px solid #e2e4e7}.block-library-classic__toolbar:empty:before{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;content:attr(data-placeholder);color:#555d66;line-height:37px;padding:14px}.block-library-classic__toolbar div.mce-toolbar-grp{border-bottom:1px solid #1e1e1e}.block-library-classic__toolbar .mce-menubar,.block-library-classic__toolbar .mce-menubar>div,.block-library-classic__toolbar .mce-tinymce-inline,.block-library-classic__toolbar .mce-tinymce-inline>div,.block-library-classic__toolbar div.mce-toolbar-grp,.block-library-classic__toolbar div.mce-toolbar-grp>div{height:auto!important;width:100%!important}.block-library-classic__toolbar .mce-container-body.mce-abs-layout{overflow:visible}.block-library-classic__toolbar .mce-menubar,.block-library-classic__toolbar div.mce-toolbar-grp{position:static}.block-library-classic__toolbar .mce-toolbar-grp>div{padding:1px 3px}.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar,figure.wp-block-gallery{display:block}figure.wp-block-gallery.has-nested-images .components-drop-zone{display:none;pointer-events:none}figure.wp-block-gallery>.blocks-gallery-caption{flex:0 0 100%}figure.wp-block-gallery>.blocks-gallery-media-placeholder-wrapper{flex-basis:100%}figure.wp-block-gallery .wp-block-image .components-notice.is-error{display:block}figure.wp-block-gallery .wp-block-image .components-notice__content{margin:4px 0}figure.wp-block-gallery .wp-block-image .components-notice__dismiss{position:absolute;top:0;right:5px}figure.wp-block-gallery .block-editor-media-placeholder.is-appender .components-placeholder__label{display:none}figure.wp-block-gallery .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__button{margin-bottom:0}figure.wp-block-gallery .block-editor-media-placeholder{margin:0}figure.wp-block-gallery .block-editor-media-placeholder .components-placeholder__label{display:flex}figure.wp-block-gallery .block-editor-media-placeholder figcaption{z-index:2}figure.wp-block-gallery .components-spinner{position:absolute;top:50%;left:50%;margin-top:-9px;margin-left:-9px}.gallery-settings-buttons .components-button:first-child{margin-right:8px}.gallery-image-sizes .components-base-control__label{display:block;margin-bottom:4px}.gallery-image-sizes .gallery-image-sizes__loading{display:flex;align-items:center;color:#757575;font-size:12px}.gallery-image-sizes .components-spinner{margin:0 8px 0 4px}.blocks-gallery-item figure:not(.is-selected):focus,.blocks-gallery-item img:focus{outline:none}.blocks-gallery-item figure.is-selected:before{box-shadow:0 0 0 1px #fff inset,0 0 0 3px var(--wp-admin-theme-color) inset;content:"";outline:2px solid transparent;position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none}.blocks-gallery-item figure.is-transient img{opacity:.3}.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu{display:inline-flex}.blocks-gallery-item .block-editor-media-placeholder{margin:0;height:100%}.blocks-gallery-item .block-editor-media-placeholder .components-placeholder__label{display:flex}.block-library-gallery-item__inline-menu{display:none;position:absolute;top:-2px;margin:8px;z-index:20;transition:box-shadow .2s ease-out;border-radius:2px;background:#fff;border:1px solid #1e1e1e}@media (prefers-reduced-motion:reduce){.block-library-gallery-item__inline-menu{transition-duration:0s;transition-delay:0s}}.block-library-gallery-item__inline-menu:hover{box-shadow:0 2px 6px rgba(0,0,0,.05)}@media (min-width:600px){.columns-7 .block-library-gallery-item__inline-menu,.columns-8 .block-library-gallery-item__inline-menu{padding:2px}}.block-library-gallery-item__inline-menu .components-button.has-icon:not(:focus){border:none;box-shadow:none}@media (min-width:600px){.columns-7 .block-library-gallery-item__inline-menu .components-button.has-icon,.columns-8 .block-library-gallery-item__inline-menu .components-button.has-icon{padding:0;width:inherit;height:inherit}}.block-library-gallery-item__inline-menu.is-left{left:-2px}.block-library-gallery-item__inline-menu.is-right{right:-2px}.wp-block-gallery ul.blocks-gallery-grid{padding:0;margin:0}@media (min-width:600px){.wp-block-update-gallery-modal{max-width:480px}}.wp-block-update-gallery-modal-buttons{display:flex;justify-content:flex-end;gap:12px}.wp-block-group .block-editor-block-list__insertion-point{left:0;right:0}[data-type="core/group"].is-selected .block-list-appender{margin-left:0;margin-right:0}[data-type="core/group"].is-selected .has-background .block-list-appender{margin-top:18px;margin-bottom:18px}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child{gap:inherit;pointer-events:none}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child,.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content,.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter{display:inherit;width:100%;flex-direction:inherit;flex:1}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child:after{content:"";display:flex;border:1px dashed;opacity:.4;border-radius:2px;flex:1;pointer-events:none;min-height:48px}.is-layout-flex.block-editor-block-list__block .block-list-appender:only-child .block-editor-inserter{pointer-events:all}.block-library-html__edit .block-library-html__preview-overlay{position:absolute;width:100%;height:100%;top:0;left:0}.block-library-html__edit .block-editor-plain-text{font-family:Menlo,Consolas,monaco,monospace!important;color:#1e1e1e!important;background:#fff!important;padding:12px!important;border:1px solid #1e1e1e!important;box-shadow:none!important;border-radius:2px!important;max-height:250px;font-size:16px!important}@media (min-width:600px){.block-library-html__edit .block-editor-plain-text{font-size:13px!important}}.block-library-html__edit .block-editor-plain-text:focus{border-color:var(--wp-admin-theme-color)!important;box-shadow:0 0 0 1px var(--wp-admin-theme-color)!important;outline:2px solid transparent!important}figure.wp-block-image:not(.wp-block){margin:0}.wp-block-image{position:relative}.wp-block-image .is-applying img,.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{position:absolute;top:50%;left:50%;margin-top:-9px;margin-left:-9px}.wp-block-image:not(.is-style-rounded)>div:not(.components-placeholder){border-radius:inherit}.wp-block-image .components-resizable-box__container{display:inline-block}.wp-block-image .components-resizable-box__container img{display:block;width:inherit;height:inherit}.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{position:absolute;left:0;right:0;margin:-1px 0}@media (min-width:600px){.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal{margin:-1px}}[data-align=full]>.wp-block-image img,[data-align=wide]>.wp-block-image img{height:auto;width:100%}.wp-block[data-align=center]>.wp-block-image,.wp-block[data-align=left]>.wp-block-image,.wp-block[data-align=right]>.wp-block-image{display:table}.wp-block[data-align=center]>.wp-block-image>figcaption,.wp-block[data-align=left]>.wp-block-image>figcaption,.wp-block[data-align=right]>.wp-block-image>figcaption{display:table-caption;caption-side:bottom}.wp-block[data-align=left]>.wp-block-image{margin:.5em 1em .5em 0}.wp-block[data-align=right]>.wp-block-image{margin:.5em 0 .5em 1em}.wp-block[data-align=center]>.wp-block-image{margin-left:auto;margin-right:auto;text-align:center}.wp-block-image__crop-area{position:relative;max-width:100%;width:100%}.wp-block-image__crop-icon{padding:0 8px;min-width:48px;display:flex;justify-content:center;align-items:center}.wp-block-image__crop-icon svg{fill:currentColor}.wp-block-image__zoom .components-popover__content{overflow:visible;min-width:260px}.wp-block-image__zoom .components-range-control{flex:1}.wp-block-image__zoom .components-base-control__field{display:flex;margin-bottom:0;flex-direction:column;align-items:flex-start}.wp-block-image__aspect-ratio{height:46px;margin-bottom:-8px;display:flex;align-items:center}.wp-block-image__aspect-ratio .components-button{width:36px;padding-left:0;padding-right:0}.wp-block-latest-posts{padding-left:2.5em}.wp-block-latest-posts.is-grid{padding-left:0}.wp-block-latest-posts li a>div{display:inline}.edit-post-visual-editor .wp-block-latest-posts.is-grid li{margin-bottom:20px}.editor-latest-posts-image-alignment-control .components-base-control__label{display:block}.editor-latest-posts-image-alignment-control .components-toolbar{border-radius:2px}.wp-block-media-text__media{position:relative}.wp-block-media-text__media.is-transient img{opacity:.3}.wp-block-media-text__media .components-spinner{position:absolute;top:50%;left:50%;margin-top:-9px;margin-left:-9px}.wp-block-media-text .__resizable_base__{grid-column:1/span 2;grid-row:2}.wp-block-media-text .editor-media-container__resizer{width:100%!important}.wp-block-media-text.is-image-fill .editor-media-container__resizer{height:100%!important}.wp-block-media-text>.block-editor-block-list__layout>.block-editor-block-list__block{max-width:unset}.block-editor-block-list__block[data-type="core/more"]{max-width:100%;text-align:center;margin-top:28px;margin-bottom:28px}.wp-block-more{display:block;text-align:center;white-space:nowrap}.wp-block-more input[type=text]{position:relative;font-size:13px;text-transform:uppercase;font-weight:600;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:#757575;border:none;box-shadow:none;white-space:nowrap;text-align:center;margin:0;border-radius:4px;background:#fff;padding:6px 8px;height:24px;max-width:100%}.wp-block-more input[type=text]:focus{box-shadow:none}.wp-block-more:before{content:"";position:absolute;top:50%;left:0;right:0;border-top:3px dashed #ccc}.editor-styles-wrapper .wp-block-navigation ul{margin-top:0;margin-bottom:0;margin-left:0;padding-left:0}.editor-styles-wrapper .wp-block-navigation .wp-block-navigation-item.wp-block{margin:revert}.wp-block-navigation-item__label{display:inline}.wp-block-navigation__container.is-parent-of-selected-block{visibility:visible;opacity:1;overflow:visible}.wp-block-navigation-item,.wp-block-navigation__container{background-color:inherit}.wp-block-navigation:not(.is-selected):not(.has-child-selected) .has-child:hover>.wp-block-navigation__submenu-container{opacity:0;visibility:hidden}.has-child.has-child-selected>.wp-block-navigation__submenu-container,.has-child.is-selected>.wp-block-navigation__submenu-container{display:flex;opacity:1;visibility:visible}.is-dragging-components-draggable .has-child.is-dragging-within>.wp-block-navigation__submenu-container{opacity:1;visibility:visible}.is-editing>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.is-dragging-components-draggable .wp-block-navigation-link>.wp-block-navigation__container{opacity:1;visibility:hidden}.is-dragging-components-draggable .wp-block-navigation-link>.wp-block-navigation__container .block-editor-block-draggable-chip-wrapper{visibility:visible}.is-editing>.wp-block-navigation__submenu-container>.block-list-appender{display:block;position:static;width:100%}.is-editing>.wp-block-navigation__submenu-container>.block-list-appender .block-editor-button-block-appender{color:#fff;background:#1e1e1e;padding:0;width:24px;border-radius:2px;margin-right:0;margin-left:auto}.wp-block-navigation__submenu-container .block-list-appender{display:none}.block-library-colors-selector{width:auto}.block-library-colors-selector .block-library-colors-selector__toggle{display:block;margin:0 auto;padding:3px;width:auto}.block-library-colors-selector .block-library-colors-selector__icon-container{height:30px;position:relative;margin:0 auto;padding:3px;display:flex;align-items:center;border-radius:4px}.block-library-colors-selector .block-library-colors-selector__state-selection{margin-left:auto;margin-right:auto;border-radius:11px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);width:22px;min-width:22px;height:22px;min-height:22px;line-height:20px;padding:2px}.block-library-colors-selector .block-library-colors-selector__state-selection>svg{min-width:auto!important}.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color>svg,.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color>svg path{color:inherit}.block-library-colors-selector__popover .color-palette-controller-container{padding:16px}.block-library-colors-selector__popover .components-base-control__label{height:20px;line-height:20px}.block-library-colors-selector__popover .component-color-indicator{float:right;margin-top:2px}.block-library-colors-selector__popover .components-panel__body-title{display:none}.wp-block-navigation .block-editor-button-block-appender{background-color:#1e1e1e;color:#fff}.wp-block-navigation .block-editor-button-block-appender.block-editor-button-block-appender.block-editor-button-block-appender{padding:0}.wp-block-navigation .wp-block .wp-block .block-editor-button-block-appender{background-color:transparent;color:#1e1e1e}@keyframes loadingpulse{0%{opacity:1}50%{opacity:.5}to{opacity:1}}.components-placeholder.wp-block-navigation-placeholder{outline:none;padding:0;box-shadow:none;background:none;min-height:0;color:inherit}.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset{font-size:inherit}.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset .components-button{margin-bottom:0}.wp-block-navigation.is-selected .components-placeholder.wp-block-navigation-placeholder{color:#1e1e1e}.wp-block-navigation-placeholder .components-spinner{margin-top:0}.wp-block-navigation-placeholder__preview{display:flex;align-items:center;min-width:96px;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:currentColor;background:transparent}.wp-block-navigation.is-selected .wp-block-navigation-placeholder__preview{display:none}.wp-block-navigation-placeholder__preview:before{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;border:1px dashed;opacity:.4;pointer-events:none;border-radius:inherit}.wp-block-navigation-placeholder__preview>svg{fill:currentColor;opacity:.4}.wp-block-navigation.is-vertical .is-medium .components-placeholder__fieldset,.wp-block-navigation.is-vertical .is-small .components-placeholder__fieldset{min-height:90px}.wp-block-navigation.is-vertical .is-large .components-placeholder__fieldset{min-height:132px}.wp-block-navigation-placeholder__controls,.wp-block-navigation-placeholder__preview{padding:6px 8px;flex-direction:row;align-items:flex-start}.wp-block-navigation-placeholder__controls{border-radius:2px;background-color:#fff;box-shadow:inset 0 0 0 1px #1e1e1e;display:none;position:relative;z-index:1;float:left;width:100%}.wp-block-navigation.is-selected .wp-block-navigation-placeholder__controls{display:flex}.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator+hr,.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator+hr{display:none}.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions,.wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions{flex-direction:column;align-items:flex-start}.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr,.wp-block-navigation.is-vertical .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr{display:none}.wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__icon{margin-right:12px;height:36px}.wp-block-navigation-placeholder__actions__indicator{display:flex;padding:0 6px 0 0;align-items:center;justify-content:flex-start;line-height:0;height:36px;margin-left:4px}.wp-block-navigation-placeholder__actions__indicator svg{margin-right:4px;fill:currentColor}.wp-block-navigation .components-placeholder.is-medium .components-placeholder__fieldset{flex-direction:row!important}.wp-block-navigation-placeholder__actions{display:flex;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;gap:6px;align-items:center;height:100%}.wp-block-navigation-placeholder__actions .components-dropdown,.wp-block-navigation-placeholder__actions>.components-button{margin-right:0}.wp-block-navigation-placeholder__actions.wp-block-navigation-placeholder__actions hr{border:0;min-height:1px;min-width:1px;background-color:#1e1e1e;margin:auto 0;height:100%;max-height:16px}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.is-menu-open) .components-button.wp-block-navigation__responsive-container-close{display:none}}.wp-block-navigation__responsive-container.is-menu-open{position:fixed;top:155px}@media (min-width:782px){.wp-block-navigation__responsive-container.is-menu-open{top:93px;left:36px}}@media (min-width:960px){.wp-block-navigation__responsive-container.is-menu-open{left:160px}}@media (min-width:782px){.has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open{top:141px}}.is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,.is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open{top:141px}.is-sidebar-opened .wp-block-navigation__responsive-container.is-menu-open{right:280px}.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open{left:0;top:155px}@media (min-width:782px){.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open{top:61px}}@media (min-width:782px){.is-fullscreen-mode .has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open{top:109px}}.is-fullscreen-mode .is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,.is-fullscreen-mode .is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open{top:109px}body.editor-styles-wrapper .wp-block-navigation__responsive-container.is-menu-open{top:0;right:0;bottom:0;left:0}@media (min-width:600px){.wp-block-navigation__responsive-close{pointer-events:none}.wp-block-navigation__responsive-close .block-editor-block-list__layout *,.wp-block-navigation__responsive-close .wp-block-navigation__responsive-container-close{pointer-events:all}}.wp-block-navigation__responsive-close .wp-block-pages-list__item__link{pointer-events:none}.components-button.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close,.components-button.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{padding:0;height:auto;color:inherit}.is-menu-open .wp-block-navigation__responsive-container-content * .block-list-appender{margin-top:16px}@keyframes fadein{0%{opacity:0}to{opacity:1}}.wp-block-navigation .components-spinner{padding:8px 12px}.wp-block-navigation__unsaved-changes{position:relative}.wp-block-navigation__unsaved-changes .components-spinner{position:absolute;top:calc(50% - 8px);left:calc(50% - 8px);opacity:0;animation:fadein .5s linear 2s normal forwards}@keyframes fadeouthalf{0%{opacity:1}to{opacity:.5}}.wp-block-navigation__unsaved-changes-overlay.is-saving{opacity:1;animation:fadeouthalf .5s linear 2s normal forwards}.wp-block-navigation-delete-menu-button{width:100%;justify-content:center;margin-bottom:16px}.wp-block-navigation__overlay-menu-preview{display:flex;align-items:center;width:100%;background-color:#f0f0f0;padding:0 24px;height:64px;margin-bottom:12px}.wp-block-navigation__overlay-menu-preview.open{box-shadow:inset 0 0 0 1px #e0e0e0;outline:1px solid transparent;background-color:#fff}.wp-block-navigation-placeholder__actions hr+hr,.wp-block-navigation__toolbar-menu-selector.components-toolbar-group:empty{display:none}.wp-block-navigation .has-child{cursor:pointer}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{z-index:28}.wp-block-navigation .has-child:hover .wp-block-navigation__submenu-container{z-index:29}.wp-block-navigation .has-child.has-child-selected>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child.is-selected>.wp-block-navigation__submenu-container{visibility:visible!important;opacity:1!important;min-width:200px!important;height:auto!important;width:auto!important;overflow:visible!important}.wp-block-navigation-item .wp-block-navigation-item__content{cursor:text}.wp-block-navigation-item.is-editing,.wp-block-navigation-item.is-selected{min-width:20px}.wp-block-navigation-item .block-list-appender{margin:16px auto 16px 16px}.wp-block-navigation-link__invalid-item{color:#000}.wp-block-navigation-link__missing_text-tooltip{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden}.wp-block-navigation-link__placeholder{position:relative;text-decoration:none!important;box-shadow:none!important;background-image:none!important}.wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span{--wp-underline-color:var(--wp-admin-theme-color);background-image:linear-gradient(45deg,transparent 20%,var(--wp-underline-color) 30%,var(--wp-underline-color) 36%,transparent 46%),linear-gradient(135deg,transparent 54%,var(--wp-underline-color) 64%,var(--wp-underline-color) 70%,transparent 80%);background-position:0 100%;background-size:6px 3px;background-repeat:repeat-x;padding-bottom:.1em}.is-dark-theme .wp-block-navigation-link__placeholder .wp-block-navigation-link__placeholder-text span{--wp-underline-color:#fff}.wp-block-navigation-link__placeholder.wp-block-navigation-item__content{cursor:pointer}.link-control-transform{border-top:1px solid #ccc;padding:0 16px 8px}.link-control-transform__subheading{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.link-control-transform__items{display:flex;justify-content:space-between}.link-control-transform__item{flex-basis:33%;flex-direction:column;gap:8px;height:auto}.wp-block-navigation-submenu{display:block}.wp-block-navigation-submenu .wp-block-navigation__submenu-container{z-index:28}.wp-block-navigation-submenu.has-child-selected>.wp-block-navigation__submenu-container,.wp-block-navigation-submenu.is-selected>.wp-block-navigation__submenu-container{visibility:visible!important;opacity:1!important;min-width:200px!important;height:auto!important;width:auto!important;position:absolute;left:-1px;top:100%}@media (min-width:782px){.wp-block-navigation-submenu.has-child-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation-submenu.is-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation-submenu.has-child-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before,.wp-block-navigation-submenu.is-selected>.wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:.5em;background:transparent}}.block-editor-block-list__block[data-type="core/nextpage"]{max-width:100%;text-align:center;margin-top:28px;margin-bottom:28px}.wp-block-nextpage{display:block;text-align:center;white-space:nowrap}.wp-block-nextpage>span{font-size:13px;position:relative;text-transform:uppercase;font-weight:600;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:#757575;border-radius:4px;background:#fff;padding:6px 8px;height:24px}.wp-block-nextpage:before{content:"";position:absolute;top:50%;left:0;right:0;border-top:3px dashed #ccc}.wp-block-navigation .wp-block-page-list,.wp-block-navigation .wp-block-page-list>div{background-color:inherit}.wp-block-navigation.items-justified-space-between .wp-block-page-list,.wp-block-navigation.items-justified-space-between .wp-block-page-list>div{display:contents;flex:1}.wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list,.wp-block-navigation.items-justified-space-between.has-child-selected .wp-block-page-list>div,.wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list,.wp-block-navigation.items-justified-space-between.is-selected .wp-block-page-list>div{flex:inherit}.wp-block-pages-list__item__link{pointer-events:none}@media (min-width:600px){.wp-block-page-list-modal{max-width:480px}}.wp-block-page-list-modal-buttons{display:flex;justify-content:flex-end;gap:12px}.wp-block-page-list .open-on-click:focus-within>.wp-block-navigation__submenu-container{visibility:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-page-list .components-notice{margin-left:0}.block-editor-block-list__block[data-type="core/paragraph"].has-drop-cap:focus{min-height:auto!important}.block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder]{opacity:1}.block-editor-block-list__block[data-empty=true]+.block-editor-block-list__block[data-empty=true] [data-rich-text-placeholder]{opacity:0}.wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline{display:inline-block}.wp-block-pullquote.has-text-align-left p,.wp-block-pullquote.has-text-align-right p,.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{font-size:28px;line-height:1.6}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{text-transform:none;font-style:normal}.wp-block-pullquote .wp-block-pullquote__citation{color:inherit}.wp-block-rss li a>div{display:inline}.wp-block-rss__placeholder-form{display:flex;align-items:stretch}.wp-block-rss__placeholder-form>*{margin-bottom:8px}@media (min-width:782px){.wp-block-rss__placeholder-form>*{margin-bottom:0}}.wp-block-rss__placeholder-input{display:flex;align-items:stretch;flex-grow:1}.wp-block-rss__placeholder-input .components-base-control__field{display:flex;align-items:stretch;flex-grow:1;margin:0 8px 0 0}.wp-block[data-align=center] .wp-block-search .wp-block-search__inside-wrapper{margin:auto}.wp-block-search .wp-block-search__button{height:auto;border-radius:initial;display:flex;align-items:center}.wp-block-search__components-button-group{margin-top:10px}.block-editor-block-list__block[data-type="core/separator"]{padding-top:.1px;padding-bottom:.1px}.block-editor-block-list__block[data-type="core/separator"].wp-block-separator.is-style-dots{background:none!important}[data-type="core/shortcode"] .block-editor-plain-text{max-height:250px}[data-type="core/shortcode"].components-placeholder{min-height:0}.blocks-shortcode__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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal}@media (prefers-reduced-motion:reduce){.blocks-shortcode__textarea{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.blocks-shortcode__textarea{font-size:13px;line-height:normal}}.blocks-shortcode__textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.blocks-shortcode__textarea::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.blocks-shortcode__textarea::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.blocks-shortcode__textarea:-ms-input-placeholder{color:rgba(30,30,30,.62)}.wp-block-site-logo.aligncenter>div,.wp-block[data-align=center]>.wp-block-site-logo{display:table;margin-left:auto;margin-right:auto}.wp-block-site-logo a{pointer-events:none}.wp-block-site-logo .custom-logo-link{cursor:inherit}.wp-block-site-logo .custom-logo-link:focus{box-shadow:none}.wp-block-site-logo .custom-logo-link.is-transient img{opacity:.3}.wp-block-site-logo img{display:block;height:auto;max-width:100%}.wp-block-site-logo.wp-block-site-logo .components-placeholder,.wp-block-site-logo.wp-block-site-logo .components-resizable-box__container{border-radius:inherit}.wp-block-site-logo.wp-block-site-logo.is-default-size .components-placeholder{height:120px;width:120px}.wp-block-site-logo.wp-block-site-logo .components-placeholder{display:flex;justify-content:center;align-items:center;box-shadow:none;padding:0;min-height:48px;min-width:48px;height:100%;width:100%;color:currentColor;background:transparent}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-form-file-upload{display:none}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__preview{position:absolute;top:4px;right:4px;bottom:4px;left:4px;background:hsla(0,0%,100%,.8);display:flex;align-items:center;justify-content:center}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-drop-zone__content-text{display:none}.wp-block-site-logo.wp-block-site-logo .components-placeholder:before{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;border:1px dashed;opacity:.4;pointer-events:none;border-radius:inherit}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__fieldset{width:auto}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button{color:inherit;padding:0;display:flex;justify-content:center;align-items:center;width:48px;height:48px;border-radius:50%;position:relative;visibility:hidden;background:transparent;transition:all .1s linear}@media (prefers-reduced-motion:reduce){.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button{transition-duration:0s;transition-delay:0s}}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-button.components-button>svg{color:#fff}.wp-block-site-logo.wp-block-site-logo .components-placeholder .components-placeholder__illustration{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;stroke:currentColor;stroke-dasharray:3;opacity:.4}.wp-block-site-logo.wp-block-site-logo.is-selected .components-button.components-button{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);border-style:solid;color:#fff;opacity:1;visibility:visible}.wp-block-site-tagline__placeholder,.wp-block-site-title__placeholder{padding:1em 0;border:1px dashed}.wp-block-social-links .wp-social-link{line-height:0}.wp-block-social-links .wp-social-link button{font-size:inherit;color:currentColor;height:auto;line-height:0;padding:.25em}.wp-block-social-links.is-style-pill-shape .wp-social-link button{padding-left:.66667em;padding-right:.66667em}.wp-block-social-links.is-style-logos-only .wp-social-link button{padding:0}.wp-block-social-links div.block-editor-url-input{display:inline-block;margin-left:8px}.wp-block-social-links.wp-block-social-links{background:none}.wp-social-link:hover{transform:none}.editor-styles-wrapper .wp-block-social-links{padding:0}.wp-block-social-links__social-placeholder{display:flex;opacity:.8;list-style:none}.wp-block-social-links__social-placeholder>.wp-social-link{padding-left:0!important;margin-left:0!important;padding-right:0!important;margin-right:0!important;width:0!important;visibility:hidden}.wp-block-social-links__social-placeholder>.wp-block-social-links__social-placeholder-icons{display:flex}.wp-block-social-links__social-placeholder .wp-social-link{padding:.25em}.is-style-pill-shape .wp-block-social-links__social-placeholder .wp-social-link{padding-left:.66667em;padding-right:.66667em}.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link{padding:0}.wp-block-social-links__social-placeholder .wp-social-link:before{content:"";display:block;width:1em;height:1em;border-radius:50%}.is-style-logos-only .wp-block-social-links__social-placeholder .wp-social-link:before{background:currentColor}.wp-block-social-links .wp-block-social-links__social-prompt{min-height:24px;list-style:none;order:2;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:24px;margin-top:auto;margin-bottom:auto;cursor:default;padding-right:8px}.wp-block[data-align=center]>.wp-block-social-links{justify-content:center}.block-editor-block-preview__content .components-button:disabled{opacity:1}.wp-social-link.wp-social-link__is-incomplete{opacity:.5}@media (prefers-reduced-motion:reduce){.wp-social-link.wp-social-link__is-incomplete{transition-duration:0s;transition-delay:0s}}.wp-block-social-links .is-selected .wp-social-link__is-incomplete,.wp-social-link.wp-social-link__is-incomplete:focus,.wp-social-link.wp-social-link__is-incomplete:hover{opacity:1}.block-editor-block-list__block[data-type="core/spacer"]:before{content:"";display:block;position:absolute;z-index:1;width:100%;min-height:8px;min-width:8px;height:100%}.block-library-spacer__resize-container.has-show-handle,.wp-block-spacer.is-hovered .block-library-spacer__resize-container{background:rgba(0,0,0,.1)}.is-dark-theme .block-library-spacer__resize-container.has-show-handle,.is-dark-theme .wp-block-spacer.is-hovered .block-library-spacer__resize-container{background:hsla(0,0%,100%,.15)}.block-library-spacer__resize-container{clear:both}.block-library-spacer__resize-container:not(.is-resizing){height:100%!important;width:100%!important}.block-library-spacer__resize-container .components-resizable-box__handle:before{content:none}.block-library-spacer__resize-container.resize-horizontal{margin-bottom:0}.wp-block-table{margin:0}.wp-block[data-align=center]>.wp-block-table,.wp-block[data-align=left]>.wp-block-table,.wp-block[data-align=right]>.wp-block-table{height:auto}.wp-block[data-align=center]>.wp-block-table table,.wp-block[data-align=left]>.wp-block-table table,.wp-block[data-align=right]>.wp-block-table table{width:auto}.wp-block[data-align=center]>.wp-block-table td,.wp-block[data-align=center]>.wp-block-table 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{word-break:break-word}.wp-block[data-align=center]>.wp-block-table{text-align:initial}.wp-block[data-align=center]>.wp-block-table table{margin:0 auto}.wp-block-table td,.wp-block-table th{border:1px solid}.wp-block-table td.is-selected,.wp-block-table th.is-selected{border-color:var(--wp-admin-theme-color);box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color);border-style:double}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.blocks-table__placeholder-form.blocks-table__placeholder-form{display:flex;flex-direction:column;align-items:flex-start}.blocks-table__placeholder-form.blocks-table__placeholder-form>*{margin-bottom:8px}@media (min-width:782px){.blocks-table__placeholder-form.blocks-table__placeholder-form{flex-direction:row;align-items:flex-end}.blocks-table__placeholder-form.blocks-table__placeholder-form>*{margin-bottom:0}}.blocks-table__placeholder-input{width:112px;margin-right:8px;margin-bottom:0}.blocks-table__placeholder-input input{height:36px}.blocks-table__placeholder-input .components-base-control__field{margin-bottom:0}@media (min-width:600px){.block-editor-template-part__selection-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.block-editor-template-part__selection-modal{width:750px}}@media (min-width:960px){.block-editor-template-part__selection-modal{height:70%}}.wp-block-text-columns .block-editor-rich-text__editable:focus{outline:1px solid #ddd}.wp-block[data-align=center]>.wp-block-video{text-align:center}.wp-block-video{position:relative}.wp-block-video.is-transient video{opacity:.3}.wp-block-video .components-spinner{position:absolute;top:50%;left:50%;margin-top:-9px;margin-left:-9px}.editor-video-poster-control .components-base-control__label{display:block}.editor-video-poster-control .components-button{margin-right:8px}.block-library-video-tracks-editor{z-index:159990}.block-library-video-tracks-editor>.components-popover__content{width:360px}.block-library-video-tracks-editor__track-list-track{display:flex;place-content:space-between;align-items:baseline;padding-left:12px}.block-library-video-tracks-editor__single-track-editor-label-language{display:flex;margin-top:12px}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control{width:50%}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control:first-child{margin-right:16px}.block-library-video-tracks-editor__single-track-editor-kind-select{max-width:240px}.block-library-video-tracks-editor__single-track-editor-buttons-container{display:flex;place-content:space-between;margin-top:32px}.block-library-video-tracks-editor__single-track-editor-edit-track-label{margin-top:4px;margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500;display:block}.block-library-video-tracks-editor>.components-popover__content>div,.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label,.block-library-video-tracks-editor__track-list .components-menu-group__label{padding:0}.block-library-video-tracks-editor__add-tracks-container,.block-library-video-tracks-editor__single-track-editor,.block-library-video-tracks-editor__track-list{padding:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label{margin-bottom:4px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field{margin-bottom:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input{margin-left:0}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label{margin-bottom:4px}.editor-styles-wrapper ul.wp-block-post-template{padding-left:0;margin-left:0;list-style:none}.block-library-query-toolbar__popover .components-popover__content{min-width:230px}.wp-block-query__create-new-link{padding:0 16px 16px 56px}.block-library-query__pattern-selection-content .block-editor-block-patterns-list{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:8px}.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{margin-bottom:0}.block-library-query__pattern-selection-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container{max-height:250px}.block-editor-query-pattern__selection-modal .components-modal__content{overflow:hidden;padding:0}.block-editor-query-pattern__selection-modal .components-modal__content:before{margin-bottom:0}@media (min-width:600px){.block-editor-query-pattern__selection-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.block-editor-query-pattern__selection-modal{width:750px}}@media (min-width:960px){.block-editor-query-pattern__selection-modal{height:80%;width:80%;max-height:none}}.wp-block[data-align=center]>.wp-block-query-pagination{justify-content:center}.editor-styles-wrapper .wp-block-query-pagination{max-width:100%}.editor-styles-wrapper .wp-block-query-pagination.block-editor-block-list__layout{margin:0}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{margin:.5em .5em .5em 0}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-query-pagination-numbers a{text-decoration:underline}.wp-block-query-pagination-numbers .page-numbers{margin-right:2px}.wp-block-query-pagination-numbers .page-numbers:last-child{margin-right:0}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder,.wp-block-post-featured-image.wp-block-post-featured-image .components-resizable-box__container{border-radius:inherit}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder{justify-content:center;align-items:center;box-shadow:none;padding:0;color:currentColor;background:transparent;min-height:200px}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-form-file-upload,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-form-file-upload{display:none}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__preview,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__preview{position:absolute;top:4px;right:4px;bottom:4px;left:4px;background:hsla(0,0%,100%,.8);display:flex;align-items:center;justify-content:center}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder:before,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder:before{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;border:1px dashed;opacity:.4;pointer-events:none;border-radius:inherit}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__fieldset,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__fieldset{width:auto}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button{color:inherit;padding:0;display:flex;justify-content:center;align-items:center;width:48px;height:48px;border-radius:50%;position:relative;visibility:hidden;background:transparent;transition:all .1s linear}@media (prefers-reduced-motion:reduce){.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button{transition-duration:0s;transition-delay:0s}}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-button.components-button>svg,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-button.components-button>svg{color:#fff}.wp-block-post-featured-image.wp-block-post-featured-image .components-placeholder .components-placeholder__illustration,.wp-block-post-featured-image.wp-block-post-featured-image .wp-block-post-featured-image__placeholder .components-placeholder__illustration{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;stroke:currentColor;stroke-dasharray:3;opacity:.4}.wp-block-post-featured-image.wp-block-post-featured-image[style*=height] .components-placeholder{min-height:48px;min-width:48px;height:100%;width:100%}.wp-block-post-featured-image.wp-block-post-featured-image.is-selected .components-button.components-button{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);border-style:solid;color:#fff;opacity:1;visibility:visible}div[data-type="core/post-featured-image"] img{max-width:100%;height:auto;display:block}.wp-block-post-comments-form *,.wp-block-post-comments__placeholder *{pointer-events:none}.wp-block-post-comments-form .block-editor-warning *{pointer-events:auto}:root .editor-styles-wrapper .has-very-light-gray-background-color{background-color:#eee}:root .editor-styles-wrapper .has-very-dark-gray-background-color{background-color:#313131}:root .editor-styles-wrapper .has-very-light-gray-color{color:#eee}:root .editor-styles-wrapper .has-very-dark-gray-color{color:#313131}:root .editor-styles-wrapper .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .editor-styles-wrapper .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .editor-styles-wrapper .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .editor-styles-wrapper .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .editor-styles-wrapper .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .editor-styles-wrapper .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .editor-styles-wrapper .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.editor-styles-wrapper{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.editor-styles-wrapper .has-regular-font-size{font-size:16px}.editor-styles-wrapper .has-larger-font-size{font-size:42px}.editor-styles-wrapper .has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.editor-styles-wrapper .has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/reset-rtl.css b/static/wp-includes/css/dist/block-library/reset-rtl.css
new file mode 100755
index 0000000..f48f572
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/reset-rtl.css
@@ -0,0 +1,183 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+/**
+* Editor Normalization Styles
+*
+* These are only output in the editor, but styles here are prefixed .editor-styles-wrapper and affect the theming
+* of the editor by themes.
+*/
+html :where(.editor-styles-wrapper) {
+ /**
+ * The following styles revert to the browser defaults overriding the WPAdmin styles.
+ * This is only needed while the block editor is not being loaded in an iframe.
+ */
+ font-family: serif;
+ font-size: initial;
+ line-height: initial;
+ color: initial;
+ background: #fff;
+}
+html :where(.editor-styles-wrapper) .wp-align-wrapper {
+ max-width: 840px;
+}
+html :where(.editor-styles-wrapper) .wp-align-wrapper > .wp-block, html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full {
+ max-width: none;
+}
+html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide {
+ max-width: 840px;
+}
+html :where(.editor-styles-wrapper) a {
+ transition: none;
+}
+html :where(.editor-styles-wrapper) code,
+html :where(.editor-styles-wrapper) kbd {
+ padding: 0;
+ margin: 0;
+ background: inherit;
+ font-size: inherit;
+ font-family: monospace;
+}
+html :where(.editor-styles-wrapper) p {
+ font-size: revert;
+ line-height: revert;
+ margin: revert;
+}
+html :where(.editor-styles-wrapper) ul,
+html :where(.editor-styles-wrapper) ol {
+ margin: revert;
+ padding: revert;
+ list-style-type: revert;
+ box-sizing: border-box;
+}
+html :where(.editor-styles-wrapper) ul ul,
+html :where(.editor-styles-wrapper) ul ol,
+html :where(.editor-styles-wrapper) ol ul,
+html :where(.editor-styles-wrapper) ol ol {
+ margin: revert;
+}
+html :where(.editor-styles-wrapper) ul li,
+html :where(.editor-styles-wrapper) ol li {
+ margin: revert;
+}
+html :where(.editor-styles-wrapper) ul ul,
+html :where(.editor-styles-wrapper) ol ul {
+ list-style-type: revert;
+}
+html :where(.editor-styles-wrapper) h1,
+html :where(.editor-styles-wrapper) h2,
+html :where(.editor-styles-wrapper) h3,
+html :where(.editor-styles-wrapper) h4,
+html :where(.editor-styles-wrapper) h5,
+html :where(.editor-styles-wrapper) h6 {
+ font-size: revert;
+ margin: revert;
+ color: revert;
+ line-height: revert;
+ font-weight: revert;
+}
+html :where(.editor-styles-wrapper) select {
+ font-family: system-ui;
+ -webkit-appearance: revert;
+ color: revert;
+ border: revert;
+ border-radius: revert;
+ background: revert;
+ box-shadow: revert;
+ text-shadow: revert;
+ outline: revert;
+ cursor: revert;
+ transform: revert;
+ font-size: revert;
+ line-height: revert;
+ padding: revert;
+ margin: revert;
+ min-height: revert;
+ max-width: revert;
+ vertical-align: revert;
+ font-weight: revert;
+}
+html :where(.editor-styles-wrapper) select:disabled,
+html :where(.editor-styles-wrapper) select:focus {
+ color: revert;
+ border-color: revert;
+ background-color: revert;
+ background-image: revert;
+ box-shadow: revert;
+ text-shadow: revert;
+ cursor: revert;
+ transform: revert;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/reset-rtl.min.css b/static/wp-includes/css/dist/block-library/reset-rtl.min.css
new file mode 100755
index 0000000..13912c4
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/reset-rtl.min.css
@@ -0,0 +1 @@
+html :where(.editor-styles-wrapper){font-family:serif;font-size:medium;line-height:normal;color:initial;background:#fff}html :where(.editor-styles-wrapper) .wp-align-wrapper{max-width:840px}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full,html :where(.editor-styles-wrapper) .wp-align-wrapper>.wp-block{max-width:none}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide{max-width:840px}html :where(.editor-styles-wrapper) a{transition:none}html :where(.editor-styles-wrapper) code,html :where(.editor-styles-wrapper) kbd{padding:0;margin:0;background:inherit;font-size:inherit;font-family:monospace}html :where(.editor-styles-wrapper) p{font-size:revert;line-height:revert;margin:revert}html :where(.editor-styles-wrapper) ol,html :where(.editor-styles-wrapper) ul{margin:revert;padding:revert;list-style-type:revert;box-sizing:border-box}html :where(.editor-styles-wrapper) ol li,html :where(.editor-styles-wrapper) ol ol,html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul li,html :where(.editor-styles-wrapper) ul ol,html :where(.editor-styles-wrapper) ul ul{margin:revert}html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ul{list-style-type:revert}html :where(.editor-styles-wrapper) h1,html :where(.editor-styles-wrapper) h2,html :where(.editor-styles-wrapper) h3,html :where(.editor-styles-wrapper) h4,html :where(.editor-styles-wrapper) h5,html :where(.editor-styles-wrapper) h6,html :where(.editor-styles-wrapper) select{font-size:revert;margin:revert;color:revert;line-height:revert;font-weight:revert}html :where(.editor-styles-wrapper) select{font-family:system-ui;-webkit-appearance:revert;border:revert;border-radius:revert;background:revert;box-shadow:revert;text-shadow:revert;outline:revert;cursor:revert;transform:revert;padding:revert;min-height:revert;max-width:revert;vertical-align:revert}html :where(.editor-styles-wrapper) select:disabled,html :where(.editor-styles-wrapper) select:focus{color:revert;border-color:revert;background-color:revert;background-image:revert;box-shadow:revert;text-shadow:revert;cursor:revert;transform:revert}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/reset.css b/static/wp-includes/css/dist/block-library/reset.css
new file mode 100755
index 0000000..f48f572
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/reset.css
@@ -0,0 +1,183 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+/**
+* Editor Normalization Styles
+*
+* These are only output in the editor, but styles here are prefixed .editor-styles-wrapper and affect the theming
+* of the editor by themes.
+*/
+html :where(.editor-styles-wrapper) {
+ /**
+ * The following styles revert to the browser defaults overriding the WPAdmin styles.
+ * This is only needed while the block editor is not being loaded in an iframe.
+ */
+ font-family: serif;
+ font-size: initial;
+ line-height: initial;
+ color: initial;
+ background: #fff;
+}
+html :where(.editor-styles-wrapper) .wp-align-wrapper {
+ max-width: 840px;
+}
+html :where(.editor-styles-wrapper) .wp-align-wrapper > .wp-block, html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full {
+ max-width: none;
+}
+html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide {
+ max-width: 840px;
+}
+html :where(.editor-styles-wrapper) a {
+ transition: none;
+}
+html :where(.editor-styles-wrapper) code,
+html :where(.editor-styles-wrapper) kbd {
+ padding: 0;
+ margin: 0;
+ background: inherit;
+ font-size: inherit;
+ font-family: monospace;
+}
+html :where(.editor-styles-wrapper) p {
+ font-size: revert;
+ line-height: revert;
+ margin: revert;
+}
+html :where(.editor-styles-wrapper) ul,
+html :where(.editor-styles-wrapper) ol {
+ margin: revert;
+ padding: revert;
+ list-style-type: revert;
+ box-sizing: border-box;
+}
+html :where(.editor-styles-wrapper) ul ul,
+html :where(.editor-styles-wrapper) ul ol,
+html :where(.editor-styles-wrapper) ol ul,
+html :where(.editor-styles-wrapper) ol ol {
+ margin: revert;
+}
+html :where(.editor-styles-wrapper) ul li,
+html :where(.editor-styles-wrapper) ol li {
+ margin: revert;
+}
+html :where(.editor-styles-wrapper) ul ul,
+html :where(.editor-styles-wrapper) ol ul {
+ list-style-type: revert;
+}
+html :where(.editor-styles-wrapper) h1,
+html :where(.editor-styles-wrapper) h2,
+html :where(.editor-styles-wrapper) h3,
+html :where(.editor-styles-wrapper) h4,
+html :where(.editor-styles-wrapper) h5,
+html :where(.editor-styles-wrapper) h6 {
+ font-size: revert;
+ margin: revert;
+ color: revert;
+ line-height: revert;
+ font-weight: revert;
+}
+html :where(.editor-styles-wrapper) select {
+ font-family: system-ui;
+ -webkit-appearance: revert;
+ color: revert;
+ border: revert;
+ border-radius: revert;
+ background: revert;
+ box-shadow: revert;
+ text-shadow: revert;
+ outline: revert;
+ cursor: revert;
+ transform: revert;
+ font-size: revert;
+ line-height: revert;
+ padding: revert;
+ margin: revert;
+ min-height: revert;
+ max-width: revert;
+ vertical-align: revert;
+ font-weight: revert;
+}
+html :where(.editor-styles-wrapper) select:disabled,
+html :where(.editor-styles-wrapper) select:focus {
+ color: revert;
+ border-color: revert;
+ background-color: revert;
+ background-image: revert;
+ box-shadow: revert;
+ text-shadow: revert;
+ cursor: revert;
+ transform: revert;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/reset.min.css b/static/wp-includes/css/dist/block-library/reset.min.css
new file mode 100755
index 0000000..13912c4
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/reset.min.css
@@ -0,0 +1 @@
+html :where(.editor-styles-wrapper){font-family:serif;font-size:medium;line-height:normal;color:initial;background:#fff}html :where(.editor-styles-wrapper) .wp-align-wrapper{max-width:840px}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full,html :where(.editor-styles-wrapper) .wp-align-wrapper>.wp-block{max-width:none}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide{max-width:840px}html :where(.editor-styles-wrapper) a{transition:none}html :where(.editor-styles-wrapper) code,html :where(.editor-styles-wrapper) kbd{padding:0;margin:0;background:inherit;font-size:inherit;font-family:monospace}html :where(.editor-styles-wrapper) p{font-size:revert;line-height:revert;margin:revert}html :where(.editor-styles-wrapper) ol,html :where(.editor-styles-wrapper) ul{margin:revert;padding:revert;list-style-type:revert;box-sizing:border-box}html :where(.editor-styles-wrapper) ol li,html :where(.editor-styles-wrapper) ol ol,html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul li,html :where(.editor-styles-wrapper) ul ol,html :where(.editor-styles-wrapper) ul ul{margin:revert}html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ul{list-style-type:revert}html :where(.editor-styles-wrapper) h1,html :where(.editor-styles-wrapper) h2,html :where(.editor-styles-wrapper) h3,html :where(.editor-styles-wrapper) h4,html :where(.editor-styles-wrapper) h5,html :where(.editor-styles-wrapper) h6,html :where(.editor-styles-wrapper) select{font-size:revert;margin:revert;color:revert;line-height:revert;font-weight:revert}html :where(.editor-styles-wrapper) select{font-family:system-ui;-webkit-appearance:revert;border:revert;border-radius:revert;background:revert;box-shadow:revert;text-shadow:revert;outline:revert;cursor:revert;transform:revert;padding:revert;min-height:revert;max-width:revert;vertical-align:revert}html :where(.editor-styles-wrapper) select:disabled,html :where(.editor-styles-wrapper) select:focus{color:revert;border-color:revert;background-color:revert;background-image:revert;box-shadow:revert;text-shadow:revert;cursor:revert;transform:revert}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/style-rtl.css b/static/wp-includes/css/dist/block-library/style-rtl.css
new file mode 100755
index 0000000..8bd5d48
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/style-rtl.css
@@ -0,0 +1,3336 @@
+@charset "UTF-8";
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+.wp-block-archives-dropdown label {
+ display: block;
+}
+
+.wp-block-avatar.aligncenter {
+ text-align: center;
+}
+
+.wp-block-audio {
+ margin: 0 0 1em 0;
+}
+.wp-block-audio figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+.wp-block-audio audio {
+ width: 100%;
+ min-width: 300px;
+}
+
+.wp-block-button__link {
+ color: #fff;
+ background-color: #32373c;
+ border-radius: 9999px;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ font-size: 1.125em;
+ padding: calc(0.667em + 2px) calc(1.333em + 2px);
+ text-align: center;
+ text-decoration: none;
+ word-break: break-word;
+ box-sizing: border-box;
+}
+.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link:visited {
+ color: #fff;
+}
+.wp-block-button__link.aligncenter {
+ text-align: center;
+}
+.wp-block-button__link.alignright {
+ text-align: right;
+}
+
+.wp-block-buttons > .wp-block-button.has-custom-width {
+ max-width: none;
+}
+.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
+ width: 100%;
+}
+.wp-block-buttons > .wp-block-button.has-custom-font-size .wp-block-button__link {
+ font-size: inherit;
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
+ width: calc(25% - (var(--wp--style--block-gap, 0.5em) * 0.75));
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
+ width: calc(50% - (var(--wp--style--block-gap, 0.5em) * 0.5));
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
+ width: calc(75% - (var(--wp--style--block-gap, 0.5em) * 0.25));
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
+ width: 100%;
+ flex-basis: 100%;
+}
+
+.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-25 {
+ width: 25%;
+}
+.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-50 {
+ width: 50%;
+}
+.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-75 {
+ width: 75%;
+}
+
+.wp-block-button.is-style-squared,
+.wp-block-button__link.wp-block-button.is-style-squared {
+ border-radius: 0;
+}
+
+.wp-block-button.no-border-radius,
+.wp-block-button__link.no-border-radius {
+ border-radius: 0 !important;
+}
+
+.is-style-outline > :where(.wp-block-button__link),
+:where(.wp-block-button__link).is-style-outline {
+ border: 2px solid currentColor;
+ padding: 0.667em 1.333em;
+}
+
+.is-style-outline > .wp-block-button__link:not(.has-text-color),
+.wp-block-button__link.is-style-outline:not(.has-text-color) {
+ color: currentColor;
+}
+
+.is-style-outline > .wp-block-button__link:not(.has-background),
+.wp-block-button__link.is-style-outline:not(.has-background) {
+ background-color: transparent;
+}
+
+.wp-block-buttons {
+ /* stylelint-disable indentation */
+}
+.wp-block-buttons.is-vertical {
+ flex-direction: column;
+}
+.wp-block-buttons.is-vertical > .wp-block-button:last-child {
+ margin-bottom: 0;
+}
+.wp-block-buttons > .wp-block-button {
+ display: inline-block;
+ margin: 0;
+}
+.wp-block-buttons.is-content-justification-left {
+ justify-content: flex-start;
+}
+.wp-block-buttons.is-content-justification-left.is-vertical {
+ align-items: flex-start;
+}
+.wp-block-buttons.is-content-justification-center {
+ justify-content: center;
+}
+.wp-block-buttons.is-content-justification-center.is-vertical {
+ align-items: center;
+}
+.wp-block-buttons.is-content-justification-right {
+ justify-content: flex-end;
+}
+.wp-block-buttons.is-content-justification-right.is-vertical {
+ align-items: flex-end;
+}
+.wp-block-buttons.is-content-justification-space-between {
+ justify-content: space-between;
+}
+.wp-block-buttons.aligncenter {
+ text-align: center;
+}
+.wp-block-buttons:not(.is-content-justification-space-between,
+.is-content-justification-right,
+.is-content-justification-left,
+.is-content-justification-center) .wp-block-button.aligncenter {
+ /* stylelint-enable indentation */
+ margin-right: auto;
+ margin-left: auto;
+ width: 100%;
+}
+
+.wp-block-button.aligncenter {
+ text-align: center;
+}
+
+.wp-block-calendar {
+ text-align: center;
+}
+.wp-block-calendar th,
+.wp-block-calendar tbody td {
+ padding: 0.25em;
+ border: 1px solid #ddd;
+}
+.wp-block-calendar tfoot td {
+ border: none;
+}
+.wp-block-calendar table {
+ width: 100%;
+ border-collapse: collapse;
+}
+.wp-block-calendar table th {
+ font-weight: 400;
+ background: #ddd;
+}
+.wp-block-calendar a {
+ text-decoration: underline;
+}
+.wp-block-calendar table tbody,
+.wp-block-calendar table caption {
+ color: #40464d;
+}
+
+.wp-block-categories.alignleft {
+ margin-right: 2em;
+}
+.wp-block-categories.alignright {
+ margin-left: 2em;
+}
+
+.wp-block-code code {
+ display: block;
+ font-family: inherit;
+ overflow-wrap: break-word;
+ white-space: pre-wrap;
+}
+
+.wp-block-columns {
+ display: flex;
+ margin-bottom: 1.75em;
+ box-sizing: border-box;
+ flex-wrap: wrap !important;
+ align-items: initial !important;
+ /**
+ * All Columns Alignment
+ */
+}
+@media (min-width: 782px) {
+ .wp-block-columns {
+ flex-wrap: nowrap !important;
+ }
+}
+.wp-block-columns.are-vertically-aligned-top {
+ align-items: flex-start;
+}
+.wp-block-columns.are-vertically-aligned-center {
+ align-items: center;
+}
+.wp-block-columns.are-vertically-aligned-bottom {
+ align-items: flex-end;
+}
+@media (max-width: 781px) {
+ .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
+ flex-basis: 100% !important;
+ }
+}
+@media (min-width: 782px) {
+ .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
+ flex-basis: 0;
+ flex-grow: 1;
+ }
+ .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column[style*=flex-basis] {
+ flex-grow: 0;
+ }
+}
+.wp-block-columns.is-not-stacked-on-mobile {
+ flex-wrap: nowrap !important;
+}
+.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
+ flex-basis: 0;
+ flex-grow: 1;
+}
+.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column[style*=flex-basis] {
+ flex-grow: 0;
+}
+
+:where(.wp-block-columns.has-background) {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-column {
+ flex-grow: 1;
+ min-width: 0;
+ word-break: break-word;
+ overflow-wrap: break-word;
+ /**
+ * Individual Column Alignment
+ */
+}
+.wp-block-column.is-vertically-aligned-top {
+ align-self: flex-start;
+}
+.wp-block-column.is-vertically-aligned-center {
+ align-self: center;
+}
+.wp-block-column.is-vertically-aligned-bottom {
+ align-self: flex-end;
+}
+.wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-bottom {
+ width: 100%;
+}
+
+.wp-block-comments-pagination > .wp-block-comments-pagination-next,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers {
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-comments-pagination > .wp-block-comments-pagination-next:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers:last-child {
+ margin-right: 0;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow {
+ margin-left: 1ch;
+ display: inline-block;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(-1);;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow {
+ margin-right: 1ch;
+ display: inline-block;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(-1);;
+}
+.wp-block-comments-pagination.aligncenter {
+ justify-content: center;
+}
+
+.wp-block-comment-template {
+ margin-bottom: 0;
+ max-width: 100%;
+ list-style: none;
+ padding: 0;
+}
+.wp-block-comment-template li {
+ clear: both;
+}
+.wp-block-comment-template ol {
+ margin-bottom: 0;
+ max-width: 100%;
+ list-style: none;
+ padding-right: 2rem;
+}
+
+.wp-block-cover-image,
+.wp-block-cover {
+ position: relative;
+ background-size: cover;
+ background-position: center center;
+ min-height: 430px;
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 1em;
+ box-sizing: border-box;
+ /**
+ * Set a default background color for has-background-dim _unless_ it includes another
+ * background-color class (e.g. has-green-background-color). The presence of another
+ * background-color class implies that another style will provide the background color
+ * for the overlay.
+ *
+ * See:
+ * - Issue with background color specificity: https://github.com/WordPress/gutenberg/issues/26545
+ * - Issue with alternative fix: https://github.com/WordPress/gutenberg/issues/26545
+ */
+}
+.wp-block-cover-image.has-parallax,
+.wp-block-cover.has-parallax {
+ background-attachment: fixed;
+}
+@supports (-webkit-touch-callout: inherit) {
+ .wp-block-cover-image.has-parallax,
+.wp-block-cover.has-parallax {
+ background-attachment: scroll;
+ }
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-cover-image.has-parallax,
+.wp-block-cover.has-parallax {
+ background-attachment: scroll;
+ }
+}
+.wp-block-cover-image.is-repeated,
+.wp-block-cover.is-repeated {
+ background-repeat: repeat;
+ background-size: auto;
+}
+.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
+.wp-block-cover-image .has-background-dim:not([class*=-background-color]),
+.wp-block-cover.has-background-dim:not([class*=-background-color]),
+.wp-block-cover .has-background-dim:not([class*=-background-color]) {
+ background-color: #000;
+}
+.wp-block-cover-image .has-background-dim.has-background-gradient,
+.wp-block-cover .has-background-dim.has-background-gradient {
+ background-color: transparent;
+}
+.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__background,
+.wp-block-cover-image .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim:not(.has-background-gradient)::before,
+.wp-block-cover .wp-block-cover__background,
+.wp-block-cover .wp-block-cover__gradient-background {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ opacity: 0.5;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background {
+ opacity: 0.1;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background {
+ opacity: 0.2;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background {
+ opacity: 0.3;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background {
+ opacity: 0.4;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background {
+ opacity: 0.5;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background {
+ opacity: 0.6;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background {
+ opacity: 0.7;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background {
+ opacity: 0.8;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background {
+ opacity: 0.9;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background {
+ opacity: 1;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0 {
+ opacity: 0;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10 {
+ opacity: 0.1;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20 {
+ opacity: 0.2;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30 {
+ opacity: 0.3;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40 {
+ opacity: 0.4;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50 {
+ opacity: 0.5;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60 {
+ opacity: 0.6;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70 {
+ opacity: 0.7;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80 {
+ opacity: 0.8;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90 {
+ opacity: 0.9;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100 {
+ opacity: 1;
+}
+.wp-block-cover-image .block-library-cover__padding-visualizer,
+.wp-block-cover .block-library-cover__padding-visualizer {
+ z-index: 2;
+}
+.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
+.wp-block-cover.alignleft,
+.wp-block-cover.alignright {
+ max-width: 420px;
+ width: 100%;
+}
+.wp-block-cover-image::after,
+.wp-block-cover::after {
+ display: block;
+ content: "";
+ font-size: 0;
+ min-height: inherit;
+}
+@supports (position: sticky) {
+ .wp-block-cover-image::after,
+.wp-block-cover::after {
+ content: none;
+ }
+}
+.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
+.wp-block-cover.aligncenter,
+.wp-block-cover.alignleft,
+.wp-block-cover.alignright {
+ display: flex;
+}
+.wp-block-cover-image .wp-block-cover__inner-container,
+.wp-block-cover .wp-block-cover__inner-container {
+ width: 100%;
+ z-index: 1;
+ color: #fff;
+}
+.wp-block-cover-image.is-light .wp-block-cover__inner-container,
+.wp-block-cover.is-light .wp-block-cover__inner-container {
+ color: #000;
+}
+.wp-block-cover-image p:not(.has-text-color),
+.wp-block-cover-image h1:not(.has-text-color),
+.wp-block-cover-image h2:not(.has-text-color),
+.wp-block-cover-image h3:not(.has-text-color),
+.wp-block-cover-image h4:not(.has-text-color),
+.wp-block-cover-image h5:not(.has-text-color),
+.wp-block-cover-image h6:not(.has-text-color),
+.wp-block-cover p:not(.has-text-color),
+.wp-block-cover h1:not(.has-text-color),
+.wp-block-cover h2:not(.has-text-color),
+.wp-block-cover h3:not(.has-text-color),
+.wp-block-cover h4:not(.has-text-color),
+.wp-block-cover h5:not(.has-text-color),
+.wp-block-cover h6:not(.has-text-color) {
+ color: inherit;
+}
+.wp-block-cover-image.is-position-top-left,
+.wp-block-cover.is-position-top-left {
+ align-items: flex-start;
+ justify-content: flex-start;
+}
+.wp-block-cover-image.is-position-top-center,
+.wp-block-cover.is-position-top-center {
+ align-items: flex-start;
+ justify-content: center;
+}
+.wp-block-cover-image.is-position-top-right,
+.wp-block-cover.is-position-top-right {
+ align-items: flex-start;
+ justify-content: flex-end;
+}
+.wp-block-cover-image.is-position-center-left,
+.wp-block-cover.is-position-center-left {
+ align-items: center;
+ justify-content: flex-start;
+}
+.wp-block-cover-image.is-position-center-center,
+.wp-block-cover.is-position-center-center {
+ align-items: center;
+ justify-content: center;
+}
+.wp-block-cover-image.is-position-center-right,
+.wp-block-cover.is-position-center-right {
+ align-items: center;
+ justify-content: flex-end;
+}
+.wp-block-cover-image.is-position-bottom-left,
+.wp-block-cover.is-position-bottom-left {
+ align-items: flex-end;
+ justify-content: flex-start;
+}
+.wp-block-cover-image.is-position-bottom-center,
+.wp-block-cover.is-position-bottom-center {
+ align-items: flex-end;
+ justify-content: center;
+}
+.wp-block-cover-image.is-position-bottom-right,
+.wp-block-cover.is-position-bottom-right {
+ align-items: flex-end;
+ justify-content: flex-end;
+}
+.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,
+.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
+ margin: 0;
+ width: auto;
+}
+.wp-block-cover-image img.wp-block-cover__image-background,
+.wp-block-cover-image video.wp-block-cover__video-background,
+.wp-block-cover img.wp-block-cover__image-background,
+.wp-block-cover video.wp-block-cover__video-background {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ margin: 0;
+ padding: 0;
+ width: 100%;
+ height: 100%;
+ max-width: none;
+ max-height: none;
+ -o-object-fit: cover;
+ object-fit: cover;
+ outline: none;
+ border: none;
+ box-shadow: none;
+}
+
+.wp-block-cover__video-background {
+ z-index: 0;
+}
+
+.wp-block-cover__image-background {
+ z-index: 0;
+}
+
+section.wp-block-cover-image h2,
+.wp-block-cover-image-text,
+.wp-block-cover-text {
+ color: #fff;
+}
+section.wp-block-cover-image h2 a,
+section.wp-block-cover-image h2 a:hover,
+section.wp-block-cover-image h2 a:focus,
+section.wp-block-cover-image h2 a:active,
+.wp-block-cover-image-text a,
+.wp-block-cover-image-text a:hover,
+.wp-block-cover-image-text a:focus,
+.wp-block-cover-image-text a:active,
+.wp-block-cover-text a,
+.wp-block-cover-text a:hover,
+.wp-block-cover-text a:focus,
+.wp-block-cover-text a:active {
+ color: #fff;
+}
+
+.wp-block-cover-image .wp-block-cover.has-left-content {
+ justify-content: flex-start;
+}
+.wp-block-cover-image .wp-block-cover.has-right-content {
+ justify-content: flex-end;
+}
+
+section.wp-block-cover-image.has-left-content > h2,
+.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
+.wp-block-cover.has-left-content .wp-block-cover-text {
+ margin-right: 0;
+ text-align: right;
+}
+
+section.wp-block-cover-image.has-right-content > h2,
+.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
+.wp-block-cover.has-right-content .wp-block-cover-text {
+ margin-left: 0;
+ text-align: left;
+}
+
+section.wp-block-cover-image > h2,
+.wp-block-cover-image .wp-block-cover-image-text,
+.wp-block-cover .wp-block-cover-text {
+ font-size: 2em;
+ line-height: 1.25;
+ z-index: 1;
+ margin-bottom: 0;
+ max-width: 840px;
+ padding: 0.44em;
+ text-align: center;
+}
+
+.wp-block[data-align=left] > [data-type="core/embed"],
+.wp-block[data-align=right] > [data-type="core/embed"],
+.wp-block-embed.alignleft,
+.wp-block-embed.alignright {
+ max-width: 360px;
+ width: 100%;
+}
+.wp-block[data-align=left] > [data-type="core/embed"] .wp-block-embed__wrapper,
+.wp-block[data-align=right] > [data-type="core/embed"] .wp-block-embed__wrapper,
+.wp-block-embed.alignleft .wp-block-embed__wrapper,
+.wp-block-embed.alignright .wp-block-embed__wrapper {
+ min-width: 280px;
+}
+
+.wp-block-cover .wp-block-embed {
+ min-width: 320px;
+ min-height: 240px;
+}
+
+.wp-block-embed {
+ margin: 0 0 1em 0;
+ overflow-wrap: break-word;
+}
+.wp-block-embed figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+.wp-block-embed iframe {
+ max-width: 100%;
+}
+
+.wp-block-embed__wrapper {
+ position: relative;
+}
+
+.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper::before {
+ content: "";
+ display: block;
+ padding-top: 50%;
+}
+.wp-embed-responsive .wp-has-aspect-ratio iframe {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
+ padding-top: 42.85%;
+}
+.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
+ padding-top: 50%;
+}
+.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
+ padding-top: 56.25%;
+}
+.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
+ padding-top: 75%;
+}
+.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
+ padding-top: 100%;
+}
+.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {
+ padding-top: 177.77%;
+}
+.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
+ padding-top: 200%;
+}
+
+.wp-block-file {
+ margin-bottom: 1.5em;
+}
+.wp-block-file.aligncenter {
+ text-align: center;
+}
+.wp-block-file.alignright {
+ text-align: right;
+}
+.wp-block-file .wp-block-file__embed {
+ margin-bottom: 1em;
+}
+.wp-block-file .wp-block-file__button {
+ background: #32373c;
+ border-radius: 2em;
+ color: #fff;
+ font-size: 0.8em;
+ padding: 0.5em 1em;
+}
+.wp-block-file a.wp-block-file__button {
+ text-decoration: none;
+}
+.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 {
+ box-shadow: none;
+ color: #fff;
+ opacity: 0.85;
+ text-decoration: none;
+}
+.wp-block-file * + .wp-block-file__button {
+ margin-right: 0.75em;
+}
+
+.wp-block-gallery:not(.has-nested-images),
+.blocks-gallery-grid:not(.has-nested-images) {
+ display: flex;
+ flex-wrap: wrap;
+ list-style-type: none;
+ padding: 0;
+ margin: 0;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item {
+ margin: 0 0 1em 1em;
+ display: flex;
+ flex-grow: 1;
+ flex-direction: column;
+ justify-content: center;
+ position: relative;
+ width: calc(50% - 1em);
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(even),
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(even),
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(even),
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(even) {
+ margin-left: 0;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure {
+ margin: 0;
+ height: 100%;
+ display: flex;
+ align-items: flex-end;
+ justify-content: flex-start;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img {
+ display: block;
+ max-width: 100%;
+ height: auto;
+ width: auto;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ max-height: 100%;
+ overflow: auto;
+ padding: 3em 0.77em 0.7em;
+ color: #fff;
+ text-align: center;
+ font-size: 0.8em;
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
+ box-sizing: border-box;
+ margin: 0;
+ z-index: 2;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img {
+ display: inline;
+}
+.wp-block-gallery:not(.has-nested-images) figcaption,
+.blocks-gallery-grid:not(.has-nested-images) figcaption {
+ flex-grow: 1;
+}
+.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,
+.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img, .wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,
+.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img {
+ width: 100%;
+ height: 100%;
+ flex: 1;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item {
+ width: 100%;
+ margin-left: 0;
+}
+@media (min-width: 600px) {
+ .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item {
+ width: calc(33.3333333333% - 0.6666666667em);
+ margin-left: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item {
+ width: calc(25% - 0.75em);
+ margin-left: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item {
+ width: calc(20% - 0.8em);
+ margin-left: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item {
+ width: calc(16.6666666667% - 0.8333333333em);
+ margin-left: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item {
+ width: calc(14.2857142857% - 0.8571428571em);
+ margin-left: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item {
+ width: calc(12.5% - 0.875em);
+ margin-left: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n), .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n) {
+ margin-left: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n), .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
+.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
+.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n) {
+ margin-left: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n), .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n) {
+ margin-left: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n), .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n) {
+ margin-left: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n), .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n) {
+ margin-left: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n), .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n) {
+ margin-left: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n), .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n) {
+ margin-left: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n), .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n) {
+ margin-left: 0;
+ }
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child {
+ margin-left: 0;
+}
+.wp-block-gallery:not(.has-nested-images).alignleft, .wp-block-gallery:not(.has-nested-images).alignright,
+.blocks-gallery-grid:not(.has-nested-images).alignleft,
+.blocks-gallery-grid:not(.has-nested-images).alignright {
+ max-width: 420px;
+ width: 100%;
+}
+.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure,
+.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure {
+ justify-content: center;
+}
+
+.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
+ align-self: flex-start;
+}
+
+figure.wp-block-gallery.has-nested-images {
+ align-items: normal;
+}
+
+.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
+ width: calc(50% - (var(--wp--style--unstable-gallery-gap, 16px) / 2));
+ margin: 0;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image {
+ display: flex;
+ flex-grow: 1;
+ justify-content: center;
+ position: relative;
+ flex-direction: column;
+ max-width: 100%;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image > div,
+.wp-block-gallery.has-nested-images figure.wp-block-image > a {
+ margin: 0;
+ flex-direction: column;
+ flex-grow: 1;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image img {
+ display: block;
+ height: auto;
+ max-width: 100% !important;
+ width: auto;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
+ bottom: 0;
+ color: #fff;
+ font-size: 13px;
+ right: 0;
+ margin-bottom: 0;
+ max-height: 60%;
+ overflow: auto;
+ padding: 0 8px 8px;
+ position: absolute;
+ text-align: center;
+ width: 100%;
+ box-sizing: border-box;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
+ display: inline;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a {
+ color: inherit;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > div,
+.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > a {
+ flex: 1 1 auto;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption {
+ flex: initial;
+ background: none;
+ color: inherit;
+ margin: 0;
+ padding: 10px 10px 9px;
+ position: relative;
+}
+.wp-block-gallery.has-nested-images figcaption {
+ flex-grow: 1;
+ flex-basis: 100%;
+ text-align: center;
+}
+.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
+ margin-top: 0;
+ margin-bottom: auto;
+}
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
+ align-self: inherit;
+}
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) > div:not(.components-drop-zone),
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) > a {
+ display: flex;
+}
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
+ width: 100%;
+ flex: 1 0 0%;
+ height: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
+ width: calc(33.3333333333% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.6666666667));
+ }
+ .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
+ width: calc(25% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.75));
+ }
+ .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
+ width: calc(20% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.8));
+ }
+ .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
+ width: calc(16.6666666667% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.8333333333));
+ }
+ .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
+ width: calc(14.2857142857% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.8571428571));
+ }
+ .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
+ width: calc(12.5% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.875));
+ }
+ .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
+ width: calc(33.33% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.6666666667));
+ }
+ .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
+.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
+ width: calc(50% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.5));
+ }
+ .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(1) {
+ width: 100%;
+ }
+}
+.wp-block-gallery.has-nested-images.alignleft, .wp-block-gallery.has-nested-images.alignright {
+ max-width: 420px;
+ width: 100%;
+}
+.wp-block-gallery.has-nested-images.aligncenter {
+ justify-content: center;
+}
+
+.wp-block-group {
+ box-sizing: border-box;
+}
+
+h1.has-background,
+h2.has-background,
+h3.has-background,
+h4.has-background,
+h5.has-background,
+h6.has-background {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-image {
+ margin: 0 0 1em 0;
+}
+.wp-block-image img {
+ height: auto;
+ max-width: 100%;
+ vertical-align: bottom;
+}
+.wp-block-image:not(.is-style-rounded) > a,
+.wp-block-image:not(.is-style-rounded) img {
+ border-radius: inherit;
+}
+.wp-block-image.aligncenter {
+ text-align: center;
+}
+.wp-block-image.alignfull img, .wp-block-image.alignwide img {
+ height: auto;
+ width: 100%;
+}
+.wp-block-image.alignleft, .wp-block-image.alignright, .wp-block-image.aligncenter,
+.wp-block-image .alignleft,
+.wp-block-image .alignright,
+.wp-block-image .aligncenter {
+ display: table;
+}
+.wp-block-image.alignleft > figcaption, .wp-block-image.alignright > figcaption, .wp-block-image.aligncenter > figcaption,
+.wp-block-image .alignleft > figcaption,
+.wp-block-image .alignright > figcaption,
+.wp-block-image .aligncenter > figcaption {
+ display: table-caption;
+ caption-side: bottom;
+}
+.wp-block-image .alignleft {
+ float: left;
+ margin-left: 0;
+ margin-left: 1em;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-image .alignright {
+ float: right;
+ margin-right: 0;
+ margin-right: 1em;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-image .aligncenter {
+ margin-right: auto;
+ margin-left: auto;
+}
+.wp-block-image figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+.wp-block-image.is-style-rounded img,
+.wp-block-image .is-style-rounded img {
+ border-radius: 9999px;
+}
+.wp-block-image.is-style-circle-mask img {
+ border-radius: 9999px;
+}
+@supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {
+ .wp-block-image.is-style-circle-mask img {
+ /* stylelint-disable */
+ -webkit-mask-image: url('data:image/svg+xml;utf8,');
+ mask-image: url('data:image/svg+xml;utf8,');
+ /* stylelint-enable */
+ mask-mode: alpha;
+ -webkit-mask-repeat: no-repeat;
+ mask-repeat: no-repeat;
+ -webkit-mask-size: contain;
+ mask-size: contain;
+ -webkit-mask-position: center;
+ mask-position: center;
+ border-radius: 0;
+ }
+}
+
+.wp-block-image figure {
+ margin: 0;
+}
+
+ol.wp-block-latest-comments {
+ margin-right: 0;
+}
+
+.wp-block-latest-comments .wp-block-latest-comments {
+ padding-right: 0;
+}
+
+.wp-block-latest-comments__comment {
+ line-height: 1.1;
+ list-style: none;
+ margin-bottom: 1em;
+}
+.has-avatars .wp-block-latest-comments__comment {
+ min-height: 2.25em;
+ list-style: none;
+}
+.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
+.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
+ margin-right: 3.25em;
+}
+.has-dates .wp-block-latest-comments__comment, .has-excerpts .wp-block-latest-comments__comment {
+ line-height: 1.5;
+}
+
+.wp-block-latest-comments__comment-excerpt p {
+ font-size: 0.875em;
+ line-height: 1.8;
+ margin: 0.36em 0 1.4em;
+}
+
+.wp-block-latest-comments__comment-date {
+ display: block;
+ font-size: 0.75em;
+}
+
+.wp-block-latest-comments .avatar,
+.wp-block-latest-comments__comment-avatar {
+ border-radius: 1.5em;
+ display: block;
+ float: right;
+ height: 2.5em;
+ margin-left: 0.75em;
+ width: 2.5em;
+}
+
+.wp-block-latest-posts.alignleft {
+ margin-right: 2em;
+}
+.wp-block-latest-posts.alignright {
+ margin-left: 2em;
+}
+.wp-block-latest-posts.wp-block-latest-posts__list {
+ list-style: none;
+ padding-right: 0;
+}
+.wp-block-latest-posts.wp-block-latest-posts__list li {
+ clear: both;
+}
+.wp-block-latest-posts.is-grid {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 0;
+}
+.wp-block-latest-posts.is-grid li {
+ margin: 0 0 1.25em 1.25em;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .wp-block-latest-posts.columns-2 li {
+ width: calc((100% / 2) - 1.25em + (1.25em / 2));
+ }
+ .wp-block-latest-posts.columns-2 li:nth-child(2n) {
+ margin-left: 0;
+ }
+ .wp-block-latest-posts.columns-3 li {
+ width: calc((100% / 3) - 1.25em + (1.25em / 3));
+ }
+ .wp-block-latest-posts.columns-3 li:nth-child(3n) {
+ margin-left: 0;
+ }
+ .wp-block-latest-posts.columns-4 li {
+ width: calc((100% / 4) - 1.25em + (1.25em / 4));
+ }
+ .wp-block-latest-posts.columns-4 li:nth-child(4n) {
+ margin-left: 0;
+ }
+ .wp-block-latest-posts.columns-5 li {
+ width: calc((100% / 5) - 1.25em + (1.25em / 5));
+ }
+ .wp-block-latest-posts.columns-5 li:nth-child(5n) {
+ margin-left: 0;
+ }
+ .wp-block-latest-posts.columns-6 li {
+ width: calc((100% / 6) - 1.25em + (1.25em / 6));
+ }
+ .wp-block-latest-posts.columns-6 li:nth-child(6n) {
+ margin-left: 0;
+ }
+}
+
+.wp-block-latest-posts__post-date,
+.wp-block-latest-posts__post-author {
+ display: block;
+ font-size: 0.8125em;
+}
+
+.wp-block-latest-posts__post-excerpt {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+
+.wp-block-latest-posts__featured-image a {
+ display: inline-block;
+}
+.wp-block-latest-posts__featured-image img {
+ height: auto;
+ width: auto;
+ max-width: 100%;
+}
+.wp-block-latest-posts__featured-image.alignleft {
+ margin-right: 1em;
+ float: left;
+}
+.wp-block-latest-posts__featured-image.alignright {
+ margin-left: 1em;
+ float: right;
+}
+.wp-block-latest-posts__featured-image.aligncenter {
+ margin-bottom: 1em;
+ text-align: center;
+}
+
+ol,
+ul {
+ box-sizing: border-box;
+}
+ol.has-background,
+ul.has-background {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-media-text {
+ direction: ltr;
+ display: grid;
+ grid-template-columns: 50% 1fr;
+ grid-template-rows: auto;
+}
+.wp-block-media-text.has-media-on-the-right {
+ grid-template-columns: 1fr 50%;
+}
+
+.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
+.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
+ align-self: start;
+}
+
+.wp-block-media-text .wp-block-media-text__content,
+.wp-block-media-text .wp-block-media-text__media,
+.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
+.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
+ align-self: center;
+}
+
+.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
+.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
+ align-self: end;
+}
+
+.wp-block-media-text .wp-block-media-text__media {
+ grid-column: 1;
+ grid-row: 1;
+ margin: 0;
+}
+
+.wp-block-media-text .wp-block-media-text__content {
+ direction: rtl;
+ grid-column: 2;
+ grid-row: 1;
+ padding: 0 8% 0 8%;
+ word-break: break-word;
+}
+
+.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
+ grid-column: 2;
+ grid-row: 1;
+}
+
+.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
+ grid-column: 1;
+ grid-row: 1;
+}
+
+.wp-block-media-text__media img,
+.wp-block-media-text__media video {
+ height: auto;
+ max-width: unset;
+ width: 100%;
+ vertical-align: middle;
+}
+
+.wp-block-media-text.is-image-fill .wp-block-media-text__media {
+ height: 100%;
+ min-height: 250px;
+ background-size: cover;
+}
+
+.wp-block-media-text.is-image-fill .wp-block-media-text__media > a {
+ display: block;
+ height: 100%;
+}
+
+.wp-block-media-text.is-image-fill .wp-block-media-text__media img {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
+}
+
+/*
+* Here we here not able to use a mobile first CSS approach.
+* Custom widths are set using inline styles, and on mobile,
+* we need 100% width, so we use important to overwrite the inline style.
+* If the style were set on mobile first, on desktop styles,
+* we would have no way of setting the style again to the inline style.
+*/
+@media (max-width: 600px) {
+ .wp-block-media-text.is-stacked-on-mobile {
+ grid-template-columns: 100% !important;
+ }
+ .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
+ grid-column: 1;
+ grid-row: 1;
+ }
+ .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
+ grid-column: 1;
+ grid-row: 2;
+ }
+}
+.wp-block-navigation {
+ position: relative;
+ --navigation-layout-justification-setting: flex-start;
+ --navigation-layout-direction: row;
+ --navigation-layout-wrap: wrap;
+ --navigation-layout-justify: flex-start;
+ --navigation-layout-align: center;
+}
+.wp-block-navigation ul {
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-right: 0;
+ padding-right: 0;
+}
+.wp-block-navigation ul,
+.wp-block-navigation ul li {
+ list-style: none;
+ padding: 0;
+}
+.wp-block-navigation .wp-block-navigation-item {
+ display: flex;
+ align-items: center;
+ position: relative;
+}
+.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty {
+ display: none;
+}
+.wp-block-navigation .wp-block-navigation-item__content {
+ color: inherit;
+ display: block;
+ padding: 0;
+}
+.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content {
+ text-decoration: underline;
+}
+.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus, .wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active {
+ text-decoration: underline;
+}
+.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content {
+ text-decoration: line-through;
+}
+.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus, .wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active {
+ text-decoration: line-through;
+}
+.wp-block-navigation:where(:not([class*="has-text-decoration"])) a {
+ text-decoration: none;
+}
+.wp-block-navigation:where(:not([class*="has-text-decoration"])) a:focus, .wp-block-navigation:where(:not([class*="has-text-decoration"])) a:active {
+ text-decoration: none;
+}
+.wp-block-navigation .wp-block-navigation__submenu-icon {
+ align-self: center;
+ line-height: 0;
+ display: inline-block;
+ font-size: inherit;
+ padding: 0;
+ background-color: inherit;
+ color: currentColor;
+ border: none;
+ width: 0.6em;
+ height: 0.6em;
+ margin-right: 0.25em;
+}
+.wp-block-navigation .wp-block-navigation__submenu-icon svg {
+ display: inline-block;
+ stroke: currentColor;
+ width: inherit;
+ height: inherit;
+ margin-top: 0.075em;
+}
+.wp-block-navigation.is-vertical {
+ --navigation-layout-direction: column;
+ --navigation-layout-justify: initial;
+ --navigation-layout-align: flex-start;
+}
+.wp-block-navigation.no-wrap {
+ --navigation-layout-wrap: nowrap;
+}
+.wp-block-navigation.items-justified-center {
+ --navigation-layout-justification-setting: center;
+ --navigation-layout-justify: center;
+}
+.wp-block-navigation.items-justified-center.is-vertical {
+ --navigation-layout-align: center;
+}
+.wp-block-navigation.items-justified-right {
+ --navigation-layout-justification-setting: flex-end;
+ --navigation-layout-justify: flex-end;
+}
+.wp-block-navigation.items-justified-right.is-vertical {
+ --navigation-layout-align: flex-end;
+}
+.wp-block-navigation.items-justified-space-between {
+ --navigation-layout-justification-setting: space-between;
+ --navigation-layout-justify: space-between;
+}
+
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) {
+ background-color: inherit;
+ color: inherit;
+ position: absolute;
+ z-index: 2;
+ display: flex;
+ flex-direction: column;
+ align-items: normal;
+ opacity: 0;
+ transition: opacity 0.1s linear;
+ visibility: hidden;
+ width: 0;
+ height: 0;
+ overflow: hidden;
+ right: -1px;
+ top: 100%;
+}
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) > .wp-block-navigation-item > .wp-block-navigation-item__content {
+ display: flex;
+ flex-grow: 1;
+}
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) > .wp-block-navigation-item > .wp-block-navigation-item__content .wp-block-navigation__submenu-icon {
+ margin-left: 0;
+ margin-right: auto;
+}
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content {
+ margin: 0;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container {
+ right: 100%;
+ top: -1px;
+ }
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container::before {
+ content: "";
+ position: absolute;
+ left: 100%;
+ height: 100%;
+ display: block;
+ width: 0.5em;
+ background: transparent;
+ }
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon {
+ margin-left: 0.25em;
+ }
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon svg {
+ transform: rotate(90deg);
+ }
+}
+.wp-block-navigation .has-child:where(:not(.open-on-click)):hover > .wp-block-navigation__submenu-container {
+ visibility: visible;
+ overflow: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+.wp-block-navigation .has-child:where(:not(.open-on-click):not(.open-on-hover-click)):focus-within > .wp-block-navigation__submenu-container {
+ visibility: visible;
+ overflow: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true] ~ .wp-block-navigation__submenu-container {
+ visibility: visible;
+ overflow: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+
+.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container {
+ right: 0;
+ top: 100%;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ right: 100%;
+ top: 0;
+ }
+}
+
+.wp-block-navigation-submenu {
+ position: relative;
+ display: flex;
+}
+.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
+ stroke: currentColor;
+}
+
+button.wp-block-navigation-item__content {
+ background-color: transparent;
+ border: none;
+ color: currentColor;
+ font-size: inherit;
+ font-family: inherit;
+ line-height: inherit;
+ font-style: inherit;
+ font-weight: inherit;
+ text-transform: inherit;
+ text-align: right;
+}
+
+.wp-block-navigation-submenu__toggle {
+ cursor: pointer;
+}
+
+.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle {
+ padding-left: 0.85em;
+}
+.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle + .wp-block-navigation__submenu-icon {
+ margin-right: -0.6em;
+ pointer-events: none;
+}
+
+/**
+ * Margins
+ */
+.wp-block-navigation__responsive-container,
+.wp-block-navigation__responsive-close,
+.wp-block-navigation__responsive-dialog,
+.wp-block-navigation,
+.wp-block-navigation .wp-block-page-list,
+.wp-block-navigation__container,
+.wp-block-navigation__responsive-container-content {
+ gap: inherit;
+}
+
+.wp-block-navigation:where(.has-background),
+.wp-block-navigation:where(.has-background) .wp-block-navigation .wp-block-page-list,
+.wp-block-navigation:where(.has-background) .wp-block-navigation__container {
+ gap: inherit;
+}
+
+/**
+ * Paddings
+ */
+.wp-block-navigation:where(.has-background) .wp-block-navigation-item__content {
+ padding: 0.5em 1em;
+}
+
+.wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content {
+ padding: 0.5em 1em;
+}
+
+/**
+ * Justifications.
+ */
+.wp-block-navigation.items-justified-space-between .wp-block-page-list > .has-child:last-child .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-space-between > .wp-block-navigation__container > .has-child:last-child .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-page-list > .has-child .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container {
+ right: auto;
+ left: 0;
+}
+.wp-block-navigation.items-justified-space-between .wp-block-page-list > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-space-between > .wp-block-navigation__container > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-page-list > .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ right: -1px;
+ left: -1px;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation.items-justified-space-between .wp-block-page-list > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-space-between > .wp-block-navigation__container > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-page-list > .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ right: auto;
+ left: 100%;
+ }
+}
+
+.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
+ background-color: #fff;
+ color: #000;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+}
+
+.wp-block-navigation__container {
+ display: flex;
+ flex-wrap: var(--navigation-layout-wrap, wrap);
+ flex-direction: var(--navigation-layout-direction, initial);
+ justify-content: var(--navigation-layout-justify, initial);
+ align-items: var(--navigation-layout-align, initial);
+ list-style: none;
+ margin: 0;
+ padding-right: 0;
+}
+.wp-block-navigation__container .is-responsive {
+ display: none;
+}
+
+.wp-block-navigation__container:only-child,
+.wp-block-page-list:only-child {
+ flex-grow: 1;
+}
+
+/**
+ * Mobile menu.
+ */
+.wp-block-navigation__responsive-container {
+ display: none;
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+}
+.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
+ display: flex;
+ flex-wrap: var(--navigation-layout-wrap, wrap);
+ flex-direction: var(--navigation-layout-direction, initial);
+ justify-content: var(--navigation-layout-justify, initial);
+ align-items: var(--navigation-layout-align, initial);
+}
+.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
+ color: inherit !important;
+ background-color: inherit !important;
+}
+.wp-block-navigation__responsive-container.is-menu-open {
+ display: flex;
+ flex-direction: column;
+ background-color: inherit;
+ padding: 2rem;
+ overflow: auto;
+ z-index: 100000;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
+ padding-top: calc(2rem + 24px);
+ overflow: visible;
+ display: flex;
+ flex-direction: column;
+ flex-wrap: nowrap;
+ align-items: var(--navigation-layout-justification-setting, inherit);
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
+ justify-content: flex-start;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon {
+ display: none;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .submenu-container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
+ opacity: 1;
+ visibility: visible;
+ height: auto;
+ width: auto;
+ overflow: initial;
+ min-width: 200px;
+ position: static;
+ border: none;
+ padding-right: 2rem;
+ padding-left: 2rem;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
+ gap: inherit;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
+ padding-top: var(--wp--style--block-gap, 2em);
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
+ padding: 0;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
+ display: flex;
+ flex-direction: column;
+ align-items: var(--navigation-layout-justification-setting, initial);
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
+ color: inherit !important;
+ background: transparent !important;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
+ left: auto;
+ right: auto;
+}
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
+ display: block;
+ width: 100%;
+ position: relative;
+ z-index: auto;
+ background-color: inherit;
+ }
+ .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close {
+ display: none;
+ }
+ .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
+ right: 0;
+ }
+}
+
+.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
+ background-color: #fff;
+ color: #000;
+}
+
+.wp-block-navigation__toggle_button_label {
+ font-size: 1rem;
+ font-weight: bold;
+}
+
+.wp-block-navigation__responsive-container-open,
+.wp-block-navigation__responsive-container-close {
+ vertical-align: middle;
+ cursor: pointer;
+ color: currentColor;
+ background: transparent;
+ border: none;
+ margin: 0;
+ padding: 0;
+}
+.wp-block-navigation__responsive-container-open svg,
+.wp-block-navigation__responsive-container-close svg {
+ fill: currentColor;
+ pointer-events: none;
+ display: block;
+ width: 24px;
+ height: 24px;
+}
+
+.wp-block-navigation__responsive-container-open {
+ display: flex;
+}
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-container-open:not(.always-shown) {
+ display: none;
+ }
+}
+
+.wp-block-navigation__responsive-container-close {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 2;
+}
+
+.wp-block-navigation__responsive-close {
+ width: 100%;
+}
+.wp-block-navigation__responsive-close:focus {
+ outline: none;
+}
+
+.is-menu-open .wp-block-navigation__responsive-close,
+.is-menu-open .wp-block-navigation__responsive-dialog,
+.is-menu-open .wp-block-navigation__responsive-container-content {
+ box-sizing: border-box;
+}
+
+.wp-block-navigation__responsive-dialog {
+ position: relative;
+}
+
+html.has-modal-open {
+ overflow: hidden;
+}
+
+.wp-block-navigation .wp-block-navigation-item__label {
+ word-break: normal;
+ overflow-wrap: break-word;
+}
+.wp-block-navigation .wp-block-navigation-item__description {
+ display: none;
+}
+
+.wp-block-navigation .wp-block-page-list {
+ display: flex;
+ flex-direction: var(--navigation-layout-direction, initial);
+ justify-content: var(--navigation-layout-justify, initial);
+ align-items: var(--navigation-layout-align, initial);
+ flex-wrap: var(--navigation-layout-wrap, wrap);
+ background-color: inherit;
+}
+.wp-block-navigation .wp-block-navigation-item {
+ background-color: inherit;
+}
+
+.is-small-text {
+ font-size: 0.875em;
+}
+
+.is-regular-text {
+ font-size: 1em;
+}
+
+.is-large-text {
+ font-size: 2.25em;
+}
+
+.is-larger-text {
+ font-size: 3em;
+}
+
+.has-drop-cap:not(:focus)::first-letter {
+ float: right;
+ font-size: 8.4em;
+ line-height: 0.68;
+ font-weight: 100;
+ margin: 0.05em 0 0 0.1em;
+ text-transform: uppercase;
+ font-style: normal;
+}
+
+p.has-drop-cap.has-background {
+ overflow: hidden;
+}
+
+p.has-background {
+ padding: 1.25em 2.375em;
+}
+
+:where(p.has-text-color:not(.has-link-color)) a {
+ color: inherit;
+}
+
+.wp-block-post-author {
+ display: flex;
+ flex-wrap: wrap;
+}
+.wp-block-post-author__byline {
+ width: 100%;
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 0.5em;
+}
+.wp-block-post-author__avatar {
+ margin-left: 1em;
+}
+.wp-block-post-author__bio {
+ margin-bottom: 0.7em;
+ font-size: 0.7em;
+}
+.wp-block-post-author__content {
+ flex-grow: 1;
+ flex-basis: 0;
+}
+.wp-block-post-author__name {
+ margin: 0;
+}
+
+.wp-block-post-comments {
+ /* utility classes */
+ /* end utility classes */
+}
+.wp-block-post-comments .alignleft {
+ float: right;
+}
+.wp-block-post-comments .alignright {
+ float: left;
+}
+.wp-block-post-comments .navigation::after {
+ content: "";
+ display: table;
+ clear: both;
+}
+.wp-block-post-comments .commentlist {
+ clear: both;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+.wp-block-post-comments .commentlist .comment {
+ min-height: 2.25em;
+ padding-right: 3.25em;
+}
+.wp-block-post-comments .commentlist .comment p {
+ font-size: 1em;
+ line-height: 1.8;
+ margin: 1em 0;
+}
+.wp-block-post-comments .commentlist .children {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+.wp-block-post-comments .comment-author {
+ line-height: 1.5;
+}
+.wp-block-post-comments .comment-author .avatar {
+ border-radius: 1.5em;
+ display: block;
+ float: right;
+ height: 2.5em;
+ margin-top: 0.5em;
+ margin-left: 0.75em;
+ width: 2.5em;
+}
+.wp-block-post-comments .comment-author cite {
+ font-style: normal;
+}
+.wp-block-post-comments .comment-meta {
+ font-size: 0.875em;
+ line-height: 1.5;
+}
+.wp-block-post-comments .comment-meta b {
+ font-weight: normal;
+}
+.wp-block-post-comments .comment-meta .comment-awaiting-moderation {
+ margin-top: 1em;
+ margin-bottom: 1em;
+ display: block;
+}
+.wp-block-post-comments .comment-body .commentmetadata {
+ font-size: 0.875em;
+}
+.wp-block-post-comments .comment-form-comment label,
+.wp-block-post-comments .comment-form-author label,
+.wp-block-post-comments .comment-form-email label,
+.wp-block-post-comments .comment-form-url label {
+ display: block;
+ margin-bottom: 0.25em;
+}
+.wp-block-post-comments .comment-form textarea,
+.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]) {
+ display: block;
+ box-sizing: border-box;
+ width: 100%;
+}
+.wp-block-post-comments .comment-form-cookies-consent {
+ display: flex;
+ gap: 0.25em;
+}
+.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent {
+ margin-top: 0.35em;
+}
+.wp-block-post-comments .comment-reply-title {
+ margin-bottom: 0;
+}
+.wp-block-post-comments .comment-reply-title :where(small) {
+ font-size: var(--wp--preset--font-size--medium, smaller);
+ margin-right: 0.5em;
+}
+.wp-block-post-comments .reply {
+ font-size: 0.875em;
+ margin-bottom: 1.4em;
+}
+.wp-block-post-comments textarea,
+.wp-block-post-comments input:not([type=submit]) {
+ border: 1px solid #949494;
+ font-size: 1em;
+ font-family: inherit;
+}
+.wp-block-post-comments textarea,
+.wp-block-post-comments input:not([type=submit]):not([type=checkbox]) {
+ padding: calc(0.667em + 2px);
+}
+.wp-block-post-comments input[type=submit] {
+ border: none;
+}
+
+.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title) {
+ font-weight: inherit;
+}
+.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title) {
+ font-family: inherit;
+}
+.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title), .wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title) {
+ font-size: inherit;
+}
+.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title) {
+ line-height: inherit;
+}
+.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title) {
+ font-style: inherit;
+}
+.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title) {
+ letter-spacing: inherit;
+}
+.wp-block-post-comments-form input[type=submit] {
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ text-align: center;
+ overflow-wrap: break-word;
+}
+.wp-block-post-comments-form textarea,
+.wp-block-post-comments-form input:not([type=submit]) {
+ border: 1px solid #949494;
+ font-size: 1em;
+ font-family: inherit;
+}
+.wp-block-post-comments-form textarea,
+.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]) {
+ padding: calc(0.667em + 2px);
+}
+.wp-block-post-comments-form .comment-form textarea,
+.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]) {
+ display: block;
+ box-sizing: border-box;
+ width: 100%;
+}
+.wp-block-post-comments-form .comment-form-author label,
+.wp-block-post-comments-form .comment-form-email label,
+.wp-block-post-comments-form .comment-form-url label {
+ display: block;
+ margin-bottom: 0.25em;
+}
+.wp-block-post-comments-form .comment-form-cookies-consent {
+ display: flex;
+ gap: 0.25em;
+}
+.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent {
+ margin-top: 0.35em;
+}
+.wp-block-post-comments-form .comment-reply-title {
+ margin-bottom: 0;
+}
+.wp-block-post-comments-form .comment-reply-title :where(small) {
+ font-size: var(--wp--preset--font-size--medium, smaller);
+ margin-right: 0.5em;
+}
+
+.wp-block-post-excerpt__more-link {
+ display: inline-block;
+}
+
+.wp-block-post-featured-image {
+ margin-right: 0;
+ margin-left: 0;
+}
+.wp-block-post-featured-image a {
+ display: block;
+}
+.wp-block-post-featured-image img {
+ max-width: 100%;
+ width: 100%;
+ height: auto;
+ vertical-align: bottom;
+}
+.wp-block-post-featured-image.alignwide img, .wp-block-post-featured-image.alignfull img {
+ width: 100%;
+}
+
+.wp-block-post-terms__separator {
+ white-space: pre-wrap;
+}
+
+.wp-block-post-title {
+ word-break: break-word;
+}
+.wp-block-post-title a {
+ display: inline-block;
+}
+
+.wp-block-preformatted {
+ white-space: pre-wrap;
+}
+
+.wp-block-preformatted.has-background {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-pullquote {
+ margin: 0 0 1em 0;
+ padding: 3em 0;
+ text-align: center;
+ overflow-wrap: break-word;
+ box-sizing: border-box;
+}
+.wp-block-pullquote p,
+.wp-block-pullquote blockquote,
+.wp-block-pullquote cite {
+ color: inherit;
+}
+.wp-block-pullquote.has-text-align-left, .wp-block-pullquote.has-text-align-right, .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
+ max-width: 420px;
+}
+.wp-block-pullquote.has-text-align-left p, .wp-block-pullquote.has-text-align-right p, .wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
+ font-size: 1.25em;
+}
+.wp-block-pullquote p {
+ font-size: 1.75em;
+ line-height: 1.6;
+}
+.wp-block-pullquote cite,
+.wp-block-pullquote footer {
+ position: relative;
+}
+.wp-block-pullquote .has-text-color a {
+ color: inherit;
+}
+
+.wp-block-pullquote.has-text-align-left blockquote {
+ text-align: right;
+}
+
+.wp-block-pullquote.has-text-align-right blockquote {
+ text-align: left;
+}
+
+.wp-block-pullquote.is-style-solid-color {
+ border: none;
+}
+.wp-block-pullquote.is-style-solid-color blockquote {
+ margin-right: auto;
+ margin-left: auto;
+ max-width: 60%;
+}
+.wp-block-pullquote.is-style-solid-color blockquote p {
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 2em;
+}
+.wp-block-pullquote.is-style-solid-color blockquote cite {
+ text-transform: none;
+ font-style: normal;
+}
+
+.wp-block-pullquote cite {
+ color: inherit;
+}
+
+.wp-block-post-template,
+.wp-block-query-loop {
+ margin-top: 0;
+ margin-bottom: 0;
+ max-width: 100%;
+ list-style: none;
+ padding: 0;
+}
+.wp-block-post-template.wp-block-post-template,
+.wp-block-query-loop.wp-block-post-template {
+ background: none;
+}
+.wp-block-post-template.is-flex-container,
+.wp-block-query-loop.is-flex-container {
+ flex-direction: row;
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1.25em;
+}
+.wp-block-post-template.is-flex-container li,
+.wp-block-query-loop.is-flex-container li {
+ margin: 0;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li {
+ width: calc((100% / 2) - 1.25em + (1.25em / 2));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li {
+ width: calc((100% / 3) - 1.25em + (1.25em / 3));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li {
+ width: calc((100% / 4) - 1.25em + (1.25em / 4));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-5 > li {
+ width: calc((100% / 5) - 1.25em + (1.25em / 5));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-6 > li {
+ width: calc((100% / 6) - 1.25em + (1.25em / 6));
+ }
+}
+
+.wp-block-query-pagination > .wp-block-query-pagination-next,
+.wp-block-query-pagination > .wp-block-query-pagination-previous,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers {
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-query-pagination > .wp-block-query-pagination-next:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-previous:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers:last-child {
+ margin-right: 0;
+}
+.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
+ margin-left: 1ch;
+ display: inline-block;
+}
+.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(-1);;
+}
+.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
+ margin-right: 1ch;
+ display: inline-block;
+}
+.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(-1);;
+}
+.wp-block-query-pagination.aligncenter {
+ justify-content: center;
+}
+
+.wp-block-quote {
+ box-sizing: border-box;
+ overflow-wrap: break-word;
+}
+.wp-block-quote.is-style-large:not(.is-style-plain), .wp-block-quote.is-large:not(.is-style-plain) {
+ margin-bottom: 1em;
+ padding: 0 1em;
+}
+.wp-block-quote.is-style-large:not(.is-style-plain) p, .wp-block-quote.is-large:not(.is-style-plain) p {
+ font-size: 1.5em;
+ font-style: italic;
+ line-height: 1.6;
+}
+.wp-block-quote.is-style-large:not(.is-style-plain) cite,
+.wp-block-quote.is-style-large:not(.is-style-plain) footer, .wp-block-quote.is-large:not(.is-style-plain) cite,
+.wp-block-quote.is-large:not(.is-style-plain) footer {
+ font-size: 1.125em;
+ text-align: left;
+}
+
+.wp-block-read-more {
+ display: block;
+ width: -moz-fit-content;
+ width: fit-content;
+}
+.wp-block-read-more:not([style*=text-decoration]) {
+ text-decoration: none;
+}
+.wp-block-read-more:not([style*=text-decoration]):focus, .wp-block-read-more:not([style*=text-decoration]):active {
+ text-decoration: none;
+}
+
+ul.wp-block-rss {
+ list-style: none;
+ padding: 0;
+}
+ul.wp-block-rss.wp-block-rss {
+ box-sizing: border-box;
+}
+ul.wp-block-rss.alignleft {
+ margin-right: 2em;
+}
+ul.wp-block-rss.alignright {
+ margin-left: 2em;
+}
+ul.wp-block-rss.is-grid {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 0;
+ list-style: none;
+}
+ul.wp-block-rss.is-grid li {
+ margin: 0 0 1em 1em;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ ul.wp-block-rss.columns-2 li {
+ width: calc(( 100% / 2 ) - 1em);
+ }
+ ul.wp-block-rss.columns-3 li {
+ width: calc(( 100% / 3 ) - 1em);
+ }
+ ul.wp-block-rss.columns-4 li {
+ width: calc(( 100% / 4 ) - 1em);
+ }
+ ul.wp-block-rss.columns-5 li {
+ width: calc(( 100% / 5 ) - 1em);
+ }
+ ul.wp-block-rss.columns-6 li {
+ width: calc(( 100% / 6 ) - 1em);
+ }
+}
+
+.wp-block-rss__item-publish-date,
+.wp-block-rss__item-author {
+ display: block;
+ font-size: 0.8125em;
+}
+
+.wp-block-search__button {
+ background: #f7f7f7;
+ border: 1px solid #ccc;
+ padding: 0.375em 0.625em;
+ color: #32373c;
+ margin-right: 0.625em;
+ word-break: normal;
+ font-size: inherit;
+ font-family: inherit;
+ line-height: inherit;
+}
+.wp-block-search__button.has-icon {
+ line-height: 0;
+}
+.wp-block-search__button svg {
+ min-width: 1.5em;
+ min-height: 1.5em;
+ fill: currentColor;
+}
+
+.wp-block-search__inside-wrapper {
+ display: flex;
+ flex: auto;
+ flex-wrap: nowrap;
+ max-width: 100%;
+}
+
+.wp-block-search__label {
+ width: 100%;
+}
+
+.wp-block-search__input {
+ padding: 8px;
+ flex-grow: 1;
+ min-width: 3em;
+ border: 1px solid #949494;
+ font-size: inherit;
+ font-family: inherit;
+ line-height: inherit;
+}
+
+.wp-block-search.wp-block-search__button-only .wp-block-search__button {
+ margin-right: 0;
+}
+
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
+ padding: 4px;
+ border: 1px solid #949494;
+}
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
+ border-radius: 0;
+ border: none;
+ padding: 0 0.25em 0 0;
+}
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
+ outline: none;
+}
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
+ padding: 0.125em 0.5em;
+}
+
+.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
+ margin: auto;
+}
+
+.wp-block-separator {
+ border-top: 1px solid currentColor;
+ border-bottom: 1px solid currentColor;
+}
+.wp-block-separator.is-style-dots {
+ background: none !important;
+ border: none;
+ text-align: center;
+ line-height: 1;
+ height: auto;
+}
+.wp-block-separator.is-style-dots::before {
+ content: "···";
+ color: currentColor;
+ font-size: 1.5em;
+ letter-spacing: 2em;
+ padding-left: 2em;
+ font-family: serif;
+}
+
+.wp-block-site-logo {
+ line-height: 0;
+}
+.wp-block-site-logo a {
+ display: inline-block;
+}
+.wp-block-site-logo.is-default-size img {
+ width: 120px;
+ height: auto;
+}
+.wp-block-site-logo a,
+.wp-block-site-logo img {
+ border-radius: inherit;
+}
+.wp-block-site-logo.aligncenter {
+ margin-right: auto;
+ margin-left: auto;
+ text-align: center;
+}
+.wp-block-site-logo.is-style-rounded {
+ border-radius: 9999px;
+}
+
+.wp-block-social-links {
+ padding-right: 0;
+ padding-left: 0;
+ text-indent: 0;
+ margin-right: 0;
+ background: none;
+}
+.wp-block-social-links .wp-social-link a,
+.wp-block-social-links .wp-social-link a:hover {
+ text-decoration: none;
+ border-bottom: 0;
+ box-shadow: none;
+}
+.wp-block-social-links .wp-social-link a {
+ padding: 0.25em;
+}
+.wp-block-social-links .wp-social-link svg {
+ width: 1em;
+ height: 1em;
+}
+.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
+ margin-right: 0.5em;
+ margin-left: 0.5em;
+ font-size: 0.65em;
+}
+.wp-block-social-links.has-small-icon-size {
+ font-size: 16px;
+}
+.wp-block-social-links, .wp-block-social-links.has-normal-icon-size {
+ font-size: 24px;
+}
+.wp-block-social-links.has-large-icon-size {
+ font-size: 36px;
+}
+.wp-block-social-links.has-huge-icon-size {
+ font-size: 48px;
+}
+.wp-block-social-links.aligncenter {
+ justify-content: center;
+ display: flex;
+}
+.wp-block-social-links.alignright {
+ justify-content: flex-end;
+}
+
+.wp-block-social-link {
+ display: block;
+ border-radius: 9999px;
+ transition: transform 0.1s ease;
+ height: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-social-link {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.wp-block-social-link a {
+ align-items: center;
+ display: flex;
+ line-height: 0;
+ transition: transform 0.1s ease;
+}
+.wp-block-social-link:hover {
+ transform: scale(1.1);
+}
+
+.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited,
+.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg {
+ color: currentColor;
+ fill: currentColor;
+}
+
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
+ background-color: #f0f0f0;
+ color: #444;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
+ background-color: #f90;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
+ background-color: #1ea0c3;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
+ background-color: #0757fe;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
+ background-color: #1e1f26;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
+ background-color: #02e49b;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
+ background-color: #e94c89;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
+ background-color: #4280ff;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
+ background-color: #f45800;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
+ background-color: #1778f2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
+ background-color: #000;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
+ background-color: #0461dd;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
+ background-color: #e65678;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
+ background-color: #24292d;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
+ background-color: #eceadd;
+ color: #382110;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
+ background-color: #ea4434;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
+ background-color: #f00075;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
+ background-color: #e21b24;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
+ background-color: #0d66c2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
+ background-color: #3288d4;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
+ background-color: #02ab6c;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
+ background-color: #f6405f;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
+ background-color: #ff424d;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
+ background-color: #e60122;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
+ background-color: #ef4155;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
+ background-color: #fe4500;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
+ background-color: #0478d7;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
+ background-color: #fefc00;
+ color: #fff;
+ stroke: #000;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
+ background-color: #ff5600;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
+ background-color: #1bd760;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
+ background-color: #2aabee;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
+ background-color: #000;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
+ background-color: #011835;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
+ background-color: #6440a4;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
+ background-color: #1da1f2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
+ background-color: #1eb7ea;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
+ background-color: #4680c2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
+ background-color: #3499cd;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
+ background-color: #d32422;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
+ background-color: #f00;
+ color: #fff;
+}
+
+.wp-block-social-links.is-style-logos-only .wp-social-link {
+ background: none;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link a {
+ padding: 0;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link svg {
+ width: 1.25em;
+ height: 1.25em;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
+ color: #f90;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
+ color: #1ea0c3;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
+ color: #0757fe;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
+ color: #1e1f26;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
+ color: #02e49b;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
+ color: #e94c89;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
+ color: #4280ff;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
+ color: #f45800;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
+ color: #1778f2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
+ color: #000;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
+ color: #0461dd;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
+ color: #e65678;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-github {
+ color: #24292d;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
+ color: #382110;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-google {
+ color: #ea4434;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
+ color: #f00075;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
+ color: #e21b24;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
+ color: #0d66c2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
+ color: #3288d4;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
+ color: #02ab6c;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
+ color: #f6405f;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
+ color: #ff424d;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
+ color: #e60122;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
+ color: #ef4155;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
+ color: #fe4500;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
+ color: #0478d7;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
+ color: #fff;
+ stroke: #000;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
+ color: #ff5600;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
+ color: #1bd760;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
+ color: #2aabee;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
+ color: #000;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
+ color: #011835;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
+ color: #6440a4;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
+ color: #1da1f2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
+ color: #1eb7ea;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
+ color: #4680c2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
+ color: #3499cd;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
+ color: #d32422;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
+ color: #f00;
+}
+
+.wp-block-social-links.is-style-pill-shape .wp-social-link {
+ width: auto;
+}
+.wp-block-social-links.is-style-pill-shape .wp-social-link a {
+ padding-right: calc((2/3) * 1em);
+ padding-left: calc((2/3) * 1em);
+}
+
+.wp-block-spacer {
+ clear: both;
+}
+
+.wp-block-tag-cloud.aligncenter {
+ text-align: center;
+}
+.wp-block-tag-cloud.alignfull {
+ padding-right: 1em;
+ padding-left: 1em;
+}
+.wp-block-tag-cloud a {
+ display: inline-block;
+ margin-left: 5px;
+}
+.wp-block-tag-cloud span {
+ display: inline-block;
+ margin-right: 5px;
+ text-decoration: none;
+}
+.wp-block-tag-cloud.is-style-outline {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1ch;
+}
+.wp-block-tag-cloud.is-style-outline a {
+ border: 1px solid currentColor;
+ font-size: unset !important;
+ margin-left: 0;
+ padding: 1ch 2ch;
+ text-decoration: none !important;
+}
+
+.wp-block-table {
+ margin: 0 0 1em 0;
+ overflow-x: auto;
+}
+.wp-block-table table {
+ border-collapse: collapse;
+ width: 100%;
+}
+.wp-block-table .has-fixed-layout {
+ table-layout: fixed;
+ width: 100%;
+}
+.wp-block-table .has-fixed-layout td,
+.wp-block-table .has-fixed-layout th {
+ word-break: break-word;
+}
+.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {
+ display: table;
+ width: auto;
+}
+.wp-block-table.alignleft td,
+.wp-block-table.alignleft th, .wp-block-table.aligncenter td,
+.wp-block-table.aligncenter th, .wp-block-table.alignright td,
+.wp-block-table.alignright th {
+ word-break: break-word;
+}
+.wp-block-table .has-subtle-light-gray-background-color {
+ background-color: #f3f4f5;
+}
+.wp-block-table .has-subtle-pale-green-background-color {
+ background-color: #e9fbe5;
+}
+.wp-block-table .has-subtle-pale-blue-background-color {
+ background-color: #e7f5fe;
+}
+.wp-block-table .has-subtle-pale-pink-background-color {
+ background-color: #fcf0ef;
+}
+.wp-block-table.is-style-stripes {
+ border-spacing: 0;
+ border-collapse: inherit;
+ background-color: transparent;
+ border-bottom: 1px solid #f0f0f0;
+}
+.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
+ background-color: #f0f0f0;
+}
+.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
+ background-color: #f3f4f5;
+}
+.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
+ background-color: #e9fbe5;
+}
+.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
+ background-color: #e7f5fe;
+}
+.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
+ background-color: #fcf0ef;
+}
+.wp-block-table.is-style-stripes th,
+.wp-block-table.is-style-stripes td {
+ border-color: transparent;
+}
+.wp-block-table .has-border-color > *,
+.wp-block-table .has-border-color tr,
+.wp-block-table .has-border-color th,
+.wp-block-table .has-border-color td {
+ border-color: inherit;
+}
+.wp-block-table table[style*=border-style] > *,
+.wp-block-table table[style*=border-style] tr,
+.wp-block-table table[style*=border-style] th,
+.wp-block-table table[style*=border-style] td {
+ border-style: inherit;
+}
+.wp-block-table table[style*=border-width] > *,
+.wp-block-table table[style*=border-width] tr,
+.wp-block-table table[style*=border-width] th,
+.wp-block-table table[style*=border-width] td {
+ border-width: inherit;
+ border-style: inherit;
+}
+
+.wp-block-text-columns {
+ display: flex;
+}
+.wp-block-text-columns.aligncenter {
+ display: flex;
+}
+.wp-block-text-columns .wp-block-column {
+ margin: 0 1em;
+ padding: 0;
+}
+.wp-block-text-columns .wp-block-column:first-child {
+ margin-right: 0;
+}
+.wp-block-text-columns .wp-block-column:last-child {
+ margin-left: 0;
+}
+.wp-block-text-columns.columns-2 .wp-block-column {
+ width: calc(100% / 2);
+}
+.wp-block-text-columns.columns-3 .wp-block-column {
+ width: calc(100% / 3);
+}
+.wp-block-text-columns.columns-4 .wp-block-column {
+ width: calc(100% / 4);
+}
+
+pre.wp-block-verse {
+ font-family: inherit;
+ overflow: auto;
+ white-space: pre-wrap;
+}
+
+.wp-block-video {
+ margin: 0 0 1em 0;
+}
+.wp-block-video video {
+ width: 100%;
+}
+@supports (position: sticky) {
+ .wp-block-video [poster] {
+ -o-object-fit: cover;
+ object-fit: cover;
+ }
+}
+.wp-block-video.aligncenter {
+ text-align: center;
+}
+.wp-block-video figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+
+:root {
+ /*
+ * Our classes uses the same values we set for gradient value attributes,
+ * and we can not use spacing because of WP multi site kses rule.
+ */
+ /* stylelint-disable function-comma-space-after */
+ /* stylelint-enable function-comma-space-after */
+ --wp--preset--font-size--normal: 16px;
+ --wp--preset--font-size--huge: 42px;
+}
+:root .has-very-light-gray-background-color {
+ background-color: #eee;
+}
+:root .has-very-dark-gray-background-color {
+ background-color: #313131;
+}
+:root .has-very-light-gray-color {
+ color: #eee;
+}
+:root .has-very-dark-gray-color {
+ color: #313131;
+}
+:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
+ background: linear-gradient(-135deg, #00d084 0%, #0693e3 100%);
+}
+:root .has-purple-crush-gradient-background {
+ background: linear-gradient(-135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%);
+}
+:root .has-hazy-dawn-gradient-background {
+ background: linear-gradient(-135deg, #faaca8 0%, #dad0ec 100%);
+}
+:root .has-subdued-olive-gradient-background {
+ background: linear-gradient(-135deg, #fafae1 0%, #67a671 100%);
+}
+:root .has-atomic-cream-gradient-background {
+ background: linear-gradient(-135deg, #fdd79a 0%, #004a59 100%);
+}
+:root .has-nightshade-gradient-background {
+ background: linear-gradient(-135deg, #330968 0%, #31cdcf 100%);
+}
+:root .has-midnight-gradient-background {
+ background: linear-gradient(-135deg, #020381 0%, #2874fc 100%);
+}
+
+.has-regular-font-size {
+ font-size: 1em;
+}
+
+.has-larger-font-size {
+ font-size: 2.625em;
+}
+
+.has-normal-font-size {
+ font-size: var(--wp--preset--font-size--normal);
+}
+
+.has-huge-font-size {
+ font-size: var(--wp--preset--font-size--huge);
+}
+
+.has-text-align-center {
+ text-align: center;
+}
+
+.has-text-align-left {
+ text-align: left;
+}
+
+.has-text-align-right {
+ text-align: right;
+}
+
+#end-resizable-editor-section {
+ display: none;
+}
+
+.aligncenter {
+ clear: both;
+}
+
+.items-justified-left {
+ justify-content: flex-start;
+}
+
+.items-justified-center {
+ justify-content: center;
+}
+
+.items-justified-right {
+ justify-content: flex-end;
+}
+
+.items-justified-space-between {
+ justify-content: space-between;
+}
+
+.screen-reader-text {
+ 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;
+}
+
+.screen-reader-text:focus {
+ background-color: #ddd;
+ clip: auto !important;
+ -webkit-clip-path: none;
+ clip-path: none;
+ color: #444;
+ display: block;
+ font-size: 1em;
+ height: auto;
+ right: 5px;
+ line-height: normal;
+ padding: 15px 23px 14px;
+ text-decoration: none;
+ top: 5px;
+ width: auto;
+ z-index: 100000;
+}
+
+/**
+ * The following provide a simple means of applying a default border style when
+ * a user first makes a selection in the border block support panel.
+ * This prevents issues such as where the user could set a border width
+ * and see no border due there being no border style set.
+ *
+ * This is intended to be removed once intelligent defaults can be set while
+ * making border selections via the block support.
+ *
+ * See: https://github.com/WordPress/gutenberg/pull/33743
+ */
+html :where(.has-border-color) {
+ border-style: solid;
+}
+
+html :where([style*="border-width"]) {
+ border-style: solid;
+}
+
+/**
+ * Provide baseline responsiveness for images.
+ */
+html :where(img[class*="wp-image-"]) {
+ height: auto;
+ max-width: 100%;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/style-rtl.min.css b/static/wp-includes/css/dist/block-library/style-rtl.min.css
new file mode 100755
index 0000000..0651f07
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/style-rtl.min.css
@@ -0,0 +1 @@
+@charset "UTF-8";.wp-block-archives-dropdown label{display:block}.wp-block-avatar.aligncenter{text-align:center}.wp-block-audio{margin:0 0 1em}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-align:center;text-decoration:none;word-break:break-word;box-sizing:border-box}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - var(--wp--style--block-gap, .5em)*0.75)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - var(--wp--style--block-gap, .5em)*0.5)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - var(--wp--style--block-gap, .5em)*0.25)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{width:100%;flex-basis:100%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{width:25%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{width:50%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{width:75%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline>:where(.wp-block-button__link),:where(.wp-block-button__link).is-style-outline{border:2px solid;padding:.667em 1.333em}.is-style-outline>.wp-block-button__link:not(.has-text-color),.wp-block-button__link.is-style-outline:not(.has-text-color){color:currentColor}.is-style-outline>.wp-block-button__link:not(.has-background),.wp-block-button__link.is-style-outline:not(.has-background){background-color:transparent}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-right:auto;margin-left:auto;width:100%}.wp-block-button.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:.25em;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-code code{display:block;font-family:inherit;overflow-wrap:break-word;white-space:pre-wrap}.wp-block-columns{display:flex;margin-bottom:1.75em;box-sizing:border-box;flex-wrap:wrap!important;align-items:normal!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{margin-right:.5em;margin-bottom:.5em}.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child{margin-right:0}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow{margin-left:1ch;display:inline-block}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(-1)}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow{margin-right:1ch;display:inline-block}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(-1)}.wp-block-comments-pagination.aligncenter{justify-content:center}.wp-block-comment-template{margin-bottom:0;max-width:100%;list-style:none;padding:0}.wp-block-comment-template li{clear:both}.wp-block-comment-template ol{margin-bottom:0;max-width:100%;list-style:none;padding-right:2rem}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;width:100%;display:flex;justify-content:center;align-items:center;padding:1em;box-sizing:border-box}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-touch-callout:inherit){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]),.wp-block-cover .has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover-image .has-background-dim.has-background-gradient,.wp-block-cover .has-background-dim.has-background-gradient{background-color:transparent}.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__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0{opacity:0}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10{opacity:.1}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20{opacity:.2}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30{opacity:.3}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40{opacity:.4}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50{opacity:.5}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60{opacity:.6}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70{opacity:.7}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80{opacity:.8}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90{opacity:.9}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100{opacity:1}.wp-block-cover-image .block-library-cover__padding-visualizer,.wp-block-cover .block-library-cover__padding-visualizer{z-index:2}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports (position:sticky){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:100%;z-index:1;color:#fff}.wp-block-cover-image.is-light .wp-block-cover__inner-container,.wp-block-cover.is-light .wp-block-cover__inner-container{color:#000}.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover-image img.wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background,.wp-block-cover img.wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background{position:absolute;top:0;right:0;left:0;bottom:0;margin:0;padding:0;width:100%;height:100%;max-width:none;max-height:none;-o-object-fit:cover;object-fit:cover;outline:none;border:none;box-shadow:none}.wp-block-cover__image-background,.wp-block-cover__video-background{z-index:0}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-right:0;text-align:right}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-left:0;text-align:left}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:840px;padding:.44em;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-width:320px;min-height:240px}.wp-block-embed{margin:0 0 1em;overflow-wrap:break-word}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;left:0;bottom:0;right:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__embed{margin-bottom:1em}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:.8em;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-right:.75em}.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item{margin:0 0 1em 1em;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n){margin-left:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure{margin:0;height:100%;display:flex;align-items:flex-end;justify-content:flex-start}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:auto}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:3em .77em .7em;color:#fff;text-align:center;font-size:.8em;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);box-sizing:border-box;margin:0;z-index:2}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid:not(.has-nested-images) figcaption,.wp-block-gallery:not(.has-nested-images) figcaption{flex-grow:1}.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img{width:100%;height:100%;flex:1;-o-object-fit:cover;object-fit:cover}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item{width:100%;margin-left:0}@media (min-width:600px){.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item{width:calc(33.33333% - .66667em);margin-left:1em}.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item{width:calc(25% - .75em);margin-left:1em}.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item{width:calc(20% - .8em);margin-left:1em}.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item{width:calc(16.66667% - .83333em);margin-left:1em}.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item{width:calc(14.28571% - .85714em);margin-left:1em}.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item{width:calc(12.5% - .875em);margin-left:1em}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n){margin-left:0}}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child{margin-left:0}.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright{max-width:420px;width:100%}.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-gallery:not(.is-cropped) .blocks-gallery-item{align-self:flex-start}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2);margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image{display:flex;flex-grow:1;justify-content:center;position:relative;flex-direction:column;max-width:100%}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{margin:0;flex-direction:column;flex-grow:1}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;color:#fff;font-size:13px;right:0;margin-bottom:0;max-height:60%;overflow:auto;padding:0 8px 8px;position:absolute;text-align:center;width:100%;box-sizing:border-box}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img{display:inline}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a{color:inherit}.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div{flex:1 1 auto}.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{flex:initial;background:none;color:inherit;margin:0;padding:10px 10px 9px;position:relative}.wp-block-gallery.has-nested-images figcaption{flex-grow:1;flex-basis:100%;text-align:center}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-top:0;margin-bottom:auto}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{width:100%;flex:1 0 0%;height:100%;-o-object-fit:cover;object-fit:cover}.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image){width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image){width:calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*0.66667)}.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image){width:calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*0.75)}.wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image){width:calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*0.8)}.wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image){width:calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*0.83333)}.wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image){width:calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*0.85714)}.wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image){width:calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*0.875)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*0.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*0.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright{max-width:420px;width:100%}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}.wp-block-group{box-sizing:border-box}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}.wp-block-image{margin:0 0 1em}.wp-block-image img{height:auto;max-width:100%;vertical-align:bottom}.wp-block-image:not(.is-style-rounded)>a,.wp-block-image:not(.is-style-rounded) img{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image.aligncenter,.wp-block-image .aligncenter,.wp-block-image.alignleft,.wp-block-image .alignleft,.wp-block-image.alignright,.wp-block-image .alignright{display:table}.wp-block-image.aligncenter>figcaption,.wp-block-image .aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image.alignright>figcaption,.wp-block-image .alignright>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin-left:1em;margin-top:.5em;margin-bottom:.5em}.wp-block-image .alignright{float:right;margin-right:1em;margin-top:.5em;margin-bottom:.5em}.wp-block-image .aligncenter{margin-right:auto;margin-left:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-image figure{margin:0}ol.wp-block-latest-comments{margin-right:0}.wp-block-latest-comments .wp-block-latest-comments{padding-right:0}.wp-block-latest-comments__comment{line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:2.25em;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-right:3.25em}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;line-height:1.8;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:right;height:2.5em;margin-left:.75em;width:2.5em}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none;padding-right:0}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 0 1.25em 1.25em;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-left:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-left:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-left:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-left:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-left:0}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-top:.5em;margin-bottom:1em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;width:auto;max-width:100%}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em;float:left}.wp-block-latest-posts__featured-image.alignright{margin-left:1em;float:right}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em}.wp-block-media-text{direction:ltr;display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{align-self:end}.wp-block-media-text .wp-block-media-text__media{grid-column:1;grid-row:1;margin:0}.wp-block-media-text .wp-block-media-text__content{direction:rtl;grid-column:2;grid-row:1;padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{grid-column:2;grid-row:1}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{grid-column:1;grid-row:1}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill .wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill .wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill .wp-block-media-text__media img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{grid-column:1;grid-row:2}}.wp-block-navigation{position:relative;--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center}.wp-block-navigation ul{margin-top:0;margin-bottom:0;margin-right:0;padding-right:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-item{display:flex;align-items:center;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{color:inherit;display:block;padding:0}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation:where(:not([class*=has-text-decoration])) a,.wp-block-navigation:where(:not([class*=has-text-decoration])) a:active,.wp-block-navigation:where(:not([class*=has-text-decoration])) a:focus{text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;line-height:0;display:inline-block;font-size:inherit;padding:0;background-color:inherit;color:currentColor;border:none;width:.6em;height:.6em;margin-right:.25em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{display:inline-block;stroke:currentColor;width:inherit;height:inherit;margin-top:.075em}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container){background-color:inherit;color:inherit;position:absolute;z-index:2;display:flex;flex-direction:column;align-items:normal;opacity:0;transition:opacity .1s linear;visibility:hidden;width:0;height:0;overflow:hidden;right:-1px;top:100%}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container)>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container)>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-left:0;margin-right:auto}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content{margin:0}@media (min-width:782px){.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container{right:100%;top:-1px}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container:before{content:"";position:absolute;left:100%;height:100%;display:block;width:.5em;background:transparent}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon{margin-left:.25em}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon svg{transform:rotate(90deg)}}.wp-block-navigation .has-child:where(:not(.open-on-click)):hover>.wp-block-navigation__submenu-container{visibility:visible;overflow:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-navigation .has-child:where(:not(.open-on-click):not(.open-on-hover-click)):focus-within>.wp-block-navigation__submenu-container{visibility:visible;overflow:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container{visibility:visible;overflow:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{right:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{right:100%;top:0}}.wp-block-navigation-submenu{position:relative;display:flex}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:transparent;border:none;color:currentColor;font-size:inherit;font-family:inherit;line-height:inherit;font-style:inherit;font-weight:inherit;text-transform:inherit;text-align:right}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-left:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-right:-.6em;pointer-events:none}.wp-block-navigation,.wp-block-navigation .wp-block-page-list,.wp-block-navigation:where(.has-background),.wp-block-navigation:where(.has-background) .wp-block-navigation .wp-block-page-list,.wp-block-navigation:where(.has-background) .wp-block-navigation__container,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}.wp-block-navigation:where(.has-background) .wp-block-navigation-item__content,.wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content{padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{right:auto;left:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{right:-1px;left:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{right:auto;left:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;color:#000;border:1px solid rgba(0,0,0,.15)}.wp-block-navigation__container{display:flex;flex-wrap:var(--navigation-layout-wrap,wrap);flex-direction:var(--navigation-layout-direction,initial);justify-content:var(--navigation-layout-justify,initial);align-items:var(--navigation-layout-align,initial);list-style:none;margin:0;padding-right:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}.wp-block-navigation__responsive-container{display:none;position:fixed;top:0;right:0;left:0;bottom:0}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{display:flex;flex-wrap:var(--navigation-layout-wrap,wrap);flex-direction:var(--navigation-layout-direction,initial);justify-content:var(--navigation-layout-justify,initial);align-items:var(--navigation-layout-align,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){color:inherit!important;background-color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{display:flex;flex-direction:column;background-color:inherit;padding:2rem;overflow:auto;z-index:100000}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content{padding-top:calc(2rem + 24px);overflow:visible;display:flex;flex-direction:column;flex-wrap:nowrap;align-items:var(--navigation-layout-justification-setting,inherit)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{opacity:1;visibility:visible;height:auto;width:auto;overflow:initial;min-width:200px;position:static;border:none;padding-right:2rem;padding-left:2rem}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{display:flex;flex-direction:column;align-items:var(--navigation-layout-justification-setting,initial)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list{color:inherit!important;background:transparent!important}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:auto;right:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){display:block;width:100%;position:relative;z-index:auto;background-color:inherit}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{right:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff;color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{vertical-align:middle;cursor:pointer;color:currentColor;background:transparent;border:none;margin:0;padding:0}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;pointer-events:none;display:block;width:24px;height:24px}.wp-block-navigation__responsive-container-open{display:flex}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;top:0;left:0;z-index:2}.wp-block-navigation__responsive-close{width:100%}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}html.has-modal-open{overflow:hidden}.wp-block-navigation .wp-block-navigation-item__label{word-break:normal;overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}.wp-block-navigation .wp-block-page-list{display:flex;flex-direction:var(--navigation-layout-direction,initial);justify-content:var(--navigation-layout-justify,initial);align-items:var(--navigation-layout-align,initial);flex-wrap:var(--navigation-layout-wrap,wrap);background-color:inherit}.wp-block-navigation .wp-block-navigation-item{background-color:inherit}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:right;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em 0 0 .1em;text-transform:uppercase;font-style:normal}p.has-drop-cap.has-background{overflow:hidden}p.has-background{padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-left:1em}.wp-block-post-author__bio{margin-bottom:.7em;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{margin:0}.wp-block-post-comments .alignleft{float:right}.wp-block-post-comments .alignright{float:left}.wp-block-post-comments .navigation:after{content:"";display:table;clear:both}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-right:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:right;height:2.5em;margin-top:.5em;margin-left:.75em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{margin-top:1em;margin-bottom:1em;display:block}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{display:block;box-sizing:border-box;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-right:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-size:1em;font-family:inherit}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}.wp-block-post-comments input[type=submit]{border:none}.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title){font-weight:inherit}.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title){font-family:inherit}.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title){font-size:inherit}.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title){line-height:inherit}.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title){font-style:inherit}.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title){letter-spacing:inherit}.wp-block-post-comments-form input[type=submit]{border:none;box-shadow:none;cursor:pointer;display:inline-block;text-align:center;overflow-wrap:break-word}.wp-block-post-comments-form input:not([type=submit]),.wp-block-post-comments-form textarea{border:1px solid #949494;font-size:1em;font-family:inherit}.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments-form textarea{padding:calc(.667em + 2px)}.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments-form .comment-form textarea{display:block;box-sizing:border-box;width:100%}.wp-block-post-comments-form .comment-form-author label,.wp-block-post-comments-form .comment-form-email label,.wp-block-post-comments-form .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments-form .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments-form .comment-reply-title{margin-bottom:0}.wp-block-post-comments-form .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-right:.5em}.wp-block-post-excerpt__more-link{display:inline-block}.wp-block-post-featured-image{margin-right:0;margin-left:0}.wp-block-post-featured-image a{display:block}.wp-block-post-featured-image img{max-width:100%;width:100%;height:auto;vertical-align:bottom}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-terms__separator{white-space:pre-wrap}.wp-block-post-title{word-break:break-word}.wp-block-post-title a{display:inline-block}.wp-block-preformatted{white-space:pre-wrap}.wp-block-preformatted.has-background{padding:1.25em 2.375em}.wp-block-pullquote{margin:0 0 1em;padding:3em 0;text-align:center;overflow-wrap:break-word;box-sizing:border-box}.wp-block-pullquote blockquote,.wp-block-pullquote cite,.wp-block-pullquote p{color:inherit}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright,.wp-block-pullquote.has-text-align-left,.wp-block-pullquote.has-text-align-right{max-width:420px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p,.wp-block-pullquote.has-text-align-left p,.wp-block-pullquote.has-text-align-right p{font-size:1.25em}.wp-block-pullquote p{font-size:1.75em;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:right}.wp-block-pullquote.has-text-align-right blockquote{text-align:left}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-right:auto;margin-left:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:2em}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-post-template,.wp-block-query-loop{margin-top:0;margin-bottom:0;max-width:100%;list-style:none;padding:0}.wp-block-post-template.wp-block-post-template,.wp-block-query-loop.wp-block-post-template{background:none}.wp-block-post-template.is-flex-container,.wp-block-query-loop.is-flex-container{flex-direction:row;display:flex;flex-wrap:wrap;gap:1.25em}.wp-block-post-template.is-flex-container li,.wp-block-query-loop.is-flex-container li{margin:0;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{margin-right:.5em;margin-bottom:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow{margin-left:1ch;display:inline-block}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(-1)}.wp-block-query-pagination .wp-block-query-pagination-next-arrow{margin-right:1ch;display:inline-block}.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(-1)}.wp-block-query-pagination.aligncenter{justify-content:center}.wp-block-quote{box-sizing:border-box;overflow-wrap:break-word}.wp-block-quote.is-large:not(.is-style-plain),.wp-block-quote.is-style-large:not(.is-style-plain){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:not(.is-style-plain) p,.wp-block-quote.is-style-large:not(.is-style-plain) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:not(.is-style-plain) cite,.wp-block-quote.is-large:not(.is-style-plain) footer,.wp-block-quote.is-style-large:not(.is-style-plain) cite,.wp-block-quote.is-style-large:not(.is-style-plain) footer{font-size:1.125em;text-align:left}.wp-block-read-more{display:block;width:-moz-fit-content;width:fit-content}.wp-block-read-more:not([style*=text-decoration]),.wp-block-read-more:not([style*=text-decoration]):active,.wp-block-read-more:not([style*=text-decoration]):focus{text-decoration:none}ul.wp-block-rss{list-style:none;padding:0}ul.wp-block-rss.wp-block-rss{box-sizing:border-box}ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}ul.wp-block-rss.is-grid li{margin:0 0 1em 1em;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-search__button{background:#f7f7f7;border:1px solid #ccc;padding:.375em .625em;color:#32373c;margin-right:.625em;word-break:normal;font-size:inherit;font-family:inherit;line-height:inherit}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{min-width:1.5em;min-height:1.5em;fill:currentColor}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search__input{padding:8px;flex-grow:1;min-width:3em;border:1px solid #949494;font-size:inherit;font-family:inherit;line-height:inherit}.wp-block-search.wp-block-search__button-only .wp-block-search__button{margin-right:0}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{padding:4px;border:1px solid #949494}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input{border-radius:0;border:none;padding:0 .25em 0 0}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus{outline:none}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button{padding:.125em .5em}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block-separator{border-top:1px solid;border-bottom:1px solid}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"···";color:currentColor;font-size:1.5em;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-site-logo{line-height:0}.wp-block-site-logo a{display:inline-block}.wp-block-site-logo.is-default-size img{width:120px;height:auto}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-right:auto;margin-left:auto;text-align:center}.wp-block-site-logo.is-style-rounded{border-radius:9999px}.wp-block-social-links{padding-right:0;padding-left:0;text-indent:0;margin-right:0;background:none}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{width:1em;height:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){margin-right:.5em;margin-left:.5em;font-size:.65em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{display:block;border-radius:9999px;transition:transform .1s ease;height:auto}@media (prefers-reduced-motion:reduce){.wp-block-social-link{transition-duration:0s;transition-delay:0s}}.wp-block-social-link a{align-items:center;display:flex;line-height:0;transition:transform .1s ease}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg{color:currentColor;fill:currentColor}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#ff424d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none}.wp-block-social-links.is-style-logos-only .wp-social-link a{padding:0}.wp-block-social-links.is-style-logos-only .wp-social-link svg{width:1.25em;height:1.25em}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#ff424d}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{color:#d32422}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-right:.66667em;padding-left:.66667em}.wp-block-spacer{clear:both}.wp-block-tag-cloud.aligncenter{text-align:center}.wp-block-tag-cloud.alignfull{padding-right:1em;padding-left:1em}.wp-block-tag-cloud a{display:inline-block;margin-left:5px}.wp-block-tag-cloud span{display:inline-block;margin-right:5px;text-decoration:none}.wp-block-tag-cloud.is-style-outline{display:flex;flex-wrap:wrap;gap:1ch}.wp-block-tag-cloud.is-style-outline a{border:1px solid;font-size:unset!important;margin-left:0;padding:1ch 2ch;text-decoration:none!important}.wp-block-table{margin:0 0 1em;overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-table .has-border-color>*,.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr{border-color:inherit}.wp-block-table table[style*=border-style]>*,.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr{border-style:inherit}.wp-block-table table[style*=border-width]>*,.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr{border-width:inherit;border-style:inherit}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-right:0}.wp-block-text-columns .wp-block-column:last-child{margin-left:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{font-family:inherit;overflow:auto;white-space:pre-wrap}.wp-block-video{margin:0 0 1em}.wp-block-video video{width:100%}@supports (position:sticky){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(-135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(-135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(-135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(-135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(-135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(-135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(-135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{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}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color),html :where([style*=border-width]){border-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/style.css b/static/wp-includes/css/dist/block-library/style.css
new file mode 100755
index 0000000..4a9b364
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/style.css
@@ -0,0 +1,3369 @@
+@charset "UTF-8";
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+.wp-block-archives-dropdown label {
+ display: block;
+}
+
+.wp-block-avatar.aligncenter {
+ text-align: center;
+}
+
+.wp-block-audio {
+ margin: 0 0 1em 0;
+}
+.wp-block-audio figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+.wp-block-audio audio {
+ width: 100%;
+ min-width: 300px;
+}
+
+.wp-block-button__link {
+ color: #fff;
+ background-color: #32373c;
+ border-radius: 9999px;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ font-size: 1.125em;
+ padding: calc(0.667em + 2px) calc(1.333em + 2px);
+ text-align: center;
+ text-decoration: none;
+ word-break: break-word;
+ box-sizing: border-box;
+}
+.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link:visited {
+ color: #fff;
+}
+.wp-block-button__link.aligncenter {
+ text-align: center;
+}
+.wp-block-button__link.alignright {
+ /*rtl:ignore*/
+ text-align: right;
+}
+
+.wp-block-buttons > .wp-block-button.has-custom-width {
+ max-width: none;
+}
+.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
+ width: 100%;
+}
+.wp-block-buttons > .wp-block-button.has-custom-font-size .wp-block-button__link {
+ font-size: inherit;
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
+ width: calc(25% - (var(--wp--style--block-gap, 0.5em) * 0.75));
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
+ width: calc(50% - (var(--wp--style--block-gap, 0.5em) * 0.5));
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
+ width: calc(75% - (var(--wp--style--block-gap, 0.5em) * 0.25));
+}
+.wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
+ width: 100%;
+ flex-basis: 100%;
+}
+
+.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-25 {
+ width: 25%;
+}
+.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-50 {
+ width: 50%;
+}
+.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-75 {
+ width: 75%;
+}
+
+.wp-block-button.is-style-squared,
+.wp-block-button__link.wp-block-button.is-style-squared {
+ border-radius: 0;
+}
+
+.wp-block-button.no-border-radius,
+.wp-block-button__link.no-border-radius {
+ border-radius: 0 !important;
+}
+
+.is-style-outline > :where(.wp-block-button__link),
+:where(.wp-block-button__link).is-style-outline {
+ border: 2px solid currentColor;
+ padding: 0.667em 1.333em;
+}
+
+.is-style-outline > .wp-block-button__link:not(.has-text-color),
+.wp-block-button__link.is-style-outline:not(.has-text-color) {
+ color: currentColor;
+}
+
+.is-style-outline > .wp-block-button__link:not(.has-background),
+.wp-block-button__link.is-style-outline:not(.has-background) {
+ background-color: transparent;
+}
+
+.wp-block-buttons {
+ /* stylelint-disable indentation */
+}
+.wp-block-buttons.is-vertical {
+ flex-direction: column;
+}
+.wp-block-buttons.is-vertical > .wp-block-button:last-child {
+ margin-bottom: 0;
+}
+.wp-block-buttons > .wp-block-button {
+ display: inline-block;
+ margin: 0;
+}
+.wp-block-buttons.is-content-justification-left {
+ justify-content: flex-start;
+}
+.wp-block-buttons.is-content-justification-left.is-vertical {
+ align-items: flex-start;
+}
+.wp-block-buttons.is-content-justification-center {
+ justify-content: center;
+}
+.wp-block-buttons.is-content-justification-center.is-vertical {
+ align-items: center;
+}
+.wp-block-buttons.is-content-justification-right {
+ justify-content: flex-end;
+}
+.wp-block-buttons.is-content-justification-right.is-vertical {
+ align-items: flex-end;
+}
+.wp-block-buttons.is-content-justification-space-between {
+ justify-content: space-between;
+}
+.wp-block-buttons.aligncenter {
+ text-align: center;
+}
+.wp-block-buttons:not(.is-content-justification-space-between,
+.is-content-justification-right,
+.is-content-justification-left,
+.is-content-justification-center) .wp-block-button.aligncenter {
+ /* stylelint-enable indentation */
+ margin-left: auto;
+ margin-right: auto;
+ width: 100%;
+}
+
+.wp-block-button.aligncenter {
+ text-align: center;
+}
+
+.wp-block-calendar {
+ text-align: center;
+}
+.wp-block-calendar th,
+.wp-block-calendar tbody td {
+ padding: 0.25em;
+ border: 1px solid #ddd;
+}
+.wp-block-calendar tfoot td {
+ border: none;
+}
+.wp-block-calendar table {
+ width: 100%;
+ border-collapse: collapse;
+}
+.wp-block-calendar table th {
+ font-weight: 400;
+ background: #ddd;
+}
+.wp-block-calendar a {
+ text-decoration: underline;
+}
+.wp-block-calendar table tbody,
+.wp-block-calendar table caption {
+ color: #40464d;
+}
+
+.wp-block-categories.alignleft {
+ /*rtl:ignore*/
+ margin-right: 2em;
+}
+.wp-block-categories.alignright {
+ /*rtl:ignore*/
+ margin-left: 2em;
+}
+
+.wp-block-code code {
+ display: block;
+ font-family: inherit;
+ overflow-wrap: break-word;
+ white-space: pre-wrap;
+}
+
+.wp-block-columns {
+ display: flex;
+ margin-bottom: 1.75em;
+ box-sizing: border-box;
+ flex-wrap: wrap !important;
+ align-items: initial !important;
+ /**
+ * All Columns Alignment
+ */
+}
+@media (min-width: 782px) {
+ .wp-block-columns {
+ flex-wrap: nowrap !important;
+ }
+}
+.wp-block-columns.are-vertically-aligned-top {
+ align-items: flex-start;
+}
+.wp-block-columns.are-vertically-aligned-center {
+ align-items: center;
+}
+.wp-block-columns.are-vertically-aligned-bottom {
+ align-items: flex-end;
+}
+@media (max-width: 781px) {
+ .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
+ flex-basis: 100% !important;
+ }
+}
+@media (min-width: 782px) {
+ .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
+ flex-basis: 0;
+ flex-grow: 1;
+ }
+ .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column[style*=flex-basis] {
+ flex-grow: 0;
+ }
+}
+.wp-block-columns.is-not-stacked-on-mobile {
+ flex-wrap: nowrap !important;
+}
+.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
+ flex-basis: 0;
+ flex-grow: 1;
+}
+.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column[style*=flex-basis] {
+ flex-grow: 0;
+}
+
+:where(.wp-block-columns.has-background) {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-column {
+ flex-grow: 1;
+ min-width: 0;
+ word-break: break-word;
+ overflow-wrap: break-word;
+ /**
+ * Individual Column Alignment
+ */
+}
+.wp-block-column.is-vertically-aligned-top {
+ align-self: flex-start;
+}
+.wp-block-column.is-vertically-aligned-center {
+ align-self: center;
+}
+.wp-block-column.is-vertically-aligned-bottom {
+ align-self: flex-end;
+}
+.wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-bottom {
+ width: 100%;
+}
+
+.wp-block-comments-pagination > .wp-block-comments-pagination-next,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers {
+ /*rtl:ignore*/
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-comments-pagination > .wp-block-comments-pagination-next:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-previous:last-child,
+.wp-block-comments-pagination > .wp-block-comments-pagination-numbers:last-child {
+ /*rtl:ignore*/
+ margin-right: 0;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow {
+ margin-right: 1ch;
+ display: inline-block;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(1) /*rtl:scaleX(-1);*/;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow {
+ margin-left: 1ch;
+ display: inline-block;
+}
+.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(1) /*rtl:scaleX(-1);*/;
+}
+.wp-block-comments-pagination.aligncenter {
+ justify-content: center;
+}
+
+.wp-block-comment-template {
+ margin-bottom: 0;
+ max-width: 100%;
+ list-style: none;
+ padding: 0;
+}
+.wp-block-comment-template li {
+ clear: both;
+}
+.wp-block-comment-template ol {
+ margin-bottom: 0;
+ max-width: 100%;
+ list-style: none;
+ padding-left: 2rem;
+}
+
+.wp-block-cover-image,
+.wp-block-cover {
+ position: relative;
+ background-size: cover;
+ background-position: center center;
+ min-height: 430px;
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 1em;
+ box-sizing: border-box;
+ /**
+ * Set a default background color for has-background-dim _unless_ it includes another
+ * background-color class (e.g. has-green-background-color). The presence of another
+ * background-color class implies that another style will provide the background color
+ * for the overlay.
+ *
+ * See:
+ * - Issue with background color specificity: https://github.com/WordPress/gutenberg/issues/26545
+ * - Issue with alternative fix: https://github.com/WordPress/gutenberg/issues/26545
+ */
+}
+.wp-block-cover-image.has-parallax,
+.wp-block-cover.has-parallax {
+ background-attachment: fixed;
+}
+@supports (-webkit-touch-callout: inherit) {
+ .wp-block-cover-image.has-parallax,
+.wp-block-cover.has-parallax {
+ background-attachment: scroll;
+ }
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-cover-image.has-parallax,
+.wp-block-cover.has-parallax {
+ background-attachment: scroll;
+ }
+}
+.wp-block-cover-image.is-repeated,
+.wp-block-cover.is-repeated {
+ background-repeat: repeat;
+ background-size: auto;
+}
+.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
+.wp-block-cover-image .has-background-dim:not([class*=-background-color]),
+.wp-block-cover.has-background-dim:not([class*=-background-color]),
+.wp-block-cover .has-background-dim:not([class*=-background-color]) {
+ background-color: #000;
+}
+.wp-block-cover-image .has-background-dim.has-background-gradient,
+.wp-block-cover .has-background-dim.has-background-gradient {
+ background-color: transparent;
+}
+.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__background,
+.wp-block-cover-image .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim:not(.has-background-gradient)::before,
+.wp-block-cover .wp-block-cover__background,
+.wp-block-cover .wp-block-cover__gradient-background {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ z-index: 1;
+ opacity: 0.5;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background {
+ opacity: 0.1;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background {
+ opacity: 0.2;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background {
+ opacity: 0.3;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background {
+ opacity: 0.4;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background {
+ opacity: 0.5;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background {
+ opacity: 0.6;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background {
+ opacity: 0.7;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background {
+ opacity: 0.8;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background {
+ opacity: 0.9;
+}
+.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
+.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,
+.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
+.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
+.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,
+.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background {
+ opacity: 1;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0 {
+ opacity: 0;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10 {
+ opacity: 0.1;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20 {
+ opacity: 0.2;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30 {
+ opacity: 0.3;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40 {
+ opacity: 0.4;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50 {
+ opacity: 0.5;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60 {
+ opacity: 0.6;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70 {
+ opacity: 0.7;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80 {
+ opacity: 0.8;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90 {
+ opacity: 0.9;
+}
+.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
+.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,
+.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
+.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100 {
+ opacity: 1;
+}
+.wp-block-cover-image .block-library-cover__padding-visualizer,
+.wp-block-cover .block-library-cover__padding-visualizer {
+ z-index: 2;
+}
+.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
+.wp-block-cover.alignleft,
+.wp-block-cover.alignright {
+ max-width: 420px;
+ width: 100%;
+}
+.wp-block-cover-image::after,
+.wp-block-cover::after {
+ display: block;
+ content: "";
+ font-size: 0;
+ min-height: inherit;
+}
+@supports (position: sticky) {
+ .wp-block-cover-image::after,
+.wp-block-cover::after {
+ content: none;
+ }
+}
+.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
+.wp-block-cover.aligncenter,
+.wp-block-cover.alignleft,
+.wp-block-cover.alignright {
+ display: flex;
+}
+.wp-block-cover-image .wp-block-cover__inner-container,
+.wp-block-cover .wp-block-cover__inner-container {
+ width: 100%;
+ z-index: 1;
+ color: #fff;
+}
+.wp-block-cover-image.is-light .wp-block-cover__inner-container,
+.wp-block-cover.is-light .wp-block-cover__inner-container {
+ color: #000;
+}
+.wp-block-cover-image p:not(.has-text-color),
+.wp-block-cover-image h1:not(.has-text-color),
+.wp-block-cover-image h2:not(.has-text-color),
+.wp-block-cover-image h3:not(.has-text-color),
+.wp-block-cover-image h4:not(.has-text-color),
+.wp-block-cover-image h5:not(.has-text-color),
+.wp-block-cover-image h6:not(.has-text-color),
+.wp-block-cover p:not(.has-text-color),
+.wp-block-cover h1:not(.has-text-color),
+.wp-block-cover h2:not(.has-text-color),
+.wp-block-cover h3:not(.has-text-color),
+.wp-block-cover h4:not(.has-text-color),
+.wp-block-cover h5:not(.has-text-color),
+.wp-block-cover h6:not(.has-text-color) {
+ color: inherit;
+}
+.wp-block-cover-image.is-position-top-left,
+.wp-block-cover.is-position-top-left {
+ align-items: flex-start;
+ justify-content: flex-start;
+}
+.wp-block-cover-image.is-position-top-center,
+.wp-block-cover.is-position-top-center {
+ align-items: flex-start;
+ justify-content: center;
+}
+.wp-block-cover-image.is-position-top-right,
+.wp-block-cover.is-position-top-right {
+ align-items: flex-start;
+ justify-content: flex-end;
+}
+.wp-block-cover-image.is-position-center-left,
+.wp-block-cover.is-position-center-left {
+ align-items: center;
+ justify-content: flex-start;
+}
+.wp-block-cover-image.is-position-center-center,
+.wp-block-cover.is-position-center-center {
+ align-items: center;
+ justify-content: center;
+}
+.wp-block-cover-image.is-position-center-right,
+.wp-block-cover.is-position-center-right {
+ align-items: center;
+ justify-content: flex-end;
+}
+.wp-block-cover-image.is-position-bottom-left,
+.wp-block-cover.is-position-bottom-left {
+ align-items: flex-end;
+ justify-content: flex-start;
+}
+.wp-block-cover-image.is-position-bottom-center,
+.wp-block-cover.is-position-bottom-center {
+ align-items: flex-end;
+ justify-content: center;
+}
+.wp-block-cover-image.is-position-bottom-right,
+.wp-block-cover.is-position-bottom-right {
+ align-items: flex-end;
+ justify-content: flex-end;
+}
+.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,
+.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
+ margin: 0;
+ width: auto;
+}
+.wp-block-cover-image img.wp-block-cover__image-background,
+.wp-block-cover-image video.wp-block-cover__video-background,
+.wp-block-cover img.wp-block-cover__image-background,
+.wp-block-cover video.wp-block-cover__video-background {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ margin: 0;
+ padding: 0;
+ width: 100%;
+ height: 100%;
+ max-width: none;
+ max-height: none;
+ -o-object-fit: cover;
+ object-fit: cover;
+ outline: none;
+ border: none;
+ box-shadow: none;
+}
+
+.wp-block-cover__video-background {
+ z-index: 0;
+}
+
+.wp-block-cover__image-background {
+ z-index: 0;
+}
+
+section.wp-block-cover-image h2,
+.wp-block-cover-image-text,
+.wp-block-cover-text {
+ color: #fff;
+}
+section.wp-block-cover-image h2 a,
+section.wp-block-cover-image h2 a:hover,
+section.wp-block-cover-image h2 a:focus,
+section.wp-block-cover-image h2 a:active,
+.wp-block-cover-image-text a,
+.wp-block-cover-image-text a:hover,
+.wp-block-cover-image-text a:focus,
+.wp-block-cover-image-text a:active,
+.wp-block-cover-text a,
+.wp-block-cover-text a:hover,
+.wp-block-cover-text a:focus,
+.wp-block-cover-text a:active {
+ color: #fff;
+}
+
+.wp-block-cover-image .wp-block-cover.has-left-content {
+ justify-content: flex-start;
+}
+.wp-block-cover-image .wp-block-cover.has-right-content {
+ justify-content: flex-end;
+}
+
+section.wp-block-cover-image.has-left-content > h2,
+.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
+.wp-block-cover.has-left-content .wp-block-cover-text {
+ margin-left: 0;
+ text-align: left;
+}
+
+section.wp-block-cover-image.has-right-content > h2,
+.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
+.wp-block-cover.has-right-content .wp-block-cover-text {
+ margin-right: 0;
+ text-align: right;
+}
+
+section.wp-block-cover-image > h2,
+.wp-block-cover-image .wp-block-cover-image-text,
+.wp-block-cover .wp-block-cover-text {
+ font-size: 2em;
+ line-height: 1.25;
+ z-index: 1;
+ margin-bottom: 0;
+ max-width: 840px;
+ padding: 0.44em;
+ text-align: center;
+}
+
+.wp-block[data-align=left] > [data-type="core/embed"],
+.wp-block[data-align=right] > [data-type="core/embed"],
+.wp-block-embed.alignleft,
+.wp-block-embed.alignright {
+ max-width: 360px;
+ width: 100%;
+}
+.wp-block[data-align=left] > [data-type="core/embed"] .wp-block-embed__wrapper,
+.wp-block[data-align=right] > [data-type="core/embed"] .wp-block-embed__wrapper,
+.wp-block-embed.alignleft .wp-block-embed__wrapper,
+.wp-block-embed.alignright .wp-block-embed__wrapper {
+ min-width: 280px;
+}
+
+.wp-block-cover .wp-block-embed {
+ min-width: 320px;
+ min-height: 240px;
+}
+
+.wp-block-embed {
+ margin: 0 0 1em 0;
+ overflow-wrap: break-word;
+}
+.wp-block-embed figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+.wp-block-embed iframe {
+ max-width: 100%;
+}
+
+.wp-block-embed__wrapper {
+ position: relative;
+}
+
+.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper::before {
+ content: "";
+ display: block;
+ padding-top: 50%;
+}
+.wp-embed-responsive .wp-has-aspect-ratio iframe {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
+ padding-top: 42.85%;
+}
+.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
+ padding-top: 50%;
+}
+.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
+ padding-top: 56.25%;
+}
+.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
+ padding-top: 75%;
+}
+.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
+ padding-top: 100%;
+}
+.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {
+ padding-top: 177.77%;
+}
+.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
+ padding-top: 200%;
+}
+
+.wp-block-file {
+ margin-bottom: 1.5em;
+}
+.wp-block-file.aligncenter {
+ text-align: center;
+}
+.wp-block-file.alignright {
+ /*rtl:ignore*/
+ text-align: right;
+}
+.wp-block-file .wp-block-file__embed {
+ margin-bottom: 1em;
+}
+.wp-block-file .wp-block-file__button {
+ background: #32373c;
+ border-radius: 2em;
+ color: #fff;
+ font-size: 0.8em;
+ padding: 0.5em 1em;
+}
+.wp-block-file a.wp-block-file__button {
+ text-decoration: none;
+}
+.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 {
+ box-shadow: none;
+ color: #fff;
+ opacity: 0.85;
+ text-decoration: none;
+}
+.wp-block-file * + .wp-block-file__button {
+ margin-left: 0.75em;
+}
+
+.wp-block-gallery:not(.has-nested-images),
+.blocks-gallery-grid:not(.has-nested-images) {
+ display: flex;
+ flex-wrap: wrap;
+ list-style-type: none;
+ padding: 0;
+ margin: 0;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item {
+ margin: 0 1em 1em 0;
+ display: flex;
+ flex-grow: 1;
+ flex-direction: column;
+ justify-content: center;
+ position: relative;
+ width: calc(50% - 1em);
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(even),
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(even),
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(even),
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(even) {
+ margin-right: 0;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure {
+ margin: 0;
+ height: 100%;
+ display: flex;
+ align-items: flex-end;
+ justify-content: flex-start;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img {
+ display: block;
+ max-width: 100%;
+ height: auto;
+ width: auto;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ max-height: 100%;
+ overflow: auto;
+ padding: 3em 0.77em 0.7em;
+ color: #fff;
+ text-align: center;
+ font-size: 0.8em;
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
+ box-sizing: border-box;
+ margin: 0;
+ z-index: 2;
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img {
+ display: inline;
+}
+.wp-block-gallery:not(.has-nested-images) figcaption,
+.blocks-gallery-grid:not(.has-nested-images) figcaption {
+ flex-grow: 1;
+}
+.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,
+.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img, .wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,
+.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,
+.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img {
+ width: 100%;
+ height: 100%;
+ flex: 1;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item {
+ width: 100%;
+ margin-right: 0;
+}
+@media (min-width: 600px) {
+ .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item {
+ width: calc(33.3333333333% - 0.6666666667em);
+ margin-right: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item {
+ width: calc(25% - 0.75em);
+ margin-right: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item {
+ width: calc(20% - 0.8em);
+ margin-right: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item {
+ width: calc(16.6666666667% - 0.8333333333em);
+ margin-right: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item {
+ width: calc(14.2857142857% - 0.8571428571em);
+ margin-right: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item,
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item {
+ width: calc(12.5% - 0.875em);
+ margin-right: 1em;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n), .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
+.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n) {
+ margin-right: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n), .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
+.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
+.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n) {
+ margin-right: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n), .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
+.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n) {
+ margin-right: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n), .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
+.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n) {
+ margin-right: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n), .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
+.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n) {
+ margin-right: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n), .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
+.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n) {
+ margin-right: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n), .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
+.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n) {
+ margin-right: 0;
+ }
+ .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n), .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
+.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n) {
+ margin-right: 0;
+ }
+}
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,
+.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,
+.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child {
+ margin-right: 0;
+}
+.wp-block-gallery:not(.has-nested-images).alignleft, .wp-block-gallery:not(.has-nested-images).alignright,
+.blocks-gallery-grid:not(.has-nested-images).alignleft,
+.blocks-gallery-grid:not(.has-nested-images).alignright {
+ max-width: 420px;
+ width: 100%;
+}
+.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure,
+.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure {
+ justify-content: center;
+}
+
+.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
+ align-self: flex-start;
+}
+
+figure.wp-block-gallery.has-nested-images {
+ align-items: normal;
+}
+
+.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
+ width: calc(50% - (var(--wp--style--unstable-gallery-gap, 16px) / 2));
+ margin: 0;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image {
+ display: flex;
+ flex-grow: 1;
+ justify-content: center;
+ position: relative;
+ flex-direction: column;
+ max-width: 100%;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image > div,
+.wp-block-gallery.has-nested-images figure.wp-block-image > a {
+ margin: 0;
+ flex-direction: column;
+ flex-grow: 1;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image img {
+ display: block;
+ height: auto;
+ max-width: 100% !important;
+ width: auto;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
+ bottom: 0;
+ color: #fff;
+ font-size: 13px;
+ left: 0;
+ margin-bottom: 0;
+ max-height: 60%;
+ overflow: auto;
+ padding: 0 8px 8px;
+ position: absolute;
+ text-align: center;
+ width: 100%;
+ box-sizing: border-box;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
+ display: inline;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a {
+ color: inherit;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > div,
+.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > a {
+ flex: 1 1 auto;
+}
+.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption {
+ flex: initial;
+ background: none;
+ color: inherit;
+ margin: 0;
+ padding: 10px 10px 9px;
+ position: relative;
+}
+.wp-block-gallery.has-nested-images figcaption {
+ flex-grow: 1;
+ flex-basis: 100%;
+ text-align: center;
+}
+.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
+ margin-top: 0;
+ margin-bottom: auto;
+}
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
+ align-self: inherit;
+}
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) > div:not(.components-drop-zone),
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) > a {
+ display: flex;
+}
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
+.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
+ width: 100%;
+ flex: 1 0 0%;
+ height: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
+ width: calc(33.3333333333% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.6666666667));
+ }
+ .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
+ width: calc(25% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.75));
+ }
+ .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
+ width: calc(20% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.8));
+ }
+ .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
+ width: calc(16.6666666667% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.8333333333));
+ }
+ .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
+ width: calc(14.2857142857% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.8571428571));
+ }
+ .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
+ width: calc(12.5% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.875));
+ }
+ .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
+ width: calc(33.33% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.6666666667));
+ }
+ .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
+.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
+ width: calc(50% - (var(--wp--style--unstable-gallery-gap, 16px) * 0.5));
+ }
+ .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(1) {
+ width: 100%;
+ }
+}
+.wp-block-gallery.has-nested-images.alignleft, .wp-block-gallery.has-nested-images.alignright {
+ max-width: 420px;
+ width: 100%;
+}
+.wp-block-gallery.has-nested-images.aligncenter {
+ justify-content: center;
+}
+
+.wp-block-group {
+ box-sizing: border-box;
+}
+
+h1.has-background,
+h2.has-background,
+h3.has-background,
+h4.has-background,
+h5.has-background,
+h6.has-background {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-image {
+ margin: 0 0 1em 0;
+}
+.wp-block-image img {
+ height: auto;
+ max-width: 100%;
+ vertical-align: bottom;
+}
+.wp-block-image:not(.is-style-rounded) > a,
+.wp-block-image:not(.is-style-rounded) img {
+ border-radius: inherit;
+}
+.wp-block-image.aligncenter {
+ text-align: center;
+}
+.wp-block-image.alignfull img, .wp-block-image.alignwide img {
+ height: auto;
+ width: 100%;
+}
+.wp-block-image.alignleft, .wp-block-image.alignright, .wp-block-image.aligncenter,
+.wp-block-image .alignleft,
+.wp-block-image .alignright,
+.wp-block-image .aligncenter {
+ display: table;
+}
+.wp-block-image.alignleft > figcaption, .wp-block-image.alignright > figcaption, .wp-block-image.aligncenter > figcaption,
+.wp-block-image .alignleft > figcaption,
+.wp-block-image .alignright > figcaption,
+.wp-block-image .aligncenter > figcaption {
+ display: table-caption;
+ caption-side: bottom;
+}
+.wp-block-image .alignleft {
+ /*rtl:ignore*/
+ float: left;
+ /*rtl:ignore*/
+ 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-right: 0;
+ margin-left: 1em;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-image .aligncenter {
+ margin-left: auto;
+ margin-right: auto;
+}
+.wp-block-image figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+.wp-block-image.is-style-rounded img,
+.wp-block-image .is-style-rounded img {
+ border-radius: 9999px;
+}
+.wp-block-image.is-style-circle-mask img {
+ border-radius: 9999px;
+}
+@supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {
+ .wp-block-image.is-style-circle-mask img {
+ /* stylelint-disable */
+ -webkit-mask-image: url('data:image/svg+xml;utf8,');
+ mask-image: url('data:image/svg+xml;utf8,');
+ /* stylelint-enable */
+ mask-mode: alpha;
+ -webkit-mask-repeat: no-repeat;
+ mask-repeat: no-repeat;
+ -webkit-mask-size: contain;
+ mask-size: contain;
+ -webkit-mask-position: center;
+ mask-position: center;
+ border-radius: 0;
+ }
+}
+
+.wp-block-image figure {
+ margin: 0;
+}
+
+ol.wp-block-latest-comments {
+ margin-left: 0;
+}
+
+.wp-block-latest-comments .wp-block-latest-comments {
+ padding-left: 0;
+}
+
+.wp-block-latest-comments__comment {
+ line-height: 1.1;
+ list-style: none;
+ margin-bottom: 1em;
+}
+.has-avatars .wp-block-latest-comments__comment {
+ min-height: 2.25em;
+ list-style: none;
+}
+.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
+.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
+ margin-left: 3.25em;
+}
+.has-dates .wp-block-latest-comments__comment, .has-excerpts .wp-block-latest-comments__comment {
+ line-height: 1.5;
+}
+
+.wp-block-latest-comments__comment-excerpt p {
+ font-size: 0.875em;
+ line-height: 1.8;
+ margin: 0.36em 0 1.4em;
+}
+
+.wp-block-latest-comments__comment-date {
+ display: block;
+ font-size: 0.75em;
+}
+
+.wp-block-latest-comments .avatar,
+.wp-block-latest-comments__comment-avatar {
+ border-radius: 1.5em;
+ display: block;
+ float: left;
+ height: 2.5em;
+ margin-right: 0.75em;
+ width: 2.5em;
+}
+
+.wp-block-latest-posts.alignleft {
+ /*rtl:ignore*/
+ margin-right: 2em;
+}
+.wp-block-latest-posts.alignright {
+ /*rtl:ignore*/
+ margin-left: 2em;
+}
+.wp-block-latest-posts.wp-block-latest-posts__list {
+ list-style: none;
+ padding-left: 0;
+}
+.wp-block-latest-posts.wp-block-latest-posts__list li {
+ clear: both;
+}
+.wp-block-latest-posts.is-grid {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 0;
+}
+.wp-block-latest-posts.is-grid li {
+ margin: 0 1.25em 1.25em 0;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .wp-block-latest-posts.columns-2 li {
+ width: calc((100% / 2) - 1.25em + (1.25em / 2));
+ }
+ .wp-block-latest-posts.columns-2 li:nth-child(2n) {
+ margin-right: 0;
+ }
+ .wp-block-latest-posts.columns-3 li {
+ width: calc((100% / 3) - 1.25em + (1.25em / 3));
+ }
+ .wp-block-latest-posts.columns-3 li:nth-child(3n) {
+ margin-right: 0;
+ }
+ .wp-block-latest-posts.columns-4 li {
+ width: calc((100% / 4) - 1.25em + (1.25em / 4));
+ }
+ .wp-block-latest-posts.columns-4 li:nth-child(4n) {
+ margin-right: 0;
+ }
+ .wp-block-latest-posts.columns-5 li {
+ width: calc((100% / 5) - 1.25em + (1.25em / 5));
+ }
+ .wp-block-latest-posts.columns-5 li:nth-child(5n) {
+ margin-right: 0;
+ }
+ .wp-block-latest-posts.columns-6 li {
+ width: calc((100% / 6) - 1.25em + (1.25em / 6));
+ }
+ .wp-block-latest-posts.columns-6 li:nth-child(6n) {
+ margin-right: 0;
+ }
+}
+
+.wp-block-latest-posts__post-date,
+.wp-block-latest-posts__post-author {
+ display: block;
+ font-size: 0.8125em;
+}
+
+.wp-block-latest-posts__post-excerpt {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+
+.wp-block-latest-posts__featured-image a {
+ display: inline-block;
+}
+.wp-block-latest-posts__featured-image img {
+ height: auto;
+ width: auto;
+ max-width: 100%;
+}
+.wp-block-latest-posts__featured-image.alignleft {
+ /*rtl:ignore*/
+ margin-right: 1em;
+ /*rtl:ignore*/
+ float: left;
+}
+.wp-block-latest-posts__featured-image.alignright {
+ /*rtl:ignore*/
+ margin-left: 1em;
+ /*rtl:ignore*/
+ float: right;
+}
+.wp-block-latest-posts__featured-image.aligncenter {
+ margin-bottom: 1em;
+ text-align: center;
+}
+
+ol,
+ul {
+ box-sizing: border-box;
+}
+ol.has-background,
+ul.has-background {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-media-text {
+ /*!rtl:begin:ignore*/
+ direction: ltr;
+ /*!rtl:end:ignore*/
+ display: grid;
+ grid-template-columns: 50% 1fr;
+ grid-template-rows: auto;
+}
+.wp-block-media-text.has-media-on-the-right {
+ grid-template-columns: 1fr 50%;
+}
+
+.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
+.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
+ align-self: start;
+}
+
+.wp-block-media-text .wp-block-media-text__content,
+.wp-block-media-text .wp-block-media-text__media,
+.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
+.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
+ align-self: center;
+}
+
+.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
+.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
+ align-self: end;
+}
+
+.wp-block-media-text .wp-block-media-text__media {
+ /*!rtl:begin:ignore*/
+ grid-column: 1;
+ grid-row: 1;
+ /*!rtl:end:ignore*/
+ margin: 0;
+}
+
+.wp-block-media-text .wp-block-media-text__content {
+ direction: ltr;
+ /*!rtl:begin:ignore*/
+ grid-column: 2;
+ grid-row: 1;
+ /*!rtl:end:ignore*/
+ padding: 0 8% 0 8%;
+ word-break: break-word;
+}
+
+.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
+ /*!rtl:begin:ignore*/
+ grid-column: 2;
+ grid-row: 1;
+ /*!rtl:end:ignore*/
+}
+
+.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
+ /*!rtl:begin:ignore*/
+ grid-column: 1;
+ grid-row: 1;
+ /*!rtl:end:ignore*/
+}
+
+.wp-block-media-text__media img,
+.wp-block-media-text__media video {
+ height: auto;
+ max-width: unset;
+ width: 100%;
+ vertical-align: middle;
+}
+
+.wp-block-media-text.is-image-fill .wp-block-media-text__media {
+ height: 100%;
+ min-height: 250px;
+ background-size: cover;
+}
+
+.wp-block-media-text.is-image-fill .wp-block-media-text__media > a {
+ display: block;
+ height: 100%;
+}
+
+.wp-block-media-text.is-image-fill .wp-block-media-text__media img {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
+}
+
+/*
+* Here we here not able to use a mobile first CSS approach.
+* Custom widths are set using inline styles, and on mobile,
+* we need 100% width, so we use important to overwrite the inline style.
+* If the style were set on mobile first, on desktop styles,
+* we would have no way of setting the style again to the inline style.
+*/
+@media (max-width: 600px) {
+ .wp-block-media-text.is-stacked-on-mobile {
+ grid-template-columns: 100% !important;
+ }
+ .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
+ grid-column: 1;
+ grid-row: 1;
+ }
+ .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
+ grid-column: 1;
+ grid-row: 2;
+ }
+}
+.wp-block-navigation {
+ position: relative;
+ --navigation-layout-justification-setting: flex-start;
+ --navigation-layout-direction: row;
+ --navigation-layout-wrap: wrap;
+ --navigation-layout-justify: flex-start;
+ --navigation-layout-align: center;
+}
+.wp-block-navigation ul {
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: 0;
+ padding-left: 0;
+}
+.wp-block-navigation ul,
+.wp-block-navigation ul li {
+ list-style: none;
+ padding: 0;
+}
+.wp-block-navigation .wp-block-navigation-item {
+ display: flex;
+ align-items: center;
+ position: relative;
+}
+.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty {
+ display: none;
+}
+.wp-block-navigation .wp-block-navigation-item__content {
+ color: inherit;
+ display: block;
+ padding: 0;
+}
+.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content {
+ text-decoration: underline;
+}
+.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus, .wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active {
+ text-decoration: underline;
+}
+.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content {
+ text-decoration: line-through;
+}
+.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus, .wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active {
+ text-decoration: line-through;
+}
+.wp-block-navigation:where(:not([class*="has-text-decoration"])) a {
+ text-decoration: none;
+}
+.wp-block-navigation:where(:not([class*="has-text-decoration"])) a:focus, .wp-block-navigation:where(:not([class*="has-text-decoration"])) a:active {
+ text-decoration: none;
+}
+.wp-block-navigation .wp-block-navigation__submenu-icon {
+ align-self: center;
+ line-height: 0;
+ display: inline-block;
+ font-size: inherit;
+ padding: 0;
+ background-color: inherit;
+ color: currentColor;
+ border: none;
+ width: 0.6em;
+ height: 0.6em;
+ margin-left: 0.25em;
+}
+.wp-block-navigation .wp-block-navigation__submenu-icon svg {
+ display: inline-block;
+ stroke: currentColor;
+ width: inherit;
+ height: inherit;
+ margin-top: 0.075em;
+}
+.wp-block-navigation.is-vertical {
+ --navigation-layout-direction: column;
+ --navigation-layout-justify: initial;
+ --navigation-layout-align: flex-start;
+}
+.wp-block-navigation.no-wrap {
+ --navigation-layout-wrap: nowrap;
+}
+.wp-block-navigation.items-justified-center {
+ --navigation-layout-justification-setting: center;
+ --navigation-layout-justify: center;
+}
+.wp-block-navigation.items-justified-center.is-vertical {
+ --navigation-layout-align: center;
+}
+.wp-block-navigation.items-justified-right {
+ --navigation-layout-justification-setting: flex-end;
+ --navigation-layout-justify: flex-end;
+}
+.wp-block-navigation.items-justified-right.is-vertical {
+ --navigation-layout-align: flex-end;
+}
+.wp-block-navigation.items-justified-space-between {
+ --navigation-layout-justification-setting: space-between;
+ --navigation-layout-justify: space-between;
+}
+
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) {
+ background-color: inherit;
+ color: inherit;
+ position: absolute;
+ z-index: 2;
+ display: flex;
+ flex-direction: column;
+ align-items: normal;
+ opacity: 0;
+ transition: opacity 0.1s linear;
+ visibility: hidden;
+ width: 0;
+ height: 0;
+ overflow: hidden;
+ left: -1px;
+ top: 100%;
+}
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) > .wp-block-navigation-item > .wp-block-navigation-item__content {
+ display: flex;
+ flex-grow: 1;
+}
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) > .wp-block-navigation-item > .wp-block-navigation-item__content .wp-block-navigation__submenu-icon {
+ margin-right: 0;
+ margin-left: auto;
+}
+.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content {
+ margin: 0;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container {
+ left: 100%;
+ top: -1px;
+ }
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container::before {
+ content: "";
+ position: absolute;
+ right: 100%;
+ height: 100%;
+ display: block;
+ width: 0.5em;
+ background: transparent;
+ }
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon {
+ margin-right: 0.25em;
+ }
+ .wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon svg {
+ transform: rotate(-90deg);
+ }
+}
+.wp-block-navigation .has-child:where(:not(.open-on-click)):hover > .wp-block-navigation__submenu-container {
+ visibility: visible;
+ overflow: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+.wp-block-navigation .has-child:where(:not(.open-on-click):not(.open-on-hover-click)):focus-within > .wp-block-navigation__submenu-container {
+ visibility: visible;
+ overflow: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true] ~ .wp-block-navigation__submenu-container {
+ visibility: visible;
+ overflow: visible;
+ opacity: 1;
+ width: auto;
+ height: auto;
+ min-width: 200px;
+}
+
+.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container {
+ left: 0;
+ top: 100%;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ left: 100%;
+ top: 0;
+ }
+}
+
+.wp-block-navigation-submenu {
+ position: relative;
+ display: flex;
+}
+.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
+ stroke: currentColor;
+}
+
+button.wp-block-navigation-item__content {
+ background-color: transparent;
+ border: none;
+ color: currentColor;
+ font-size: inherit;
+ font-family: inherit;
+ line-height: inherit;
+ font-style: inherit;
+ font-weight: inherit;
+ text-transform: inherit;
+ text-align: left;
+}
+
+.wp-block-navigation-submenu__toggle {
+ cursor: pointer;
+}
+
+.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle {
+ padding-right: 0.85em;
+}
+.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle + .wp-block-navigation__submenu-icon {
+ margin-left: -0.6em;
+ pointer-events: none;
+}
+
+/**
+ * Margins
+ */
+.wp-block-navigation__responsive-container,
+.wp-block-navigation__responsive-close,
+.wp-block-navigation__responsive-dialog,
+.wp-block-navigation,
+.wp-block-navigation .wp-block-page-list,
+.wp-block-navigation__container,
+.wp-block-navigation__responsive-container-content {
+ gap: inherit;
+}
+
+.wp-block-navigation:where(.has-background),
+.wp-block-navigation:where(.has-background) .wp-block-navigation .wp-block-page-list,
+.wp-block-navigation:where(.has-background) .wp-block-navigation__container {
+ gap: inherit;
+}
+
+/**
+ * Paddings
+ */
+.wp-block-navigation:where(.has-background) .wp-block-navigation-item__content {
+ padding: 0.5em 1em;
+}
+
+.wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content {
+ padding: 0.5em 1em;
+}
+
+/**
+ * Justifications.
+ */
+.wp-block-navigation.items-justified-space-between .wp-block-page-list > .has-child:last-child .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-space-between > .wp-block-navigation__container > .has-child:last-child .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-page-list > .has-child .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container {
+ left: auto;
+ right: 0;
+}
+.wp-block-navigation.items-justified-space-between .wp-block-page-list > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-space-between > .wp-block-navigation__container > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-page-list > .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ left: -1px;
+ right: -1px;
+}
+@media (min-width: 782px) {
+ .wp-block-navigation.items-justified-space-between .wp-block-page-list > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-space-between > .wp-block-navigation__container > .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-page-list > .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
+.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
+ left: auto;
+ right: 100%;
+ }
+}
+
+.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
+ background-color: #fff;
+ color: #000;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+}
+
+.wp-block-navigation__container {
+ display: flex;
+ flex-wrap: var(--navigation-layout-wrap, wrap);
+ flex-direction: var(--navigation-layout-direction, initial);
+ justify-content: var(--navigation-layout-justify, initial);
+ align-items: var(--navigation-layout-align, initial);
+ list-style: none;
+ margin: 0;
+ padding-left: 0;
+}
+.wp-block-navigation__container .is-responsive {
+ display: none;
+}
+
+.wp-block-navigation__container:only-child,
+.wp-block-page-list:only-child {
+ flex-grow: 1;
+}
+
+/**
+ * Mobile menu.
+ */
+.wp-block-navigation__responsive-container {
+ display: none;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+}
+.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
+ display: flex;
+ flex-wrap: var(--navigation-layout-wrap, wrap);
+ flex-direction: var(--navigation-layout-direction, initial);
+ justify-content: var(--navigation-layout-justify, initial);
+ align-items: var(--navigation-layout-align, initial);
+}
+.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
+ color: inherit !important;
+ background-color: inherit !important;
+}
+.wp-block-navigation__responsive-container.is-menu-open {
+ display: flex;
+ flex-direction: column;
+ background-color: inherit;
+ padding: 2rem;
+ overflow: auto;
+ z-index: 100000;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
+ padding-top: calc(2rem + 24px);
+ overflow: visible;
+ display: flex;
+ flex-direction: column;
+ flex-wrap: nowrap;
+ align-items: var(--navigation-layout-justification-setting, inherit);
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
+ justify-content: flex-start;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon {
+ display: none;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .submenu-container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
+ opacity: 1;
+ visibility: visible;
+ height: auto;
+ width: auto;
+ overflow: initial;
+ min-width: 200px;
+ position: static;
+ border: none;
+ padding-left: 2rem;
+ padding-right: 2rem;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
+ gap: inherit;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
+ padding-top: var(--wp--style--block-gap, 2em);
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
+ padding: 0;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
+ display: flex;
+ flex-direction: column;
+ align-items: var(--navigation-layout-justification-setting, initial);
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
+ color: inherit !important;
+ background: transparent !important;
+}
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
+ right: auto;
+ left: auto;
+}
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
+ display: block;
+ width: 100%;
+ position: relative;
+ z-index: auto;
+ background-color: inherit;
+ }
+ .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close {
+ display: none;
+ }
+ .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
+ left: 0;
+ }
+}
+
+.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
+ background-color: #fff;
+ color: #000;
+}
+
+.wp-block-navigation__toggle_button_label {
+ font-size: 1rem;
+ font-weight: bold;
+}
+
+.wp-block-navigation__responsive-container-open,
+.wp-block-navigation__responsive-container-close {
+ vertical-align: middle;
+ cursor: pointer;
+ color: currentColor;
+ background: transparent;
+ border: none;
+ margin: 0;
+ padding: 0;
+}
+.wp-block-navigation__responsive-container-open svg,
+.wp-block-navigation__responsive-container-close svg {
+ fill: currentColor;
+ pointer-events: none;
+ display: block;
+ width: 24px;
+ height: 24px;
+}
+
+.wp-block-navigation__responsive-container-open {
+ display: flex;
+}
+@media (min-width: 600px) {
+ .wp-block-navigation__responsive-container-open:not(.always-shown) {
+ display: none;
+ }
+}
+
+.wp-block-navigation__responsive-container-close {
+ position: absolute;
+ top: 0;
+ right: 0;
+ z-index: 2;
+}
+
+.wp-block-navigation__responsive-close {
+ width: 100%;
+}
+.wp-block-navigation__responsive-close:focus {
+ outline: none;
+}
+
+.is-menu-open .wp-block-navigation__responsive-close,
+.is-menu-open .wp-block-navigation__responsive-dialog,
+.is-menu-open .wp-block-navigation__responsive-container-content {
+ box-sizing: border-box;
+}
+
+.wp-block-navigation__responsive-dialog {
+ position: relative;
+}
+
+html.has-modal-open {
+ overflow: hidden;
+}
+
+.wp-block-navigation .wp-block-navigation-item__label {
+ word-break: normal;
+ overflow-wrap: break-word;
+}
+.wp-block-navigation .wp-block-navigation-item__description {
+ display: none;
+}
+
+.wp-block-navigation .wp-block-page-list {
+ display: flex;
+ flex-direction: var(--navigation-layout-direction, initial);
+ justify-content: var(--navigation-layout-justify, initial);
+ align-items: var(--navigation-layout-align, initial);
+ flex-wrap: var(--navigation-layout-wrap, wrap);
+ background-color: inherit;
+}
+.wp-block-navigation .wp-block-navigation-item {
+ background-color: inherit;
+}
+
+.is-small-text {
+ font-size: 0.875em;
+}
+
+.is-regular-text {
+ font-size: 1em;
+}
+
+.is-large-text {
+ font-size: 2.25em;
+}
+
+.is-larger-text {
+ font-size: 3em;
+}
+
+.has-drop-cap:not(:focus)::first-letter {
+ float: left;
+ font-size: 8.4em;
+ line-height: 0.68;
+ font-weight: 100;
+ margin: 0.05em 0.1em 0 0;
+ text-transform: uppercase;
+ font-style: normal;
+}
+
+p.has-drop-cap.has-background {
+ overflow: hidden;
+}
+
+p.has-background {
+ padding: 1.25em 2.375em;
+}
+
+:where(p.has-text-color:not(.has-link-color)) a {
+ color: inherit;
+}
+
+.wp-block-post-author {
+ display: flex;
+ flex-wrap: wrap;
+}
+.wp-block-post-author__byline {
+ width: 100%;
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 0.5em;
+}
+.wp-block-post-author__avatar {
+ margin-right: 1em;
+}
+.wp-block-post-author__bio {
+ margin-bottom: 0.7em;
+ font-size: 0.7em;
+}
+.wp-block-post-author__content {
+ flex-grow: 1;
+ flex-basis: 0;
+}
+.wp-block-post-author__name {
+ margin: 0;
+}
+
+.wp-block-post-comments {
+ /* utility classes */
+ /* end utility classes */
+}
+.wp-block-post-comments .alignleft {
+ float: left;
+}
+.wp-block-post-comments .alignright {
+ float: right;
+}
+.wp-block-post-comments .navigation::after {
+ content: "";
+ display: table;
+ clear: both;
+}
+.wp-block-post-comments .commentlist {
+ clear: both;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+.wp-block-post-comments .commentlist .comment {
+ min-height: 2.25em;
+ padding-left: 3.25em;
+}
+.wp-block-post-comments .commentlist .comment p {
+ font-size: 1em;
+ line-height: 1.8;
+ margin: 1em 0;
+}
+.wp-block-post-comments .commentlist .children {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+.wp-block-post-comments .comment-author {
+ line-height: 1.5;
+}
+.wp-block-post-comments .comment-author .avatar {
+ border-radius: 1.5em;
+ display: block;
+ float: left;
+ height: 2.5em;
+ margin-top: 0.5em;
+ margin-right: 0.75em;
+ width: 2.5em;
+}
+.wp-block-post-comments .comment-author cite {
+ font-style: normal;
+}
+.wp-block-post-comments .comment-meta {
+ font-size: 0.875em;
+ line-height: 1.5;
+}
+.wp-block-post-comments .comment-meta b {
+ font-weight: normal;
+}
+.wp-block-post-comments .comment-meta .comment-awaiting-moderation {
+ margin-top: 1em;
+ margin-bottom: 1em;
+ display: block;
+}
+.wp-block-post-comments .comment-body .commentmetadata {
+ font-size: 0.875em;
+}
+.wp-block-post-comments .comment-form-comment label,
+.wp-block-post-comments .comment-form-author label,
+.wp-block-post-comments .comment-form-email label,
+.wp-block-post-comments .comment-form-url label {
+ display: block;
+ margin-bottom: 0.25em;
+}
+.wp-block-post-comments .comment-form textarea,
+.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]) {
+ display: block;
+ box-sizing: border-box;
+ width: 100%;
+}
+.wp-block-post-comments .comment-form-cookies-consent {
+ display: flex;
+ gap: 0.25em;
+}
+.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent {
+ margin-top: 0.35em;
+}
+.wp-block-post-comments .comment-reply-title {
+ margin-bottom: 0;
+}
+.wp-block-post-comments .comment-reply-title :where(small) {
+ font-size: var(--wp--preset--font-size--medium, smaller);
+ margin-left: 0.5em;
+}
+.wp-block-post-comments .reply {
+ font-size: 0.875em;
+ margin-bottom: 1.4em;
+}
+.wp-block-post-comments textarea,
+.wp-block-post-comments input:not([type=submit]) {
+ border: 1px solid #949494;
+ font-size: 1em;
+ font-family: inherit;
+}
+.wp-block-post-comments textarea,
+.wp-block-post-comments input:not([type=submit]):not([type=checkbox]) {
+ padding: calc(0.667em + 2px);
+}
+.wp-block-post-comments input[type=submit] {
+ border: none;
+}
+
+.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title) {
+ font-weight: inherit;
+}
+.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title) {
+ font-family: inherit;
+}
+.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title), .wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title) {
+ font-size: inherit;
+}
+.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title) {
+ line-height: inherit;
+}
+.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title) {
+ font-style: inherit;
+}
+.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title) {
+ letter-spacing: inherit;
+}
+.wp-block-post-comments-form input[type=submit] {
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ text-align: center;
+ overflow-wrap: break-word;
+}
+.wp-block-post-comments-form textarea,
+.wp-block-post-comments-form input:not([type=submit]) {
+ border: 1px solid #949494;
+ font-size: 1em;
+ font-family: inherit;
+}
+.wp-block-post-comments-form textarea,
+.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]) {
+ padding: calc(0.667em + 2px);
+}
+.wp-block-post-comments-form .comment-form textarea,
+.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]) {
+ display: block;
+ box-sizing: border-box;
+ width: 100%;
+}
+.wp-block-post-comments-form .comment-form-author label,
+.wp-block-post-comments-form .comment-form-email label,
+.wp-block-post-comments-form .comment-form-url label {
+ display: block;
+ margin-bottom: 0.25em;
+}
+.wp-block-post-comments-form .comment-form-cookies-consent {
+ display: flex;
+ gap: 0.25em;
+}
+.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent {
+ margin-top: 0.35em;
+}
+.wp-block-post-comments-form .comment-reply-title {
+ margin-bottom: 0;
+}
+.wp-block-post-comments-form .comment-reply-title :where(small) {
+ font-size: var(--wp--preset--font-size--medium, smaller);
+ margin-left: 0.5em;
+}
+
+.wp-block-post-excerpt__more-link {
+ display: inline-block;
+}
+
+.wp-block-post-featured-image {
+ margin-left: 0;
+ margin-right: 0;
+}
+.wp-block-post-featured-image a {
+ display: block;
+}
+.wp-block-post-featured-image img {
+ max-width: 100%;
+ width: 100%;
+ height: auto;
+ vertical-align: bottom;
+}
+.wp-block-post-featured-image.alignwide img, .wp-block-post-featured-image.alignfull img {
+ width: 100%;
+}
+
+.wp-block-post-terms__separator {
+ white-space: pre-wrap;
+}
+
+.wp-block-post-title {
+ word-break: break-word;
+}
+.wp-block-post-title a {
+ display: inline-block;
+}
+
+.wp-block-preformatted {
+ white-space: pre-wrap;
+}
+
+.wp-block-preformatted.has-background {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-pullquote {
+ margin: 0 0 1em 0;
+ padding: 3em 0;
+ text-align: center;
+ overflow-wrap: break-word;
+ box-sizing: border-box;
+}
+.wp-block-pullquote p,
+.wp-block-pullquote blockquote,
+.wp-block-pullquote cite {
+ color: inherit;
+}
+.wp-block-pullquote.has-text-align-left, .wp-block-pullquote.has-text-align-right, .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
+ max-width: 420px;
+}
+.wp-block-pullquote.has-text-align-left p, .wp-block-pullquote.has-text-align-right p, .wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
+ font-size: 1.25em;
+}
+.wp-block-pullquote p {
+ font-size: 1.75em;
+ line-height: 1.6;
+}
+.wp-block-pullquote cite,
+.wp-block-pullquote footer {
+ position: relative;
+}
+.wp-block-pullquote .has-text-color a {
+ color: inherit;
+}
+
+.wp-block-pullquote.has-text-align-left blockquote {
+ text-align: left;
+}
+
+.wp-block-pullquote.has-text-align-right blockquote {
+ text-align: right;
+}
+
+.wp-block-pullquote.is-style-solid-color {
+ border: none;
+}
+.wp-block-pullquote.is-style-solid-color blockquote {
+ margin-left: auto;
+ margin-right: auto;
+ max-width: 60%;
+}
+.wp-block-pullquote.is-style-solid-color blockquote p {
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 2em;
+}
+.wp-block-pullquote.is-style-solid-color blockquote cite {
+ text-transform: none;
+ font-style: normal;
+}
+
+.wp-block-pullquote cite {
+ color: inherit;
+}
+
+.wp-block-post-template,
+.wp-block-query-loop {
+ margin-top: 0;
+ margin-bottom: 0;
+ max-width: 100%;
+ list-style: none;
+ padding: 0;
+}
+.wp-block-post-template.wp-block-post-template,
+.wp-block-query-loop.wp-block-post-template {
+ background: none;
+}
+.wp-block-post-template.is-flex-container,
+.wp-block-query-loop.is-flex-container {
+ flex-direction: row;
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1.25em;
+}
+.wp-block-post-template.is-flex-container li,
+.wp-block-query-loop.is-flex-container li {
+ margin: 0;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li {
+ width: calc((100% / 2) - 1.25em + (1.25em / 2));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li {
+ width: calc((100% / 3) - 1.25em + (1.25em / 3));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li {
+ width: calc((100% / 4) - 1.25em + (1.25em / 4));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-5 > li {
+ width: calc((100% / 5) - 1.25em + (1.25em / 5));
+ }
+ .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li,
+.wp-block-query-loop.is-flex-container.is-flex-container.columns-6 > li {
+ width: calc((100% / 6) - 1.25em + (1.25em / 6));
+ }
+}
+
+.wp-block-query-pagination > .wp-block-query-pagination-next,
+.wp-block-query-pagination > .wp-block-query-pagination-previous,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers {
+ /*rtl:ignore*/
+ margin-right: 0.5em;
+ margin-bottom: 0.5em;
+}
+.wp-block-query-pagination > .wp-block-query-pagination-next:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-previous:last-child,
+.wp-block-query-pagination > .wp-block-query-pagination-numbers:last-child {
+ /*rtl:ignore*/
+ margin-right: 0;
+}
+.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
+ margin-right: 1ch;
+ display: inline-block;
+}
+.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(1) /*rtl:scaleX(-1);*/;
+}
+.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
+ margin-left: 1ch;
+ display: inline-block;
+}
+.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron) {
+ transform: scaleX(1) /*rtl:scaleX(-1);*/;
+}
+.wp-block-query-pagination.aligncenter {
+ justify-content: center;
+}
+
+.wp-block-quote {
+ box-sizing: border-box;
+ overflow-wrap: break-word;
+}
+.wp-block-quote.is-style-large:not(.is-style-plain), .wp-block-quote.is-large:not(.is-style-plain) {
+ margin-bottom: 1em;
+ padding: 0 1em;
+}
+.wp-block-quote.is-style-large:not(.is-style-plain) p, .wp-block-quote.is-large:not(.is-style-plain) p {
+ font-size: 1.5em;
+ font-style: italic;
+ line-height: 1.6;
+}
+.wp-block-quote.is-style-large:not(.is-style-plain) cite,
+.wp-block-quote.is-style-large:not(.is-style-plain) footer, .wp-block-quote.is-large:not(.is-style-plain) cite,
+.wp-block-quote.is-large:not(.is-style-plain) footer {
+ font-size: 1.125em;
+ text-align: right;
+}
+
+.wp-block-read-more {
+ display: block;
+ width: -moz-fit-content;
+ width: fit-content;
+}
+.wp-block-read-more:not([style*=text-decoration]) {
+ text-decoration: none;
+}
+.wp-block-read-more:not([style*=text-decoration]):focus, .wp-block-read-more:not([style*=text-decoration]):active {
+ text-decoration: none;
+}
+
+ul.wp-block-rss {
+ list-style: none;
+ padding: 0;
+}
+ul.wp-block-rss.wp-block-rss {
+ box-sizing: border-box;
+}
+ul.wp-block-rss.alignleft {
+ /*rtl:ignore*/
+ margin-right: 2em;
+}
+ul.wp-block-rss.alignright {
+ /*rtl:ignore*/
+ margin-left: 2em;
+}
+ul.wp-block-rss.is-grid {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 0;
+ list-style: none;
+}
+ul.wp-block-rss.is-grid li {
+ margin: 0 1em 1em 0;
+ width: 100%;
+}
+@media (min-width: 600px) {
+ ul.wp-block-rss.columns-2 li {
+ width: calc(( 100% / 2 ) - 1em);
+ }
+ ul.wp-block-rss.columns-3 li {
+ width: calc(( 100% / 3 ) - 1em);
+ }
+ ul.wp-block-rss.columns-4 li {
+ width: calc(( 100% / 4 ) - 1em);
+ }
+ ul.wp-block-rss.columns-5 li {
+ width: calc(( 100% / 5 ) - 1em);
+ }
+ ul.wp-block-rss.columns-6 li {
+ width: calc(( 100% / 6 ) - 1em);
+ }
+}
+
+.wp-block-rss__item-publish-date,
+.wp-block-rss__item-author {
+ display: block;
+ font-size: 0.8125em;
+}
+
+.wp-block-search__button {
+ background: #f7f7f7;
+ border: 1px solid #ccc;
+ padding: 0.375em 0.625em;
+ color: #32373c;
+ margin-left: 0.625em;
+ word-break: normal;
+ font-size: inherit;
+ font-family: inherit;
+ line-height: inherit;
+}
+.wp-block-search__button.has-icon {
+ line-height: 0;
+}
+.wp-block-search__button svg {
+ min-width: 1.5em;
+ min-height: 1.5em;
+ fill: currentColor;
+}
+
+.wp-block-search__inside-wrapper {
+ display: flex;
+ flex: auto;
+ flex-wrap: nowrap;
+ max-width: 100%;
+}
+
+.wp-block-search__label {
+ width: 100%;
+}
+
+.wp-block-search__input {
+ padding: 8px;
+ flex-grow: 1;
+ min-width: 3em;
+ border: 1px solid #949494;
+ font-size: inherit;
+ font-family: inherit;
+ line-height: inherit;
+}
+
+.wp-block-search.wp-block-search__button-only .wp-block-search__button {
+ margin-left: 0;
+}
+
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
+ padding: 4px;
+ border: 1px solid #949494;
+}
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
+ border-radius: 0;
+ border: none;
+ padding: 0 0 0 0.25em;
+}
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
+ outline: none;
+}
+.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
+ padding: 0.125em 0.5em;
+}
+
+.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
+ margin: auto;
+}
+
+.wp-block-separator {
+ border-top: 1px solid currentColor;
+ border-bottom: 1px solid currentColor;
+}
+.wp-block-separator.is-style-dots {
+ background: none !important;
+ border: none;
+ text-align: center;
+ line-height: 1;
+ height: auto;
+}
+.wp-block-separator.is-style-dots::before {
+ content: "···";
+ color: currentColor;
+ font-size: 1.5em;
+ letter-spacing: 2em;
+ /*rtl:ignore*/
+ padding-left: 2em;
+ font-family: serif;
+}
+
+.wp-block-site-logo {
+ line-height: 0;
+}
+.wp-block-site-logo a {
+ display: inline-block;
+}
+.wp-block-site-logo.is-default-size img {
+ width: 120px;
+ height: auto;
+}
+.wp-block-site-logo a,
+.wp-block-site-logo img {
+ border-radius: inherit;
+}
+.wp-block-site-logo.aligncenter {
+ margin-left: auto;
+ margin-right: auto;
+ text-align: center;
+}
+.wp-block-site-logo.is-style-rounded {
+ border-radius: 9999px;
+}
+
+.wp-block-social-links {
+ padding-left: 0;
+ padding-right: 0;
+ text-indent: 0;
+ margin-left: 0;
+ background: none;
+}
+.wp-block-social-links .wp-social-link a,
+.wp-block-social-links .wp-social-link a:hover {
+ text-decoration: none;
+ border-bottom: 0;
+ box-shadow: none;
+}
+.wp-block-social-links .wp-social-link a {
+ padding: 0.25em;
+}
+.wp-block-social-links .wp-social-link svg {
+ width: 1em;
+ height: 1em;
+}
+.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
+ margin-left: 0.5em;
+ margin-right: 0.5em;
+ font-size: 0.65em;
+}
+.wp-block-social-links.has-small-icon-size {
+ font-size: 16px;
+}
+.wp-block-social-links, .wp-block-social-links.has-normal-icon-size {
+ font-size: 24px;
+}
+.wp-block-social-links.has-large-icon-size {
+ font-size: 36px;
+}
+.wp-block-social-links.has-huge-icon-size {
+ font-size: 48px;
+}
+.wp-block-social-links.aligncenter {
+ justify-content: center;
+ display: flex;
+}
+.wp-block-social-links.alignright {
+ justify-content: flex-end;
+}
+
+.wp-block-social-link {
+ display: block;
+ border-radius: 9999px;
+ transition: transform 0.1s ease;
+ height: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .wp-block-social-link {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.wp-block-social-link a {
+ align-items: center;
+ display: flex;
+ line-height: 0;
+ transition: transform 0.1s ease;
+}
+.wp-block-social-link:hover {
+ transform: scale(1.1);
+}
+
+.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited,
+.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg {
+ color: currentColor;
+ fill: currentColor;
+}
+
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
+ background-color: #f0f0f0;
+ color: #444;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
+ background-color: #f90;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
+ background-color: #1ea0c3;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
+ background-color: #0757fe;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
+ background-color: #1e1f26;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
+ background-color: #02e49b;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
+ background-color: #e94c89;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
+ background-color: #4280ff;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
+ background-color: #f45800;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
+ background-color: #1778f2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
+ background-color: #000;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
+ background-color: #0461dd;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
+ background-color: #e65678;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
+ background-color: #24292d;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
+ background-color: #eceadd;
+ color: #382110;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
+ background-color: #ea4434;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
+ background-color: #f00075;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
+ background-color: #e21b24;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
+ background-color: #0d66c2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
+ background-color: #3288d4;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
+ background-color: #02ab6c;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
+ background-color: #f6405f;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
+ background-color: #ff424d;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
+ background-color: #e60122;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
+ background-color: #ef4155;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
+ background-color: #fe4500;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
+ background-color: #0478d7;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
+ background-color: #fefc00;
+ color: #fff;
+ stroke: #000;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
+ background-color: #ff5600;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
+ background-color: #1bd760;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
+ background-color: #2aabee;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
+ background-color: #000;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
+ background-color: #011835;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
+ background-color: #6440a4;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
+ background-color: #1da1f2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
+ background-color: #1eb7ea;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
+ background-color: #4680c2;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
+ background-color: #3499cd;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
+ background-color: #d32422;
+ color: #fff;
+}
+.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
+ background-color: #f00;
+ color: #fff;
+}
+
+.wp-block-social-links.is-style-logos-only .wp-social-link {
+ background: none;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link a {
+ padding: 0;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link svg {
+ width: 1.25em;
+ height: 1.25em;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
+ color: #f90;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
+ color: #1ea0c3;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
+ color: #0757fe;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
+ color: #1e1f26;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
+ color: #02e49b;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
+ color: #e94c89;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
+ color: #4280ff;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
+ color: #f45800;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
+ color: #1778f2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
+ color: #000;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
+ color: #0461dd;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
+ color: #e65678;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-github {
+ color: #24292d;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
+ color: #382110;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-google {
+ color: #ea4434;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
+ color: #f00075;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
+ color: #e21b24;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
+ color: #0d66c2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
+ color: #3288d4;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
+ color: #02ab6c;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
+ color: #f6405f;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
+ color: #ff424d;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
+ color: #e60122;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
+ color: #ef4155;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
+ color: #fe4500;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
+ color: #0478d7;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
+ color: #fff;
+ stroke: #000;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
+ color: #ff5600;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
+ color: #1bd760;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
+ color: #2aabee;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
+ color: #000;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
+ color: #011835;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
+ color: #6440a4;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
+ color: #1da1f2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
+ color: #1eb7ea;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
+ color: #4680c2;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
+ color: #3499cd;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
+ color: #d32422;
+}
+.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
+ color: #f00;
+}
+
+.wp-block-social-links.is-style-pill-shape .wp-social-link {
+ width: auto;
+}
+.wp-block-social-links.is-style-pill-shape .wp-social-link a {
+ padding-left: calc((2/3) * 1em);
+ padding-right: calc((2/3) * 1em);
+}
+
+.wp-block-spacer {
+ clear: both;
+}
+
+.wp-block-tag-cloud.aligncenter {
+ text-align: center;
+}
+.wp-block-tag-cloud.alignfull {
+ padding-left: 1em;
+ padding-right: 1em;
+}
+.wp-block-tag-cloud a {
+ display: inline-block;
+ margin-right: 5px;
+}
+.wp-block-tag-cloud span {
+ display: inline-block;
+ margin-left: 5px;
+ text-decoration: none;
+}
+.wp-block-tag-cloud.is-style-outline {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1ch;
+}
+.wp-block-tag-cloud.is-style-outline a {
+ border: 1px solid currentColor;
+ font-size: unset !important;
+ margin-right: 0;
+ padding: 1ch 2ch;
+ text-decoration: none !important;
+}
+
+.wp-block-table {
+ margin: 0 0 1em 0;
+ overflow-x: auto;
+}
+.wp-block-table table {
+ border-collapse: collapse;
+ width: 100%;
+}
+.wp-block-table .has-fixed-layout {
+ table-layout: fixed;
+ width: 100%;
+}
+.wp-block-table .has-fixed-layout td,
+.wp-block-table .has-fixed-layout th {
+ word-break: break-word;
+}
+.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {
+ display: table;
+ width: auto;
+}
+.wp-block-table.alignleft td,
+.wp-block-table.alignleft th, .wp-block-table.aligncenter td,
+.wp-block-table.aligncenter th, .wp-block-table.alignright td,
+.wp-block-table.alignright th {
+ word-break: break-word;
+}
+.wp-block-table .has-subtle-light-gray-background-color {
+ background-color: #f3f4f5;
+}
+.wp-block-table .has-subtle-pale-green-background-color {
+ background-color: #e9fbe5;
+}
+.wp-block-table .has-subtle-pale-blue-background-color {
+ background-color: #e7f5fe;
+}
+.wp-block-table .has-subtle-pale-pink-background-color {
+ background-color: #fcf0ef;
+}
+.wp-block-table.is-style-stripes {
+ border-spacing: 0;
+ border-collapse: inherit;
+ background-color: transparent;
+ border-bottom: 1px solid #f0f0f0;
+}
+.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
+ background-color: #f0f0f0;
+}
+.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
+ background-color: #f3f4f5;
+}
+.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
+ background-color: #e9fbe5;
+}
+.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
+ background-color: #e7f5fe;
+}
+.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
+ background-color: #fcf0ef;
+}
+.wp-block-table.is-style-stripes th,
+.wp-block-table.is-style-stripes td {
+ border-color: transparent;
+}
+.wp-block-table .has-border-color > *,
+.wp-block-table .has-border-color tr,
+.wp-block-table .has-border-color th,
+.wp-block-table .has-border-color td {
+ border-color: inherit;
+}
+.wp-block-table table[style*=border-style] > *,
+.wp-block-table table[style*=border-style] tr,
+.wp-block-table table[style*=border-style] th,
+.wp-block-table table[style*=border-style] td {
+ border-style: inherit;
+}
+.wp-block-table table[style*=border-width] > *,
+.wp-block-table table[style*=border-width] tr,
+.wp-block-table table[style*=border-width] th,
+.wp-block-table table[style*=border-width] td {
+ border-width: inherit;
+ border-style: inherit;
+}
+
+.wp-block-text-columns {
+ display: flex;
+}
+.wp-block-text-columns.aligncenter {
+ display: flex;
+}
+.wp-block-text-columns .wp-block-column {
+ margin: 0 1em;
+ padding: 0;
+}
+.wp-block-text-columns .wp-block-column:first-child {
+ margin-left: 0;
+}
+.wp-block-text-columns .wp-block-column:last-child {
+ margin-right: 0;
+}
+.wp-block-text-columns.columns-2 .wp-block-column {
+ width: calc(100% / 2);
+}
+.wp-block-text-columns.columns-3 .wp-block-column {
+ width: calc(100% / 3);
+}
+.wp-block-text-columns.columns-4 .wp-block-column {
+ width: calc(100% / 4);
+}
+
+pre.wp-block-verse {
+ font-family: inherit;
+ overflow: auto;
+ white-space: pre-wrap;
+}
+
+.wp-block-video {
+ margin: 0 0 1em 0;
+}
+.wp-block-video video {
+ width: 100%;
+}
+@supports (position: sticky) {
+ .wp-block-video [poster] {
+ -o-object-fit: cover;
+ object-fit: cover;
+ }
+}
+.wp-block-video.aligncenter {
+ text-align: center;
+}
+.wp-block-video figcaption {
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+
+:root {
+ /*
+ * Our classes uses the same values we set for gradient value attributes,
+ * and we can not use spacing because of WP multi site kses rule.
+ */
+ /* stylelint-disable function-comma-space-after */
+ /* stylelint-enable function-comma-space-after */
+ --wp--preset--font-size--normal: 16px;
+ --wp--preset--font-size--huge: 42px;
+}
+:root .has-very-light-gray-background-color {
+ background-color: #eee;
+}
+:root .has-very-dark-gray-background-color {
+ background-color: #313131;
+}
+:root .has-very-light-gray-color {
+ color: #eee;
+}
+:root .has-very-dark-gray-color {
+ color: #313131;
+}
+:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
+ background: linear-gradient(135deg, #00d084 0%, #0693e3 100%);
+}
+:root .has-purple-crush-gradient-background {
+ background: linear-gradient(135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%);
+}
+:root .has-hazy-dawn-gradient-background {
+ background: linear-gradient(135deg, #faaca8 0%, #dad0ec 100%);
+}
+:root .has-subdued-olive-gradient-background {
+ background: linear-gradient(135deg, #fafae1 0%, #67a671 100%);
+}
+:root .has-atomic-cream-gradient-background {
+ background: linear-gradient(135deg, #fdd79a 0%, #004a59 100%);
+}
+:root .has-nightshade-gradient-background {
+ background: linear-gradient(135deg, #330968 0%, #31cdcf 100%);
+}
+:root .has-midnight-gradient-background {
+ background: linear-gradient(135deg, #020381 0%, #2874fc 100%);
+}
+
+.has-regular-font-size {
+ font-size: 1em;
+}
+
+.has-larger-font-size {
+ font-size: 2.625em;
+}
+
+.has-normal-font-size {
+ font-size: var(--wp--preset--font-size--normal);
+}
+
+.has-huge-font-size {
+ font-size: var(--wp--preset--font-size--huge);
+}
+
+.has-text-align-center {
+ text-align: center;
+}
+
+.has-text-align-left {
+ /*rtl:ignore*/
+ text-align: left;
+}
+
+.has-text-align-right {
+ /*rtl:ignore*/
+ text-align: right;
+}
+
+#end-resizable-editor-section {
+ display: none;
+}
+
+.aligncenter {
+ clear: both;
+}
+
+.items-justified-left {
+ justify-content: flex-start;
+}
+
+.items-justified-center {
+ justify-content: center;
+}
+
+.items-justified-right {
+ justify-content: flex-end;
+}
+
+.items-justified-space-between {
+ justify-content: space-between;
+}
+
+.screen-reader-text {
+ 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;
+}
+
+.screen-reader-text:focus {
+ background-color: #ddd;
+ clip: auto !important;
+ -webkit-clip-path: none;
+ clip-path: none;
+ color: #444;
+ display: block;
+ font-size: 1em;
+ height: auto;
+ left: 5px;
+ line-height: normal;
+ padding: 15px 23px 14px;
+ text-decoration: none;
+ top: 5px;
+ width: auto;
+ z-index: 100000;
+}
+
+/**
+ * The following provide a simple means of applying a default border style when
+ * a user first makes a selection in the border block support panel.
+ * This prevents issues such as where the user could set a border width
+ * and see no border due there being no border style set.
+ *
+ * This is intended to be removed once intelligent defaults can be set while
+ * making border selections via the block support.
+ *
+ * See: https://github.com/WordPress/gutenberg/pull/33743
+ */
+html :where(.has-border-color) {
+ border-style: solid;
+}
+
+html :where([style*="border-width"]) {
+ border-style: solid;
+}
+
+/**
+ * Provide baseline responsiveness for images.
+ */
+html :where(img[class*="wp-image-"]) {
+ height: auto;
+ max-width: 100%;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/style.min.css b/static/wp-includes/css/dist/block-library/style.min.css
new file mode 100755
index 0000000..144a0c4
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/style.min.css
@@ -0,0 +1,11 @@
+@charset "UTF-8";.wp-block-archives-dropdown label{display:block}.wp-block-avatar.aligncenter{text-align:center}.wp-block-audio{margin:0 0 1em}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-align:center;text-decoration:none;word-break:break-word;box-sizing:border-box}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - var(--wp--style--block-gap, .5em)*0.75)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - var(--wp--style--block-gap, .5em)*0.5)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - var(--wp--style--block-gap, .5em)*0.25)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{width:100%;flex-basis:100%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{width:25%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{width:50%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{width:75%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline>:where(.wp-block-button__link),:where(.wp-block-button__link).is-style-outline{border:2px solid;padding:.667em 1.333em}.is-style-outline>.wp-block-button__link:not(.has-text-color),.wp-block-button__link.is-style-outline:not(.has-text-color){color:currentColor}.is-style-outline>.wp-block-button__link:not(.has-background),.wp-block-button__link.is-style-outline:not(.has-background){background-color:transparent}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-button.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:.25em;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-code code{display:block;font-family:inherit;overflow-wrap:break-word;white-space:pre-wrap}.wp-block-columns{display:flex;margin-bottom:1.75em;box-sizing:border-box;flex-wrap:wrap!important;align-items:normal!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{margin-right:.5em;margin-bottom:.5em}.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child{margin-right:0}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow{margin-right:1ch;display:inline-block}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow{margin-left:1ch;display:inline-block}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination.aligncenter{justify-content:center}.wp-block-comment-template{margin-bottom:0;max-width:100%;list-style:none;padding:0}.wp-block-comment-template li{clear:both}.wp-block-comment-template ol{margin-bottom:0;max-width:100%;list-style:none;padding-left:2rem}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;width:100%;display:flex;justify-content:center;align-items:center;padding:1em;box-sizing:border-box}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-touch-callout:inherit){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]),.wp-block-cover .has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover-image .has-background-dim.has-background-gradient,.wp-block-cover .has-background-dim.has-background-gradient{background-color:transparent}.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__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0{opacity:0}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10{opacity:.1}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20{opacity:.2}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30{opacity:.3}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40{opacity:.4}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50{opacity:.5}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60{opacity:.6}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70{opacity:.7}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80{opacity:.8}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90{opacity:.9}.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100{opacity:1}.wp-block-cover-image .block-library-cover__padding-visualizer,.wp-block-cover .block-library-cover__padding-visualizer{z-index:2}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports (position:sticky){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:100%;z-index:1;color:#fff}.wp-block-cover-image.is-light .wp-block-cover__inner-container,.wp-block-cover.is-light .wp-block-cover__inner-container{color:#000}.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover-image img.wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background,.wp-block-cover img.wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:0;width:100%;height:100%;max-width:none;max-height:none;-o-object-fit:cover;object-fit:cover;outline:none;border:none;box-shadow:none}.wp-block-cover__image-background,.wp-block-cover__video-background{z-index:0}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:840px;padding:.44em;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-width:320px;min-height:240px}.wp-block-embed{margin:0 0 1em;overflow-wrap:break-word}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__embed{margin-bottom:1em}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:.8em;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item{margin:0 1em 1em 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure{margin:0;height:100%;display:flex;align-items:flex-end;justify-content:flex-start}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:auto}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:3em .77em .7em;color:#fff;text-align:center;font-size:.8em;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);box-sizing:border-box;margin:0;z-index:2}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid:not(.has-nested-images) figcaption,.wp-block-gallery:not(.has-nested-images) figcaption{flex-grow:1}.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img{width:100%;height:100%;flex:1;-o-object-fit:cover;object-fit:cover}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item{width:calc(33.33333% - .66667em);margin-right:1em}.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item{width:calc(25% - .75em);margin-right:1em}.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item{width:calc(20% - .8em);margin-right:1em}.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item{width:calc(16.66667% - .83333em);margin-right:1em}.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item{width:calc(14.28571% - .85714em);margin-right:1em}.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item{width:calc(12.5% - .875em);margin-right:1em}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright{max-width:420px;width:100%}.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-gallery:not(.is-cropped) .blocks-gallery-item{align-self:flex-start}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2);margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image{display:flex;flex-grow:1;justify-content:center;position:relative;flex-direction:column;max-width:100%}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{margin:0;flex-direction:column;flex-grow:1}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;color:#fff;font-size:13px;left:0;margin-bottom:0;max-height:60%;overflow:auto;padding:0 8px 8px;position:absolute;text-align:center;width:100%;box-sizing:border-box}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img{display:inline}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a{color:inherit}.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div{flex:1 1 auto}.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{flex:initial;background:none;color:inherit;margin:0;padding:10px 10px 9px;position:relative}.wp-block-gallery.has-nested-images figcaption{flex-grow:1;flex-basis:100%;text-align:center}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-top:0;margin-bottom:auto}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{width:100%;flex:1 0 0%;height:100%;-o-object-fit:cover;object-fit:cover}.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image){width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image){width:calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*0.66667)}.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image){width:calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*0.75)}.wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image){width:calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*0.8)}.wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image){width:calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*0.83333)}.wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image){width:calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*0.85714)}.wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image){width:calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*0.875)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*0.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*0.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright{max-width:420px;width:100%}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}.wp-block-group{box-sizing:border-box}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}.wp-block-image{margin:0 0 1em}.wp-block-image img{height:auto;max-width:100%;vertical-align:bottom}.wp-block-image:not(.is-style-rounded)>a,.wp-block-image:not(.is-style-rounded) img{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image.aligncenter,.wp-block-image .aligncenter,.wp-block-image.alignleft,.wp-block-image .alignleft,.wp-block-image.alignright,.wp-block-image .alignright{display:table}.wp-block-image.aligncenter>figcaption,.wp-block-image .aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image.alignright>figcaption,.wp-block-image .alignright>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-image figure{margin:0}ol.wp-block-latest-comments{margin-left:0}.wp-block-latest-comments .wp-block-latest-comments{padding-left:0}.wp-block-latest-comments__comment{line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:2.25em;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;line-height:1.8;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none;padding-left:0}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-top:.5em;margin-bottom:1em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;width:auto;max-width:100%}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em;float:left}.wp-block-latest-posts__featured-image.alignright{margin-left:1em;float:right}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em}.wp-block-media-text{
+ /*!rtl:begin:ignore*/direction:ltr;
+ /*!rtl:end:ignore*/display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{align-self:end}.wp-block-media-text .wp-block-media-text__media{
+ /*!rtl:begin:ignore*/grid-column:1;grid-row:1;
+ /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr;
+ /*!rtl:begin:ignore*/grid-column:2;grid-row:1;
+ /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{
+ /*!rtl:begin:ignore*/grid-column:2;grid-row:1
+ /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{
+ /*!rtl:begin:ignore*/grid-column:1;grid-row:1
+ /*!rtl:end:ignore*/}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill .wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill .wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill .wp-block-media-text__media img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{grid-column:1;grid-row:2}}.wp-block-navigation{position:relative;--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center}.wp-block-navigation ul{margin-top:0;margin-bottom:0;margin-left:0;padding-left:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-item{display:flex;align-items:center;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{color:inherit;display:block;padding:0}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation:where(:not([class*=has-text-decoration])) a,.wp-block-navigation:where(:not([class*=has-text-decoration])) a:active,.wp-block-navigation:where(:not([class*=has-text-decoration])) a:focus{text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;line-height:0;display:inline-block;font-size:inherit;padding:0;background-color:inherit;color:currentColor;border:none;width:.6em;height:.6em;margin-left:.25em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{display:inline-block;stroke:currentColor;width:inherit;height:inherit;margin-top:.075em}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container){background-color:inherit;color:inherit;position:absolute;z-index:2;display:flex;flex-direction:column;align-items:normal;opacity:0;transition:opacity .1s linear;visibility:hidden;width:0;height:0;overflow:hidden;left:-1px;top:100%}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container)>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container)>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-right:0;margin-left:auto}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content{margin:0}@media (min-width:782px){.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:.5em;background:transparent}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon{margin-right:.25em}.wp-block-navigation .has-child :where(.wp-block-navigation__submenu-container) .wp-block-navigation__submenu-icon svg{transform:rotate(-90deg)}}.wp-block-navigation .has-child:where(:not(.open-on-click)):hover>.wp-block-navigation__submenu-container{visibility:visible;overflow:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-navigation .has-child:where(:not(.open-on-click):not(.open-on-hover-click)):focus-within>.wp-block-navigation__submenu-container{visibility:visible;overflow:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container{visibility:visible;overflow:visible;opacity:1;width:auto;height:auto;min-width:200px}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{left:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:0}}.wp-block-navigation-submenu{position:relative;display:flex}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:transparent;border:none;color:currentColor;font-size:inherit;font-family:inherit;line-height:inherit;font-style:inherit;font-weight:inherit;text-transform:inherit;text-align:left}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-right:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-left:-.6em;pointer-events:none}.wp-block-navigation,.wp-block-navigation .wp-block-page-list,.wp-block-navigation:where(.has-background),.wp-block-navigation:where(.has-background) .wp-block-navigation .wp-block-page-list,.wp-block-navigation:where(.has-background) .wp-block-navigation__container,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}.wp-block-navigation:where(.has-background) .wp-block-navigation-item__content,.wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content{padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{left:auto;right:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:-1px;right:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:auto;right:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;color:#000;border:1px solid rgba(0,0,0,.15)}.wp-block-navigation__container{display:flex;flex-wrap:var(--navigation-layout-wrap,wrap);flex-direction:var(--navigation-layout-direction,initial);justify-content:var(--navigation-layout-justify,initial);align-items:var(--navigation-layout-align,initial);list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}.wp-block-navigation__responsive-container{display:none;position:fixed;top:0;left:0;right:0;bottom:0}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{display:flex;flex-wrap:var(--navigation-layout-wrap,wrap);flex-direction:var(--navigation-layout-direction,initial);justify-content:var(--navigation-layout-justify,initial);align-items:var(--navigation-layout-align,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){color:inherit!important;background-color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{display:flex;flex-direction:column;background-color:inherit;padding:2rem;overflow:auto;z-index:100000}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content{padding-top:calc(2rem + 24px);overflow:visible;display:flex;flex-direction:column;flex-wrap:nowrap;align-items:var(--navigation-layout-justification-setting,inherit)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{opacity:1;visibility:visible;height:auto;width:auto;overflow:initial;min-width:200px;position:static;border:none;padding-left:2rem;padding-right:2rem}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{display:flex;flex-direction:column;align-items:var(--navigation-layout-justification-setting,initial)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list{color:inherit!important;background:transparent!important}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{right:auto;left:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){display:block;width:100%;position:relative;z-index:auto;background-color:inherit}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff;color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{vertical-align:middle;cursor:pointer;color:currentColor;background:transparent;border:none;margin:0;padding:0}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;pointer-events:none;display:block;width:24px;height:24px}.wp-block-navigation__responsive-container-open{display:flex}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;top:0;right:0;z-index:2}.wp-block-navigation__responsive-close{width:100%}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}html.has-modal-open{overflow:hidden}.wp-block-navigation .wp-block-navigation-item__label{word-break:normal;overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}.wp-block-navigation .wp-block-page-list{display:flex;flex-direction:var(--navigation-layout-direction,initial);justify-content:var(--navigation-layout-justify,initial);align-items:var(--navigation-layout-align,initial);flex-wrap:var(--navigation-layout-wrap,wrap);background-color:inherit}.wp-block-navigation .wp-block-navigation-item{background-color:inherit}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-drop-cap.has-background{overflow:hidden}p.has-background{padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{margin-bottom:.7em;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{margin:0}.wp-block-post-comments .alignleft{float:left}.wp-block-post-comments .alignright{float:right}.wp-block-post-comments .navigation:after{content:"";display:table;clear:both}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-top:.5em;margin-right:.75em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{margin-top:1em;margin-bottom:1em;display:block}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{display:block;box-sizing:border-box;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-size:1em;font-family:inherit}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}.wp-block-post-comments input[type=submit]{border:none}.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title){font-weight:inherit}.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title){font-family:inherit}.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title){font-size:inherit}.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title){line-height:inherit}.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title){font-style:inherit}.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title){letter-spacing:inherit}.wp-block-post-comments-form input[type=submit]{border:none;box-shadow:none;cursor:pointer;display:inline-block;text-align:center;overflow-wrap:break-word}.wp-block-post-comments-form input:not([type=submit]),.wp-block-post-comments-form textarea{border:1px solid #949494;font-size:1em;font-family:inherit}.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments-form textarea{padding:calc(.667em + 2px)}.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments-form .comment-form textarea{display:block;box-sizing:border-box;width:100%}.wp-block-post-comments-form .comment-form-author label,.wp-block-post-comments-form .comment-form-email label,.wp-block-post-comments-form .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments-form .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments-form .comment-reply-title{margin-bottom:0}.wp-block-post-comments-form .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-excerpt__more-link{display:inline-block}.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:block}.wp-block-post-featured-image img{max-width:100%;width:100%;height:auto;vertical-align:bottom}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-terms__separator{white-space:pre-wrap}.wp-block-post-title{word-break:break-word}.wp-block-post-title a{display:inline-block}.wp-block-preformatted{white-space:pre-wrap}.wp-block-preformatted.has-background{padding:1.25em 2.375em}.wp-block-pullquote{margin:0 0 1em;padding:3em 0;text-align:center;overflow-wrap:break-word;box-sizing:border-box}.wp-block-pullquote blockquote,.wp-block-pullquote cite,.wp-block-pullquote p{color:inherit}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright,.wp-block-pullquote.has-text-align-left,.wp-block-pullquote.has-text-align-right{max-width:420px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p,.wp-block-pullquote.has-text-align-left p,.wp-block-pullquote.has-text-align-right p{font-size:1.25em}.wp-block-pullquote p{font-size:1.75em;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:left}.wp-block-pullquote.has-text-align-right blockquote{text-align:right}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:2em}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-post-template,.wp-block-query-loop{margin-top:0;margin-bottom:0;max-width:100%;list-style:none;padding:0}.wp-block-post-template.wp-block-post-template,.wp-block-query-loop.wp-block-post-template{background:none}.wp-block-post-template.is-flex-container,.wp-block-query-loop.is-flex-container{flex-direction:row;display:flex;flex-wrap:wrap;gap:1.25em}.wp-block-post-template.is-flex-container li,.wp-block-query-loop.is-flex-container li{margin:0;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{margin-right:.5em;margin-bottom:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow{margin-right:1ch;display:inline-block}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination .wp-block-query-pagination-next-arrow{margin-left:1ch;display:inline-block}.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination.aligncenter{justify-content:center}.wp-block-quote{box-sizing:border-box;overflow-wrap:break-word}.wp-block-quote.is-large:not(.is-style-plain),.wp-block-quote.is-style-large:not(.is-style-plain){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:not(.is-style-plain) p,.wp-block-quote.is-style-large:not(.is-style-plain) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:not(.is-style-plain) cite,.wp-block-quote.is-large:not(.is-style-plain) footer,.wp-block-quote.is-style-large:not(.is-style-plain) cite,.wp-block-quote.is-style-large:not(.is-style-plain) footer{font-size:1.125em;text-align:right}.wp-block-read-more{display:block;width:-moz-fit-content;width:fit-content}.wp-block-read-more:not([style*=text-decoration]),.wp-block-read-more:not([style*=text-decoration]):active,.wp-block-read-more:not([style*=text-decoration]):focus{text-decoration:none}ul.wp-block-rss{list-style:none;padding:0}ul.wp-block-rss.wp-block-rss{box-sizing:border-box}ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}ul.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-search__button{background:#f7f7f7;border:1px solid #ccc;padding:.375em .625em;color:#32373c;margin-left:.625em;word-break:normal;font-size:inherit;font-family:inherit;line-height:inherit}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{min-width:1.5em;min-height:1.5em;fill:currentColor}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search__input{padding:8px;flex-grow:1;min-width:3em;border:1px solid #949494;font-size:inherit;font-family:inherit;line-height:inherit}.wp-block-search.wp-block-search__button-only .wp-block-search__button{margin-left:0}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{padding:4px;border:1px solid #949494}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input{border-radius:0;border:none;padding:0 0 0 .25em}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus{outline:none}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button{padding:.125em .5em}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block-separator{border-top:1px solid;border-bottom:1px solid}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"···";color:currentColor;font-size:1.5em;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-site-logo{line-height:0}.wp-block-site-logo a{display:inline-block}.wp-block-site-logo.is-default-size img{width:120px;height:auto}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}.wp-block-site-logo.is-style-rounded{border-radius:9999px}.wp-block-social-links{padding-left:0;padding-right:0;text-indent:0;margin-left:0;background:none}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{width:1em;height:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){margin-left:.5em;margin-right:.5em;font-size:.65em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{display:block;border-radius:9999px;transition:transform .1s ease;height:auto}@media (prefers-reduced-motion:reduce){.wp-block-social-link{transition-duration:0s;transition-delay:0s}}.wp-block-social-link a{align-items:center;display:flex;line-height:0;transition:transform .1s ease}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg{color:currentColor;fill:currentColor}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#ff424d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none}.wp-block-social-links.is-style-logos-only .wp-social-link a{padding:0}.wp-block-social-links.is-style-logos-only .wp-social-link svg{width:1.25em;height:1.25em}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#ff424d}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{color:#d32422}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:.66667em;padding-right:.66667em}.wp-block-spacer{clear:both}.wp-block-tag-cloud.aligncenter{text-align:center}.wp-block-tag-cloud.alignfull{padding-left:1em;padding-right:1em}.wp-block-tag-cloud a{display:inline-block;margin-right:5px}.wp-block-tag-cloud span{display:inline-block;margin-left:5px;text-decoration:none}.wp-block-tag-cloud.is-style-outline{display:flex;flex-wrap:wrap;gap:1ch}.wp-block-tag-cloud.is-style-outline a{border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}.wp-block-table{margin:0 0 1em;overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-table .has-border-color>*,.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr{border-color:inherit}.wp-block-table table[style*=border-style]>*,.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr{border-style:inherit}.wp-block-table table[style*=border-width]>*,.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr{border-width:inherit;border-style:inherit}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{font-family:inherit;overflow:auto;white-space:pre-wrap}.wp-block-video{margin:0 0 1em}.wp-block-video video{width:100%}@supports (position:sticky){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{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}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color),html :where([style*=border-width]){border-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/theme-rtl.css b/static/wp-includes/css/dist/block-library/theme-rtl.css
new file mode 100755
index 0000000..a5d1dba
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/theme-rtl.css
@@ -0,0 +1,226 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+.wp-block-audio figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-audio figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-code {
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-family: Menlo, Consolas, monaco, monospace;
+ padding: 0.8em 1em;
+}
+
+.wp-block-embed figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-embed figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.blocks-gallery-caption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .blocks-gallery-caption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-image figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-image figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-pullquote {
+ border-top: 4px solid currentColor;
+ border-bottom: 4px solid currentColor;
+ margin-bottom: 1.75em;
+ color: currentColor;
+}
+.wp-block-pullquote cite,
+.wp-block-pullquote footer, .wp-block-pullquote__citation {
+ color: currentColor;
+ text-transform: uppercase;
+ font-size: 0.8125em;
+ font-style: normal;
+}
+
+.wp-block-quote {
+ border-right: 0.25em solid currentColor;
+ margin: 0 0 1.75em 0;
+ padding-right: 1em;
+}
+.wp-block-quote cite,
+.wp-block-quote footer {
+ color: currentColor;
+ font-size: 0.8125em;
+ position: relative;
+ font-style: normal;
+}
+.wp-block-quote.has-text-align-right {
+ border-right: none;
+ border-left: 0.25em solid currentColor;
+ padding-right: 0;
+ padding-left: 1em;
+}
+.wp-block-quote.has-text-align-center {
+ border: none;
+ padding-right: 0;
+}
+.wp-block-quote.is-style-plain, .wp-block-quote.is-style-large, .wp-block-quote.is-large {
+ border: none;
+}
+
+.wp-block-search .wp-block-search__label {
+ font-weight: bold;
+}
+
+:where(.wp-block-group.has-background) {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-separator.has-css-opacity {
+ opacity: 0.4;
+}
+
+.wp-block-separator {
+ border: none;
+ border-bottom: 2px solid currentColor;
+ margin-right: auto;
+ margin-left: auto;
+}
+.wp-block-separator.has-alpha-channel-opacity {
+ opacity: initial;
+}
+.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
+ width: 100px;
+}
+.wp-block-separator.has-background:not(.is-style-dots) {
+ border-bottom: none;
+ height: 1px;
+}
+.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
+ height: 2px;
+}
+
+.wp-block-table thead {
+ border-bottom: 3px solid;
+}
+.wp-block-table tfoot {
+ border-top: 3px solid;
+}
+.wp-block-table td,
+.wp-block-table th {
+ padding: 0.5em;
+ border: 1px solid;
+ word-break: normal;
+}
+.wp-block-table figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-table figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-video figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-video figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-template-part.has-background {
+ padding: 1.25em 2.375em;
+ margin-top: 0;
+ margin-bottom: 0;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/theme-rtl.min.css b/static/wp-includes/css/dist/block-library/theme-rtl.min.css
new file mode 100755
index 0000000..8726c58
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/theme-rtl.min.css
@@ -0,0 +1 @@
+.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-right:.25em solid;margin:0 0 1.75em;padding-right:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-right:none;border-left:.25em solid;padding-right:0;padding-left:1em}.wp-block-quote.has-text-align-center{border:none;padding-right:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{border:none}.wp-block-search .wp-block-search__label{font-weight:700}:where(.wp-block-group.has-background){padding:1.25em 2.375em}.wp-block-separator.has-css-opacity{opacity:.4}.wp-block-separator{border:none;border-bottom:2px solid;margin-right:auto;margin-left:auto}.wp-block-separator.has-alpha-channel-opacity{opacity:1}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/theme.css b/static/wp-includes/css/dist/block-library/theme.css
new file mode 100755
index 0000000..764c1a0
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/theme.css
@@ -0,0 +1,226 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+.wp-block-audio figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-audio figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-code {
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-family: Menlo, Consolas, monaco, monospace;
+ padding: 0.8em 1em;
+}
+
+.wp-block-embed figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-embed figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.blocks-gallery-caption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .blocks-gallery-caption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-image figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-image figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-pullquote {
+ border-top: 4px solid currentColor;
+ border-bottom: 4px solid currentColor;
+ margin-bottom: 1.75em;
+ color: currentColor;
+}
+.wp-block-pullquote cite,
+.wp-block-pullquote footer, .wp-block-pullquote__citation {
+ color: currentColor;
+ text-transform: uppercase;
+ font-size: 0.8125em;
+ font-style: normal;
+}
+
+.wp-block-quote {
+ border-left: 0.25em solid currentColor;
+ margin: 0 0 1.75em 0;
+ padding-left: 1em;
+}
+.wp-block-quote cite,
+.wp-block-quote footer {
+ color: currentColor;
+ font-size: 0.8125em;
+ position: relative;
+ font-style: normal;
+}
+.wp-block-quote.has-text-align-right {
+ border-left: none;
+ border-right: 0.25em solid currentColor;
+ padding-left: 0;
+ padding-right: 1em;
+}
+.wp-block-quote.has-text-align-center {
+ border: none;
+ padding-left: 0;
+}
+.wp-block-quote.is-style-plain, .wp-block-quote.is-style-large, .wp-block-quote.is-large {
+ border: none;
+}
+
+.wp-block-search .wp-block-search__label {
+ font-weight: bold;
+}
+
+:where(.wp-block-group.has-background) {
+ padding: 1.25em 2.375em;
+}
+
+.wp-block-separator.has-css-opacity {
+ opacity: 0.4;
+}
+
+.wp-block-separator {
+ border: none;
+ border-bottom: 2px solid currentColor;
+ margin-left: auto;
+ margin-right: auto;
+}
+.wp-block-separator.has-alpha-channel-opacity {
+ opacity: initial;
+}
+.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
+ width: 100px;
+}
+.wp-block-separator.has-background:not(.is-style-dots) {
+ border-bottom: none;
+ height: 1px;
+}
+.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
+ height: 2px;
+}
+
+.wp-block-table thead {
+ border-bottom: 3px solid;
+}
+.wp-block-table tfoot {
+ border-top: 3px solid;
+}
+.wp-block-table td,
+.wp-block-table th {
+ padding: 0.5em;
+ border: 1px solid;
+ word-break: normal;
+}
+.wp-block-table figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-table figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-video figcaption {
+ color: #555;
+ font-size: 13px;
+ text-align: center;
+}
+.is-dark-theme .wp-block-video figcaption {
+ color: rgba(255, 255, 255, 0.65);
+}
+
+.wp-block-template-part.has-background {
+ padding: 1.25em 2.375em;
+ margin-top: 0;
+ margin-bottom: 0;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/block-library/theme.min.css b/static/wp-includes/css/dist/block-library/theme.min.css
new file mode 100755
index 0000000..4de0096
--- /dev/null
+++ b/static/wp-includes/css/dist/block-library/theme.min.css
@@ -0,0 +1 @@
+.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{border:none}.wp-block-search .wp-block-search__label{font-weight:700}:where(.wp-block-group.has-background){padding:1.25em 2.375em}.wp-block-separator.has-css-opacity{opacity:.4}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto}.wp-block-separator.has-alpha-channel-opacity{opacity:1}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/components/style-rtl.css b/static/wp-includes/css/dist/components/style-rtl.css
new file mode 100755
index 0000000..39b97fd
--- /dev/null
+++ b/static/wp-includes/css/dist/components/style-rtl.css
@@ -0,0 +1,4810 @@
+@charset "UTF-8";
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.components-animate__appear {
+ animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-animate__appear {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {
+ transform-origin: top right;
+}
+.components-animate__appear.is-from-top.is-from-right {
+ transform-origin: top left;
+}
+.components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {
+ transform-origin: bottom right;
+}
+.components-animate__appear.is-from-bottom.is-from-right {
+ transform-origin: bottom left;
+}
+
+@keyframes components-animate__appear-animation {
+ from {
+ transform: translateY(-2em) scaleY(0) scaleX(0);
+ }
+ to {
+ transform: translateY(0%) scaleY(1) scaleX(1);
+ }
+}
+.components-animate__slide-in {
+ animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-animate__slide-in {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.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% {
+ transform: translateX(0%);
+ }
+}
+.components-animate__loading {
+ animation: components-animate__loading 1.6s ease-in-out infinite;
+}
+
+@keyframes components-animate__loading {
+ 0% {
+ opacity: 0.5;
+ }
+ 50% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0.5;
+ }
+}
+.components-autocomplete__popover .components-popover__content > div {
+ padding: 16px;
+ min-width: 220px;
+}
+
+.components-autocomplete__result.components-button {
+ display: flex;
+ height: auto;
+ min-height: 36px;
+ text-align: right;
+ width: 100%;
+}
+.components-autocomplete__result.components-button.is-selected {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.components-button-group {
+ display: inline-block;
+}
+.components-button-group .components-button {
+ border-radius: 0;
+ display: inline-flex;
+ color: #1e1e1e;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+}
+.components-button-group .components-button + .components-button {
+ margin-right: -1px;
+}
+.components-button-group .components-button:first-child {
+ border-radius: 0 2px 2px 0;
+}
+.components-button-group .components-button:last-child {
+ border-radius: 2px 0 0 2px;
+}
+.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: inset 0 0 0 1px #1e1e1e;
+}
+
+.components-button {
+ display: inline-flex;
+ text-decoration: none;
+ font-family: inherit;
+ font-weight: normal;
+ font-size: 13px;
+ margin: 0;
+ border: 0;
+ cursor: pointer;
+ -webkit-appearance: none;
+ background: none;
+ transition: box-shadow 0.1s linear;
+ height: 36px;
+ align-items: center;
+ box-sizing: border-box;
+ padding: 6px 12px;
+ border-radius: 2px;
+ color: #1e1e1e;
+ /**
+ * Primary button style.
+ */
+ /**
+ * Secondary and tertiary buttons.
+ */
+ /**
+ * Secondary button style.
+ */
+ /**
+ * Tertiary buttons.
+ */
+ /**
+ * Destructive buttons.
+ */
+ /**
+ * Link buttons.
+ */
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-button[aria-expanded=true], .components-button:hover {
+ color: var(--wp-admin-theme-color);
+}
+.components-button[aria-disabled=true]:hover {
+ color: initial;
+}
+.components-button:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 3px solid transparent;
+}
+.components-button.is-primary {
+ white-space: nowrap;
+ background: var(--wp-admin-theme-color);
+ color: #fff;
+ text-decoration: none;
+ text-shadow: none;
+ outline: 1px solid transparent;
+}
+.components-button.is-primary:hover:not(:disabled) {
+ background: var(--wp-admin-theme-color-darker-10);
+ color: #fff;
+}
+.components-button.is-primary:active:not(:disabled) {
+ background: var(--wp-admin-theme-color-darker-20);
+ border-color: var(--wp-admin-theme-color-darker-20);
+ color: #fff;
+}
+.components-button.is-primary:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.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: rgba(255, 255, 255, 0.4);
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+ opacity: 1;
+ outline: none;
+}
+.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 {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
+}
+.components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled=true] {
+ color: #fff;
+ background-size: 100px 100%;
+ /* stylelint-disable */
+ background-image: linear-gradient(45deg, var(--wp-admin-theme-color) 33%, var(--wp-admin-theme-color-darker-20) 33%, var(--wp-admin-theme-color-darker-20) 70%, var(--wp-admin-theme-color) 70%);
+ /* stylelint-enable */
+ border-color: var(--wp-admin-theme-color);
+}
+.components-button.is-secondary, .components-button.is-tertiary {
+ outline: 1px solid transparent;
+}
+.components-button.is-secondary:active:not(:disabled), .components-button.is-tertiary:active:not(:disabled) {
+ background: #ddd;
+ color: var(--wp-admin-theme-color-darker-10);
+ box-shadow: none;
+}
+.components-button.is-secondary:hover:not(:disabled), .components-button.is-tertiary:hover:not(:disabled) {
+ color: var(--wp-admin-theme-color-darker-10);
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);
+}
+.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 {
+ color: #828282;
+ background: #eaeaea;
+ transform: none;
+ opacity: 1;
+ box-shadow: none;
+ outline: none;
+}
+.components-button.is-secondary {
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 1px solid transparent;
+ white-space: nowrap;
+ color: var(--wp-admin-theme-color);
+ background: transparent;
+}
+.components-button.is-tertiary {
+ white-space: nowrap;
+ color: var(--wp-admin-theme-color);
+ background: transparent;
+ padding: 6px;
+}
+.components-button.is-tertiary .dashicon {
+ display: inline-block;
+ flex: 0 0 auto;
+}
+p + .components-button.is-tertiary {
+ margin-right: -6px;
+}
+.components-button.is-destructive {
+ color: #cc1818;
+ box-shadow: inset 0 0 0 1px #cc1818;
+}
+.components-button.is-destructive:hover:not(:disabled) {
+ color: #710d0d;
+ box-shadow: inset 0 0 0 1px #710d0d;
+}
+.components-button.is-destructive:focus:not(:disabled) {
+ color: var(--wp-admin-theme-color);
+}
+.components-button.is-destructive:active:not(:disabled) {
+ background: #ccc;
+}
+.components-button.is-destructive.is-primary {
+ color: #fff;
+ background: #cc1818;
+ box-shadow: inset 0 0 0 1px #cc1818;
+}
+.components-button.is-destructive.is-primary:hover:not(:disabled) {
+ color: #fff;
+ background: #710d0d;
+ box-shadow: inset 0 0 0 1px #710d0d;
+}
+.components-button.is-destructive.is-tertiary {
+ box-shadow: none;
+}
+.components-button.is-destructive.is-tertiary:hover:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #cc1818;
+ color: #cc1818;
+}
+.components-button.is-destructive.is-tertiary:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) #cc1818;
+ color: #cc1818;
+}
+.components-button.is-link {
+ margin: 0;
+ padding: 0;
+ box-shadow: none;
+ border: 0;
+ border-radius: 0;
+ background: none;
+ outline: none;
+ text-align: right;
+ color: var(--wp-admin-theme-color);
+ text-decoration: underline;
+ transition-property: border, background, color;
+ transition-duration: 0.05s;
+ transition-timing-function: ease-in-out;
+ height: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-button.is-link {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-button.is-link:focus {
+ border-radius: 2px;
+}
+.components-button.is-link.is-destructive {
+ color: #cc1818;
+}
+.components-button.is-link.is-destructive:active:not(:disabled), .components-button.is-link.is-destructive:hover:not(:disabled) {
+ color: #710d0d;
+ background: none;
+}
+.components-button.is-link.is-destructive:focus:not(:disabled) {
+ color: var(--wp-admin-theme-color);
+}
+.components-button:not([aria-disabled=true]):active {
+ color: inherit;
+}
+.components-button:disabled, .components-button[aria-disabled=true] {
+ cursor: default;
+ 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%;
+ /* stylelint-disable */
+ background-image: linear-gradient(45deg, #fafafa 33%, #e0e0e0 33%, #e0e0e0 70%, #fafafa 70%);
+ /* stylelint-enable */
+}
+.components-button.is-small {
+ height: 24px;
+ line-height: 22px;
+ padding: 0 8px;
+ font-size: 11px;
+}
+.components-button.is-small.has-icon:not(.has-text) {
+ padding: 0 8px;
+ width: 24px;
+}
+.components-button.has-icon {
+ padding: 6px;
+ min-width: 36px;
+ justify-content: center;
+}
+.components-button.has-icon .dashicon {
+ display: inline-block;
+ flex: 0 0 auto;
+ margin-right: 2px;
+ margin-left: 2px;
+}
+.components-button.has-icon.has-text {
+ justify-content: left;
+}
+.components-button.has-icon.has-text svg {
+ margin-left: 8px;
+}
+.components-button.has-icon.has-text .dashicon {
+ margin-left: 10px;
+}
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-button.is-pressed:hover:not(:disabled) {
+ color: #fff;
+ background: #1e1e1e;
+}
+.components-button svg {
+ fill: currentColor;
+ outline: none;
+}
+@media (forced-colors: active) {
+ .components-button svg {
+ fill: CanvasText;
+ }
+}
+.components-button .components-visually-hidden {
+ height: auto;
+}
+
+@keyframes components-button__busy-animation {
+ 0% {
+ background-position: 200px 0;
+ }
+}
+.components-checkbox-control__input[type=checkbox] {
+ 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;
+ border: 1px solid #1e1e1e;
+ margin-left: 12px;
+ transition: none;
+ border-radius: 2px;
+ background: #fff;
+ color: #1e1e1e;
+ clear: none;
+ cursor: pointer;
+ display: inline-block;
+ line-height: 0;
+ margin: 0 0 0 4px;
+ outline: 0;
+ padding: 0 !important;
+ text-align: center;
+ vertical-align: top;
+ width: 24px;
+ height: 24px;
+ -webkit-appearance: none;
+ appearance: none;
+ transition: 0.1s border-color ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-checkbox-control__input[type=checkbox] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-checkbox-control__input[type=checkbox] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-checkbox-control__input[type=checkbox]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-checkbox-control__input[type=checkbox]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-checkbox-control__input[type=checkbox]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-checkbox-control__input[type=checkbox]:checked {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.components-checkbox-control__input[type=checkbox]:checked::-ms-check {
+ opacity: 0;
+}
+.components-checkbox-control__input[type=checkbox]:checked::before, .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ margin: -3px -5px;
+ color: #fff;
+}
+@media (min-width: 782px) {
+ .components-checkbox-control__input[type=checkbox]:checked::before, .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ margin: -4px -5px 0 0;
+ }
+}
+.components-checkbox-control__input[type=checkbox][aria-checked=mixed] {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ content: "ï‘ ";
+ float: right;
+ 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) {
+ .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ float: none;
+ font-size: 21px;
+ }
+}
+@media (min-width: 600px) {
+ .components-checkbox-control__input[type=checkbox] {
+ height: 20px;
+ width: 20px;
+ }
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-checkbox-control__input[type=checkbox] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-checkbox-control__input[type=checkbox]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-checkbox-control__input[type=checkbox]:checked, .components-checkbox-control__input[type=checkbox]:indeterminate {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.components-checkbox-control__input[type=checkbox]:checked::-ms-check, .components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check {
+ opacity: 0;
+}
+.components-checkbox-control__input[type=checkbox]:checked::before {
+ content: none;
+}
+
+.components-checkbox-control__input-container {
+ position: relative;
+ display: inline-block;
+ margin-left: 12px;
+ vertical-align: middle;
+ width: 24px;
+ height: 24px;
+}
+@media (min-width: 600px) {
+ .components-checkbox-control__input-container {
+ width: 20px;
+ height: 20px;
+ }
+}
+
+svg.components-checkbox-control__checked,
+svg.components-checkbox-control__indeterminate {
+ fill: #fff;
+ cursor: pointer;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 24px;
+ height: 24px;
+ -webkit-user-select: none;
+ user-select: none;
+ pointer-events: none;
+}
+@media (min-width: 600px) {
+ svg.components-checkbox-control__checked,
+svg.components-checkbox-control__indeterminate {
+ right: -2px;
+ top: -2px;
+ }
+}
+
+.components-circular-option-picker {
+ display: inline-block;
+ width: 100%;
+ min-width: 188px;
+}
+.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 12px;
+}
+.components-circular-option-picker .components-circular-option-picker__swatches {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 12px;
+}
+
+.components-circular-option-picker__option-wrapper {
+ display: inline-block;
+ height: 28px;
+ width: 28px;
+ vertical-align: top;
+ transform: scale(1);
+ transition: 100ms transform ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-circular-option-picker__option-wrapper {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-circular-option-picker__option-wrapper:hover {
+ transform: scale(1.2);
+}
+.components-circular-option-picker__option-wrapper > div {
+ height: 100%;
+ width: 100%;
+}
+
+.components-circular-option-picker__option-wrapper::before {
+ content: "";
+ position: absolute;
+ top: 1px;
+ right: 1px;
+ bottom: 1px;
+ left: 1px;
+ border-radius: 50%;
+ z-index: -1;
+ /* stylelint-disable-next-line function-url-quotes */
+ 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');
+}
+
+.components-circular-option-picker__option {
+ display: inline-block;
+ vertical-align: top;
+ height: 100%;
+ width: 100%;
+ border: none;
+ border-radius: 50%;
+ background: transparent;
+ box-shadow: inset 0 0 0 14px;
+ transition: 100ms box-shadow ease;
+ cursor: pointer;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-circular-option-picker__option {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-circular-option-picker__option:hover {
+ box-shadow: inset 0 0 0 14px !important;
+}
+.components-circular-option-picker__option.is-pressed {
+ box-shadow: inset 0 0 0 4px;
+ position: relative;
+ z-index: 1;
+ overflow: visible;
+}
+.components-circular-option-picker__option.is-pressed + svg {
+ position: absolute;
+ right: 2px;
+ top: 2px;
+ border-radius: 50%;
+ z-index: 2;
+ pointer-events: none;
+}
+.components-circular-option-picker__option::after {
+ content: "";
+ position: absolute;
+ top: -1px;
+ right: -1px;
+ bottom: -1px;
+ left: -1px;
+ border-radius: 50%;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ border: 1px solid transparent;
+}
+.components-circular-option-picker__option:focus::after {
+ content: "";
+ border: 2px solid #757575;
+ width: 32px;
+ height: 32px;
+ position: absolute;
+ top: -2px;
+ right: -2px;
+ border-radius: 50%;
+ box-shadow: inset 0 0 0 2px #fff;
+}
+.components-circular-option-picker__option.components-button:focus {
+ background-color: transparent;
+ box-shadow: inset 0 0 0 14px;
+ outline: none;
+}
+
+.components-circular-option-picker__button-action .components-circular-option-picker__option {
+ color: #fff;
+ background: #fff;
+}
+
+.components-circular-option-picker__dropdown-link-action {
+ margin-left: 16px;
+}
+.components-circular-option-picker__dropdown-link-action .components-button {
+ line-height: 22px;
+}
+
+@media (min-width: 782px) {
+ .components-palette-edit__popover.components-popover .components-popover__content.components-popover__content.components-popover__content {
+ margin-left: 156px;
+ margin-top: -49px;
+ }
+}
+.components-palette-edit__popover .components-custom-gradient-picker__gradient-bar {
+ margin-top: 0;
+}
+.components-palette-edit__popover .components-custom-gradient-picker__ui-line {
+ margin-bottom: 0;
+}
+.components-palette-edit__popover .components-custom-gradient-picker {
+ width: 280px;
+ padding: 8px;
+}
+
+.components-dropdown-menu__menu .components-palette-edit__menu-button {
+ width: 100%;
+}
+
+.component-color-indicator {
+ width: 20px;
+ height: 20px;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ border-radius: 50%;
+ display: inline-block;
+ padding: 0;
+}
+
+.components-combobox-control {
+ width: 100%;
+}
+
+input.components-combobox-control__input[type=text] {
+ width: 100%;
+ border: none;
+ box-shadow: none;
+ font-family: inherit;
+ font-size: 16px;
+ padding: 2px;
+ margin: 0;
+ line-height: inherit;
+ min-height: auto;
+}
+@media (min-width: 600px) {
+ input.components-combobox-control__input[type=text] {
+ font-size: 13px;
+ }
+}
+input.components-combobox-control__input[type=text]:focus {
+ outline: none;
+ box-shadow: none;
+}
+
+.components-combobox-control__suggestions-container {
+ 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;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: flex-start;
+ width: 100%;
+ margin: 0 0 8px 0;
+ padding: 4px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-combobox-control__suggestions-container {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-combobox-control__suggestions-container {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-combobox-control__suggestions-container:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-combobox-control__suggestions-container::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-combobox-control__suggestions-container::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-combobox-control__suggestions-container:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-combobox-control__suggestions-container:focus-within {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+
+.components-combobox-control__reset.components-button {
+ display: flex;
+ height: 16px;
+ min-width: 16px;
+ padding: 0;
+}
+
+.components-color-list-picker,
+.components-color-list-picker__swatch-button {
+ width: 100%;
+}
+
+.components-color-list-picker__color-picker {
+ margin: 8px 0;
+}
+
+.components-color-palette__custom-color {
+ position: relative;
+ border: none;
+ background: none;
+ border-radius: 2px;
+ height: 64px;
+ padding: 12px;
+ font-family: inherit;
+ width: 100%;
+ background-image: repeating-linear-gradient(-45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0), repeating-linear-gradient(-45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
+ background-position: 100% 0, 25px 25px;
+ background-size: calc(2 * 25px) calc(2 * 25px);
+ box-sizing: border-box;
+ color: #fff;
+ cursor: pointer;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ outline: 1px solid transparent;
+}
+.components-color-palette__custom-color:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline-width: 2px;
+}
+
+.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content {
+ overflow: visible;
+ box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
+ border: none;
+ border-radius: 2px;
+ max-height: -moz-fit-content !important;
+ max-height: fit-content !important;
+}
+.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content > div {
+ padding: 0;
+}
+.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content .react-colorful__saturation {
+ border-top-left-radius: 2px;
+ border-top-right-radius: 2px;
+}
+
+@media (min-width: 782px) {
+ .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar .components-popover__content.components-popover__content {
+ margin-left: 156px;
+ }
+ .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-top .components-popover__content {
+ margin-top: -60px;
+ }
+ .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-bottom .components-popover__content {
+ margin-bottom: -60px;
+ }
+}
+.components-color-palette__custom-color-name {
+ text-align: right;
+}
+
+.components-color-palette__custom-color-value {
+ margin-right: 16px;
+ text-transform: uppercase;
+}
+
+.components-custom-gradient-picker__gradient-bar:not(.has-gradient) {
+ opacity: 0.4;
+}
+
+.components-custom-gradient-picker__gradient-bar {
+ border-radius: 2px;
+ margin-top: 12px;
+ width: 100%;
+ height: 48px;
+ margin-bottom: 20px;
+ padding-right: 16px;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container {
+ position: relative;
+ width: calc(100% - 32px);
+ margin-right: auto;
+ margin-left: auto;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point {
+ border-radius: 50%;
+ background: #fff;
+ padding: 2px;
+ top: 16px;
+ min-width: 16px;
+ width: 16px;
+ height: 16px;
+ position: relative;
+ color: #1e1e1e;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point svg {
+ height: 100%;
+ width: 100%;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {
+ border-radius: 50%;
+ height: 16px;
+ width: 16px;
+ padding: 0;
+ position: absolute;
+ top: 16px;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 2px 0 rgba(0, 0, 0, 0.25);
+ outline: 2px solid transparent;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus, .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active {
+ box-shadow: inset 0 0 0 calc(var(--wp-admin-border-width-focus) * 2) #fff, 0 0 2px 0 rgba(0, 0, 0, 0.25);
+ outline: 4px solid transparent;
+}
+
+.components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point {
+ margin-right: auto;
+ margin-left: auto;
+ display: block;
+ margin-bottom: 8px;
+}
+
+.components-custom-gradient-picker__inserter {
+ direction: ltr;
+ width: 100%;
+}
+
+.components-custom-gradient-picker__liner-gradient-indicator {
+ display: inline-block;
+ flex: 0 auto;
+ width: 20px;
+ height: 20px;
+}
+
+.components-custom-gradient-picker .components-custom-gradient-picker__ui-line {
+ margin-bottom: 16px;
+}
+.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-angle-picker,
+.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-custom-gradient-picker__type-picker {
+ margin-bottom: 0;
+}
+
+.components-custom-gradient-picker .components-custom-gradient-picker__toolbar {
+ border: none;
+}
+.components-custom-gradient-picker .components-custom-gradient-picker__toolbar > div + div {
+ margin-right: 1px;
+}
+.components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed > svg {
+ background: #fff;
+ border: 1px solid #949494;
+ border-radius: 2px;
+}
+
+.components-custom-gradient-picker .components-input-control__label {
+ line-height: 1;
+}
+.components-custom-gradient-picker label {
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.components-custom-select-control {
+ position: relative;
+}
+
+.components-custom-select-control__label {
+ display: block;
+ margin-bottom: 8px;
+}
+
+.components-custom-select-control__button {
+ border: 1px solid #757575;
+ border-radius: 2px;
+ min-width: 130px;
+ position: relative;
+ text-align: right;
+}
+.components-custom-select-control__button:not(.is-next-36px-default-size) {
+ min-height: 30px;
+}
+.components-custom-select-control__button.components-custom-select-control__button {
+ padding-right: 16px;
+ padding-left: 32px;
+}
+.components-custom-select-control__button.components-custom-select-control__button:not(.is-next-36px-default-size) {
+ padding-right: 8px;
+ padding-left: 24px;
+}
+.components-custom-select-control__button:focus:not(:disabled) {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+.components-custom-select-control__button .components-custom-select-control__button-icon {
+ height: 100%;
+ padding: 0;
+ position: absolute;
+ left: 8px;
+ top: 0;
+}
+.components-custom-select-control__button .components-custom-select-control__button-icon:not(.is-next-36px-default-size) {
+ left: 4px;
+}
+
+.components-custom-select-control__menu {
+ border: 1px solid #1e1e1e;
+ background-color: #fff;
+ border-radius: 2px;
+ outline: none;
+ transition: none;
+ max-height: 400px;
+ min-width: 100%;
+ overflow: auto;
+ padding: 0;
+ position: absolute;
+ z-index: 1000000;
+}
+.components-custom-select-control__menu[aria-hidden=true] {
+ display: none;
+}
+
+.components-custom-select-control__item {
+ align-items: center;
+ display: grid;
+ grid-template-columns: auto auto;
+ list-style-type: none;
+ padding: 8px 16px;
+ cursor: default;
+ line-height: 28px;
+}
+.components-custom-select-control__item:not(.is-next-36px-default-size) {
+ padding: 8px;
+}
+.components-custom-select-control__item.has-hint {
+ grid-template-columns: auto auto 30px;
+}
+.components-custom-select-control__item.is-highlighted {
+ background: #ddd;
+}
+.components-custom-select-control__item .components-custom-select-control__item-hint {
+ color: #757575;
+ text-align: left;
+ padding-left: 4px;
+}
+.components-custom-select-control__item .components-custom-select-control__item-icon {
+ margin-right: auto;
+}
+.components-custom-select-control__item:last-child {
+ margin-bottom: 0;
+}
+
+/**
+ * Parts of this source were derived and modified from react-dates,
+ * released under the MIT license.
+ *
+ * https://github.com/airbnb/react-dates
+ *
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2016 Airbnb
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+.PresetDateRangePicker_panel {
+ padding: 0 22px 11px;
+}
+
+.PresetDateRangePicker_button {
+ position: relative;
+ height: 100%;
+ text-align: center;
+ background: 0 0;
+ border: 2px solid #00a699;
+ color: #00a699;
+ padding: 4px 12px;
+ margin-right: 8px;
+ font: inherit;
+ font-weight: 700;
+ line-height: normal;
+ overflow: visible;
+ box-sizing: border-box;
+ cursor: pointer;
+}
+
+.PresetDateRangePicker_button:active {
+ outline: 0;
+}
+
+.PresetDateRangePicker_button__selected {
+ color: #fff;
+ background: #00a699;
+}
+
+.SingleDatePickerInput {
+ display: inline-block;
+ background-color: #fff;
+}
+
+.SingleDatePickerInput__withBorder {
+ border-radius: 2px;
+ border: 1px solid #dbdbdb;
+}
+
+.SingleDatePickerInput__rtl {
+ direction: rtl;
+}
+
+.SingleDatePickerInput__disabled {
+ background-color: #f2f2f2;
+}
+
+.SingleDatePickerInput__block {
+ display: block;
+}
+
+.SingleDatePickerInput__showClearDate {
+ padding-right: 30px;
+}
+
+.SingleDatePickerInput_clearDate {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ padding: 10px;
+ margin: 0 10px 0 5px;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
+.SingleDatePickerInput_clearDate__default:focus,
+.SingleDatePickerInput_clearDate__default:hover {
+ background: #dbdbdb;
+ border-radius: 50%;
+}
+
+.SingleDatePickerInput_clearDate__small {
+ padding: 6px;
+}
+
+.SingleDatePickerInput_clearDate__hide {
+ visibility: hidden;
+}
+
+.SingleDatePickerInput_clearDate_svg {
+ fill: #82888a;
+ height: 12px;
+ width: 15px;
+ vertical-align: middle;
+}
+
+.SingleDatePickerInput_clearDate_svg__small {
+ height: 9px;
+}
+
+.SingleDatePickerInput_calendarIcon {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ display: inline-block;
+ vertical-align: middle;
+ padding: 10px;
+ margin: 0 5px 0 10px;
+}
+
+.SingleDatePickerInput_calendarIcon_svg {
+ fill: #82888a;
+ height: 15px;
+ width: 14px;
+ vertical-align: middle;
+}
+
+.SingleDatePicker {
+ position: relative;
+ display: inline-block;
+}
+
+.SingleDatePicker__block {
+ display: block;
+}
+
+.SingleDatePicker_picker {
+ z-index: 1;
+ background-color: #fff;
+ position: absolute;
+}
+
+.SingleDatePicker_picker__rtl {
+ direction: rtl;
+}
+
+.SingleDatePicker_picker__directionLeft {
+ left: 0;
+}
+
+.SingleDatePicker_picker__directionRight {
+ right: 0;
+}
+
+.SingleDatePicker_picker__portal {
+ background-color: rgba(0, 0, 0, 0.3);
+ position: fixed;
+ top: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.SingleDatePicker_picker__fullScreenPortal {
+ background-color: #fff;
+}
+
+.SingleDatePicker_closeButton {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: 15px;
+ z-index: 2;
+}
+
+.SingleDatePicker_closeButton:focus,
+.SingleDatePicker_closeButton:hover {
+ color: #b0b3b4;
+ text-decoration: none;
+}
+
+.SingleDatePicker_closeButton_svg {
+ height: 15px;
+ width: 15px;
+ fill: #cacccd;
+}
+
+.DayPickerKeyboardShortcuts_buttonReset {
+ background: 0 0;
+ border: 0;
+ border-radius: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ padding: 0;
+ cursor: pointer;
+ font-size: 14px;
+}
+
+.DayPickerKeyboardShortcuts_buttonReset:active {
+ outline: 0;
+}
+
+.DayPickerKeyboardShortcuts_show {
+ width: 22px;
+ position: absolute;
+ z-index: 2;
+}
+
+.DayPickerKeyboardShortcuts_show__bottomRight {
+ border-top: 26px solid transparent;
+ border-right: 33px solid #00a699;
+ bottom: 0;
+ right: 0;
+}
+
+.DayPickerKeyboardShortcuts_show__bottomRight:hover {
+ border-right: 33px solid #008489;
+}
+
+.DayPickerKeyboardShortcuts_show__topRight {
+ border-bottom: 26px solid transparent;
+ border-right: 33px solid #00a699;
+ top: 0;
+ right: 0;
+}
+
+.DayPickerKeyboardShortcuts_show__topRight:hover {
+ border-right: 33px solid #008489;
+}
+
+.DayPickerKeyboardShortcuts_show__topLeft {
+ border-bottom: 26px solid transparent;
+ border-left: 33px solid #00a699;
+ top: 0;
+ left: 0;
+}
+
+.DayPickerKeyboardShortcuts_show__topLeft:hover {
+ border-left: 33px solid #008489;
+}
+
+.DayPickerKeyboardShortcuts_showSpan {
+ color: #fff;
+ position: absolute;
+}
+
+.DayPickerKeyboardShortcuts_showSpan__bottomRight {
+ bottom: 0;
+ right: -28px;
+}
+
+.DayPickerKeyboardShortcuts_showSpan__topRight {
+ top: 1px;
+ right: -28px;
+}
+
+.DayPickerKeyboardShortcuts_showSpan__topLeft {
+ top: 1px;
+ left: -28px;
+}
+
+.DayPickerKeyboardShortcuts_panel {
+ overflow: auto;
+ background: #fff;
+ border: 1px solid #dbdbdb;
+ border-radius: 2px;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ z-index: 2;
+ padding: 22px;
+ margin: 33px;
+}
+
+.DayPickerKeyboardShortcuts_title {
+ font-size: 16px;
+ font-weight: 700;
+ margin: 0;
+}
+
+.DayPickerKeyboardShortcuts_list {
+ list-style: none;
+ padding: 0;
+ font-size: 14px;
+}
+
+.DayPickerKeyboardShortcuts_close {
+ position: absolute;
+ right: 22px;
+ top: 22px;
+ z-index: 2;
+}
+
+.DayPickerKeyboardShortcuts_close:active {
+ outline: 0;
+}
+
+.DayPickerKeyboardShortcuts_closeSvg {
+ height: 15px;
+ width: 15px;
+ fill: #cacccd;
+}
+
+.DayPickerKeyboardShortcuts_closeSvg:focus,
+.DayPickerKeyboardShortcuts_closeSvg:hover {
+ fill: #82888a;
+}
+
+.CalendarDay {
+ box-sizing: border-box;
+ cursor: pointer;
+ font-size: 14px;
+ text-align: center;
+}
+
+.CalendarDay:active {
+ outline: 0;
+}
+
+.CalendarDay__defaultCursor {
+ cursor: default;
+}
+
+.CalendarDay__default {
+ border: 1px solid #e4e7e7;
+ color: #484848;
+ background: #fff;
+}
+
+.CalendarDay__default:hover {
+ background: #e4e7e7;
+ border: 1px double #e4e7e7;
+ color: inherit;
+}
+
+.CalendarDay__hovered_offset {
+ background: #f4f5f5;
+ border: 1px double #e4e7e7;
+ color: inherit;
+}
+
+.CalendarDay__outside {
+ border: 0;
+ background: #fff;
+ color: #484848;
+}
+
+.CalendarDay__outside:hover {
+ border: 0;
+}
+
+.CalendarDay__blocked_minimum_nights {
+ background: #fff;
+ border: 1px solid #eceeee;
+ color: #cacccd;
+}
+
+.CalendarDay__blocked_minimum_nights:active,
+.CalendarDay__blocked_minimum_nights:hover {
+ background: #fff;
+ color: #cacccd;
+}
+
+.CalendarDay__highlighted_calendar {
+ background: #ffe8bc;
+ color: #484848;
+}
+
+.CalendarDay__highlighted_calendar:active,
+.CalendarDay__highlighted_calendar:hover {
+ background: #ffce71;
+ color: #484848;
+}
+
+.CalendarDay__selected_span {
+ background: #66e2da;
+ border: 1px solid #33dacd;
+ color: #fff;
+}
+
+.CalendarDay__selected_span:active,
+.CalendarDay__selected_span:hover {
+ background: #33dacd;
+ border: 1px solid #33dacd;
+ color: #fff;
+}
+
+.CalendarDay__last_in_range {
+ border-right: #00a699;
+}
+
+.CalendarDay__selected,
+.CalendarDay__selected:active,
+.CalendarDay__selected:hover {
+ background: #00a699;
+ border: 1px solid #00a699;
+ color: #fff;
+}
+
+.CalendarDay__hovered_span,
+.CalendarDay__hovered_span:hover {
+ background: #b2f1ec;
+ border: 1px solid #80e8e0;
+ color: #007a87;
+}
+
+.CalendarDay__hovered_span:active {
+ background: #80e8e0;
+ border: 1px solid #80e8e0;
+ color: #007a87;
+}
+
+.CalendarDay__blocked_calendar,
+.CalendarDay__blocked_calendar:active,
+.CalendarDay__blocked_calendar:hover {
+ background: #cacccd;
+ border: 1px solid #cacccd;
+ color: #82888a;
+}
+
+.CalendarDay__blocked_out_of_range,
+.CalendarDay__blocked_out_of_range:active,
+.CalendarDay__blocked_out_of_range:hover {
+ background: #fff;
+ border: 1px solid #e4e7e7;
+ color: #cacccd;
+}
+
+.CalendarMonth {
+ background: #fff;
+ text-align: center;
+ vertical-align: top;
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.CalendarMonth_table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+.CalendarMonth_verticalSpacing {
+ border-collapse: separate;
+}
+
+.CalendarMonth_caption {
+ color: #484848;
+ font-size: 18px;
+ text-align: center;
+ padding-top: 22px;
+ padding-bottom: 37px;
+ caption-side: initial;
+}
+
+.CalendarMonth_caption__verticalScrollable {
+ padding-top: 12px;
+ padding-bottom: 7px;
+}
+
+.CalendarMonthGrid {
+ background: #fff;
+ text-align: left;
+ z-index: 0;
+}
+
+.CalendarMonthGrid__animating {
+ z-index: 1;
+}
+
+.CalendarMonthGrid__horizontal {
+ position: absolute;
+ left: 0;
+}
+
+.CalendarMonthGrid__vertical {
+ margin: 0 auto;
+}
+
+.CalendarMonthGrid__vertical_scrollable {
+ margin: 0 auto;
+ overflow-y: scroll;
+}
+
+.CalendarMonthGrid_month__horizontal {
+ display: inline-block;
+ vertical-align: top;
+ min-height: 100%;
+}
+
+.CalendarMonthGrid_month__hideForAnimation {
+ position: absolute;
+ z-index: -1;
+ opacity: 0;
+ pointer-events: none;
+}
+
+.CalendarMonthGrid_month__hidden {
+ visibility: hidden;
+}
+
+.DayPickerNavigation {
+ position: relative;
+ z-index: 2;
+}
+
+.DayPickerNavigation__horizontal {
+ height: 0;
+}
+
+.DayPickerNavigation__verticalDefault {
+ position: absolute;
+ width: 100%;
+ height: 52px;
+ bottom: 0;
+ left: 0;
+}
+
+.DayPickerNavigation__verticalScrollableDefault {
+ position: relative;
+}
+
+.DayPickerNavigation_button {
+ cursor: pointer;
+ -webkit-user-select: none;
+ user-select: none;
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+
+.DayPickerNavigation_button__default {
+ border: 1px solid #e4e7e7;
+ background-color: #fff;
+ color: #757575;
+}
+
+.DayPickerNavigation_button__default:focus,
+.DayPickerNavigation_button__default:hover {
+ border: 1px solid #c4c4c4;
+}
+
+.DayPickerNavigation_button__default:active {
+ background: #f2f2f2;
+}
+
+.DayPickerNavigation_button__horizontalDefault {
+ position: absolute;
+ top: 18px;
+ line-height: 0.78;
+ border-radius: 3px;
+ padding: 6px 9px;
+}
+
+.DayPickerNavigation_leftButton__horizontalDefault {
+ left: 22px;
+}
+
+.DayPickerNavigation_rightButton__horizontalDefault {
+ right: 22px;
+}
+
+.DayPickerNavigation_button__verticalDefault {
+ padding: 5px;
+ background: #fff;
+ box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
+ position: relative;
+ display: inline-block;
+ height: 100%;
+ width: 50%;
+}
+
+.DayPickerNavigation_nextButton__verticalDefault {
+ border-left: 0;
+}
+
+.DayPickerNavigation_nextButton__verticalScrollableDefault {
+ width: 100%;
+}
+
+.DayPickerNavigation_svg__horizontal {
+ height: 19px;
+ width: 19px;
+ fill: #82888a;
+ display: block;
+}
+
+.DayPickerNavigation_svg__vertical {
+ height: 42px;
+ width: 42px;
+ fill: #484848;
+ display: block;
+}
+
+.DayPicker {
+ background: #fff;
+ position: relative;
+ text-align: left;
+}
+
+.DayPicker__horizontal {
+ background: #fff;
+}
+
+.DayPicker__verticalScrollable {
+ height: 100%;
+}
+
+.DayPicker__hidden {
+ visibility: hidden;
+}
+
+.DayPicker__withBorder {
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
+ border-radius: 3px;
+}
+
+.DayPicker_portal__horizontal {
+ box-shadow: none;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+}
+
+.DayPicker_portal__vertical {
+ position: initial;
+}
+
+.DayPicker_focusRegion {
+ outline: 0;
+}
+
+.DayPicker_calendarInfo__horizontal,
+.DayPicker_wrapper__horizontal {
+ display: inline-block;
+ vertical-align: top;
+}
+
+.DayPicker_weekHeaders {
+ position: relative;
+}
+
+.DayPicker_weekHeaders__horizontal {
+ margin-left: 13px;
+}
+
+.DayPicker_weekHeader {
+ color: #757575;
+ position: absolute;
+ top: 62px;
+ z-index: 2;
+ text-align: left;
+ padding: 0 !important;
+}
+
+.DayPicker_weekHeader__vertical {
+ left: 50%;
+}
+
+.DayPicker_weekHeader__verticalScrollable {
+ top: 0;
+ display: table-row;
+ border-bottom: 1px solid #dbdbdb;
+ background: #fff;
+ margin-left: 0;
+ left: 0;
+ width: 100%;
+ text-align: center;
+}
+
+.DayPicker_weekHeader_ul {
+ list-style: none;
+ margin: 1px 0;
+ padding-left: 0;
+ padding-right: 0;
+ font-size: 14px;
+}
+
+.DayPicker_weekHeader_li {
+ display: inline-block;
+ text-align: center;
+ margin: 0 1px;
+}
+
+.DayPicker_transitionContainer {
+ position: relative;
+ overflow: hidden;
+ border-radius: 3px;
+}
+
+.DayPicker_transitionContainer__horizontal {
+ transition: height 0.2s ease-in-out;
+}
+
+.DayPicker_transitionContainer__vertical {
+ width: 100%;
+}
+
+.DayPicker_transitionContainer__verticalScrollable {
+ padding-top: 20px;
+ height: 100%;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ overflow-y: scroll;
+}
+
+.DateInput {
+ margin: 0;
+ padding: 0;
+ background: #fff;
+ position: relative;
+ display: inline-block;
+ width: 130px;
+ vertical-align: middle;
+}
+
+.DateInput__small {
+ width: 97px;
+}
+
+.DateInput__block {
+ width: 100%;
+}
+
+.DateInput__disabled {
+ background: #f2f2f2;
+ color: #dbdbdb;
+}
+
+.DateInput_input {
+ font-weight: 200;
+ font-size: 19px;
+ line-height: 24px;
+ color: #484848;
+ background-color: #fff;
+ width: 100%;
+ padding: 11px 11px 9px;
+ border: 0;
+ border-top: 0;
+ border-right: 0;
+ border-bottom: 2px solid transparent;
+ border-left: 0;
+ border-radius: 0;
+}
+
+.DateInput_input__small {
+ font-size: 15px;
+ line-height: 18px;
+ letter-spacing: 0.2px;
+ padding: 7px 7px 5px;
+}
+
+.DateInput_input__regular {
+ font-weight: auto;
+}
+
+.DateInput_input__readOnly {
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.DateInput_input__focused {
+ outline: 0;
+ background: #fff;
+ border: 0;
+ border-top: 0;
+ border-right: 0;
+ border-bottom: 2px solid #008489;
+ border-left: 0;
+}
+
+.DateInput_input__disabled {
+ background: #f2f2f2;
+ font-style: italic;
+}
+
+.DateInput_screenReaderMessage {
+ border: 0;
+ clip: rect(0, 0, 0, 0);
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px;
+}
+
+.DateInput_fang {
+ position: absolute;
+ width: 20px;
+ height: 10px;
+ left: 22px;
+ z-index: 2;
+}
+
+.DateInput_fangShape {
+ fill: #fff;
+}
+
+.DateInput_fangStroke {
+ stroke: #dbdbdb;
+ fill: transparent;
+}
+
+.DateRangePickerInput {
+ background-color: #fff;
+ display: inline-block;
+}
+
+.DateRangePickerInput__disabled {
+ background: #f2f2f2;
+}
+
+.DateRangePickerInput__withBorder {
+ border-radius: 2px;
+ border: 1px solid #dbdbdb;
+}
+
+.DateRangePickerInput__rtl {
+ direction: rtl;
+}
+
+.DateRangePickerInput__block {
+ display: block;
+}
+
+.DateRangePickerInput__showClearDates {
+ padding-right: 30px;
+}
+
+.DateRangePickerInput_arrow {
+ display: inline-block;
+ vertical-align: middle;
+ color: #484848;
+}
+
+.DateRangePickerInput_arrow_svg {
+ vertical-align: middle;
+ fill: #484848;
+ height: 24px;
+ width: 24px;
+}
+
+.DateRangePickerInput_clearDates {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ padding: 10px;
+ margin: 0 10px 0 5px;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
+.DateRangePickerInput_clearDates__small {
+ padding: 6px;
+}
+
+.DateRangePickerInput_clearDates_default:focus,
+.DateRangePickerInput_clearDates_default:hover {
+ background: #dbdbdb;
+ border-radius: 50%;
+}
+
+.DateRangePickerInput_clearDates__hide {
+ visibility: hidden;
+}
+
+.DateRangePickerInput_clearDates_svg {
+ fill: #82888a;
+ height: 12px;
+ width: 15px;
+ vertical-align: middle;
+}
+
+.DateRangePickerInput_clearDates_svg__small {
+ height: 9px;
+}
+
+.DateRangePickerInput_calendarIcon {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ display: inline-block;
+ vertical-align: middle;
+ padding: 10px;
+ margin: 0 5px 0 10px;
+}
+
+.DateRangePickerInput_calendarIcon_svg {
+ fill: #82888a;
+ height: 15px;
+ width: 14px;
+ vertical-align: middle;
+}
+
+.DateRangePicker {
+ position: relative;
+ display: inline-block;
+}
+
+.DateRangePicker__block {
+ display: block;
+}
+
+.DateRangePicker_picker {
+ z-index: 1;
+ background-color: #fff;
+ position: absolute;
+}
+
+.DateRangePicker_picker__rtl {
+ direction: rtl;
+}
+
+.DateRangePicker_picker__directionLeft {
+ left: 0;
+}
+
+.DateRangePicker_picker__directionRight {
+ right: 0;
+}
+
+.DateRangePicker_picker__portal {
+ background-color: rgba(0, 0, 0, 0.3);
+ position: fixed;
+ top: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.DateRangePicker_picker__fullScreenPortal {
+ background-color: #fff;
+}
+
+.DateRangePicker_closeButton {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: 15px;
+ z-index: 2;
+}
+
+.DateRangePicker_closeButton:focus,
+.DateRangePicker_closeButton:hover {
+ color: #b0b3b4;
+ text-decoration: none;
+}
+
+.DateRangePicker_closeButton_svg {
+ height: 15px;
+ width: 15px;
+ fill: #cacccd;
+}
+.components-datetime {
+ padding: 16px;
+}
+.components-panel__body .components-datetime {
+ padding: 0;
+}
+.components-datetime .components-datetime__calendar-help {
+ padding: 16px;
+ min-width: 260px;
+}
+.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-toggle {
+ display: block;
+ margin-right: auto;
+}
+.components-datetime fieldset {
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+.components-datetime select,
+.components-datetime input {
+ box-shadow: 0 0 0 transparent;
+ transition: box-shadow 0.1s linear;
+ border-radius: 2px;
+ border: 1px solid #757575;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-datetime select,
+.components-datetime input {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-datetime select,
+.components-datetime input[type=number],
+.components-datetime .components-button {
+ height: 30px;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.components-datetime .components-button:focus {
+ z-index: 1;
+}
+
+.components-datetime__date {
+ min-height: 236px;
+ border-top: 1px solid #ddd;
+}
+.components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault {
+ left: 13px;
+}
+.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: none;
+ border-radius: 50%;
+ text-align: center;
+}
+.components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 3px #fff;
+ outline: 2px solid transparent;
+}
+.components-datetime__date .CalendarDay__selected {
+ background: var(--wp-admin-theme-color);
+ border: 2px solid transparent;
+}
+.components-datetime__date .CalendarDay__selected:hover {
+ background: var(--wp-admin-theme-color-darker-20);
+}
+.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 {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-datetime__date .DayPicker_weekHeader {
+ top: 50px;
+}
+.components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul {
+ margin: 1px;
+ padding-right: 0;
+ padding-left: 0;
+}
+.components-datetime__date.is-description-visible .DayPicker {
+ visibility: hidden;
+}
+
+.components-datetime__date .CalendarDay .components-datetime__date__day {
+ height: 100%;
+ display: flex;
+ justify-content: center;
+ align-content: center;
+ flex-direction: column;
+ position: relative;
+}
+.components-datetime__date .CalendarDay .components-datetime__date__day.has-events::before {
+ content: " ";
+ width: 4px;
+ height: 4px;
+ border-radius: 2px;
+ position: absolute;
+ right: 50%;
+ margin-right: -2px;
+ bottom: 0;
+ background-color: #fff;
+}
+
+.components-datetime__date .CalendarDay:not(.CalendarDay__selected) .components-datetime__date__day.has-events::before {
+ background: var(--wp-admin-theme-color);
+}
+
+.components-datetime__time {
+ padding-bottom: 16px;
+}
+.components-datetime__time fieldset {
+ position: relative;
+ margin-bottom: 0.5em;
+}
+.components-datetime__time fieldset + fieldset {
+ margin-bottom: 0;
+}
+.components-datetime__time .components-datetime__time-field-am-pm fieldset {
+ margin-top: 0;
+}
+.components-datetime__time .components-datetime__time-wrapper {
+ display: flex;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {
+ display: inline-block;
+ padding: 0 0 0 3px;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {
+ direction: ltr;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {
+ margin-left: 4px;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
+ position: relative;
+ z-index: 1;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number] {
+ padding: 2px;
+ margin-left: 4px;
+ text-align: center;
+ -moz-appearance: textfield;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]:focus {
+ position: relative;
+ z-index: 1;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]::-webkit-inner-spin-button {
+ -webkit-appearance: none;
+ margin: 0;
+}
+.components-datetime__time.is-12-hour .components-datetime__time-field-day input {
+ margin: -4px 0 0 !important;
+ border-radius: 0 2px 2px 0 !important;
+}
+.components-datetime__time.is-12-hour .components-datetime__time-field-year input {
+ border-radius: 2px 0 0 2px !important;
+}
+
+.components-datetime__timezone {
+ line-height: 30px;
+ margin-right: 4px;
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+}
+
+.components-datetime__time-legend {
+ font-weight: 600;
+ margin-top: 0.5em;
+}
+.components-datetime__time-legend.invisible {
+ position: absolute;
+ top: -999em;
+ right: -999em;
+}
+
+.components-datetime__time-field-integer-field {
+ font-family: inherit;
+}
+
+.components-datetime__time-field-hours-input,
+.components-datetime__time-field-minutes-input,
+.components-datetime__time-field-day-input {
+ width: 35px;
+}
+
+.components-datetime__time-field-year-input {
+ width: 55px;
+}
+
+.components-datetime__time-field-month-select {
+ max-width: 145px;
+}
+
+.components-popover .components-datetime__date {
+ padding-right: 4px;
+}
+
+.block-editor-dimension-control .components-base-control__field {
+ display: flex;
+ align-items: center;
+}
+.block-editor-dimension-control .components-base-control__label {
+ display: flex;
+ align-items: center;
+ margin-left: 1em;
+ margin-bottom: 0;
+}
+.block-editor-dimension-control .components-base-control__label .dashicon {
+ margin-left: 0.5em;
+}
+.block-editor-dimension-control.is-manual .components-base-control__label {
+ width: 10em;
+}
+
+body.is-dragging-components-draggable {
+ cursor: move;
+ /* Fallback for IE/Edge < 14 */
+ cursor: grabbing !important;
+}
+
+.components-draggable__invisible-drag-image {
+ position: fixed;
+ right: -1000px;
+ height: 50px;
+ width: 50px;
+}
+
+.components-draggable__clone {
+ position: fixed;
+ padding: 0;
+ background: transparent;
+ pointer-events: none;
+ z-index: 1000000000;
+}
+
+.components-drop-zone {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ z-index: 40;
+ visibility: hidden;
+ opacity: 0;
+ border-radius: 2px;
+}
+.components-drop-zone.is-active {
+ opacity: 1;
+ visibility: visible;
+}
+
+.components-drop-zone__content {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+ display: flex;
+ background-color: var(--wp-admin-theme-color);
+ align-items: center;
+ justify-content: center;
+ z-index: 50;
+ text-align: center;
+ color: #fff;
+}
+
+.components-drop-zone__content-icon,
+.components-drop-zone__content-text {
+ display: block;
+}
+
+.components-drop-zone__content-icon {
+ margin: 0 auto;
+ line-height: 0;
+ fill: currentColor;
+ pointer-events: none;
+}
+
+.components-drop-zone__content-text {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.components-dropdown {
+ display: inline-block;
+}
+
+.components-dropdown__content .components-popover__content > div {
+ padding: 8px;
+}
+.components-dropdown__content [role=menuitem] {
+ white-space: nowrap;
+}
+
+.components-dropdown-menu__menu {
+ width: 100%;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ line-height: 1.4;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item,
+.components-dropdown-menu__menu .components-menu-item {
+ width: 100%;
+ padding: 6px;
+ outline: none;
+ cursor: pointer;
+ white-space: nowrap;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
+.components-dropdown-menu__menu .components-menu-item.has-separator {
+ margin-top: 6px;
+ position: relative;
+ overflow: visible;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,
+.components-dropdown-menu__menu .components-menu-item.has-separator::before {
+ display: block;
+ content: "";
+ box-sizing: content-box;
+ background-color: #ddd;
+ position: absolute;
+ top: -3px;
+ right: 0;
+ left: 0;
+ height: 1px;
+}
+.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;
+ 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: 2px;
+ width: 24px;
+ height: 24px;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,
+.components-dropdown-menu__menu .components-menu-item.is-icon-only {
+ width: auto;
+}
+.components-dropdown-menu__menu .components-menu-item__button,
+.components-dropdown-menu__menu .components-menu-item__button.components-button {
+ min-height: 36px;
+ height: auto;
+ text-align: right;
+ padding-right: 8px;
+ padding-left: 8px;
+}
+.components-dropdown-menu__menu .components-menu-group {
+ padding: 8px;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-right: -8px;
+ margin-left: -8px;
+}
+.components-dropdown-menu__menu .components-menu-group:first-child {
+ margin-top: -8px;
+}
+.components-dropdown-menu__menu .components-menu-group:last-child {
+ margin-bottom: -8px;
+}
+.components-dropdown-menu__menu .components-menu-group + .components-menu-group {
+ margin-top: 0;
+ border-top: 1px solid #ccc;
+ padding: 8px;
+}
+.is-alternate .components-dropdown-menu__menu .components-menu-group + .components-menu-group {
+ border-color: #1e1e1e;
+}
+
+.components-font-size-picker__header__hint {
+ margin-right: 4px;
+ color: #757575;
+}
+.components-font-size-picker__header .components-button.is-small.has-icon:not(.has-text) {
+ min-width: 24px;
+ padding: 0;
+}
+
+.components-font-size-picker__controls {
+ max-width: 248px;
+ align-items: center;
+ margin-top: 8px;
+ margin-bottom: 24px;
+}
+.components-font-size-picker__controls .components-unit-control-wrapper .components-input-control__label {
+ font-weight: 300;
+ padding-bottom: 0 !important;
+ margin-bottom: 8px !important;
+}
+.components-font-size-picker__controls .components-custom-select-control__button {
+ width: 100%;
+}
+.components-font-size-picker__controls .components-font-size-picker__number {
+ 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;
+ display: inline-block;
+ font-weight: 500;
+ height: 30px;
+ margin-bottom: 0;
+ margin-right: 0;
+ margin-left: 8px;
+ margin-top: 8px;
+ width: 54px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-font-size-picker__controls .components-font-size-picker__number {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-font-size-picker__controls .components-font-size-picker__number {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-font-size-picker__controls .components-font-size-picker__number:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-font-size-picker__controls .components-font-size-picker__number::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-font-size-picker__controls .components-font-size-picker__number::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-font-size-picker__controls .components-font-size-picker__number:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-font-size-picker__controls .components-font-size-picker__number[value=""] + .components-button {
+ cursor: default;
+ opacity: 0.3;
+ pointer-events: none;
+}
+.components-font-size-picker__controls .components-font-size-picker__number-container {
+ display: flex;
+ flex-direction: column;
+}
+.components-font-size-picker__controls .components-color-palette__clear {
+ height: 30px;
+}
+
+.components-font-size-picker__custom-input .components-range-control__slider + .dashicon {
+ width: 30px;
+ height: 30px;
+}
+
+.components-font-size-picker {
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+
+.components-form-toggle {
+ position: relative;
+ display: inline-block;
+}
+.components-form-toggle .components-form-toggle__track {
+ content: "";
+ display: inline-block;
+ box-sizing: border-box;
+ vertical-align: top;
+ background-color: #fff;
+ border: 1px solid #1e1e1e;
+ width: 36px;
+ height: 18px;
+ border-radius: 9px;
+ transition: 0.2s background ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-toggle .components-form-toggle__track {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-form-toggle .components-form-toggle__thumb {
+ display: block;
+ position: absolute;
+ box-sizing: border-box;
+ top: 3px;
+ right: 3px;
+ width: 12px;
+ height: 12px;
+ border-radius: 50%;
+ transition: 0.1s transform ease;
+ background-color: #1e1e1e;
+ border: 5px solid #1e1e1e;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-toggle .components-form-toggle__thumb {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-form-toggle.is-checked .components-form-toggle__track {
+ background-color: var(--wp-admin-theme-color);
+ border: 1px solid var(--wp-admin-theme-color);
+ border: 9px solid transparent;
+}
+.components-form-toggle .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+}
+.components-form-toggle.is-checked .components-form-toggle__thumb {
+ background-color: #fff;
+ border-width: 0;
+ transform: translateX(-18px);
+}
+.components-form-toggle.is-disabled, .components-disabled .components-form-toggle {
+ opacity: 0.3;
+}
+
+.components-form-toggle input.components-form-toggle__input[type=checkbox] {
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+ margin: 0;
+ padding: 0;
+ z-index: 1;
+ border: none;
+}
+.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked {
+ background: none;
+}
+.components-form-toggle input.components-form-toggle__input[type=checkbox]::before {
+ content: "";
+}
+
+.components-form-token-field__input-container {
+ 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;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ width: 100%;
+ margin: 0 0 8px 0;
+ padding: 2px 4px;
+ cursor: text;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-token-field__input-container {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-form-token-field__input-container {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-form-token-field__input-container:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-form-token-field__input-container::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-form-token-field__input-container::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-form-token-field__input-container:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-form-token-field__input-container.is-disabled {
+ background: #ddd;
+ border-color: #ddd;
+}
+.components-form-token-field__input-container.is-active {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-form-token-field__input-container input[type=text].components-form-token-field__input {
+ display: inline-block;
+ flex: 1;
+ font-family: inherit;
+ font-size: 16px;
+ width: 100%;
+ max-width: 100%;
+ margin-right: 4px;
+ padding: 0;
+ min-height: 24px;
+ min-width: 50px;
+ background: inherit;
+ border: 0;
+ color: #1e1e1e;
+ box-shadow: none;
+}
+@media (min-width: 600px) {
+ .components-form-token-field__input-container input[type=text].components-form-token-field__input {
+ font-size: 13px;
+ }
+}
+.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus, .components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input {
+ outline: none;
+ box-shadow: none;
+}
+.components-form-token-field__input-container .components-form-token-field__token + input[type=text].components-form-token-field__input {
+ width: auto;
+}
+
+.components-form-token-field__label {
+ display: inline-block;
+ margin-bottom: 8px;
+}
+
+.components-form-token-field__help {
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.components-form-token-field__token {
+ font-size: 13px;
+ display: flex;
+ margin: 2px 0 2px 4px;
+ color: #1e1e1e;
+ max-width: 100%;
+}
+.components-form-token-field__token.is-success .components-form-token-field__token-text,
+.components-form-token-field__token.is-success .components-form-token-field__remove-token {
+ background: #4ab866;
+}
+.components-form-token-field__token.is-error .components-form-token-field__token-text,
+.components-form-token-field__token.is-error .components-form-token-field__remove-token {
+ background: #cc1818;
+}
+.components-form-token-field__token.is-validating .components-form-token-field__token-text,
+.components-form-token-field__token.is-validating .components-form-token-field__remove-token {
+ color: #757575;
+}
+.components-form-token-field__token.is-borderless {
+ position: relative;
+ padding: 0 0 0 16px;
+}
+.components-form-token-field__token.is-borderless .components-form-token-field__token-text {
+ background: transparent;
+ color: var(--wp-admin-theme-color);
+}
+.components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
+ background: transparent;
+ color: #757575;
+ position: absolute;
+ top: 1px;
+ left: 0;
+}
+.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
+ color: #4ab866;
+}
+.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
+ color: #cc1818;
+ border-radius: 0 4px 4px 0;
+ padding: 0 6px 0 4px;
+}
+.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
+ color: #1e1e1e;
+}
+.components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
+ cursor: default;
+}
+
+.components-form-token-field__token-text,
+.components-form-token-field__remove-token.components-button {
+ display: inline-block;
+ line-height: 24px;
+ height: auto;
+ background: #ddd;
+ min-width: unset;
+ transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1);
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-token-field__token-text,
+.components-form-token-field__remove-token.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+.components-form-token-field__token-text {
+ border-radius: 0 2px 2px 0;
+ padding: 0 8px 0 0;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.components-form-token-field__remove-token.components-button {
+ cursor: pointer;
+ border-radius: 2px 0 0 2px;
+ padding: 0 2px;
+ color: #1e1e1e;
+ line-height: 10px;
+ overflow: initial;
+}
+.components-form-token-field__remove-token.components-button:hover {
+ color: #1e1e1e;
+}
+
+.components-form-token-field__suggestions-list {
+ flex: 1 0 100%;
+ min-width: 100%;
+ max-height: 9em;
+ overflow-y: auto;
+ transition: all 0.15s ease-in-out;
+ list-style: none;
+ border-top: 1px solid #757575;
+ margin: 4px -4px -4px;
+ padding: 0;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-token-field__suggestions-list {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.components-form-token-field__suggestion {
+ color: #757575;
+ display: block;
+ font-size: 13px;
+ padding: 4px 8px;
+ margin: 0;
+ cursor: pointer;
+}
+.components-form-token-field__suggestion.is-selected {
+ background: var(--wp-admin-theme-color);
+ color: #fff;
+}
+
+.components-form-token-field__suggestion-match {
+ text-decoration: underline;
+}
+
+@media (min-width: 600px) {
+ .components-guide {
+ width: 600px;
+ }
+}
+.components-guide .components-modal__content {
+ padding: 0;
+ margin-top: 0;
+ border-radius: 2px;
+}
+.components-guide .components-modal__content::before {
+ content: none;
+}
+.components-guide .components-modal__header {
+ border-bottom: none;
+ padding: 0;
+ position: sticky;
+}
+.components-guide .components-modal__header .components-button {
+ align-self: flex-start;
+ margin: 8px 0 0 8px;
+ position: static;
+}
+.components-guide .components-modal__header .components-button:hover svg {
+ fill: #fff;
+}
+.components-guide__container {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ margin-top: -60px;
+ min-height: 100%;
+}
+.components-guide__page {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ position: relative;
+}
+@media (min-width: 600px) {
+ .components-guide__page {
+ min-height: 300px;
+ }
+}
+.components-guide__footer {
+ align-content: center;
+ display: flex;
+ height: 30px;
+ justify-content: center;
+ margin: 0 0 24px 0;
+ padding: 0 32px;
+ position: relative;
+ width: 100%;
+}
+.components-guide__page-control {
+ margin: 0;
+ text-align: center;
+}
+.components-guide__page-control li {
+ display: inline-block;
+ margin: 0;
+}
+.components-guide__page-control .components-button {
+ height: 30px;
+ min-width: 20px;
+ margin: -6px 0;
+}
+
+.components-modal__frame.components-guide {
+ border: none;
+ min-width: 312px;
+ height: 80vh;
+ max-height: 575px;
+}
+@media (max-width: 600px) {
+ .components-modal__frame.components-guide {
+ margin: auto;
+ max-width: calc(100vw - 16px * 2);
+ }
+}
+
+.components-button.components-guide__back-button, .components-button.components-guide__forward-button, .components-button.components-guide__finish-button {
+ height: 30px;
+ position: absolute;
+}
+.components-button.components-guide__back-button, .components-button.components-guide__forward-button {
+ font-size: 13px;
+ padding: 4px 2px;
+}
+.components-button.components-guide__back-button.has-text svg, .components-button.components-guide__forward-button.has-text svg {
+ margin: 0;
+}
+.components-button.components-guide__back-button:hover, .components-button.components-guide__forward-button:hover {
+ text-decoration: underline;
+}
+.components-button.components-guide__back-button {
+ right: 32px;
+}
+.components-button.components-guide__forward-button {
+ left: 32px;
+ color: #1386bf;
+ font-weight: bold;
+}
+.components-button.components-guide__finish-button {
+ left: 32px;
+}
+
+[role=region] {
+ position: relative;
+}
+
+.is-focusing-regions [role=region]:focus::after {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ pointer-events: none;
+ outline: 4px solid transparent;
+ box-shadow: inset 0 0 0 4px var(--wp-admin-theme-color);
+}
+@supports (outline-offset: 1px) {
+ .is-focusing-regions [role=region]:focus::after {
+ content: none;
+ }
+ .is-focusing-regions [role=region]:focus {
+ outline-style: solid;
+ outline-color: var(--wp-admin-theme-color);
+ outline-width: 4px;
+ outline-offset: -4px;
+ }
+}
+
+.components-menu-group + .components-menu-group {
+ margin-top: 8px;
+ padding-top: 8px;
+ border-top: 1px solid #1e1e1e;
+}
+.components-menu-group + .components-menu-group.has-hidden-separator {
+ border-top: none;
+ margin-top: 0;
+ padding-top: 0;
+}
+
+.components-menu-group__label {
+ padding: 0 8px;
+ margin-top: 4px;
+ margin-bottom: 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+ white-space: nowrap;
+}
+
+.components-menu-item__button,
+.components-menu-item__button.components-button {
+ width: 100%;
+}
+.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child, .components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,
+.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,
+.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child {
+ padding-left: 48px;
+}
+.components-menu-item__button .components-menu-items__item-icon,
+.components-menu-item__button.components-button .components-menu-items__item-icon {
+ display: inline-block;
+ flex: 0 0 auto;
+}
+.components-menu-item__button .components-menu-items__item-icon.has-icon-right,
+.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right {
+ margin-left: -2px;
+ margin-right: 24px;
+}
+.components-menu-item__button .components-menu-item__shortcut + .components-menu-items__item-icon.has-icon-right,
+.components-menu-item__button.components-button .components-menu-item__shortcut + .components-menu-items__item-icon.has-icon-right {
+ margin-right: 8px;
+}
+.components-menu-item__button .block-editor-block-icon,
+.components-menu-item__button.components-button .block-editor-block-icon {
+ margin-right: -2px;
+ margin-left: 8px;
+}
+.components-menu-item__button.is-primary,
+.components-menu-item__button.components-button.is-primary {
+ justify-content: center;
+}
+.components-menu-item__button.is-primary .components-menu-item__item,
+.components-menu-item__button.components-button.is-primary .components-menu-item__item {
+ margin-left: 0;
+}
+
+.components-menu-item__info-wrapper {
+ display: flex;
+ flex-direction: column;
+ margin-left: auto;
+}
+
+.components-menu-item__info {
+ margin-top: 4px;
+ font-size: 12px;
+ color: #757575;
+ white-space: normal;
+}
+
+.components-menu-item__item {
+ white-space: nowrap;
+ min-width: 160px;
+ margin-left: auto;
+ display: inline-flex;
+ align-items: center;
+}
+
+.components-menu-item__shortcut {
+ align-self: center;
+ margin-left: 0;
+ margin-right: auto;
+ padding-right: 24px;
+ color: currentColor;
+ display: none;
+}
+@media (min-width: 480px) {
+ .components-menu-item__shortcut {
+ display: inline;
+ }
+}
+
+.components-menu-items-choice svg,
+.components-menu-items-choice.components-button svg {
+ margin-left: 12px;
+}
+.components-menu-items-choice.has-icon,
+.components-menu-items-choice.components-button.has-icon {
+ padding-right: 12px;
+}
+
+.components-modal__screen-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ background-color: rgba(0, 0, 0, 0.35);
+ z-index: 100000;
+ display: flex;
+ animation: edit-post__fade-in-animation 0.2s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-modal__screen-overlay {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+.components-modal__frame {
+ margin: 0;
+ width: 100%;
+ background: #fff;
+ box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
+ border-radius: 2px;
+ overflow: hidden;
+ display: flex;
+}
+@media (min-width: 600px) {
+ .components-modal__frame {
+ margin: auto;
+ width: auto;
+ min-width: 360px;
+ max-width: calc(100% - 32px);
+ max-height: calc(100% - 120px);
+ animation: components-modal__appear-animation 0.1s ease-out;
+ animation-fill-mode: forwards;
+ }
+}
+@media (min-width: 600px) and (prefers-reduced-motion: reduce) {
+ .components-modal__frame {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-modal__frame.is-full-screen {
+ width: 90vw;
+ min-height: 90vh;
+ }
+}
+@media (min-width: 960px) {
+ .components-modal__frame {
+ max-height: 70%;
+ }
+}
+
+@keyframes components-modal__appear-animation {
+ from {
+ transform: translateY(32px);
+ }
+ to {
+ transform: translateY(0);
+ }
+}
+.components-modal__header {
+ box-sizing: border-box;
+ border-bottom: 1px solid #ddd;
+ padding: 0 32px;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
+ height: 60px;
+ width: 100%;
+ z-index: 10;
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+.components-modal__header .components-modal__header-heading {
+ font-size: 1rem;
+ font-weight: 600;
+}
+.components-modal__header h1 {
+ line-height: 1;
+ margin: 0;
+}
+.components-modal__header .components-button {
+ position: relative;
+ right: 8px;
+}
+
+.components-modal__header-heading-container {
+ align-items: center;
+ flex-grow: 1;
+ display: flex;
+ flex-direction: row;
+ justify-content: left;
+}
+
+.components-modal__header-icon-container {
+ display: inline-block;
+}
+.components-modal__header-icon-container svg {
+ max-width: 36px;
+ max-height: 36px;
+ padding: 8px;
+}
+
+.components-modal__content {
+ flex: 1;
+ margin-top: 60px;
+ padding: 0 32px 24px;
+ overflow: auto;
+}
+.components-modal__content::before {
+ content: "";
+ display: block;
+ margin-bottom: 24px;
+}
+.components-modal__content.hide-header {
+ margin-top: 0;
+ padding-top: 24px;
+}
+.components-modal__content.hide-header::before {
+ content: none;
+}
+
+.components-notice {
+ display: flex;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ background-color: #fff;
+ border-right: 4px solid var(--wp-admin-theme-color);
+ margin: 5px 15px 2px;
+ padding: 8px 12px;
+ align-items: center;
+}
+.components-notice.is-dismissible {
+ padding-left: 36px;
+ position: relative;
+}
+.components-notice.is-success {
+ border-right-color: #4ab866;
+ background-color: #eff9f1;
+}
+.components-notice.is-warning {
+ border-right-color: #f0b849;
+ background-color: #fef8ee;
+}
+.components-notice.is-error {
+ border-right-color: #cc1818;
+ background-color: #f4a2a2;
+}
+
+.components-notice__content {
+ flex-grow: 1;
+ margin: 4px 0 4px 25px;
+}
+
+.components-notice__actions {
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.components-notice__action.components-button {
+ margin-left: 8px;
+}
+.components-notice__action.components-button, .components-notice__action.components-button.is-link {
+ margin-right: 12px;
+}
+.components-notice__action.components-button.is-secondary {
+ vertical-align: initial;
+}
+
+.components-notice__dismiss {
+ color: #757575;
+ align-self: flex-start;
+ flex-shrink: 0;
+}
+.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 {
+ color: #1e1e1e;
+ background-color: transparent;
+}
+.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
+ box-shadow: none;
+}
+
+.components-notice-list {
+ max-width: 100vw;
+ box-sizing: border-box;
+}
+.components-notice-list .components-notice__content {
+ margin-top: 12px;
+ margin-bottom: 12px;
+ line-height: 2;
+}
+.components-notice-list .components-notice__action.components-button {
+ display: block;
+ margin-right: 0;
+ margin-top: 8px;
+}
+
+.components-panel {
+ background: #fff;
+ border: 1px solid #e0e0e0;
+}
+.components-panel > .components-panel__header:first-child,
+.components-panel > .components-panel__body:first-child {
+ margin-top: -1px;
+}
+.components-panel > .components-panel__header:last-child,
+.components-panel > .components-panel__body:last-child {
+ border-bottom-width: 0;
+}
+
+.components-panel + .components-panel {
+ margin-top: -1px;
+}
+
+.components-panel__body {
+ border-top: 1px solid #e0e0e0;
+ border-bottom: 1px solid #e0e0e0;
+}
+.components-panel__body h3 {
+ margin: 0 0 0.5em;
+}
+.components-panel__body.is-opened {
+ padding: 16px;
+}
+
+.components-panel__header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 0 16px;
+ height: 48px;
+ border-bottom: 1px solid #ddd;
+}
+.components-panel__header h2 {
+ margin: 0;
+ font-size: inherit;
+ color: inherit;
+}
+
+.components-panel__body + .components-panel__body,
+.components-panel__body + .components-panel__header,
+.components-panel__header + .components-panel__body,
+.components-panel__header + .components-panel__header {
+ margin-top: -1px;
+}
+
+.components-panel__body > .components-panel__body-title {
+ display: block;
+ padding: 0;
+ font-size: inherit;
+ margin-top: 0;
+ margin-bottom: 0;
+ transition: 0.1s background ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-panel__body > .components-panel__body-title {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.components-panel__body.is-opened > .components-panel__body-title {
+ margin: -16px;
+ margin-bottom: 5px;
+}
+
+.components-panel__body > .components-panel__body-title:hover {
+ background: #f0f0f0;
+ border: none;
+}
+
+.components-panel__body-toggle.components-button {
+ position: relative;
+ padding: 16px 16px 16px 48px;
+ outline: none;
+ width: 100%;
+ font-weight: 500;
+ text-align: right;
+ color: #1e1e1e;
+ border: none;
+ box-shadow: none;
+ transition: 0.1s background ease-in-out;
+ height: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-panel__body-toggle.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 0;
+}
+.components-panel__body-toggle.components-button .components-panel__arrow {
+ position: absolute;
+ left: 16px;
+ top: 50%;
+ transform: translateY(-50%);
+ color: #1e1e1e;
+ fill: currentColor;
+ transition: 0.1s color ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-panel__body-toggle.components-button .components-panel__arrow {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
+ transform: scaleX(-1);
+ -ms-filter: fliph;
+ filter: FlipH;
+ margin-top: -10px;
+}
+
+.components-panel__icon {
+ color: #757575;
+ margin: -2px 6px -2px 0;
+}
+
+.components-panel__body-toggle-icon {
+ margin-left: -5px;
+}
+
+.components-panel__color-title {
+ float: right;
+ height: 19px;
+}
+
+.components-panel__row {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-top: 8px;
+ min-height: 36px;
+}
+.components-panel__row select {
+ min-width: 0;
+}
+.components-panel__row label {
+ margin-left: 12px;
+ flex-shrink: 0;
+ max-width: 75%;
+}
+.components-panel__row:empty, .components-panel__row:first-of-type {
+ margin-top: 0;
+}
+
+.components-panel .circle-picker {
+ padding-bottom: 20px;
+}
+
+.components-placeholder.components-placeholder {
+ box-sizing: border-box;
+ position: relative;
+ padding: 1em;
+ min-height: 200px;
+ width: 100%;
+ text-align: right;
+ margin: 0;
+ color: #1e1e1e;
+ -moz-font-smoothing: subpixel-antialiased;
+ -webkit-font-smoothing: subpixel-antialiased;
+ border-radius: 2px;
+ background-color: #fff;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ outline: 1px solid transparent;
+}
+@supports (position: sticky) {
+ .components-placeholder.components-placeholder {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-start;
+ }
+}
+.components-placeholder.components-placeholder .components-base-control__label {
+ font-size: 13px;
+}
+
+.components-placeholder__error,
+.components-placeholder__instructions,
+.components-placeholder__label,
+.components-placeholder__fieldset {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.components-placeholder__label {
+ display: flex;
+ font-weight: 600;
+ margin-bottom: 16px;
+ align-items: center;
+}
+.components-placeholder__label > svg,
+.components-placeholder__label .dashicon,
+.components-placeholder__label .block-editor-block-icon {
+ margin-left: 1ch;
+ fill: currentColor;
+}
+@media (forced-colors: active) {
+ .components-placeholder__label > svg,
+.components-placeholder__label .dashicon,
+.components-placeholder__label .block-editor-block-icon {
+ fill: CanvasText;
+ }
+}
+.components-placeholder__label:empty {
+ display: none;
+}
+
+.components-placeholder__fieldset,
+.components-placeholder__fieldset form {
+ display: flex;
+ flex-direction: row;
+ width: 100%;
+ flex-wrap: wrap;
+}
+.components-placeholder__fieldset p,
+.components-placeholder__fieldset form p {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.components-placeholder__fieldset.components-placeholder__fieldset {
+ border: none;
+ padding: 0;
+}
+.components-placeholder__fieldset.components-placeholder__fieldset .components-placeholder__instructions {
+ padding: 0;
+ font-weight: normal;
+ font-size: 1em;
+}
+
+.components-placeholder__fieldset.is-column-layout,
+.components-placeholder__fieldset.is-column-layout form {
+ flex-direction: column;
+}
+
+.components-placeholder__input[type=url] {
+ 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;
+ margin: 0 0 0 8px;
+ flex: 1 1 auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-placeholder__input[type=url] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-placeholder__input[type=url] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-placeholder__input[type=url]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-placeholder__input[type=url]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-placeholder__input[type=url]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-placeholder__input[type=url]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.components-placeholder__instructions {
+ margin-bottom: 1em;
+}
+
+.components-placeholder__error {
+ margin-top: 1em;
+ width: 100%;
+}
+
+.components-placeholder__preview img {
+ margin: 3%;
+ width: 50%;
+}
+
+.components-placeholder__fieldset .components-button {
+ margin-left: 12px;
+ margin-bottom: 12px;
+}
+.components-placeholder__fieldset .components-button:last-child {
+ margin-bottom: 0;
+ margin-left: 0;
+}
+
+.components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link {
+ margin-right: 10px;
+ margin-left: 10px;
+}
+.components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link:last-child {
+ margin-left: 0;
+}
+
+.components-placeholder.is-large .components-placeholder__label {
+ font-size: 18pt;
+ font-weight: normal;
+}
+.components-placeholder.is-medium .components-placeholder__instructions, .components-placeholder.is-small .components-placeholder__instructions {
+ display: none;
+}
+.components-placeholder.is-medium .components-placeholder__fieldset,
+.components-placeholder.is-medium .components-placeholder__fieldset form, .components-placeholder.is-small .components-placeholder__fieldset,
+.components-placeholder.is-small .components-placeholder__fieldset form {
+ flex-direction: column;
+}
+.components-placeholder.is-medium .components-placeholder__fieldset .components-button, .components-placeholder.is-small .components-placeholder__fieldset .components-button {
+ margin-left: auto;
+}
+.components-placeholder.is-small .components-button {
+ padding: 0 8px 2px;
+}
+.components-popover {
+ position: fixed;
+ z-index: 1000000;
+ top: 0;
+ left: 0;
+ opacity: 0;
+}
+.components-popover.is-expanded, .components-popover[data-x-axis][data-y-axis] {
+ opacity: 1;
+}
+.components-popover.is-expanded {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 1000000 !important;
+}
+.components-popover:not(.is-without-arrow) {
+ margin-left: 2px;
+}
+.components-popover:not(.is-without-arrow)::before {
+ border: 8px solid #ccc;
+}
+.components-popover:not(.is-without-arrow).is-alternate::before {
+ border-color: #1e1e1e;
+}
+.components-popover:not(.is-without-arrow)::after {
+ border: 8px solid #fff;
+}
+.components-popover:not(.is-without-arrow)::before, .components-popover:not(.is-without-arrow)::after {
+ content: "";
+ position: absolute;
+ height: 0;
+ width: 0;
+ line-height: 0;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top] {
+ margin-top: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top]::before {
+ bottom: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top]::after {
+ bottom: -6px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top]::before, .components-popover:not(.is-without-arrow)[data-y-axis=top]::after {
+ border-bottom: none;
+ border-left-color: transparent;
+ border-right-color: transparent;
+ border-top-style: solid;
+ margin-left: -10px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom] {
+ margin-top: 8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom]::before {
+ top: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom]::after {
+ top: -6px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom]::before, .components-popover:not(.is-without-arrow)[data-y-axis=bottom]::after {
+ border-bottom-style: solid;
+ border-left-color: transparent;
+ border-right-color: transparent;
+ border-top: none;
+ margin-left: -10px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left] {
+ margin-left: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::before {
+ right: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::after {
+ right: -6px;
+}
+.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 {
+ border-bottom-color: transparent;
+ border-left-style: solid;
+ border-right: none;
+ border-top-color: transparent;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right] {
+ margin-left: 8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::before {
+ left: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::after {
+ left: -6px;
+}
+.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 {
+ border-bottom-color: transparent;
+ border-left: none;
+ border-right-style: solid;
+ border-top-color: transparent;
+}
+.components-popover[data-y-axis=top] {
+ bottom: 100%;
+}
+.components-popover[data-y-axis=bottom] {
+ top: 100%;
+}
+.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%;
+ background: #fff;
+ 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;
+ overflow-y: auto;
+}
+.components-popover.is-expanded .components-popover__content {
+ position: static;
+ height: calc(100% - 48px);
+ overflow-y: visible;
+ min-width: auto;
+ border: none;
+ border-top: 1px solid #1e1e1e;
+}
+.components-popover[data-y-axis=top] .components-popover__content {
+ bottom: 100%;
+}
+.components-popover[data-x-axis=center] .components-popover__content {
+ left: 50%;
+ transform: translateX(-50%);
+}
+.components-popover[data-x-axis=right] .components-popover__content {
+ position: absolute;
+ left: 100%;
+}
+.components-popover:not([data-y-axis=middle])[data-x-axis=right] .components-popover__content {
+ margin-left: -25px;
+}
+.components-popover[data-x-axis=left] .components-popover__content {
+ position: absolute;
+ right: 100%;
+}
+.components-popover:not([data-y-axis=middle])[data-x-axis=left] .components-popover__content {
+ margin-right: -25px;
+}
+
+.components-popover__header {
+ align-items: center;
+ background: #fff;
+ display: flex;
+ height: 48px;
+ justify-content: space-between;
+ padding: 0 8px 0 16px;
+}
+
+.components-popover__header-title {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.components-popover__close.components-button {
+ z-index: 5;
+}
+.components-radio-control {
+ display: flex;
+ flex-direction: column;
+}
+.components-radio-control .components-base-control__help {
+ margin-top: 0;
+}
+.components-radio-control .components-base-control__field {
+ margin-bottom: 0;
+}
+
+.components-radio-control__option:not(:last-child) {
+ margin-bottom: 4px;
+}
+
+.components-radio-control__input[type=radio] {
+ 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;
+ border: 1px solid #1e1e1e;
+ margin-left: 12px;
+ transition: none;
+ border-radius: 50%;
+ width: 24px;
+ height: 24px;
+ margin-top: 0;
+ margin-left: 6px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-radio-control__input[type=radio] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-radio-control__input[type=radio] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-radio-control__input[type=radio]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-radio-control__input[type=radio]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-radio-control__input[type=radio]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-radio-control__input[type=radio]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+@media (min-width: 600px) {
+ .components-radio-control__input[type=radio] {
+ height: 20px;
+ width: 20px;
+ }
+}
+.components-radio-control__input[type=radio]:checked::before {
+ box-sizing: inherit;
+ width: 8px;
+ height: 8px;
+ transform: translate(-7px, 7px);
+ margin: 0;
+ background-color: #fff;
+ border: 4px solid #fff;
+}
+@media (min-width: 600px) {
+ .components-radio-control__input[type=radio]:checked::before {
+ transform: translate(-5px, 5px);
+ }
+}
+.components-radio-control__input[type=radio]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-radio-control__input[type=radio]:checked {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+
+.components-resizable-box__handle {
+ display: none;
+ width: 23px;
+ height: 23px;
+ z-index: 2;
+}
+.components-resizable-box__container.has-show-handle .components-resizable-box__handle {
+ display: block;
+}
+
+.components-resizable-box__container > img {
+ width: inherit;
+}
+
+.components-resizable-box__handle::after {
+ display: block;
+ content: "";
+ width: 15px;
+ height: 15px;
+ border-radius: 50%;
+ background: #fff;
+ cursor: inherit;
+ position: absolute;
+ top: calc(50% - 8px);
+ left: calc(50% - 8px);
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+
+.components-resizable-box__side-handle::before {
+ display: block;
+ border-radius: 2px;
+ content: "";
+ width: 3px;
+ height: 3px;
+ background: var(--wp-admin-theme-color);
+ cursor: inherit;
+ position: absolute;
+ top: calc(50% - 1px);
+ left: calc(50% - 1px);
+ transition: transform 0.1s ease-in;
+ opacity: 0;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-resizable-box__side-handle::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.components-resizable-box__side-handle {
+ z-index: 2;
+}
+
+.components-resizable-box__corner-handle {
+ z-index: 2;
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-top,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom,
+.components-resizable-box__side-handle.components-resizable-box__handle-top::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {
+ width: 100%;
+ right: 0;
+ border-right: 0;
+ border-left: 0;
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-left,
+.components-resizable-box__side-handle.components-resizable-box__handle-right,
+.components-resizable-box__side-handle.components-resizable-box__handle-left::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right::before {
+ height: 100%;
+ top: 0;
+ border-top: 0;
+ border-bottom: 0;
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
+ animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
+ animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+/* This CSS is shown only to Safari, which has a bug with table-caption making it jumpy.
+See https://bugs.webkit.org/show_bug.cgi?id=187903. */
+@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
+ @supports (-webkit-appearance: none) {
+ .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
+ animation: none;
+ }
+
+ .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
+ animation: none;
+ }
+ }
+}
+@keyframes components-resizable-box__top-bottom-animation {
+ from {
+ transform: scaleX(0);
+ opacity: 0;
+ }
+ to {
+ transform: scaleX(1);
+ opacity: 1;
+ }
+}
+@keyframes components-resizable-box__left-right-animation {
+ from {
+ transform: scaleY(0);
+ opacity: 0;
+ }
+ to {
+ transform: scaleY(1);
+ opacity: 1;
+ }
+}
+.components-resizable-box__handle-right {
+ right: calc(11.5px * -1);
+}
+
+.components-resizable-box__handle-left {
+ left: calc(11.5px * -1);
+}
+
+.components-resizable-box__handle-top {
+ top: calc(11.5px * -1);
+}
+
+.components-resizable-box__handle-bottom {
+ bottom: calc(11.5px * -1);
+}
+.components-responsive-wrapper {
+ position: relative;
+ max-width: 100%;
+}
+.components-responsive-wrapper, .components-responsive-wrapper > span {
+ display: block;
+}
+
+.components-responsive-wrapper__content {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ margin: auto;
+}
+
+.components-sandbox {
+ overflow: hidden;
+}
+
+iframe.components-sandbox {
+ width: 100%;
+}
+
+html.lockscroll,
+body.lockscroll {
+ overflow: hidden;
+}
+
+.components-search-control {
+ position: relative;
+}
+.components-search-control input[type=search].components-search-control__input {
+ 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;
+ display: block;
+ padding: 16px 16px 16px 48px;
+ background: #f0f0f0;
+ border: none;
+ width: 100%;
+ height: 48px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-search-control input[type=search].components-search-control__input {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-search-control input[type=search].components-search-control__input {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-search-control input[type=search].components-search-control__input:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-search-control input[type=search].components-search-control__input::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-search-control input[type=search].components-search-control__input::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-search-control input[type=search].components-search-control__input:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+@media (min-width: 600px) {
+ .components-search-control input[type=search].components-search-control__input {
+ font-size: 13px;
+ }
+}
+.components-search-control input[type=search].components-search-control__input:focus {
+ background: #fff;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-search-control input[type=search].components-search-control__input::placeholder {
+ color: #757575;
+}
+.components-search-control input[type=search].components-search-control__input::-webkit-search-decoration, .components-search-control input[type=search].components-search-control__input::-webkit-search-cancel-button, .components-search-control input[type=search].components-search-control__input::-webkit-search-results-button, .components-search-control input[type=search].components-search-control__input::-webkit-search-results-decoration {
+ -webkit-appearance: none;
+}
+
+.components-search-control__icon {
+ position: absolute;
+ top: 0;
+ left: 12px;
+ bottom: 0;
+ display: flex;
+ align-items: center;
+}
+.components-search-control__icon > svg {
+ margin: 8px 0;
+}
+
+.components-search-control__input-wrapper {
+ position: relative;
+}
+
+.components-select-control__input {
+ background: #fff;
+ height: 36px;
+ line-height: 36px;
+ margin: 1px;
+ outline: 0;
+ width: 100%;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
+}
+@media (min-width: 782px) {
+ .components-select-control__input {
+ height: 28px;
+ line-height: 28px;
+ }
+}
+
+@media (max-width: 782px) {
+ .components-base-control .components-base-control__field .components-select-control__input {
+ font-size: 16px;
+ }
+}
+.components-snackbar {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ background-color: #1e1e1e;
+ border-radius: 2px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
+ color: #fff;
+ padding: 16px 24px;
+ width: 100%;
+ max-width: 600px;
+ box-sizing: border-box;
+ cursor: pointer;
+ pointer-events: auto;
+}
+@media (min-width: 600px) {
+ .components-snackbar {
+ width: -moz-fit-content;
+ width: fit-content;
+ }
+}
+.components-snackbar:focus {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
+}
+.components-snackbar.components-snackbar-explicit-dismiss {
+ cursor: default;
+}
+.components-snackbar .components-snackbar__content-with-icon {
+ margin-right: 24px;
+}
+.components-snackbar .components-snackbar__icon {
+ position: absolute;
+ top: 24px;
+ right: 28px;
+}
+.components-snackbar .components-snackbar__dismiss-button {
+ margin-right: 32px;
+ cursor: pointer;
+}
+
+.components-snackbar__action.components-button {
+ margin-right: 32px;
+ color: #fff;
+ height: auto;
+ flex-shrink: 0;
+ line-height: 1.4;
+ padding: 0;
+}
+.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) {
+ text-decoration: underline;
+ background-color: transparent;
+}
+.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):focus {
+ color: #fff;
+ box-shadow: none;
+ outline: 1px dotted #fff;
+}
+.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
+ color: var(--wp-admin-theme-color);
+}
+
+.components-snackbar__content {
+ display: flex;
+ align-items: baseline;
+ justify-content: space-between;
+ line-height: 1.4;
+}
+
+.components-snackbar-list {
+ position: absolute;
+ z-index: 100000;
+ width: 100%;
+ box-sizing: border-box;
+ pointer-events: none;
+}
+
+.components-snackbar-list__notice-container {
+ position: relative;
+ padding-top: 8px;
+}
+
+.components-swatch {
+ width: 18px;
+ height: 18px;
+ border-radius: 50%;
+ color: transparent;
+ background: transparent;
+}
+.components-swatch::after {
+ content: "";
+ display: block;
+ width: 100%;
+ height: 100%;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 50%;
+}
+
+.components-button.has-icon.has-text .components-swatch {
+ margin-left: 8px;
+}
+
+.components-tab-panel__tabs {
+ display: flex;
+ align-items: stretch;
+ flex-direction: row;
+}
+.components-tab-panel__tabs[aria-orientation=vertical] {
+ flex-direction: column;
+}
+
+.components-tab-panel__tabs-item {
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ border-radius: 0;
+ cursor: pointer;
+ height: 48px;
+ padding: 3px 16px;
+ margin-right: 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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ position: relative;
+}
+.components-tab-panel__tabs-item.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ left: 0;
+ right: 0;
+ border-bottom: 4px solid transparent;
+}
+.components-tab-panel__tabs-item:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+.components-text-control__input,
+.components-text-control__input[type=text],
+.components-text-control__input[type=tel],
+.components-text-control__input[type=time],
+.components-text-control__input[type=url],
+.components-text-control__input[type=week],
+.components-text-control__input[type=password],
+.components-text-control__input[type=color],
+.components-text-control__input[type=date],
+.components-text-control__input[type=datetime],
+.components-text-control__input[type=datetime-local],
+.components-text-control__input[type=email],
+.components-text-control__input[type=month],
+.components-text-control__input[type=number] {
+ width: 100%;
+ 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) {
+ .components-text-control__input,
+.components-text-control__input[type=text],
+.components-text-control__input[type=tel],
+.components-text-control__input[type=time],
+.components-text-control__input[type=url],
+.components-text-control__input[type=week],
+.components-text-control__input[type=password],
+.components-text-control__input[type=color],
+.components-text-control__input[type=date],
+.components-text-control__input[type=datetime],
+.components-text-control__input[type=datetime-local],
+.components-text-control__input[type=email],
+.components-text-control__input[type=month],
+.components-text-control__input[type=number] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-text-control__input,
+.components-text-control__input[type=text],
+.components-text-control__input[type=tel],
+.components-text-control__input[type=time],
+.components-text-control__input[type=url],
+.components-text-control__input[type=week],
+.components-text-control__input[type=password],
+.components-text-control__input[type=color],
+.components-text-control__input[type=date],
+.components-text-control__input[type=datetime],
+.components-text-control__input[type=datetime-local],
+.components-text-control__input[type=email],
+.components-text-control__input[type=month],
+.components-text-control__input[type=number] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-text-control__input:focus,
+.components-text-control__input[type=text]:focus,
+.components-text-control__input[type=tel]:focus,
+.components-text-control__input[type=time]:focus,
+.components-text-control__input[type=url]:focus,
+.components-text-control__input[type=week]:focus,
+.components-text-control__input[type=password]:focus,
+.components-text-control__input[type=color]:focus,
+.components-text-control__input[type=date]:focus,
+.components-text-control__input[type=datetime]:focus,
+.components-text-control__input[type=datetime-local]:focus,
+.components-text-control__input[type=email]:focus,
+.components-text-control__input[type=month]:focus,
+.components-text-control__input[type=number]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-text-control__input::-webkit-input-placeholder,
+.components-text-control__input[type=text]::-webkit-input-placeholder,
+.components-text-control__input[type=tel]::-webkit-input-placeholder,
+.components-text-control__input[type=time]::-webkit-input-placeholder,
+.components-text-control__input[type=url]::-webkit-input-placeholder,
+.components-text-control__input[type=week]::-webkit-input-placeholder,
+.components-text-control__input[type=password]::-webkit-input-placeholder,
+.components-text-control__input[type=color]::-webkit-input-placeholder,
+.components-text-control__input[type=date]::-webkit-input-placeholder,
+.components-text-control__input[type=datetime]::-webkit-input-placeholder,
+.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,
+.components-text-control__input[type=email]::-webkit-input-placeholder,
+.components-text-control__input[type=month]::-webkit-input-placeholder,
+.components-text-control__input[type=number]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-text-control__input::-moz-placeholder,
+.components-text-control__input[type=text]::-moz-placeholder,
+.components-text-control__input[type=tel]::-moz-placeholder,
+.components-text-control__input[type=time]::-moz-placeholder,
+.components-text-control__input[type=url]::-moz-placeholder,
+.components-text-control__input[type=week]::-moz-placeholder,
+.components-text-control__input[type=password]::-moz-placeholder,
+.components-text-control__input[type=color]::-moz-placeholder,
+.components-text-control__input[type=date]::-moz-placeholder,
+.components-text-control__input[type=datetime]::-moz-placeholder,
+.components-text-control__input[type=datetime-local]::-moz-placeholder,
+.components-text-control__input[type=email]::-moz-placeholder,
+.components-text-control__input[type=month]::-moz-placeholder,
+.components-text-control__input[type=number]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-text-control__input:-ms-input-placeholder,
+.components-text-control__input[type=text]:-ms-input-placeholder,
+.components-text-control__input[type=tel]:-ms-input-placeholder,
+.components-text-control__input[type=time]:-ms-input-placeholder,
+.components-text-control__input[type=url]:-ms-input-placeholder,
+.components-text-control__input[type=week]:-ms-input-placeholder,
+.components-text-control__input[type=password]:-ms-input-placeholder,
+.components-text-control__input[type=color]:-ms-input-placeholder,
+.components-text-control__input[type=date]:-ms-input-placeholder,
+.components-text-control__input[type=datetime]:-ms-input-placeholder,
+.components-text-control__input[type=datetime-local]:-ms-input-placeholder,
+.components-text-control__input[type=email]:-ms-input-placeholder,
+.components-text-control__input[type=month]:-ms-input-placeholder,
+.components-text-control__input[type=number]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.components-tip {
+ display: flex;
+ color: #757575;
+}
+.components-tip svg {
+ align-self: center;
+ fill: #f0b849;
+ flex-shrink: 0;
+ margin-left: 16px;
+}
+.components-tip p {
+ margin: 0;
+}
+
+.components-toggle-control .components-base-control__field {
+ display: flex;
+ margin-bottom: 12px;
+ line-height: initial;
+ align-items: center;
+}
+.components-toggle-control .components-base-control__field .components-form-toggle {
+ margin-left: 12px;
+}
+.components-toggle-control .components-base-control__field .components-toggle-control__label {
+ display: block;
+}
+
+.components-accessible-toolbar {
+ display: inline-flex;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
+ flex-shrink: 0;
+}
+.components-accessible-toolbar > .components-toolbar-group:last-child {
+ border-left: none;
+}
+
+.components-accessible-toolbar .components-button,
+.components-toolbar .components-button {
+ position: relative;
+ height: 48px;
+ z-index: 1;
+ padding-right: 16px;
+ padding-left: 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;
+ right: 8px;
+ left: 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;
+ animation-delay: 0s;
+ }
+}
+.components-accessible-toolbar .components-button svg,
+.components-toolbar .components-button svg {
+ position: relative;
+ margin-right: auto;
+ margin-left: 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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
+ outline: 2px solid transparent;
+}
+.components-accessible-toolbar .components-button.has-icon.has-icon,
+.components-toolbar .components-button.has-icon.has-icon {
+ padding-right: 12px;
+ padding-left: 12px;
+ min-width: 48px;
+}
+.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-right: 0;
+ padding-left: 0;
+ position: relative;
+}
+
+@keyframes components-button__appear-animation {
+ from {
+ transform: scaleY(0);
+ }
+ to {
+ transform: scaleY(1);
+ }
+}
+.components-toolbar__control.components-button {
+ position: relative;
+}
+.components-toolbar__control.components-button[data-subscript] svg {
+ padding: 5px 0 5px 10px;
+}
+.components-toolbar__control.components-button[data-subscript]::after {
+ content: attr(data-subscript);
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-weight: 600;
+ line-height: 12px;
+ position: absolute;
+ left: 8px;
+ bottom: 10px;
+}
+.components-toolbar__control.components-button:active::before {
+ display: none;
+}
+.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]::after {
+ color: #fff;
+}
+
+.components-toolbar-group {
+ min-height: 48px;
+ border-left: 1px solid #1e1e1e;
+ background-color: #fff;
+ display: inline-flex;
+ flex-shrink: 0;
+ flex-wrap: wrap;
+ line-height: 0;
+}
+.components-toolbar-group .components-toolbar-group.components-toolbar-group {
+ border-width: 0;
+ margin: 0;
+}
+
+.components-toolbar {
+ min-height: 48px;
+ margin: 0;
+ border: 1px solid #1e1e1e;
+ background-color: #fff;
+ display: inline-flex;
+ flex-shrink: 0;
+ flex-wrap: wrap;
+}
+.components-toolbar .components-toolbar.components-toolbar {
+ border-width: 0;
+ margin: 0;
+}
+
+div.components-toolbar > div {
+ display: block;
+ margin: 0;
+}
+@supports (position: sticky) {
+ div.components-toolbar > div {
+ display: flex;
+ }
+}
+div.components-toolbar > div + div.has-left-divider {
+ margin-right: 6px;
+ position: relative;
+ overflow: visible;
+}
+div.components-toolbar > div + div.has-left-divider::before {
+ display: inline-block;
+ content: "";
+ box-sizing: content-box;
+ background-color: #ddd;
+ position: absolute;
+ top: 8px;
+ right: -3px;
+ width: 1px;
+ height: 20px;
+}
+
+.components-tooltip.components-popover {
+ z-index: 1000002;
+}
+.components-tooltip.components-popover .components-popover__content {
+ min-width: 0;
+}
+
+.components-tooltip .components-popover__content {
+ background: #1e1e1e;
+ border-radius: 2px;
+ border-width: 0;
+ color: #fff;
+ white-space: nowrap;
+ text-align: center;
+ line-height: 1.4;
+ font-size: 12px;
+ box-shadow: none;
+}
+.components-tooltip .components-popover__content > div {
+ padding: 4px 8px;
+}
+
+.components-tooltip__shortcut {
+ display: inline-block;
+ margin-right: 8px;
+}
+
+.disabled-element-wrapper {
+ position: relative;
+}
+.disabled-element-wrapper .event-catcher {
+ z-index: 100002;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/components/style-rtl.min.css b/static/wp-includes/css/dist/components/style-rtl.min.css
new file mode 100755
index 0000000..99f645b
--- /dev/null
+++ b/static/wp-includes/css/dist/components/style-rtl.min.css
@@ -0,0 +1 @@
+@charset "UTF-8";:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.components-animate__appear{animation:components-animate__appear-animation .1s cubic-bezier(0,0,.2,1) 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-animate__appear{animation-duration:1ms;animation-delay:0s}}.components-animate__appear.is-from-top,.components-animate__appear.is-from-top.is-from-left{transform-origin:top right}.components-animate__appear.is-from-top.is-from-right{transform-origin:top left}.components-animate__appear.is-from-bottom,.components-animate__appear.is-from-bottom.is-from-left{transform-origin:bottom right}.components-animate__appear.is-from-bottom.is-from-right{transform-origin:bottom left}@keyframes components-animate__appear-animation{0%{transform:translateY(-2em) scaleY(0) scaleX(0)}to{transform:translateY(0) scaleY(1) scaleX(1)}}.components-animate__slide-in{animation:components-animate__slide-in-animation .1s cubic-bezier(0,0,.2,1);animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-animate__slide-in{animation-duration:1ms;animation-delay:0s}}.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{to{transform:translateX(0)}}.components-animate__loading{animation:components-animate__loading 1.6s ease-in-out infinite}@keyframes components-animate__loading{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.components-autocomplete__popover .components-popover__content>div{padding:16px;min-width:220px}.components-autocomplete__result.components-button{display:flex;height:auto;min-height:36px;text-align:right;width:100%}.components-autocomplete__result.components-button.is-selected{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-button-group{display:inline-block}.components-button-group .components-button{border-radius:0;display:inline-flex;color:#1e1e1e;box-shadow:inset 0 0 0 1px #1e1e1e}.components-button-group .components-button+.components-button{margin-right:-1px}.components-button-group .components-button:first-child{border-radius:0 2px 2px 0}.components-button-group .components-button:last-child{border-radius:2px 0 0 2px}.components-button-group .components-button.is-primary,.components-button-group .components-button:focus{position:relative;z-index:1}.components-button-group .components-button.is-primary{box-shadow:inset 0 0 0 1px #1e1e1e}.components-button{display:inline-flex;text-decoration:none;font-family:inherit;font-weight:400;font-size:13px;margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:none;transition:box-shadow .1s linear;height:36px;align-items:center;box-sizing:border-box;padding:6px 12px;border-radius:2px;color:#1e1e1e}@media (prefers-reduced-motion:reduce){.components-button{transition-duration:0s;transition-delay:0s}}.components-button:hover,.components-button[aria-expanded=true]{color:var(--wp-admin-theme-color)}.components-button[aria-disabled=true]:hover{color:initial}.components-button:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:3px solid transparent}.components-button.is-primary{white-space:nowrap;background:var(--wp-admin-theme-color);color:#fff;text-decoration:none;text-shadow:none;outline:1px solid transparent}.components-button.is-primary:hover:not(:disabled){background:var(--wp-admin-theme-color-darker-10);color:#fff}.components-button.is-primary:active:not(:disabled){background:var(--wp-admin-theme-color-darker-20);border-color:var(--wp-admin-theme-color-darker-20);color:#fff}.components-button.is-primary:focus:not(:disabled){box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.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]:active:enabled,.components-button.is-primary[aria-disabled=true]:enabled{color:hsla(0,0%,100%,.4);background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);opacity:1;outline:none}.components-button.is-primary:disabled:active:enabled:focus:enabled,.components-button.is-primary:disabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:focus:enabled{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color)}.components-button.is-primary.is-busy,.components-button.is-primary.is-busy:disabled,.components-button.is-primary.is-busy[aria-disabled=true]{color:#fff;background-size:100px 100%;background-image:linear-gradient(45deg,var(--wp-admin-theme-color) 33%,var(--wp-admin-theme-color-darker-20) 0,var(--wp-admin-theme-color-darker-20) 70%,var(--wp-admin-theme-color) 0);border-color:var(--wp-admin-theme-color)}.components-button.is-secondary,.components-button.is-tertiary{outline:1px solid transparent}.components-button.is-secondary:active:not(:disabled),.components-button.is-tertiary:active:not(:disabled){background:#ddd;color:var(--wp-admin-theme-color-darker-10);box-shadow:none}.components-button.is-secondary:hover:not(:disabled),.components-button.is-tertiary:hover:not(:disabled){color:var(--wp-admin-theme-color-darker-10);box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color-darker-10)}.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{color:#828282;background:#eaeaea;transform:none;opacity:1;box-shadow:none;outline:none}.components-button.is-secondary{box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color);outline:1px solid transparent}.components-button.is-secondary,.components-button.is-tertiary{white-space:nowrap;color:var(--wp-admin-theme-color);background:transparent}.components-button.is-tertiary{padding:6px}.components-button.is-tertiary .dashicon{display:inline-block;flex:0 0 auto}p+.components-button.is-tertiary{margin-right:-6px}.components-button.is-destructive{color:#cc1818;box-shadow:inset 0 0 0 1px #cc1818}.components-button.is-destructive:hover:not(:disabled){color:#710d0d;box-shadow:inset 0 0 0 1px #710d0d}.components-button.is-destructive:focus:not(:disabled){color:var(--wp-admin-theme-color)}.components-button.is-destructive:active:not(:disabled){background:#ccc}.components-button.is-destructive.is-primary{color:#fff;background:#cc1818;box-shadow:inset 0 0 0 1px #cc1818}.components-button.is-destructive.is-primary:hover:not(:disabled){color:#fff;background:#710d0d;box-shadow:inset 0 0 0 1px #710d0d}.components-button.is-destructive.is-tertiary{box-shadow:none}.components-button.is-destructive.is-tertiary:hover:not(:disabled){box-shadow:inset 0 0 0 1px #cc1818;color:#cc1818}.components-button.is-destructive.is-tertiary:focus:not(:disabled){box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) #cc1818;color:#cc1818}.components-button.is-link{margin:0;padding:0;box-shadow:none;border:0;border-radius:0;background:none;outline:none;text-align:right;color:var(--wp-admin-theme-color);text-decoration:underline;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out;height:auto}@media (prefers-reduced-motion:reduce){.components-button.is-link{transition-duration:0s;transition-delay:0s}}.components-button.is-link:focus{border-radius:2px}.components-button.is-link.is-destructive{color:#cc1818}.components-button.is-link.is-destructive:active:not(:disabled),.components-button.is-link.is-destructive:hover:not(:disabled){color:#710d0d;background:none}.components-button.is-link.is-destructive:focus:not(:disabled){color:var(--wp-admin-theme-color)}.components-button:not([aria-disabled=true]):active{color:inherit}.components-button:disabled,.components-button[aria-disabled=true]{cursor:default;opacity:.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 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(45deg,#fafafa 33%,#e0e0e0 0,#e0e0e0 70%,#fafafa 0)}.components-button.is-small{height:24px;line-height:22px;padding:0 8px;font-size:11px}.components-button.is-small.has-icon:not(.has-text){padding:0 8px;width:24px}.components-button.has-icon{padding:6px;min-width:36px;justify-content:center}.components-button.has-icon .dashicon{display:inline-block;flex:0 0 auto;margin-right:2px;margin-left:2px}.components-button.has-icon.has-text{justify-content:left}.components-button.has-icon.has-text svg{margin-left:8px}.components-button.has-icon.has-text .dashicon{margin-left:10px}.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.components-button.is-pressed:hover:not(:disabled){color:#fff;background:#1e1e1e}.components-button svg{fill:currentColor;outline:none}@media (forced-colors:active){.components-button svg{fill:CanvasText}}.components-button .components-visually-hidden{height:auto}@keyframes components-button__busy-animation{0%{background-position:200px 0}}.components-checkbox-control__input[type=checkbox]{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 .1s linear;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:2px;background:#fff;color:#1e1e1e;clear:none;cursor:pointer;display:inline-block;line-height:0;margin:0 0 0 4px;outline:0;padding:0!important;text-align:center;vertical-align:top;width:24px;height:24px;-webkit-appearance:none;appearance:none;transition:border-color .1s ease-in-out}@media (min-width:600px){.components-checkbox-control__input[type=checkbox]{font-size:13px;line-height:normal}}.components-checkbox-control__input[type=checkbox]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-checkbox-control__input[type=checkbox]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-checkbox-control__input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{margin:-3px -5px;color:#fff}@media (min-width:782px){.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{margin:-4px -5px 0 0}}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{content:"ï‘ ";float:right;display:inline-block;vertical-align:middle;width:16px;font:normal 30px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:782px){.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{float:none;font-size:21px}}@media (min-width:600px){.components-checkbox-control__input[type=checkbox]{height:20px;width:20px}}@media (prefers-reduced-motion:reduce){.components-checkbox-control__input[type=checkbox]{transition-duration:0s;transition-delay:0s}}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.components-checkbox-control__input[type=checkbox]:checked,.components-checkbox-control__input[type=checkbox]:indeterminate{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked::-ms-check,.components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before{content:none}.components-checkbox-control__input-container{position:relative;display:inline-block;margin-left:12px;vertical-align:middle;width:24px;height:24px}@media (min-width:600px){.components-checkbox-control__input-container{width:20px;height:20px}}svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{fill:#fff;cursor:pointer;position:absolute;right:0;top:0;width:24px;height:24px;-webkit-user-select:none;user-select:none;pointer-events:none}@media (min-width:600px){svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{right:-2px;top:-2px}}.components-circular-option-picker{display:inline-block;width:100%;min-width:188px}.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper{display:flex;justify-content:flex-end;margin-top:12px}.components-circular-option-picker .components-circular-option-picker__swatches{display:flex;flex-wrap:wrap;gap:12px}.components-circular-option-picker__option-wrapper{display:inline-block;height:28px;width:28px;vertical-align:top;transform:scale(1);transition:transform .1s ease}@media (prefers-reduced-motion:reduce){.components-circular-option-picker__option-wrapper{transition-duration:0s;transition-delay:0s}}.components-circular-option-picker__option-wrapper:hover{transform:scale(1.2)}.components-circular-option-picker__option-wrapper>div{height:100%;width:100%}.components-circular-option-picker__option-wrapper:before{content:"";position:absolute;top:1px;right:1px;bottom:1px;left:1px;border-radius:50%;z-index:-1;background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='28' height='28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8V6H4v2h2zm2 0V6h2v2H8zm2 8H8v-2h2v2zm2 0v-2h2v2h-2zm0 2v-2h-2v2H8v2h2v-2h2zm2 0v2h-2v-2h2zm2 0h-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")}.components-circular-option-picker__option{display:inline-block;vertical-align:top;height:100%;width:100%;border:none;border-radius:50%;background:transparent;box-shadow:inset 0 0 0 14px;transition:box-shadow .1s ease;cursor:pointer}@media (prefers-reduced-motion:reduce){.components-circular-option-picker__option{transition-duration:0s;transition-delay:0s}}.components-circular-option-picker__option:hover{box-shadow:inset 0 0 0 14px!important}.components-circular-option-picker__option.is-pressed{box-shadow:inset 0 0 0 4px;position:relative;z-index:1;overflow:visible}.components-circular-option-picker__option.is-pressed+svg{position:absolute;right:2px;top:2px;border-radius:50%;z-index:2;pointer-events:none}.components-circular-option-picker__option:after{content:"";position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;border-radius:50%;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);border:1px solid transparent}.components-circular-option-picker__option:focus:after{content:"";border:2px solid #757575;width:32px;height:32px;position:absolute;top:-2px;right:-2px;border-radius:50%;box-shadow:inset 0 0 0 2px #fff}.components-circular-option-picker__option.components-button:focus{background-color:transparent;box-shadow:inset 0 0 0 14px;outline:none}.components-circular-option-picker__button-action .components-circular-option-picker__option{color:#fff;background:#fff}.components-circular-option-picker__dropdown-link-action{margin-left:16px}.components-circular-option-picker__dropdown-link-action .components-button{line-height:22px}@media (min-width:782px){.components-palette-edit__popover.components-popover .components-popover__content.components-popover__content.components-popover__content{margin-left:156px;margin-top:-49px}}.components-palette-edit__popover .components-custom-gradient-picker__gradient-bar{margin-top:0}.components-palette-edit__popover .components-custom-gradient-picker__ui-line{margin-bottom:0}.components-palette-edit__popover .components-custom-gradient-picker{width:280px;padding:8px}.components-dropdown-menu__menu .components-palette-edit__menu-button{width:100%}.component-color-indicator{width:20px;height:20px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);border-radius:50%;display:inline-block;padding:0}.components-combobox-control{width:100%}input.components-combobox-control__input[type=text]{width:100%;border:none;box-shadow:none;font-family:inherit;font-size:16px;padding:2px;margin:0;line-height:inherit;min-height:auto}@media (min-width:600px){input.components-combobox-control__input[type=text]{font-size:13px}}input.components-combobox-control__input[type=text]:focus{outline:none;box-shadow:none}.components-combobox-control__suggestions-container{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;display:flex;flex-wrap:wrap;align-items:flex-start;width:100%;margin:0 0 8px;padding:4px}@media (prefers-reduced-motion:reduce){.components-combobox-control__suggestions-container{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-combobox-control__suggestions-container{font-size:13px;line-height:normal}}.components-combobox-control__suggestions-container:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-combobox-control__suggestions-container::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-combobox-control__suggestions-container::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-combobox-control__suggestions-container:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-combobox-control__suggestions-container:focus-within{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-combobox-control__reset.components-button{display:flex;height:16px;min-width:16px;padding:0}.components-color-list-picker,.components-color-list-picker__swatch-button{width:100%}.components-color-list-picker__color-picker{margin:8px 0}.components-color-palette__custom-color{position:relative;border:none;background:none;border-radius:2px;height:64px;padding:12px;font-family:inherit;width:100%;background-image:repeating-linear-gradient(-45deg,#e0e0e0 25%,transparent 0,transparent 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(-45deg,#e0e0e0 25%,transparent 0,transparent 75%,#e0e0e0 0,#e0e0e0);background-position:100% 0,25px 25px;background-size:50px 50px;box-sizing:border-box;color:#fff;cursor:pointer;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);outline:1px solid transparent}.components-color-palette__custom-color:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline-width:2px}.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content{overflow:visible;box-shadow:0 4px 4px rgba(0,0,0,.05);border:none;border-radius:2px;max-height:-moz-fit-content!important;max-height:fit-content!important}.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content>div{padding:0}.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content .react-colorful__saturation{border-top-left-radius:2px;border-top-right-radius:2px}@media (min-width:782px){.components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar .components-popover__content.components-popover__content{margin-left:156px}.components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-top .components-popover__content{margin-top:-60px}.components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-bottom .components-popover__content{margin-bottom:-60px}}.components-color-palette__custom-color-name{text-align:right}.components-color-palette__custom-color-value{margin-right:16px;text-transform:uppercase}.components-custom-gradient-picker__gradient-bar:not(.has-gradient){opacity:.4}.components-custom-gradient-picker__gradient-bar{border-radius:2px;margin-top:12px;width:100%;height:48px;margin-bottom:20px;padding-right:16px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container{position:relative;width:calc(100% - 32px);margin-right:auto;margin-left:auto}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point{border-radius:50%;background:#fff;padding:2px;top:16px;min-width:16px;width:16px;height:16px;position:relative;color:#1e1e1e}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point svg{height:100%;width:100%}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button{border-radius:50%;height:16px;width:16px;padding:0;position:absolute;top:16px;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 2px 0 rgba(0,0,0,.25);outline:2px solid transparent}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active,.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus{box-shadow:inset 0 0 0 calc(var(--wp-admin-border-width-focus)*2) #fff,0 0 2px 0 rgba(0,0,0,.25);outline:4px solid transparent}.components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point{margin-right:auto;margin-left:auto;display:block;margin-bottom:8px}.components-custom-gradient-picker__inserter{direction:ltr;width:100%}.components-custom-gradient-picker__liner-gradient-indicator{display:inline-block;flex:0 auto;width:20px;height:20px}.components-custom-gradient-picker .components-custom-gradient-picker__ui-line{margin-bottom:16px}.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-angle-picker,.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-custom-gradient-picker__type-picker{margin-bottom:0}.components-custom-gradient-picker .components-custom-gradient-picker__toolbar{border:none}.components-custom-gradient-picker .components-custom-gradient-picker__toolbar>div+div{margin-right:1px}.components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed>svg{background:#fff;border:1px solid #949494;border-radius:2px}.components-custom-gradient-picker .components-input-control__label{line-height:1}.components-custom-gradient-picker label{text-transform:uppercase;font-size:11px;font-weight:500}.components-custom-select-control{position:relative}.components-custom-select-control__label{display:block;margin-bottom:8px}.components-custom-select-control__button{border:1px solid #757575;border-radius:2px;min-width:130px;position:relative;text-align:right}.components-custom-select-control__button:not(.is-next-36px-default-size){min-height:30px}.components-custom-select-control__button.components-custom-select-control__button{padding-right:16px;padding-left:32px}.components-custom-select-control__button.components-custom-select-control__button:not(.is-next-36px-default-size){padding-right:8px;padding-left:24px}.components-custom-select-control__button:focus:not(:disabled){border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.components-custom-select-control__button .components-custom-select-control__button-icon{height:100%;padding:0;position:absolute;left:8px;top:0}.components-custom-select-control__button .components-custom-select-control__button-icon:not(.is-next-36px-default-size){left:4px}.components-custom-select-control__menu{border:1px solid #1e1e1e;background-color:#fff;border-radius:2px;outline:none;transition:none;max-height:400px;min-width:100%;overflow:auto;padding:0;position:absolute;z-index:1000000}.components-custom-select-control__menu[aria-hidden=true]{display:none}.components-custom-select-control__item{align-items:center;display:grid;grid-template-columns:auto auto;list-style-type:none;padding:8px 16px;cursor:default;line-height:28px}.components-custom-select-control__item:not(.is-next-36px-default-size){padding:8px}.components-custom-select-control__item.has-hint{grid-template-columns:auto auto 30px}.components-custom-select-control__item.is-highlighted{background:#ddd}.components-custom-select-control__item .components-custom-select-control__item-hint{color:#757575;text-align:left;padding-left:4px}.components-custom-select-control__item .components-custom-select-control__item-icon{margin-right:auto}.components-custom-select-control__item:last-child{margin-bottom:0}.PresetDateRangePicker_panel{padding:0 22px 11px}.PresetDateRangePicker_button{position:relative;height:100%;text-align:center;background:0 0;border:2px solid #00a699;color:#00a699;padding:4px 12px;margin-right:8px;font:inherit;font-weight:700;line-height:normal;overflow:visible;box-sizing:border-box;cursor:pointer}.PresetDateRangePicker_button:active{outline:0}.PresetDateRangePicker_button__selected{color:#fff;background:#00a699}.SingleDatePickerInput{display:inline-block;background-color:#fff}.SingleDatePickerInput__withBorder{border-radius:2px;border:1px solid #dbdbdb}.SingleDatePickerInput__rtl{direction:rtl}.SingleDatePickerInput__disabled{background-color:#f2f2f2}.SingleDatePickerInput__block{display:block}.SingleDatePickerInput__showClearDate{padding-right:30px}.SingleDatePickerInput_clearDate{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;padding:10px;margin:0 10px 0 5px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.SingleDatePickerInput_clearDate__default:focus,.SingleDatePickerInput_clearDate__default:hover{background:#dbdbdb;border-radius:50%}.SingleDatePickerInput_clearDate__small{padding:6px}.SingleDatePickerInput_clearDate__hide{visibility:hidden}.SingleDatePickerInput_clearDate_svg{fill:#82888a;height:12px;width:15px;vertical-align:middle}.SingleDatePickerInput_clearDate_svg__small{height:9px}.SingleDatePickerInput_calendarIcon{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 5px 0 10px}.SingleDatePickerInput_calendarIcon_svg{fill:#82888a;height:15px;width:14px;vertical-align:middle}.SingleDatePicker{position:relative;display:inline-block}.SingleDatePicker__block{display:block}.SingleDatePicker_picker{z-index:1;background-color:#fff;position:absolute}.SingleDatePicker_picker__rtl{direction:rtl}.SingleDatePicker_picker__directionLeft{left:0}.SingleDatePicker_picker__directionRight{right:0}.SingleDatePicker_picker__portal{background-color:rgba(0,0,0,.3);position:fixed;top:0;left:0;height:100%;width:100%}.SingleDatePicker_picker__fullScreenPortal{background-color:#fff}.SingleDatePicker_closeButton{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;position:absolute;top:0;right:0;padding:15px;z-index:2}.SingleDatePicker_closeButton:focus,.SingleDatePicker_closeButton:hover{color:#b0b3b4;text-decoration:none}.SingleDatePicker_closeButton_svg{height:15px;width:15px;fill:#cacccd}.DayPickerKeyboardShortcuts_buttonReset{background:0 0;border:0;border-radius:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;cursor:pointer;font-size:14px}.DayPickerKeyboardShortcuts_buttonReset:active{outline:0}.DayPickerKeyboardShortcuts_show{width:22px;position:absolute;z-index:2}.DayPickerKeyboardShortcuts_show__bottomRight{border-top:26px solid transparent;border-right:33px solid #00a699;bottom:0;right:0}.DayPickerKeyboardShortcuts_show__bottomRight:hover{border-right:33px solid #008489}.DayPickerKeyboardShortcuts_show__topRight{border-bottom:26px solid transparent;border-right:33px solid #00a699;top:0;right:0}.DayPickerKeyboardShortcuts_show__topRight:hover{border-right:33px solid #008489}.DayPickerKeyboardShortcuts_show__topLeft{border-bottom:26px solid transparent;border-left:33px solid #00a699;top:0;left:0}.DayPickerKeyboardShortcuts_show__topLeft:hover{border-left:33px solid #008489}.DayPickerKeyboardShortcuts_showSpan{color:#fff;position:absolute}.DayPickerKeyboardShortcuts_showSpan__bottomRight{bottom:0;right:-28px}.DayPickerKeyboardShortcuts_showSpan__topRight{top:1px;right:-28px}.DayPickerKeyboardShortcuts_showSpan__topLeft{top:1px;left:-28px}.DayPickerKeyboardShortcuts_panel{overflow:auto;background:#fff;border:1px solid #dbdbdb;border-radius:2px;position:absolute;top:0;bottom:0;right:0;left:0;z-index:2;padding:22px;margin:33px}.DayPickerKeyboardShortcuts_title{font-size:16px;font-weight:700;margin:0}.DayPickerKeyboardShortcuts_list{list-style:none;padding:0;font-size:14px}.DayPickerKeyboardShortcuts_close{position:absolute;right:22px;top:22px;z-index:2}.DayPickerKeyboardShortcuts_close:active{outline:0}.DayPickerKeyboardShortcuts_closeSvg{height:15px;width:15px;fill:#cacccd}.DayPickerKeyboardShortcuts_closeSvg:focus,.DayPickerKeyboardShortcuts_closeSvg:hover{fill:#82888a}.CalendarDay{box-sizing:border-box;cursor:pointer;font-size:14px;text-align:center}.CalendarDay:active{outline:0}.CalendarDay__defaultCursor{cursor:default}.CalendarDay__default{border:1px solid #e4e7e7;color:#484848;background:#fff}.CalendarDay__default:hover{background:#e4e7e7;border:1px double #e4e7e7;color:inherit}.CalendarDay__hovered_offset{background:#f4f5f5;border:1px double #e4e7e7;color:inherit}.CalendarDay__outside{border:0;background:#fff;color:#484848}.CalendarDay__outside:hover{border:0}.CalendarDay__blocked_minimum_nights{background:#fff;border:1px solid #eceeee;color:#cacccd}.CalendarDay__blocked_minimum_nights:active,.CalendarDay__blocked_minimum_nights:hover{background:#fff;color:#cacccd}.CalendarDay__highlighted_calendar{background:#ffe8bc;color:#484848}.CalendarDay__highlighted_calendar:active,.CalendarDay__highlighted_calendar:hover{background:#ffce71;color:#484848}.CalendarDay__selected_span{background:#66e2da;border:1px solid #33dacd;color:#fff}.CalendarDay__selected_span:active,.CalendarDay__selected_span:hover{background:#33dacd;border:1px solid #33dacd;color:#fff}.CalendarDay__last_in_range{border-right:#00a699}.CalendarDay__selected,.CalendarDay__selected:active,.CalendarDay__selected:hover{background:#00a699;border:1px solid #00a699;color:#fff}.CalendarDay__hovered_span,.CalendarDay__hovered_span:hover{background:#b2f1ec;border:1px solid #80e8e0;color:#007a87}.CalendarDay__hovered_span:active{background:#80e8e0;border:1px solid #80e8e0;color:#007a87}.CalendarDay__blocked_calendar,.CalendarDay__blocked_calendar:active,.CalendarDay__blocked_calendar:hover{background:#cacccd;border:1px solid #cacccd;color:#82888a}.CalendarDay__blocked_out_of_range,.CalendarDay__blocked_out_of_range:active,.CalendarDay__blocked_out_of_range:hover{background:#fff;border:1px solid #e4e7e7;color:#cacccd}.CalendarMonth{background:#fff;text-align:center;vertical-align:top;-webkit-user-select:none;user-select:none}.CalendarMonth_table{border-collapse:collapse;border-spacing:0}.CalendarMonth_verticalSpacing{border-collapse:separate}.CalendarMonth_caption{color:#484848;font-size:18px;text-align:center;padding-top:22px;padding-bottom:37px;caption-side:top}.CalendarMonth_caption__verticalScrollable{padding-top:12px;padding-bottom:7px}.CalendarMonthGrid{background:#fff;text-align:left;z-index:0}.CalendarMonthGrid__animating{z-index:1}.CalendarMonthGrid__horizontal{position:absolute;left:0}.CalendarMonthGrid__vertical{margin:0 auto}.CalendarMonthGrid__vertical_scrollable{margin:0 auto;overflow-y:scroll}.CalendarMonthGrid_month__horizontal{display:inline-block;vertical-align:top;min-height:100%}.CalendarMonthGrid_month__hideForAnimation{position:absolute;z-index:-1;opacity:0;pointer-events:none}.CalendarMonthGrid_month__hidden{visibility:hidden}.DayPickerNavigation{position:relative;z-index:2}.DayPickerNavigation__horizontal{height:0}.DayPickerNavigation__verticalDefault{position:absolute;width:100%;height:52px;bottom:0;left:0}.DayPickerNavigation__verticalScrollableDefault{position:relative}.DayPickerNavigation_button{cursor:pointer;-webkit-user-select:none;user-select:none;border:0;padding:0;margin:0}.DayPickerNavigation_button__default{border:1px solid #e4e7e7;background-color:#fff;color:#757575}.DayPickerNavigation_button__default:focus,.DayPickerNavigation_button__default:hover{border:1px solid #c4c4c4}.DayPickerNavigation_button__default:active{background:#f2f2f2}.DayPickerNavigation_button__horizontalDefault{position:absolute;top:18px;line-height:.78;border-radius:3px;padding:6px 9px}.DayPickerNavigation_leftButton__horizontalDefault{left:22px}.DayPickerNavigation_rightButton__horizontalDefault{right:22px}.DayPickerNavigation_button__verticalDefault{padding:5px;background:#fff;box-shadow:0 0 5px 2px rgba(0,0,0,.1);position:relative;display:inline-block;height:100%;width:50%}.DayPickerNavigation_nextButton__verticalDefault{border-left:0}.DayPickerNavigation_nextButton__verticalScrollableDefault{width:100%}.DayPickerNavigation_svg__horizontal{height:19px;width:19px;fill:#82888a;display:block}.DayPickerNavigation_svg__vertical{height:42px;width:42px;fill:#484848;display:block}.DayPicker{position:relative;text-align:left}.DayPicker,.DayPicker__horizontal{background:#fff}.DayPicker__verticalScrollable{height:100%}.DayPicker__hidden{visibility:hidden}.DayPicker__withBorder{box-shadow:0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);border-radius:3px}.DayPicker_portal__horizontal{box-shadow:none;position:absolute;left:50%;top:50%}.DayPicker_portal__vertical{position:static}.DayPicker_focusRegion{outline:0}.DayPicker_calendarInfo__horizontal,.DayPicker_wrapper__horizontal{display:inline-block;vertical-align:top}.DayPicker_weekHeaders{position:relative}.DayPicker_weekHeaders__horizontal{margin-left:13px}.DayPicker_weekHeader{color:#757575;position:absolute;top:62px;z-index:2;text-align:left;padding:0!important}.DayPicker_weekHeader__vertical{left:50%}.DayPicker_weekHeader__verticalScrollable{top:0;display:table-row;border-bottom:1px solid #dbdbdb;background:#fff;margin-left:0;left:0;width:100%;text-align:center}.DayPicker_weekHeader_ul{list-style:none;margin:1px 0;padding-left:0;padding-right:0;font-size:14px}.DayPicker_weekHeader_li{display:inline-block;text-align:center;margin:0 1px}.DayPicker_transitionContainer{position:relative;overflow:hidden;border-radius:3px}.DayPicker_transitionContainer__horizontal{transition:height .2s ease-in-out}.DayPicker_transitionContainer__vertical{width:100%}.DayPicker_transitionContainer__verticalScrollable{padding-top:20px;height:100%;position:absolute;top:0;bottom:0;right:0;left:0;overflow-y:scroll}.DateInput{margin:0;padding:0;background:#fff;position:relative;display:inline-block;width:130px;vertical-align:middle}.DateInput__small{width:97px}.DateInput__block{width:100%}.DateInput__disabled{background:#f2f2f2;color:#dbdbdb}.DateInput_input{font-weight:200;font-size:19px;line-height:24px;color:#484848;background-color:#fff;width:100%;padding:11px 11px 9px;border:0;border-bottom:2px solid transparent;border-radius:0}.DateInput_input__small{font-size:15px;line-height:18px;letter-spacing:.2px;padding:7px 7px 5px}.DateInput_input__regular{font-weight:auto}.DateInput_input__readOnly{-webkit-user-select:none;user-select:none}.DateInput_input__focused{outline:0;background:#fff;border:0;border-bottom:2px solid #008489}.DateInput_input__disabled{background:#f2f2f2;font-style:italic}.DateInput_screenReaderMessage{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.DateInput_fang{position:absolute;width:20px;height:10px;left:22px;z-index:2}.DateInput_fangShape{fill:#fff}.DateInput_fangStroke{stroke:#dbdbdb;fill:transparent}.DateRangePickerInput{background-color:#fff;display:inline-block}.DateRangePickerInput__disabled{background:#f2f2f2}.DateRangePickerInput__withBorder{border-radius:2px;border:1px solid #dbdbdb}.DateRangePickerInput__rtl{direction:rtl}.DateRangePickerInput__block{display:block}.DateRangePickerInput__showClearDates{padding-right:30px}.DateRangePickerInput_arrow{display:inline-block;vertical-align:middle;color:#484848}.DateRangePickerInput_arrow_svg{vertical-align:middle;fill:#484848;height:24px;width:24px}.DateRangePickerInput_clearDates{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;padding:10px;margin:0 10px 0 5px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.DateRangePickerInput_clearDates__small{padding:6px}.DateRangePickerInput_clearDates_default:focus,.DateRangePickerInput_clearDates_default:hover{background:#dbdbdb;border-radius:50%}.DateRangePickerInput_clearDates__hide{visibility:hidden}.DateRangePickerInput_clearDates_svg{fill:#82888a;height:12px;width:15px;vertical-align:middle}.DateRangePickerInput_clearDates_svg__small{height:9px}.DateRangePickerInput_calendarIcon{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 5px 0 10px}.DateRangePickerInput_calendarIcon_svg{fill:#82888a;height:15px;width:14px;vertical-align:middle}.DateRangePicker{position:relative;display:inline-block}.DateRangePicker__block{display:block}.DateRangePicker_picker{z-index:1;background-color:#fff;position:absolute}.DateRangePicker_picker__rtl{direction:rtl}.DateRangePicker_picker__directionLeft{left:0}.DateRangePicker_picker__directionRight{right:0}.DateRangePicker_picker__portal{background-color:rgba(0,0,0,.3);position:fixed;top:0;left:0;height:100%;width:100%}.DateRangePicker_picker__fullScreenPortal{background-color:#fff}.DateRangePicker_closeButton{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;position:absolute;top:0;right:0;padding:15px;z-index:2}.DateRangePicker_closeButton:focus,.DateRangePicker_closeButton:hover{color:#b0b3b4;text-decoration:none}.DateRangePicker_closeButton_svg{height:15px;width:15px;fill:#cacccd}.components-datetime{padding:16px}.components-panel__body .components-datetime{padding:0}.components-datetime .components-datetime__calendar-help{padding:16px;min-width:260px}.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-toggle{display:block;margin-right:auto}.components-datetime fieldset{border:0;padding:0;margin:0}.components-datetime input,.components-datetime select{box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid #757575}@media (prefers-reduced-motion:reduce){.components-datetime input,.components-datetime select{transition-duration:0s;transition-delay:0s}}.components-datetime .components-button,.components-datetime input[type=number],.components-datetime select{height:30px;margin-top:0;margin-bottom:0}.components-datetime .components-button:focus{z-index:1}.components-datetime__date{min-height:236px;border-top:1px solid #ddd}.components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault{left:13px}.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:none;border-radius:50%;text-align:center}.components-datetime__date .CalendarDay:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 3px #fff;outline:2px solid transparent}.components-datetime__date .CalendarDay__selected{background:var(--wp-admin-theme-color);border:2px solid transparent}.components-datetime__date .CalendarDay__selected:hover{background:var(--wp-admin-theme-color-darker-20)}.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{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-datetime__date .DayPicker_weekHeader{top:50px}.components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul{margin:1px;padding-right:0;padding-left:0}.components-datetime__date.is-description-visible .DayPicker{visibility:hidden}.components-datetime__date .CalendarDay .components-datetime__date__day{height:100%;display:flex;justify-content:center;align-content:center;flex-direction:column;position:relative}.components-datetime__date .CalendarDay .components-datetime__date__day.has-events:before{content:" ";width:4px;height:4px;border-radius:2px;position:absolute;right:50%;margin-right:-2px;bottom:0;background-color:#fff}.components-datetime__date .CalendarDay:not(.CalendarDay__selected) .components-datetime__date__day.has-events:before{background:var(--wp-admin-theme-color)}.components-datetime__time{padding-bottom:16px}.components-datetime__time fieldset{position:relative;margin-bottom:.5em}.components-datetime__time fieldset+fieldset{margin-bottom:0}.components-datetime__time .components-datetime__time-field-am-pm fieldset{margin-top:0}.components-datetime__time .components-datetime__time-wrapper{display:flex}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator{display:inline-block;padding:0 0 0 3px}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time{direction:ltr}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select{margin-left:4px}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus{position:relative;z-index:1}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]{padding:2px;margin-left:4px;text-align:center;-moz-appearance:textfield}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]:focus{position:relative;z-index:1}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.components-datetime__time.is-12-hour .components-datetime__time-field-day input{margin:-4px 0 0!important;border-radius:0 2px 2px 0!important}.components-datetime__time.is-12-hour .components-datetime__time-field-year input{border-radius:2px 0 0 2px!important}.components-datetime__timezone{line-height:30px;margin-right:4px;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.components-datetime__time-legend{font-weight:600;margin-top:.5em}.components-datetime__time-legend.invisible{position:absolute;top:-999em;right:-999em}.components-datetime__time-field-integer-field{font-family:inherit}.components-datetime__time-field-day-input,.components-datetime__time-field-hours-input,.components-datetime__time-field-minutes-input{width:35px}.components-datetime__time-field-year-input{width:55px}.components-datetime__time-field-month-select{max-width:145px}.components-popover .components-datetime__date{padding-right:4px}.block-editor-dimension-control .components-base-control__field{display:flex;align-items:center}.block-editor-dimension-control .components-base-control__label{display:flex;align-items:center;margin-left:1em;margin-bottom:0}.block-editor-dimension-control .components-base-control__label .dashicon{margin-left:.5em}.block-editor-dimension-control.is-manual .components-base-control__label{width:10em}body.is-dragging-components-draggable{cursor:move;cursor:grabbing!important}.components-draggable__invisible-drag-image{position:fixed;right:-1000px;height:50px;width:50px}.components-draggable__clone{position:fixed;padding:0;background:transparent;pointer-events:none;z-index:1000000000}.components-drop-zone{position:absolute;top:0;left:0;bottom:0;right:0;z-index:40;visibility:hidden;opacity:0;border-radius:2px}.components-drop-zone.is-active{opacity:1;visibility:visible}.components-drop-zone__content{position:absolute;top:0;bottom:0;right:0;left:0;height:100%;width:100%;display:flex;background-color:var(--wp-admin-theme-color);align-items:center;justify-content:center;z-index:50;text-align:center;color:#fff}.components-drop-zone__content-icon,.components-drop-zone__content-text{display:block}.components-drop-zone__content-icon{margin:0 auto;line-height:0;fill:currentColor;pointer-events:none}.components-drop-zone__content-text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-dropdown{display:inline-block}.components-dropdown__content .components-popover__content>div{padding:8px}.components-dropdown__content [role=menuitem]{white-space:nowrap}.components-dropdown-menu__menu{width:100%;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4}.components-dropdown-menu__menu .components-dropdown-menu__menu-item,.components-dropdown-menu__menu .components-menu-item{width:100%;padding:6px;outline:none;cursor:pointer;white-space:nowrap}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,.components-dropdown-menu__menu .components-menu-item.has-separator{margin-top:6px;position:relative;overflow:visible}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator:before,.components-dropdown-menu__menu .components-menu-item.has-separator:before{display:block;content:"";box-sizing:content-box;background-color:#ddd;position:absolute;top:-3px;right:0;left:0;height:1px}.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;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:2px;width:24px;height:24px}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,.components-dropdown-menu__menu .components-menu-item.is-icon-only{width:auto}.components-dropdown-menu__menu .components-menu-item__button,.components-dropdown-menu__menu .components-menu-item__button.components-button{min-height:36px;height:auto;text-align:right;padding-right:8px;padding-left:8px}.components-dropdown-menu__menu .components-menu-group{padding:8px;margin:0 -8px}.components-dropdown-menu__menu .components-menu-group:first-child{margin-top:-8px}.components-dropdown-menu__menu .components-menu-group:last-child{margin-bottom:-8px}.components-dropdown-menu__menu .components-menu-group+.components-menu-group{margin-top:0;border-top:1px solid #ccc;padding:8px}.is-alternate .components-dropdown-menu__menu .components-menu-group+.components-menu-group{border-color:#1e1e1e}.components-font-size-picker__header__hint{margin-right:4px;color:#757575}.components-font-size-picker__header .components-button.is-small.has-icon:not(.has-text){min-width:24px;padding:0}.components-font-size-picker__controls{max-width:248px;align-items:center;margin-top:8px;margin-bottom:24px}.components-font-size-picker__controls .components-unit-control-wrapper .components-input-control__label{font-weight:300;padding-bottom:0!important;margin-bottom:8px!important}.components-font-size-picker__controls .components-custom-select-control__button{width:100%}.components-font-size-picker__controls .components-font-size-picker__number{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;display:inline-block;font-weight:500;height:30px;margin:8px 0 0 8px;width:54px}@media (prefers-reduced-motion:reduce){.components-font-size-picker__controls .components-font-size-picker__number{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-font-size-picker__controls .components-font-size-picker__number{font-size:13px;line-height:normal}}.components-font-size-picker__controls .components-font-size-picker__number:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-font-size-picker__controls .components-font-size-picker__number::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-font-size-picker__controls .components-font-size-picker__number::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-font-size-picker__controls .components-font-size-picker__number:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-font-size-picker__controls .components-font-size-picker__number[value=""]+.components-button{cursor:default;opacity:.3;pointer-events:none}.components-font-size-picker__controls .components-font-size-picker__number-container{display:flex;flex-direction:column}.components-font-size-picker__controls .components-color-palette__clear{height:30px}.components-font-size-picker__custom-input .components-range-control__slider+.dashicon{width:30px;height:30px}.components-font-size-picker{border:0;padding:0;margin:0}.components-form-toggle{position:relative;display:inline-block}.components-form-toggle .components-form-toggle__track{content:"";display:inline-block;box-sizing:border-box;vertical-align:top;background-color:#fff;border:1px solid #1e1e1e;width:36px;height:18px;border-radius:9px;transition:background .2s ease}@media (prefers-reduced-motion:reduce){.components-form-toggle .components-form-toggle__track{transition-duration:0s;transition-delay:0s}}.components-form-toggle .components-form-toggle__thumb{display:block;position:absolute;box-sizing:border-box;top:3px;right:3px;width:12px;height:12px;border-radius:50%;transition:transform .1s ease;background-color:#1e1e1e;border:5px solid #1e1e1e}@media (prefers-reduced-motion:reduce){.components-form-toggle .components-form-toggle__thumb{transition-duration:0s;transition-delay:0s}}.components-form-toggle.is-checked .components-form-toggle__track{background-color:var(--wp-admin-theme-color);border:9px solid transparent}.components-form-toggle .components-form-toggle__input:focus+.components-form-toggle__track{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:2px}.components-form-toggle.is-checked .components-form-toggle__thumb{background-color:#fff;border-width:0;transform:translateX(-18px)}.components-disabled .components-form-toggle,.components-form-toggle.is-disabled{opacity:.3}.components-form-toggle input.components-form-toggle__input[type=checkbox]{position:absolute;top:0;right:0;width:100%;height:100%;opacity:0;margin:0;padding:0;z-index:1;border:none}.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked{background:none}.components-form-toggle input.components-form-toggle__input[type=checkbox]:before{content:""}.components-form-token-field__input-container{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;display:flex;flex-wrap:wrap;align-items:center;width:100%;margin:0 0 8px;padding:2px 4px;cursor:text}@media (prefers-reduced-motion:reduce){.components-form-token-field__input-container{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-form-token-field__input-container{font-size:13px;line-height:normal}}.components-form-token-field__input-container:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-form-token-field__input-container::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-form-token-field__input-container::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-form-token-field__input-container:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-form-token-field__input-container.is-disabled{background:#ddd;border-color:#ddd}.components-form-token-field__input-container.is-active{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-form-token-field__input-container input[type=text].components-form-token-field__input{display:inline-block;flex:1;font-family:inherit;font-size:16px;width:100%;max-width:100%;margin-right:4px;padding:0;min-height:24px;min-width:50px;background:inherit;border:0;color:#1e1e1e;box-shadow:none}@media (min-width:600px){.components-form-token-field__input-container input[type=text].components-form-token-field__input{font-size:13px}}.components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input,.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus{outline:none;box-shadow:none}.components-form-token-field__input-container .components-form-token-field__token+input[type=text].components-form-token-field__input{width:auto}.components-form-token-field__label{display:inline-block;margin-bottom:8px}.components-form-token-field__help{font-size:12px;font-style:normal;color:#757575}.components-form-token-field__token{font-size:13px;display:flex;margin:2px 0 2px 4px;color:#1e1e1e;max-width:100%}.components-form-token-field__token.is-success .components-form-token-field__remove-token,.components-form-token-field__token.is-success .components-form-token-field__token-text{background:#4ab866}.components-form-token-field__token.is-error .components-form-token-field__remove-token,.components-form-token-field__token.is-error .components-form-token-field__token-text{background:#cc1818}.components-form-token-field__token.is-validating .components-form-token-field__remove-token,.components-form-token-field__token.is-validating .components-form-token-field__token-text{color:#757575}.components-form-token-field__token.is-borderless{position:relative;padding:0 0 0 16px}.components-form-token-field__token.is-borderless .components-form-token-field__token-text{background:transparent;color:var(--wp-admin-theme-color)}.components-form-token-field__token.is-borderless .components-form-token-field__remove-token{background:transparent;color:#757575;position:absolute;top:1px;left:0}.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text{color:#4ab866}.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text{color:#cc1818;border-radius:0 4px 4px 0;padding:0 6px 0 4px}.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text{color:#1e1e1e}.components-form-token-field__token.is-disabled .components-form-token-field__remove-token{cursor:default}.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{display:inline-block;line-height:24px;height:auto;background:#ddd;min-width:unset;transition:all .2s cubic-bezier(.4,1,.4,1)}@media (prefers-reduced-motion:reduce){.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{transition-duration:0s;transition-delay:0s;animation-duration:1ms;animation-delay:0s}}.components-form-token-field__token-text{border-radius:0 2px 2px 0;padding:0 8px 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.components-form-token-field__remove-token.components-button{cursor:pointer;border-radius:2px 0 0 2px;padding:0 2px;color:#1e1e1e;line-height:10px;overflow:initial}.components-form-token-field__remove-token.components-button:hover{color:#1e1e1e}.components-form-token-field__suggestions-list{flex:1 0 100%;min-width:100%;max-height:9em;overflow-y:auto;transition:all .15s ease-in-out;list-style:none;border-top:1px solid #757575;margin:4px -4px -4px;padding:0}@media (prefers-reduced-motion:reduce){.components-form-token-field__suggestions-list{transition-duration:0s;transition-delay:0s}}.components-form-token-field__suggestion{color:#757575;display:block;font-size:13px;padding:4px 8px;margin:0;cursor:pointer}.components-form-token-field__suggestion.is-selected{background:var(--wp-admin-theme-color);color:#fff}.components-form-token-field__suggestion-match{text-decoration:underline}@media (min-width:600px){.components-guide{width:600px}}.components-guide .components-modal__content{padding:0;margin-top:0;border-radius:2px}.components-guide .components-modal__content:before{content:none}.components-guide .components-modal__header{border-bottom:none;padding:0;position:sticky}.components-guide .components-modal__header .components-button{align-self:flex-start;margin:8px 0 0 8px;position:static}.components-guide .components-modal__header .components-button:hover svg{fill:#fff}.components-guide__container{display:flex;flex-direction:column;justify-content:space-between;margin-top:-60px;min-height:100%}.components-guide__page{display:flex;flex-direction:column;justify-content:center;position:relative}@media (min-width:600px){.components-guide__page{min-height:300px}}.components-guide__footer{align-content:center;display:flex;height:30px;justify-content:center;margin:0 0 24px;padding:0 32px;position:relative;width:100%}.components-guide__page-control{margin:0;text-align:center}.components-guide__page-control li{display:inline-block;margin:0}.components-guide__page-control .components-button{height:30px;min-width:20px;margin:-6px 0}.components-modal__frame.components-guide{border:none;min-width:312px;height:80vh;max-height:575px}@media (max-width:600px){.components-modal__frame.components-guide{margin:auto;max-width:calc(100vw - 32px)}}.components-button.components-guide__back-button,.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{height:30px;position:absolute}.components-button.components-guide__back-button,.components-button.components-guide__forward-button{font-size:13px;padding:4px 2px}.components-button.components-guide__back-button.has-text svg,.components-button.components-guide__forward-button.has-text svg{margin:0}.components-button.components-guide__back-button:hover,.components-button.components-guide__forward-button:hover{text-decoration:underline}.components-button.components-guide__back-button{right:32px}.components-button.components-guide__forward-button{left:32px;color:#1386bf;font-weight:700}.components-button.components-guide__finish-button{left:32px}[role=region]{position:relative}.is-focusing-regions [role=region]:focus:after{content:"";position:absolute;top:0;bottom:0;right:0;left:0;pointer-events:none;outline:4px solid transparent;box-shadow:inset 0 0 0 4px var(--wp-admin-theme-color)}@supports (outline-offset:1px){.is-focusing-regions [role=region]:focus:after{content:none}.is-focusing-regions [role=region]:focus{outline-style:solid;outline-color:var(--wp-admin-theme-color);outline-width:4px;outline-offset:-4px}}.components-menu-group+.components-menu-group{margin-top:8px;padding-top:8px;border-top:1px solid #1e1e1e}.components-menu-group+.components-menu-group.has-hidden-separator{border-top:none;margin-top:0;padding-top:0}.components-menu-group__label{padding:0 8px;margin-top:4px;margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500;white-space:nowrap}.components-menu-item__button,.components-menu-item__button.components-button{width:100%}.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child{padding-left:48px}.components-menu-item__button.components-button .components-menu-items__item-icon,.components-menu-item__button .components-menu-items__item-icon{display:inline-block;flex:0 0 auto}.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right,.components-menu-item__button .components-menu-items__item-icon.has-icon-right{margin-left:-2px;margin-right:24px}.components-menu-item__button.components-button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right,.components-menu-item__button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right{margin-right:8px}.components-menu-item__button .block-editor-block-icon,.components-menu-item__button.components-button .block-editor-block-icon{margin-right:-2px;margin-left:8px}.components-menu-item__button.components-button.is-primary,.components-menu-item__button.is-primary{justify-content:center}.components-menu-item__button.components-button.is-primary .components-menu-item__item,.components-menu-item__button.is-primary .components-menu-item__item{margin-left:0}.components-menu-item__info-wrapper{display:flex;flex-direction:column;margin-left:auto}.components-menu-item__info{margin-top:4px;font-size:12px;color:#757575;white-space:normal}.components-menu-item__item{white-space:nowrap;min-width:160px;margin-left:auto;display:inline-flex;align-items:center}.components-menu-item__shortcut{align-self:center;margin-left:0;margin-right:auto;padding-right:24px;color:currentColor;display:none}@media (min-width:480px){.components-menu-item__shortcut{display:inline}}.components-menu-items-choice.components-button svg,.components-menu-items-choice svg{margin-left:12px}.components-menu-items-choice.components-button.has-icon,.components-menu-items-choice.has-icon{padding-right:12px}.components-modal__screen-overlay{position:fixed;top:0;left:0;bottom:0;right:0;background-color:rgba(0,0,0,.35);z-index:100000;display:flex;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-modal__screen-overlay{animation-duration:1ms;animation-delay:0s}}.components-modal__frame{margin:0;width:100%;background:#fff;box-shadow:0 10px 10px rgba(0,0,0,.25);border-radius:2px;overflow:hidden;display:flex}@media (min-width:600px){.components-modal__frame{margin:auto;width:auto;min-width:360px;max-width:calc(100% - 32px);max-height:calc(100% - 120px);animation:components-modal__appear-animation .1s ease-out;animation-fill-mode:forwards}}@media (min-width:600px) and (prefers-reduced-motion:reduce){.components-modal__frame{animation-duration:1ms;animation-delay:0s}}@media (min-width:600px){.components-modal__frame.is-full-screen{width:90vw;min-height:90vh}}@media (min-width:960px){.components-modal__frame{max-height:70%}}@keyframes components-modal__appear-animation{0%{transform:translateY(32px)}to{transform:translateY(0)}}.components-modal__header{box-sizing:border-box;border-bottom:1px solid #ddd;padding:0 32px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:60px;width:100%;z-index:10;position:absolute;top:0;right:0}.components-modal__header .components-modal__header-heading{font-size:1rem;font-weight:600}.components-modal__header h1{line-height:1;margin:0}.components-modal__header .components-button{position:relative;right:8px}.components-modal__header-heading-container{align-items:center;flex-grow:1;display:flex;flex-direction:row;justify-content:left}.components-modal__header-icon-container{display:inline-block}.components-modal__header-icon-container svg{max-width:36px;max-height:36px;padding:8px}.components-modal__content{flex:1;margin-top:60px;padding:0 32px 24px;overflow:auto}.components-modal__content:before{content:"";display:block;margin-bottom:24px}.components-modal__content.hide-header{margin-top:0;padding-top:24px}.components-modal__content.hide-header:before{content:none}.components-notice{display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;background-color:#fff;border-right:4px solid var(--wp-admin-theme-color);margin:5px 15px 2px;padding:8px 12px;align-items:center}.components-notice.is-dismissible{padding-left:36px;position:relative}.components-notice.is-success{border-right-color:#4ab866;background-color:#eff9f1}.components-notice.is-warning{border-right-color:#f0b849;background-color:#fef8ee}.components-notice.is-error{border-right-color:#cc1818;background-color:#f4a2a2}.components-notice__content{flex-grow:1;margin:4px 0 4px 25px}.components-notice__actions{display:flex;flex-wrap:wrap}.components-notice__action.components-button{margin-left:8px}.components-notice__action.components-button,.components-notice__action.components-button.is-link{margin-right:12px}.components-notice__action.components-button.is-secondary{vertical-align:initial}.components-notice__dismiss{color:#757575;align-self:flex-start;flex-shrink:0}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{color:#1e1e1e;background-color:transparent}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{box-shadow:none}.components-notice-list{max-width:100vw;box-sizing:border-box}.components-notice-list .components-notice__content{margin-top:12px;margin-bottom:12px;line-height:2}.components-notice-list .components-notice__action.components-button{display:block;margin-right:0;margin-top:8px}.components-panel{background:#fff;border:1px solid #e0e0e0}.components-panel>.components-panel__body:first-child,.components-panel>.components-panel__header:first-child{margin-top:-1px}.components-panel>.components-panel__body:last-child,.components-panel>.components-panel__header:last-child{border-bottom-width:0}.components-panel+.components-panel{margin-top:-1px}.components-panel__body{border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.components-panel__body h3{margin:0 0 .5em}.components-panel__body.is-opened{padding:16px}.components-panel__header{display:flex;justify-content:space-between;align-items:center;padding:0 16px;height:48px;border-bottom:1px solid #ddd}.components-panel__header h2{margin:0;font-size:inherit;color:inherit}.components-panel__body+.components-panel__body,.components-panel__body+.components-panel__header,.components-panel__header+.components-panel__body,.components-panel__header+.components-panel__header{margin-top:-1px}.components-panel__body>.components-panel__body-title{display:block;padding:0;font-size:inherit;margin-top:0;margin-bottom:0;transition:background .1s ease-in-out}@media (prefers-reduced-motion:reduce){.components-panel__body>.components-panel__body-title{transition-duration:0s;transition-delay:0s}}.components-panel__body.is-opened>.components-panel__body-title{margin:-16px -16px 5px}.components-panel__body>.components-panel__body-title:hover{background:#f0f0f0;border:none}.components-panel__body-toggle.components-button{position:relative;padding:16px 16px 16px 48px;outline:none;width:100%;font-weight:500;text-align:right;color:#1e1e1e;border:none;box-shadow:none;transition:background .1s ease-in-out;height:auto}@media (prefers-reduced-motion:reduce){.components-panel__body-toggle.components-button{transition-duration:0s;transition-delay:0s}}.components-panel__body-toggle.components-button:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:0}.components-panel__body-toggle.components-button .components-panel__arrow{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:#1e1e1e;fill:currentColor;transition:color .1s ease-in-out}@media (prefers-reduced-motion:reduce){.components-panel__body-toggle.components-button .components-panel__arrow{transition-duration:0s;transition-delay:0s}}body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right{transform:scaleX(-1);-ms-filter:fliph;filter:FlipH;margin-top:-10px}.components-panel__icon{color:#757575;margin:-2px 6px -2px 0}.components-panel__body-toggle-icon{margin-left:-5px}.components-panel__color-title{float:right;height:19px}.components-panel__row{display:flex;justify-content:space-between;align-items:center;margin-top:8px;min-height:36px}.components-panel__row select{min-width:0}.components-panel__row label{margin-left:12px;flex-shrink:0;max-width:75%}.components-panel__row:empty,.components-panel__row:first-of-type{margin-top:0}.components-panel .circle-picker{padding-bottom:20px}.components-placeholder.components-placeholder{box-sizing:border-box;position:relative;padding:1em;min-height:200px;width:100%;text-align:right;margin:0;color:#1e1e1e;-moz-font-smoothing:subpixel-antialiased;-webkit-font-smoothing:subpixel-antialiased;border-radius:2px;background-color:#fff;box-shadow:inset 0 0 0 1px #1e1e1e;outline:1px solid transparent}@supports (position:sticky){.components-placeholder.components-placeholder{display:flex;flex-direction:column;justify-content:center;align-items:flex-start}}.components-placeholder.components-placeholder .components-base-control__label{font-size:13px}.components-placeholder__error,.components-placeholder__fieldset,.components-placeholder__instructions,.components-placeholder__label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-placeholder__label{display:flex;font-weight:600;margin-bottom:16px;align-items:center}.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{margin-left:1ch;fill:currentColor}@media (forced-colors:active){.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{fill:CanvasText}}.components-placeholder__label:empty{display:none}.components-placeholder__fieldset,.components-placeholder__fieldset form{display:flex;flex-direction:row;width:100%;flex-wrap:wrap}.components-placeholder__fieldset form p,.components-placeholder__fieldset p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-placeholder__fieldset.components-placeholder__fieldset{border:none;padding:0}.components-placeholder__fieldset.components-placeholder__fieldset .components-placeholder__instructions{padding:0;font-weight:400;font-size:1em}.components-placeholder__fieldset.is-column-layout,.components-placeholder__fieldset.is-column-layout form{flex-direction:column}.components-placeholder__input[type=url]{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;margin:0 0 0 8px;flex:1 1 auto}@media (prefers-reduced-motion:reduce){.components-placeholder__input[type=url]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-placeholder__input[type=url]{font-size:13px;line-height:normal}}.components-placeholder__input[type=url]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-placeholder__input[type=url]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-placeholder__input[type=url]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-placeholder__input[type=url]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-placeholder__instructions{margin-bottom:1em}.components-placeholder__error{margin-top:1em;width:100%}.components-placeholder__preview img{margin:3%;width:50%}.components-placeholder__fieldset .components-button{margin-left:12px;margin-bottom:12px}.components-placeholder__fieldset .components-button:last-child{margin-bottom:0;margin-left:0}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link{margin-right:10px;margin-left:10px}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link:last-child{margin-left:0}.components-placeholder.is-large .components-placeholder__label{font-size:18pt;font-weight:400}.components-placeholder.is-medium .components-placeholder__instructions,.components-placeholder.is-small .components-placeholder__instructions{display:none}.components-placeholder.is-medium .components-placeholder__fieldset,.components-placeholder.is-medium .components-placeholder__fieldset form,.components-placeholder.is-small .components-placeholder__fieldset,.components-placeholder.is-small .components-placeholder__fieldset form{flex-direction:column}.components-placeholder.is-medium .components-placeholder__fieldset .components-button,.components-placeholder.is-small .components-placeholder__fieldset .components-button{margin-left:auto}.components-placeholder.is-small .components-button{padding:0 8px 2px}.components-popover{position:fixed;z-index:1000000;top:0;left:0;opacity:0}.components-popover.is-expanded,.components-popover[data-x-axis][data-y-axis]{opacity:1}.components-popover.is-expanded{top:0;left:0;right:0;bottom:0;z-index:1000000!important}.components-popover:not(.is-without-arrow){margin-left:2px}.components-popover:not(.is-without-arrow):before{border:8px solid #ccc}.components-popover:not(.is-without-arrow).is-alternate:before{border-color:#1e1e1e}.components-popover:not(.is-without-arrow):after{border:8px solid #fff}.components-popover:not(.is-without-arrow):after,.components-popover:not(.is-without-arrow):before{content:"";position:absolute;height:0;width:0;line-height:0}.components-popover:not(.is-without-arrow)[data-y-axis=top]{margin-top:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=top]:before{bottom:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=top]:after{bottom:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=top]:after,.components-popover:not(.is-without-arrow)[data-y-axis=top]:before{border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-style:solid;margin-left:-10px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]{margin-top:8px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:before{top:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:after{top:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:after,.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]{margin-left:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:before{right:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:after{right:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:after,.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:before{border-bottom-color:transparent;border-left-style:solid;border-right:none;border-top-color:transparent}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]{margin-left:8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:before{left:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:after{left:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:after,.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:before{border-bottom-color:transparent;border-left:none;border-right-style:solid;border-top-color:transparent}.components-popover[data-y-axis=top]{bottom:100%}.components-popover[data-y-axis=bottom]{top:100%}.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%;background:#fff;border:1px solid #ccc;box-shadow:0 2px 6px rgba(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;overflow-y:auto}.components-popover.is-expanded .components-popover__content{position:static;height:calc(100% - 48px);overflow-y:visible;min-width:auto;border:none;border-top:1px solid #1e1e1e}.components-popover[data-y-axis=top] .components-popover__content{bottom:100%}.components-popover[data-x-axis=center] .components-popover__content{left:50%;transform:translateX(-50%)}.components-popover[data-x-axis=right] .components-popover__content{position:absolute;left:100%}.components-popover:not([data-y-axis=middle])[data-x-axis=right] .components-popover__content{margin-left:-25px}.components-popover[data-x-axis=left] .components-popover__content{position:absolute;right:100%}.components-popover:not([data-y-axis=middle])[data-x-axis=left] .components-popover__content{margin-right:-25px}.components-popover__header{align-items:center;background:#fff;display:flex;height:48px;justify-content:space-between;padding:0 8px 0 16px}.components-popover__header-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.components-popover__close.components-button{z-index:5}.components-radio-control{display:flex;flex-direction:column}.components-radio-control .components-base-control__help{margin-top:0}.components-radio-control .components-base-control__field{margin-bottom:0}.components-radio-control__option:not(:last-child){margin-bottom:4px}.components-radio-control__input[type=radio]{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 .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:50%;width:24px;height:24px;margin-top:0;margin-left:6px}@media (prefers-reduced-motion:reduce){.components-radio-control__input[type=radio]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-radio-control__input[type=radio]{font-size:13px;line-height:normal}}.components-radio-control__input[type=radio]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.components-radio-control__input[type=radio]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-radio-control__input[type=radio]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-radio-control__input[type=radio]:-ms-input-placeholder{color:rgba(30,30,30,.62)}@media (min-width:600px){.components-radio-control__input[type=radio]{height:20px;width:20px}}.components-radio-control__input[type=radio]:checked:before{box-sizing:inherit;width:8px;height:8px;transform:translate(-7px,7px);margin:0;background-color:#fff;border:4px solid #fff}@media (min-width:600px){.components-radio-control__input[type=radio]:checked:before{transform:translate(-5px,5px)}}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.components-radio-control__input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-resizable-box__handle{display:none;width:23px;height:23px;z-index:2}.components-resizable-box__container.has-show-handle .components-resizable-box__handle{display:block}.components-resizable-box__container>img{width:inherit}.components-resizable-box__handle:after{display:block;content:"";width:15px;height:15px;border-radius:50%;background:#fff;cursor:inherit;position:absolute;top:calc(50% - 8px);left:calc(50% - 8px);box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.components-resizable-box__side-handle:before{display:block;border-radius:2px;content:"";width:3px;height:3px;background:var(--wp-admin-theme-color);cursor:inherit;position:absolute;top:calc(50% - 1px);left:calc(50% - 1px);transition:transform .1s ease-in;opacity:0}@media (prefers-reduced-motion:reduce){.components-resizable-box__side-handle:before{transition-duration:0s;transition-delay:0s}}.components-resizable-box__corner-handle,.components-resizable-box__side-handle{z-index:2}.components-resizable-box__side-handle.components-resizable-box__handle-bottom,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:before,.components-resizable-box__side-handle.components-resizable-box__handle-top,.components-resizable-box__side-handle.components-resizable-box__handle-top:before{width:100%;right:0;border-right:0;border-left:0}.components-resizable-box__side-handle.components-resizable-box__handle-left,.components-resizable-box__side-handle.components-resizable-box__handle-left:before,.components-resizable-box__side-handle.components-resizable-box__handle-right,.components-resizable-box__side-handle.components-resizable-box__handle-right:before{height:100%;top:0;border-top:0;border-bottom:0}.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:components-resizable-box__top-bottom-animation .1s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation-duration:1ms;animation-delay:0s}}.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before{animation:components-resizable-box__left-right-animation .1s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before{animation-duration:1ms;animation-delay:0s}}@media not all and (-webkit-min-device-pixel-ratio:0),not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:none}}}@keyframes components-resizable-box__top-bottom-animation{0%{transform:scaleX(0);opacity:0}to{transform:scaleX(1);opacity:1}}@keyframes components-resizable-box__left-right-animation{0%{transform:scaleY(0);opacity:0}to{transform:scaleY(1);opacity:1}}.components-resizable-box__handle-right{right:-11.5px}.components-resizable-box__handle-left{left:-11.5px}.components-resizable-box__handle-top{top:-11.5px}.components-resizable-box__handle-bottom{bottom:-11.5px}.components-responsive-wrapper{position:relative;max-width:100%}.components-responsive-wrapper,.components-responsive-wrapper>span{display:block}.components-responsive-wrapper__content{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;margin:auto}.components-sandbox{overflow:hidden}iframe.components-sandbox{width:100%}body.lockscroll,html.lockscroll{overflow:hidden}.components-search-control{position:relative}.components-search-control input[type=search].components-search-control__input{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;line-height:normal;display:block;padding:16px 16px 16px 48px;background:#f0f0f0;border:none;width:100%;height:48px;font-size:16px}@media (prefers-reduced-motion:reduce){.components-search-control input[type=search].components-search-control__input{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-search-control input[type=search].components-search-control__input{font-size:13px;line-height:normal}}.components-search-control input[type=search].components-search-control__input:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-search-control input[type=search].components-search-control__input::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-search-control input[type=search].components-search-control__input::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-search-control input[type=search].components-search-control__input:-ms-input-placeholder{color:rgba(30,30,30,.62)}@media (min-width:600px){.components-search-control input[type=search].components-search-control__input{font-size:13px}}.components-search-control input[type=search].components-search-control__input:focus{background:#fff;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-search-control input[type=search].components-search-control__input::placeholder{color:#757575}.components-search-control input[type=search].components-search-control__input::-webkit-search-cancel-button,.components-search-control input[type=search].components-search-control__input::-webkit-search-decoration,.components-search-control input[type=search].components-search-control__input::-webkit-search-results-button,.components-search-control input[type=search].components-search-control__input::-webkit-search-results-decoration{-webkit-appearance:none}.components-search-control__icon{position:absolute;top:0;left:12px;bottom:0;display:flex;align-items:center}.components-search-control__icon>svg{margin:8px 0}.components-search-control__input-wrapper{position:relative}.components-select-control__input{background:#fff;height:36px;line-height:36px;margin:1px;outline:0;width:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)!important}@media (min-width:782px){.components-select-control__input{height:28px;line-height:28px}}@media (max-width:782px){.components-base-control .components-base-control__field .components-select-control__input{font-size:16px}}.components-snackbar{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;background-color:#1e1e1e;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.3);color:#fff;padding:16px 24px;width:100%;max-width:600px;box-sizing:border-box;cursor:pointer;pointer-events:auto}@media (min-width:600px){.components-snackbar{width:-moz-fit-content;width:fit-content}}.components-snackbar:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color)}.components-snackbar.components-snackbar-explicit-dismiss{cursor:default}.components-snackbar .components-snackbar__content-with-icon{margin-right:24px}.components-snackbar .components-snackbar__icon{position:absolute;top:24px;right:28px}.components-snackbar .components-snackbar__dismiss-button{margin-right:32px;cursor:pointer}.components-snackbar__action.components-button{margin-right:32px;color:#fff;height:auto;flex-shrink:0;line-height:1.4;padding:0}.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary){text-decoration:underline;background-color:transparent}.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):focus{color:#fff;box-shadow:none;outline:1px dotted #fff}.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{color:var(--wp-admin-theme-color)}.components-snackbar__content{display:flex;align-items:baseline;justify-content:space-between;line-height:1.4}.components-snackbar-list{position:absolute;z-index:100000;width:100%;box-sizing:border-box;pointer-events:none}.components-snackbar-list__notice-container{position:relative;padding-top:8px}.components-swatch{width:18px;height:18px;border-radius:50%;color:transparent;background:transparent}.components-swatch:after{content:"";display:block;width:100%;height:100%;border:1px solid rgba(0,0,0,.2);border-radius:50%}.components-button.has-icon.has-text .components-swatch{margin-left:8px}.components-tab-panel__tabs{display:flex;align-items:stretch;flex-direction:row}.components-tab-panel__tabs[aria-orientation=vertical]{flex-direction:column}.components-tab-panel__tabs-item{background:transparent;border:none;box-shadow:none;border-radius:0;cursor:pointer;height:48px;padding:3px 16px;margin-right:0;font-weight:500;transition:box-shadow .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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-tab-panel__tabs-item.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative}.components-tab-panel__tabs-item.is-active:before{content:"";position:absolute;top:0;bottom:1px;left:0;right:0;border-bottom:4px solid transparent}.components-tab-panel__tabs-item:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-tab-panel__tabs-item.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{width:100%;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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal}@media (prefers-reduced-motion:reduce){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{font-size:13px;line-height:normal}}.components-text-control__input:focus,.components-text-control__input[type=color]:focus,.components-text-control__input[type=date]:focus,.components-text-control__input[type=datetime-local]:focus,.components-text-control__input[type=datetime]:focus,.components-text-control__input[type=email]:focus,.components-text-control__input[type=month]:focus,.components-text-control__input[type=number]:focus,.components-text-control__input[type=password]:focus,.components-text-control__input[type=tel]:focus,.components-text-control__input[type=text]:focus,.components-text-control__input[type=time]:focus,.components-text-control__input[type=url]:focus,.components-text-control__input[type=week]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-text-control__input::-webkit-input-placeholder,.components-text-control__input[type=color]::-webkit-input-placeholder,.components-text-control__input[type=date]::-webkit-input-placeholder,.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,.components-text-control__input[type=datetime]::-webkit-input-placeholder,.components-text-control__input[type=email]::-webkit-input-placeholder,.components-text-control__input[type=month]::-webkit-input-placeholder,.components-text-control__input[type=number]::-webkit-input-placeholder,.components-text-control__input[type=password]::-webkit-input-placeholder,.components-text-control__input[type=tel]::-webkit-input-placeholder,.components-text-control__input[type=text]::-webkit-input-placeholder,.components-text-control__input[type=time]::-webkit-input-placeholder,.components-text-control__input[type=url]::-webkit-input-placeholder,.components-text-control__input[type=week]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-text-control__input::-moz-placeholder,.components-text-control__input[type=color]::-moz-placeholder,.components-text-control__input[type=date]::-moz-placeholder,.components-text-control__input[type=datetime-local]::-moz-placeholder,.components-text-control__input[type=datetime]::-moz-placeholder,.components-text-control__input[type=email]::-moz-placeholder,.components-text-control__input[type=month]::-moz-placeholder,.components-text-control__input[type=number]::-moz-placeholder,.components-text-control__input[type=password]::-moz-placeholder,.components-text-control__input[type=tel]::-moz-placeholder,.components-text-control__input[type=text]::-moz-placeholder,.components-text-control__input[type=time]::-moz-placeholder,.components-text-control__input[type=url]::-moz-placeholder,.components-text-control__input[type=week]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-text-control__input:-ms-input-placeholder,.components-text-control__input[type=color]:-ms-input-placeholder,.components-text-control__input[type=date]:-ms-input-placeholder,.components-text-control__input[type=datetime-local]:-ms-input-placeholder,.components-text-control__input[type=datetime]:-ms-input-placeholder,.components-text-control__input[type=email]:-ms-input-placeholder,.components-text-control__input[type=month]:-ms-input-placeholder,.components-text-control__input[type=number]:-ms-input-placeholder,.components-text-control__input[type=password]:-ms-input-placeholder,.components-text-control__input[type=tel]:-ms-input-placeholder,.components-text-control__input[type=text]:-ms-input-placeholder,.components-text-control__input[type=time]:-ms-input-placeholder,.components-text-control__input[type=url]:-ms-input-placeholder,.components-text-control__input[type=week]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-tip{display:flex;color:#757575}.components-tip svg{align-self:center;fill:#f0b849;flex-shrink:0;margin-left:16px}.components-tip p{margin:0}.components-toggle-control .components-base-control__field{display:flex;margin-bottom:12px;line-height:normal;align-items:center}.components-toggle-control .components-base-control__field .components-form-toggle{margin-left:12px}.components-toggle-control .components-base-control__field .components-toggle-control__label{display:block}.components-accessible-toolbar{display:inline-flex;border:1px solid #1e1e1e;border-radius:2px;flex-shrink:0}.components-accessible-toolbar>.components-toolbar-group:last-child{border-left:none}.components-accessible-toolbar .components-button,.components-toolbar .components-button{position:relative;height:48px;z-index:1;padding-right:16px;padding-left: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;right:8px;left:8px;z-index:-1;animation:components-button__appear-animation .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;animation-delay:0s}}.components-accessible-toolbar .components-button svg,.components-toolbar .components-button svg{position:relative;margin-right:auto;margin-left:auto}.components-accessible-toolbar .components-button.is-pressed,.components-accessible-toolbar .components-button.is-pressed:hover,.components-toolbar .components-button.is-pressed,.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 4px #fff;outline:2px solid transparent}.components-accessible-toolbar .components-button.has-icon.has-icon,.components-toolbar .components-button.has-icon.has-icon{padding-right:12px;padding-left:12px;min-width:48px}.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-right:0;padding-left:0;position:relative}@keyframes components-button__appear-animation{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.components-toolbar__control.components-button{position:relative}.components-toolbar__control.components-button[data-subscript] svg{padding:5px 0 5px 10px}.components-toolbar__control.components-button[data-subscript]:after{content:attr(data-subscript);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;line-height:12px;position:absolute;left:8px;bottom:10px}.components-toolbar__control.components-button:active:before{display:none}.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]:after{color:#fff}.components-toolbar-group{min-height:48px;border-left:1px solid #1e1e1e;background-color:#fff;display:inline-flex;flex-shrink:0;flex-wrap:wrap;line-height:0}.components-toolbar-group .components-toolbar-group.components-toolbar-group{border-width:0;margin:0}.components-toolbar{min-height:48px;margin:0;border:1px solid #1e1e1e;background-color:#fff;display:inline-flex;flex-shrink:0;flex-wrap:wrap}.components-toolbar .components-toolbar.components-toolbar{border-width:0;margin:0}div.components-toolbar>div{display:block;margin:0}@supports (position:sticky){div.components-toolbar>div{display:flex}}div.components-toolbar>div+div.has-left-divider{margin-right:6px;position:relative;overflow:visible}div.components-toolbar>div+div.has-left-divider:before{display:inline-block;content:"";box-sizing:content-box;background-color:#ddd;position:absolute;top:8px;right:-3px;width:1px;height:20px}.components-tooltip.components-popover{z-index:1000002}.components-tooltip.components-popover .components-popover__content{min-width:0}.components-tooltip .components-popover__content{background:#1e1e1e;border-radius:2px;border-width:0;color:#fff;white-space:nowrap;text-align:center;line-height:1.4;font-size:12px;box-shadow:none}.components-tooltip .components-popover__content>div{padding:4px 8px}.components-tooltip__shortcut{display:inline-block;margin-right:8px}.disabled-element-wrapper{position:relative}.disabled-element-wrapper .event-catcher{z-index:100002;position:absolute;width:100%;height:100%;top:0;right:0;bottom:0;left:0}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/components/style.css b/static/wp-includes/css/dist/components/style.css
new file mode 100755
index 0000000..cde5de5
--- /dev/null
+++ b/static/wp-includes/css/dist/components/style.css
@@ -0,0 +1,4827 @@
+@charset "UTF-8";
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.components-animate__appear {
+ animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-animate__appear {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {
+ transform-origin: top left;
+}
+.components-animate__appear.is-from-top.is-from-right {
+ transform-origin: top right;
+}
+.components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {
+ transform-origin: bottom left;
+}
+.components-animate__appear.is-from-bottom.is-from-right {
+ transform-origin: bottom right;
+}
+
+@keyframes components-animate__appear-animation {
+ from {
+ transform: translateY(-2em) scaleY(0) scaleX(0);
+ }
+ to {
+ transform: translateY(0%) scaleY(1) scaleX(1);
+ }
+}
+.components-animate__slide-in {
+ animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-animate__slide-in {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+.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% {
+ transform: translateX(0%);
+ }
+}
+.components-animate__loading {
+ animation: components-animate__loading 1.6s ease-in-out infinite;
+}
+
+@keyframes components-animate__loading {
+ 0% {
+ opacity: 0.5;
+ }
+ 50% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0.5;
+ }
+}
+.components-autocomplete__popover .components-popover__content > div {
+ padding: 16px;
+ min-width: 220px;
+}
+
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.components-button-group {
+ display: inline-block;
+}
+.components-button-group .components-button {
+ border-radius: 0;
+ display: inline-flex;
+ color: #1e1e1e;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+}
+.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: inset 0 0 0 1px #1e1e1e;
+}
+
+.components-button {
+ display: inline-flex;
+ text-decoration: none;
+ font-family: inherit;
+ font-weight: normal;
+ font-size: 13px;
+ margin: 0;
+ border: 0;
+ cursor: pointer;
+ -webkit-appearance: none;
+ background: none;
+ transition: box-shadow 0.1s linear;
+ height: 36px;
+ align-items: center;
+ box-sizing: border-box;
+ padding: 6px 12px;
+ border-radius: 2px;
+ color: #1e1e1e;
+ /**
+ * Primary button style.
+ */
+ /**
+ * Secondary and tertiary buttons.
+ */
+ /**
+ * Secondary button style.
+ */
+ /**
+ * Tertiary buttons.
+ */
+ /**
+ * Destructive buttons.
+ */
+ /**
+ * Link buttons.
+ */
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-button[aria-expanded=true], .components-button:hover {
+ color: var(--wp-admin-theme-color);
+}
+.components-button[aria-disabled=true]:hover {
+ color: initial;
+}
+.components-button:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 3px solid transparent;
+}
+.components-button.is-primary {
+ white-space: nowrap;
+ background: var(--wp-admin-theme-color);
+ color: #fff;
+ text-decoration: none;
+ text-shadow: none;
+ outline: 1px solid transparent;
+}
+.components-button.is-primary:hover:not(:disabled) {
+ background: var(--wp-admin-theme-color-darker-10);
+ color: #fff;
+}
+.components-button.is-primary:active:not(:disabled) {
+ background: var(--wp-admin-theme-color-darker-20);
+ border-color: var(--wp-admin-theme-color-darker-20);
+ color: #fff;
+}
+.components-button.is-primary:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.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: rgba(255, 255, 255, 0.4);
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+ opacity: 1;
+ outline: none;
+}
+.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 {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
+}
+.components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled=true] {
+ color: #fff;
+ background-size: 100px 100%;
+ /* stylelint-disable */
+ background-image: linear-gradient(-45deg, var(--wp-admin-theme-color) 33%, var(--wp-admin-theme-color-darker-20) 33%, var(--wp-admin-theme-color-darker-20) 70%, var(--wp-admin-theme-color) 70%);
+ /* stylelint-enable */
+ border-color: var(--wp-admin-theme-color);
+}
+.components-button.is-secondary, .components-button.is-tertiary {
+ outline: 1px solid transparent;
+}
+.components-button.is-secondary:active:not(:disabled), .components-button.is-tertiary:active:not(:disabled) {
+ background: #ddd;
+ color: var(--wp-admin-theme-color-darker-10);
+ box-shadow: none;
+}
+.components-button.is-secondary:hover:not(:disabled), .components-button.is-tertiary:hover:not(:disabled) {
+ color: var(--wp-admin-theme-color-darker-10);
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);
+}
+.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 {
+ color: #828282;
+ background: #eaeaea;
+ transform: none;
+ opacity: 1;
+ box-shadow: none;
+ outline: none;
+}
+.components-button.is-secondary {
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 1px solid transparent;
+ white-space: nowrap;
+ color: var(--wp-admin-theme-color);
+ background: transparent;
+}
+.components-button.is-tertiary {
+ white-space: nowrap;
+ color: var(--wp-admin-theme-color);
+ background: transparent;
+ padding: 6px;
+}
+.components-button.is-tertiary .dashicon {
+ display: inline-block;
+ flex: 0 0 auto;
+}
+p + .components-button.is-tertiary {
+ margin-left: -6px;
+}
+.components-button.is-destructive {
+ color: #cc1818;
+ box-shadow: inset 0 0 0 1px #cc1818;
+}
+.components-button.is-destructive:hover:not(:disabled) {
+ color: #710d0d;
+ box-shadow: inset 0 0 0 1px #710d0d;
+}
+.components-button.is-destructive:focus:not(:disabled) {
+ color: var(--wp-admin-theme-color);
+}
+.components-button.is-destructive:active:not(:disabled) {
+ background: #ccc;
+}
+.components-button.is-destructive.is-primary {
+ color: #fff;
+ background: #cc1818;
+ box-shadow: inset 0 0 0 1px #cc1818;
+}
+.components-button.is-destructive.is-primary:hover:not(:disabled) {
+ color: #fff;
+ background: #710d0d;
+ box-shadow: inset 0 0 0 1px #710d0d;
+}
+.components-button.is-destructive.is-tertiary {
+ box-shadow: none;
+}
+.components-button.is-destructive.is-tertiary:hover:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #cc1818;
+ color: #cc1818;
+}
+.components-button.is-destructive.is-tertiary:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) #cc1818;
+ color: #cc1818;
+}
+.components-button.is-link {
+ margin: 0;
+ padding: 0;
+ box-shadow: none;
+ border: 0;
+ border-radius: 0;
+ background: none;
+ outline: none;
+ text-align: left;
+ color: var(--wp-admin-theme-color);
+ text-decoration: underline;
+ transition-property: border, background, color;
+ transition-duration: 0.05s;
+ transition-timing-function: ease-in-out;
+ height: auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-button.is-link {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-button.is-link:focus {
+ border-radius: 2px;
+}
+.components-button.is-link.is-destructive {
+ color: #cc1818;
+}
+.components-button.is-link.is-destructive:active:not(:disabled), .components-button.is-link.is-destructive:hover:not(:disabled) {
+ color: #710d0d;
+ background: none;
+}
+.components-button.is-link.is-destructive:focus:not(:disabled) {
+ color: var(--wp-admin-theme-color);
+}
+.components-button:not([aria-disabled=true]):active {
+ color: inherit;
+}
+.components-button:disabled, .components-button[aria-disabled=true] {
+ cursor: default;
+ 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%;
+ /* stylelint-disable */
+ background-image: linear-gradient(-45deg, #fafafa 33%, #e0e0e0 33%, #e0e0e0 70%, #fafafa 70%);
+ /* stylelint-enable */
+}
+.components-button.is-small {
+ height: 24px;
+ line-height: 22px;
+ padding: 0 8px;
+ font-size: 11px;
+}
+.components-button.is-small.has-icon:not(.has-text) {
+ padding: 0 8px;
+ width: 24px;
+}
+.components-button.has-icon {
+ padding: 6px;
+ min-width: 36px;
+ justify-content: center;
+}
+.components-button.has-icon .dashicon {
+ display: inline-block;
+ flex: 0 0 auto;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+.components-button.has-icon.has-text {
+ justify-content: left;
+}
+.components-button.has-icon.has-text svg {
+ margin-right: 8px;
+}
+.components-button.has-icon.has-text .dashicon {
+ margin-right: 10px;
+}
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-button.is-pressed:hover:not(:disabled) {
+ color: #fff;
+ background: #1e1e1e;
+}
+.components-button svg {
+ fill: currentColor;
+ outline: none;
+}
+@media (forced-colors: active) {
+ .components-button svg {
+ fill: CanvasText;
+ }
+}
+.components-button .components-visually-hidden {
+ height: auto;
+}
+
+@keyframes components-button__busy-animation {
+ 0% {
+ background-position: 200px 0;
+ }
+}
+.components-checkbox-control__input[type=checkbox] {
+ 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;
+ border: 1px solid #1e1e1e;
+ margin-right: 12px;
+ transition: none;
+ border-radius: 2px;
+ background: #fff;
+ color: #1e1e1e;
+ clear: none;
+ cursor: pointer;
+ display: inline-block;
+ line-height: 0;
+ margin: 0 4px 0 0;
+ outline: 0;
+ padding: 0 !important;
+ text-align: center;
+ vertical-align: top;
+ width: 24px;
+ height: 24px;
+ -webkit-appearance: none;
+ appearance: none;
+ transition: 0.1s border-color ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-checkbox-control__input[type=checkbox] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-checkbox-control__input[type=checkbox] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-checkbox-control__input[type=checkbox]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-checkbox-control__input[type=checkbox]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-checkbox-control__input[type=checkbox]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-checkbox-control__input[type=checkbox]:checked {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.components-checkbox-control__input[type=checkbox]:checked::-ms-check {
+ opacity: 0;
+}
+.components-checkbox-control__input[type=checkbox]:checked::before, .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ margin: -3px -5px;
+ color: #fff;
+}
+@media (min-width: 782px) {
+ .components-checkbox-control__input[type=checkbox]:checked::before, .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ margin: -4px 0 0 -5px;
+ }
+}
+.components-checkbox-control__input[type=checkbox][aria-checked=mixed] {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ content: "ï‘ ";
+ 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) {
+ .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
+ float: none;
+ font-size: 21px;
+ }
+}
+@media (min-width: 600px) {
+ .components-checkbox-control__input[type=checkbox] {
+ height: 20px;
+ width: 20px;
+ }
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-checkbox-control__input[type=checkbox] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-checkbox-control__input[type=checkbox]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-checkbox-control__input[type=checkbox]:checked, .components-checkbox-control__input[type=checkbox]:indeterminate {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.components-checkbox-control__input[type=checkbox]:checked::-ms-check, .components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check {
+ opacity: 0;
+}
+.components-checkbox-control__input[type=checkbox]:checked::before {
+ content: none;
+}
+
+.components-checkbox-control__input-container {
+ position: relative;
+ display: inline-block;
+ margin-right: 12px;
+ vertical-align: middle;
+ width: 24px;
+ height: 24px;
+}
+@media (min-width: 600px) {
+ .components-checkbox-control__input-container {
+ width: 20px;
+ height: 20px;
+ }
+}
+
+svg.components-checkbox-control__checked,
+svg.components-checkbox-control__indeterminate {
+ fill: #fff;
+ cursor: pointer;
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 24px;
+ height: 24px;
+ -webkit-user-select: none;
+ user-select: none;
+ pointer-events: none;
+}
+@media (min-width: 600px) {
+ svg.components-checkbox-control__checked,
+svg.components-checkbox-control__indeterminate {
+ left: -2px;
+ top: -2px;
+ }
+}
+
+.components-circular-option-picker {
+ display: inline-block;
+ width: 100%;
+ min-width: 188px;
+}
+.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 12px;
+}
+.components-circular-option-picker .components-circular-option-picker__swatches {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 12px;
+}
+
+.components-circular-option-picker__option-wrapper {
+ display: inline-block;
+ height: 28px;
+ width: 28px;
+ vertical-align: top;
+ transform: scale(1);
+ transition: 100ms transform ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-circular-option-picker__option-wrapper {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-circular-option-picker__option-wrapper:hover {
+ transform: scale(1.2);
+}
+.components-circular-option-picker__option-wrapper > div {
+ height: 100%;
+ width: 100%;
+}
+
+.components-circular-option-picker__option-wrapper::before {
+ content: "";
+ position: absolute;
+ top: 1px;
+ left: 1px;
+ bottom: 1px;
+ right: 1px;
+ border-radius: 50%;
+ z-index: -1;
+ /* stylelint-disable-next-line function-url-quotes */
+ 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');
+}
+
+.components-circular-option-picker__option {
+ display: inline-block;
+ vertical-align: top;
+ height: 100%;
+ width: 100%;
+ border: none;
+ border-radius: 50%;
+ background: transparent;
+ box-shadow: inset 0 0 0 14px;
+ transition: 100ms box-shadow ease;
+ cursor: pointer;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-circular-option-picker__option {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-circular-option-picker__option:hover {
+ box-shadow: inset 0 0 0 14px !important;
+}
+.components-circular-option-picker__option.is-pressed {
+ box-shadow: inset 0 0 0 4px;
+ position: relative;
+ z-index: 1;
+ overflow: visible;
+}
+.components-circular-option-picker__option.is-pressed + svg {
+ position: absolute;
+ left: 2px;
+ top: 2px;
+ border-radius: 50%;
+ z-index: 2;
+ pointer-events: none;
+}
+.components-circular-option-picker__option::after {
+ content: "";
+ position: absolute;
+ top: -1px;
+ left: -1px;
+ bottom: -1px;
+ right: -1px;
+ border-radius: 50%;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ border: 1px solid transparent;
+}
+.components-circular-option-picker__option:focus::after {
+ content: "";
+ border: 2px solid #757575;
+ width: 32px;
+ height: 32px;
+ position: absolute;
+ top: -2px;
+ left: -2px;
+ border-radius: 50%;
+ box-shadow: inset 0 0 0 2px #fff;
+}
+.components-circular-option-picker__option.components-button:focus {
+ background-color: transparent;
+ box-shadow: inset 0 0 0 14px;
+ outline: none;
+}
+
+.components-circular-option-picker__button-action .components-circular-option-picker__option {
+ color: #fff;
+ background: #fff;
+}
+
+.components-circular-option-picker__dropdown-link-action {
+ margin-right: 16px;
+}
+.components-circular-option-picker__dropdown-link-action .components-button {
+ line-height: 22px;
+}
+
+@media (min-width: 782px) {
+ .components-palette-edit__popover.components-popover .components-popover__content.components-popover__content.components-popover__content {
+ margin-right: 156px;
+ margin-top: -49px;
+ }
+}
+.components-palette-edit__popover .components-custom-gradient-picker__gradient-bar {
+ margin-top: 0;
+}
+.components-palette-edit__popover .components-custom-gradient-picker__ui-line {
+ margin-bottom: 0;
+}
+.components-palette-edit__popover .components-custom-gradient-picker {
+ width: 280px;
+ padding: 8px;
+}
+
+.components-dropdown-menu__menu .components-palette-edit__menu-button {
+ width: 100%;
+}
+
+.component-color-indicator {
+ width: 20px;
+ height: 20px;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ border-radius: 50%;
+ display: inline-block;
+ padding: 0;
+}
+
+.components-combobox-control {
+ width: 100%;
+}
+
+input.components-combobox-control__input[type=text] {
+ width: 100%;
+ border: none;
+ box-shadow: none;
+ font-family: inherit;
+ font-size: 16px;
+ padding: 2px;
+ margin: 0;
+ line-height: inherit;
+ min-height: auto;
+}
+@media (min-width: 600px) {
+ input.components-combobox-control__input[type=text] {
+ font-size: 13px;
+ }
+}
+input.components-combobox-control__input[type=text]:focus {
+ outline: none;
+ box-shadow: none;
+}
+
+.components-combobox-control__suggestions-container {
+ 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;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: flex-start;
+ width: 100%;
+ margin: 0 0 8px 0;
+ padding: 4px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-combobox-control__suggestions-container {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-combobox-control__suggestions-container {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-combobox-control__suggestions-container:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-combobox-control__suggestions-container::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-combobox-control__suggestions-container::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-combobox-control__suggestions-container:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-combobox-control__suggestions-container:focus-within {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+
+.components-combobox-control__reset.components-button {
+ display: flex;
+ height: 16px;
+ min-width: 16px;
+ padding: 0;
+}
+
+.components-color-list-picker,
+.components-color-list-picker__swatch-button {
+ width: 100%;
+}
+
+.components-color-list-picker__color-picker {
+ margin: 8px 0;
+}
+
+.components-color-palette__custom-color {
+ position: relative;
+ border: none;
+ background: none;
+ border-radius: 2px;
+ height: 64px;
+ padding: 12px;
+ font-family: inherit;
+ width: 100%;
+ background-image: repeating-linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0), repeating-linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
+ background-position: 0 0, 25px 25px;
+ background-size: calc(2 * 25px) calc(2 * 25px);
+ box-sizing: border-box;
+ color: #fff;
+ cursor: pointer;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
+ outline: 1px solid transparent;
+}
+.components-color-palette__custom-color:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline-width: 2px;
+}
+
+.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content {
+ overflow: visible;
+ box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
+ border: none;
+ border-radius: 2px;
+ max-height: -moz-fit-content !important;
+ max-height: fit-content !important;
+}
+.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content > div {
+ padding: 0;
+}
+.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content .react-colorful__saturation {
+ border-top-right-radius: 2px;
+ border-top-left-radius: 2px;
+}
+
+@media (min-width: 782px) {
+ .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar .components-popover__content.components-popover__content {
+ margin-right: 156px;
+ }
+ .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-top .components-popover__content {
+ margin-top: -60px;
+ }
+ .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-bottom .components-popover__content {
+ margin-bottom: -60px;
+ }
+}
+.components-color-palette__custom-color-name {
+ text-align: left;
+}
+
+.components-color-palette__custom-color-value {
+ margin-left: 16px;
+ text-transform: uppercase;
+}
+
+.components-custom-gradient-picker__gradient-bar:not(.has-gradient) {
+ opacity: 0.4;
+}
+
+.components-custom-gradient-picker__gradient-bar {
+ border-radius: 2px;
+ margin-top: 12px;
+ width: 100%;
+ height: 48px;
+ margin-bottom: 20px;
+ /*rtl:ignore*/
+ padding-right: 16px;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container {
+ position: relative;
+ width: calc(100% - 32px);
+ margin-left: auto;
+ margin-right: auto;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point {
+ border-radius: 50%;
+ background: #fff;
+ padding: 2px;
+ top: 16px;
+ min-width: 16px;
+ width: 16px;
+ height: 16px;
+ position: relative;
+ color: #1e1e1e;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point svg {
+ height: 100%;
+ width: 100%;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {
+ border-radius: 50%;
+ height: 16px;
+ width: 16px;
+ padding: 0;
+ position: absolute;
+ top: 16px;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 2px 0 rgba(0, 0, 0, 0.25);
+ outline: 2px solid transparent;
+}
+.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus, .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active {
+ box-shadow: inset 0 0 0 calc(var(--wp-admin-border-width-focus) * 2) #fff, 0 0 2px 0 rgba(0, 0, 0, 0.25);
+ outline: 4px solid transparent;
+}
+
+.components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point {
+ margin-left: auto;
+ margin-right: auto;
+ display: block;
+ margin-bottom: 8px;
+}
+
+.components-custom-gradient-picker__inserter {
+ /*rtl:ignore*/
+ direction: ltr;
+ width: 100%;
+}
+
+.components-custom-gradient-picker__liner-gradient-indicator {
+ display: inline-block;
+ flex: 0 auto;
+ width: 20px;
+ height: 20px;
+}
+
+.components-custom-gradient-picker .components-custom-gradient-picker__ui-line {
+ margin-bottom: 16px;
+}
+.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-angle-picker,
+.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-custom-gradient-picker__type-picker {
+ margin-bottom: 0;
+}
+
+.components-custom-gradient-picker .components-custom-gradient-picker__toolbar {
+ border: none;
+}
+.components-custom-gradient-picker .components-custom-gradient-picker__toolbar > div + div {
+ margin-left: 1px;
+}
+.components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed > svg {
+ background: #fff;
+ border: 1px solid #949494;
+ border-radius: 2px;
+}
+
+.components-custom-gradient-picker .components-input-control__label {
+ line-height: 1;
+}
+.components-custom-gradient-picker label {
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+}
+
+.components-custom-select-control {
+ position: relative;
+}
+
+.components-custom-select-control__label {
+ display: block;
+ margin-bottom: 8px;
+}
+
+.components-custom-select-control__button {
+ border: 1px solid #757575;
+ border-radius: 2px;
+ min-width: 130px;
+ position: relative;
+ text-align: left;
+}
+.components-custom-select-control__button:not(.is-next-36px-default-size) {
+ min-height: 30px;
+}
+.components-custom-select-control__button.components-custom-select-control__button {
+ padding-left: 16px;
+ padding-right: 32px;
+}
+.components-custom-select-control__button.components-custom-select-control__button:not(.is-next-36px-default-size) {
+ padding-left: 8px;
+ padding-right: 24px;
+}
+.components-custom-select-control__button:focus:not(:disabled) {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+}
+.components-custom-select-control__button .components-custom-select-control__button-icon {
+ height: 100%;
+ padding: 0;
+ position: absolute;
+ right: 8px;
+ top: 0;
+}
+.components-custom-select-control__button .components-custom-select-control__button-icon:not(.is-next-36px-default-size) {
+ right: 4px;
+}
+
+.components-custom-select-control__menu {
+ border: 1px solid #1e1e1e;
+ background-color: #fff;
+ border-radius: 2px;
+ outline: none;
+ transition: none;
+ max-height: 400px;
+ min-width: 100%;
+ overflow: auto;
+ padding: 0;
+ position: absolute;
+ z-index: 1000000;
+}
+.components-custom-select-control__menu[aria-hidden=true] {
+ display: none;
+}
+
+.components-custom-select-control__item {
+ align-items: center;
+ display: grid;
+ grid-template-columns: auto auto;
+ list-style-type: none;
+ padding: 8px 16px;
+ cursor: default;
+ line-height: 28px;
+}
+.components-custom-select-control__item:not(.is-next-36px-default-size) {
+ padding: 8px;
+}
+.components-custom-select-control__item.has-hint {
+ grid-template-columns: auto auto 30px;
+}
+.components-custom-select-control__item.is-highlighted {
+ background: #ddd;
+}
+.components-custom-select-control__item .components-custom-select-control__item-hint {
+ color: #757575;
+ text-align: right;
+ padding-right: 4px;
+}
+.components-custom-select-control__item .components-custom-select-control__item-icon {
+ margin-left: auto;
+}
+.components-custom-select-control__item:last-child {
+ margin-bottom: 0;
+}
+
+/**
+ * Parts of this source were derived and modified from react-dates,
+ * released under the MIT license.
+ *
+ * https://github.com/airbnb/react-dates
+ *
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2016 Airbnb
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+/*rtl:begin:ignore*/
+.PresetDateRangePicker_panel {
+ padding: 0 22px 11px;
+}
+
+.PresetDateRangePicker_button {
+ position: relative;
+ height: 100%;
+ text-align: center;
+ background: 0 0;
+ border: 2px solid #00a699;
+ color: #00a699;
+ padding: 4px 12px;
+ margin-right: 8px;
+ font: inherit;
+ font-weight: 700;
+ line-height: normal;
+ overflow: visible;
+ box-sizing: border-box;
+ cursor: pointer;
+}
+
+.PresetDateRangePicker_button:active {
+ outline: 0;
+}
+
+.PresetDateRangePicker_button__selected {
+ color: #fff;
+ background: #00a699;
+}
+
+.SingleDatePickerInput {
+ display: inline-block;
+ background-color: #fff;
+}
+
+.SingleDatePickerInput__withBorder {
+ border-radius: 2px;
+ border: 1px solid #dbdbdb;
+}
+
+.SingleDatePickerInput__rtl {
+ direction: rtl;
+}
+
+.SingleDatePickerInput__disabled {
+ background-color: #f2f2f2;
+}
+
+.SingleDatePickerInput__block {
+ display: block;
+}
+
+.SingleDatePickerInput__showClearDate {
+ padding-right: 30px;
+}
+
+.SingleDatePickerInput_clearDate {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ padding: 10px;
+ margin: 0 10px 0 5px;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
+.SingleDatePickerInput_clearDate__default:focus,
+.SingleDatePickerInput_clearDate__default:hover {
+ background: #dbdbdb;
+ border-radius: 50%;
+}
+
+.SingleDatePickerInput_clearDate__small {
+ padding: 6px;
+}
+
+.SingleDatePickerInput_clearDate__hide {
+ visibility: hidden;
+}
+
+.SingleDatePickerInput_clearDate_svg {
+ fill: #82888a;
+ height: 12px;
+ width: 15px;
+ vertical-align: middle;
+}
+
+.SingleDatePickerInput_clearDate_svg__small {
+ height: 9px;
+}
+
+.SingleDatePickerInput_calendarIcon {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ display: inline-block;
+ vertical-align: middle;
+ padding: 10px;
+ margin: 0 5px 0 10px;
+}
+
+.SingleDatePickerInput_calendarIcon_svg {
+ fill: #82888a;
+ height: 15px;
+ width: 14px;
+ vertical-align: middle;
+}
+
+.SingleDatePicker {
+ position: relative;
+ display: inline-block;
+}
+
+.SingleDatePicker__block {
+ display: block;
+}
+
+.SingleDatePicker_picker {
+ z-index: 1;
+ background-color: #fff;
+ position: absolute;
+}
+
+.SingleDatePicker_picker__rtl {
+ direction: rtl;
+}
+
+.SingleDatePicker_picker__directionLeft {
+ left: 0;
+}
+
+.SingleDatePicker_picker__directionRight {
+ right: 0;
+}
+
+.SingleDatePicker_picker__portal {
+ background-color: rgba(0, 0, 0, 0.3);
+ position: fixed;
+ top: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.SingleDatePicker_picker__fullScreenPortal {
+ background-color: #fff;
+}
+
+.SingleDatePicker_closeButton {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: 15px;
+ z-index: 2;
+}
+
+.SingleDatePicker_closeButton:focus,
+.SingleDatePicker_closeButton:hover {
+ color: #b0b3b4;
+ text-decoration: none;
+}
+
+.SingleDatePicker_closeButton_svg {
+ height: 15px;
+ width: 15px;
+ fill: #cacccd;
+}
+
+.DayPickerKeyboardShortcuts_buttonReset {
+ background: 0 0;
+ border: 0;
+ border-radius: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ padding: 0;
+ cursor: pointer;
+ font-size: 14px;
+}
+
+.DayPickerKeyboardShortcuts_buttonReset:active {
+ outline: 0;
+}
+
+.DayPickerKeyboardShortcuts_show {
+ width: 22px;
+ position: absolute;
+ z-index: 2;
+}
+
+.DayPickerKeyboardShortcuts_show__bottomRight {
+ border-top: 26px solid transparent;
+ border-right: 33px solid #00a699;
+ bottom: 0;
+ right: 0;
+}
+
+.DayPickerKeyboardShortcuts_show__bottomRight:hover {
+ border-right: 33px solid #008489;
+}
+
+.DayPickerKeyboardShortcuts_show__topRight {
+ border-bottom: 26px solid transparent;
+ border-right: 33px solid #00a699;
+ top: 0;
+ right: 0;
+}
+
+.DayPickerKeyboardShortcuts_show__topRight:hover {
+ border-right: 33px solid #008489;
+}
+
+.DayPickerKeyboardShortcuts_show__topLeft {
+ border-bottom: 26px solid transparent;
+ border-left: 33px solid #00a699;
+ top: 0;
+ left: 0;
+}
+
+.DayPickerKeyboardShortcuts_show__topLeft:hover {
+ border-left: 33px solid #008489;
+}
+
+.DayPickerKeyboardShortcuts_showSpan {
+ color: #fff;
+ position: absolute;
+}
+
+.DayPickerKeyboardShortcuts_showSpan__bottomRight {
+ bottom: 0;
+ right: -28px;
+}
+
+.DayPickerKeyboardShortcuts_showSpan__topRight {
+ top: 1px;
+ right: -28px;
+}
+
+.DayPickerKeyboardShortcuts_showSpan__topLeft {
+ top: 1px;
+ left: -28px;
+}
+
+.DayPickerKeyboardShortcuts_panel {
+ overflow: auto;
+ background: #fff;
+ border: 1px solid #dbdbdb;
+ border-radius: 2px;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ z-index: 2;
+ padding: 22px;
+ margin: 33px;
+}
+
+.DayPickerKeyboardShortcuts_title {
+ font-size: 16px;
+ font-weight: 700;
+ margin: 0;
+}
+
+.DayPickerKeyboardShortcuts_list {
+ list-style: none;
+ padding: 0;
+ font-size: 14px;
+}
+
+.DayPickerKeyboardShortcuts_close {
+ position: absolute;
+ right: 22px;
+ top: 22px;
+ z-index: 2;
+}
+
+.DayPickerKeyboardShortcuts_close:active {
+ outline: 0;
+}
+
+.DayPickerKeyboardShortcuts_closeSvg {
+ height: 15px;
+ width: 15px;
+ fill: #cacccd;
+}
+
+.DayPickerKeyboardShortcuts_closeSvg:focus,
+.DayPickerKeyboardShortcuts_closeSvg:hover {
+ fill: #82888a;
+}
+
+.CalendarDay {
+ box-sizing: border-box;
+ cursor: pointer;
+ font-size: 14px;
+ text-align: center;
+}
+
+.CalendarDay:active {
+ outline: 0;
+}
+
+.CalendarDay__defaultCursor {
+ cursor: default;
+}
+
+.CalendarDay__default {
+ border: 1px solid #e4e7e7;
+ color: #484848;
+ background: #fff;
+}
+
+.CalendarDay__default:hover {
+ background: #e4e7e7;
+ border: 1px double #e4e7e7;
+ color: inherit;
+}
+
+.CalendarDay__hovered_offset {
+ background: #f4f5f5;
+ border: 1px double #e4e7e7;
+ color: inherit;
+}
+
+.CalendarDay__outside {
+ border: 0;
+ background: #fff;
+ color: #484848;
+}
+
+.CalendarDay__outside:hover {
+ border: 0;
+}
+
+.CalendarDay__blocked_minimum_nights {
+ background: #fff;
+ border: 1px solid #eceeee;
+ color: #cacccd;
+}
+
+.CalendarDay__blocked_minimum_nights:active,
+.CalendarDay__blocked_minimum_nights:hover {
+ background: #fff;
+ color: #cacccd;
+}
+
+.CalendarDay__highlighted_calendar {
+ background: #ffe8bc;
+ color: #484848;
+}
+
+.CalendarDay__highlighted_calendar:active,
+.CalendarDay__highlighted_calendar:hover {
+ background: #ffce71;
+ color: #484848;
+}
+
+.CalendarDay__selected_span {
+ background: #66e2da;
+ border: 1px solid #33dacd;
+ color: #fff;
+}
+
+.CalendarDay__selected_span:active,
+.CalendarDay__selected_span:hover {
+ background: #33dacd;
+ border: 1px solid #33dacd;
+ color: #fff;
+}
+
+.CalendarDay__last_in_range {
+ border-right: #00a699;
+}
+
+.CalendarDay__selected,
+.CalendarDay__selected:active,
+.CalendarDay__selected:hover {
+ background: #00a699;
+ border: 1px solid #00a699;
+ color: #fff;
+}
+
+.CalendarDay__hovered_span,
+.CalendarDay__hovered_span:hover {
+ background: #b2f1ec;
+ border: 1px solid #80e8e0;
+ color: #007a87;
+}
+
+.CalendarDay__hovered_span:active {
+ background: #80e8e0;
+ border: 1px solid #80e8e0;
+ color: #007a87;
+}
+
+.CalendarDay__blocked_calendar,
+.CalendarDay__blocked_calendar:active,
+.CalendarDay__blocked_calendar:hover {
+ background: #cacccd;
+ border: 1px solid #cacccd;
+ color: #82888a;
+}
+
+.CalendarDay__blocked_out_of_range,
+.CalendarDay__blocked_out_of_range:active,
+.CalendarDay__blocked_out_of_range:hover {
+ background: #fff;
+ border: 1px solid #e4e7e7;
+ color: #cacccd;
+}
+
+.CalendarMonth {
+ background: #fff;
+ text-align: center;
+ vertical-align: top;
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.CalendarMonth_table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+.CalendarMonth_verticalSpacing {
+ border-collapse: separate;
+}
+
+.CalendarMonth_caption {
+ color: #484848;
+ font-size: 18px;
+ text-align: center;
+ padding-top: 22px;
+ padding-bottom: 37px;
+ caption-side: initial;
+}
+
+.CalendarMonth_caption__verticalScrollable {
+ padding-top: 12px;
+ padding-bottom: 7px;
+}
+
+.CalendarMonthGrid {
+ background: #fff;
+ text-align: left;
+ z-index: 0;
+}
+
+.CalendarMonthGrid__animating {
+ z-index: 1;
+}
+
+.CalendarMonthGrid__horizontal {
+ position: absolute;
+ left: 0;
+}
+
+.CalendarMonthGrid__vertical {
+ margin: 0 auto;
+}
+
+.CalendarMonthGrid__vertical_scrollable {
+ margin: 0 auto;
+ overflow-y: scroll;
+}
+
+.CalendarMonthGrid_month__horizontal {
+ display: inline-block;
+ vertical-align: top;
+ min-height: 100%;
+}
+
+.CalendarMonthGrid_month__hideForAnimation {
+ position: absolute;
+ z-index: -1;
+ opacity: 0;
+ pointer-events: none;
+}
+
+.CalendarMonthGrid_month__hidden {
+ visibility: hidden;
+}
+
+.DayPickerNavigation {
+ position: relative;
+ z-index: 2;
+}
+
+.DayPickerNavigation__horizontal {
+ height: 0;
+}
+
+.DayPickerNavigation__verticalDefault {
+ position: absolute;
+ width: 100%;
+ height: 52px;
+ bottom: 0;
+ left: 0;
+}
+
+.DayPickerNavigation__verticalScrollableDefault {
+ position: relative;
+}
+
+.DayPickerNavigation_button {
+ cursor: pointer;
+ -webkit-user-select: none;
+ user-select: none;
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+
+.DayPickerNavigation_button__default {
+ border: 1px solid #e4e7e7;
+ background-color: #fff;
+ color: #757575;
+}
+
+.DayPickerNavigation_button__default:focus,
+.DayPickerNavigation_button__default:hover {
+ border: 1px solid #c4c4c4;
+}
+
+.DayPickerNavigation_button__default:active {
+ background: #f2f2f2;
+}
+
+.DayPickerNavigation_button__horizontalDefault {
+ position: absolute;
+ top: 18px;
+ line-height: 0.78;
+ border-radius: 3px;
+ padding: 6px 9px;
+}
+
+.DayPickerNavigation_leftButton__horizontalDefault {
+ left: 22px;
+}
+
+.DayPickerNavigation_rightButton__horizontalDefault {
+ right: 22px;
+}
+
+.DayPickerNavigation_button__verticalDefault {
+ padding: 5px;
+ background: #fff;
+ box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
+ position: relative;
+ display: inline-block;
+ height: 100%;
+ width: 50%;
+}
+
+.DayPickerNavigation_nextButton__verticalDefault {
+ border-left: 0;
+}
+
+.DayPickerNavigation_nextButton__verticalScrollableDefault {
+ width: 100%;
+}
+
+.DayPickerNavigation_svg__horizontal {
+ height: 19px;
+ width: 19px;
+ fill: #82888a;
+ display: block;
+}
+
+.DayPickerNavigation_svg__vertical {
+ height: 42px;
+ width: 42px;
+ fill: #484848;
+ display: block;
+}
+
+.DayPicker {
+ background: #fff;
+ position: relative;
+ text-align: left;
+}
+
+.DayPicker__horizontal {
+ background: #fff;
+}
+
+.DayPicker__verticalScrollable {
+ height: 100%;
+}
+
+.DayPicker__hidden {
+ visibility: hidden;
+}
+
+.DayPicker__withBorder {
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
+ border-radius: 3px;
+}
+
+.DayPicker_portal__horizontal {
+ box-shadow: none;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+}
+
+.DayPicker_portal__vertical {
+ position: initial;
+}
+
+.DayPicker_focusRegion {
+ outline: 0;
+}
+
+.DayPicker_calendarInfo__horizontal,
+.DayPicker_wrapper__horizontal {
+ display: inline-block;
+ vertical-align: top;
+}
+
+.DayPicker_weekHeaders {
+ position: relative;
+}
+
+.DayPicker_weekHeaders__horizontal {
+ margin-left: 13px;
+}
+
+.DayPicker_weekHeader {
+ color: #757575;
+ position: absolute;
+ top: 62px;
+ z-index: 2;
+ text-align: left;
+ padding: 0 !important;
+}
+
+.DayPicker_weekHeader__vertical {
+ left: 50%;
+}
+
+.DayPicker_weekHeader__verticalScrollable {
+ top: 0;
+ display: table-row;
+ border-bottom: 1px solid #dbdbdb;
+ background: #fff;
+ margin-left: 0;
+ left: 0;
+ width: 100%;
+ text-align: center;
+}
+
+.DayPicker_weekHeader_ul {
+ list-style: none;
+ margin: 1px 0;
+ padding-left: 0;
+ padding-right: 0;
+ font-size: 14px;
+}
+
+.DayPicker_weekHeader_li {
+ display: inline-block;
+ text-align: center;
+ margin: 0 1px;
+}
+
+.DayPicker_transitionContainer {
+ position: relative;
+ overflow: hidden;
+ border-radius: 3px;
+}
+
+.DayPicker_transitionContainer__horizontal {
+ transition: height 0.2s ease-in-out;
+}
+
+.DayPicker_transitionContainer__vertical {
+ width: 100%;
+}
+
+.DayPicker_transitionContainer__verticalScrollable {
+ padding-top: 20px;
+ height: 100%;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ overflow-y: scroll;
+}
+
+.DateInput {
+ margin: 0;
+ padding: 0;
+ background: #fff;
+ position: relative;
+ display: inline-block;
+ width: 130px;
+ vertical-align: middle;
+}
+
+.DateInput__small {
+ width: 97px;
+}
+
+.DateInput__block {
+ width: 100%;
+}
+
+.DateInput__disabled {
+ background: #f2f2f2;
+ color: #dbdbdb;
+}
+
+.DateInput_input {
+ font-weight: 200;
+ font-size: 19px;
+ line-height: 24px;
+ color: #484848;
+ background-color: #fff;
+ width: 100%;
+ padding: 11px 11px 9px;
+ border: 0;
+ border-top: 0;
+ border-right: 0;
+ border-bottom: 2px solid transparent;
+ border-left: 0;
+ border-radius: 0;
+}
+
+.DateInput_input__small {
+ font-size: 15px;
+ line-height: 18px;
+ letter-spacing: 0.2px;
+ padding: 7px 7px 5px;
+}
+
+.DateInput_input__regular {
+ font-weight: auto;
+}
+
+.DateInput_input__readOnly {
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.DateInput_input__focused {
+ outline: 0;
+ background: #fff;
+ border: 0;
+ border-top: 0;
+ border-right: 0;
+ border-bottom: 2px solid #008489;
+ border-left: 0;
+}
+
+.DateInput_input__disabled {
+ background: #f2f2f2;
+ font-style: italic;
+}
+
+.DateInput_screenReaderMessage {
+ border: 0;
+ clip: rect(0, 0, 0, 0);
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px;
+}
+
+.DateInput_fang {
+ position: absolute;
+ width: 20px;
+ height: 10px;
+ left: 22px;
+ z-index: 2;
+}
+
+.DateInput_fangShape {
+ fill: #fff;
+}
+
+.DateInput_fangStroke {
+ stroke: #dbdbdb;
+ fill: transparent;
+}
+
+.DateRangePickerInput {
+ background-color: #fff;
+ display: inline-block;
+}
+
+.DateRangePickerInput__disabled {
+ background: #f2f2f2;
+}
+
+.DateRangePickerInput__withBorder {
+ border-radius: 2px;
+ border: 1px solid #dbdbdb;
+}
+
+.DateRangePickerInput__rtl {
+ direction: rtl;
+}
+
+.DateRangePickerInput__block {
+ display: block;
+}
+
+.DateRangePickerInput__showClearDates {
+ padding-right: 30px;
+}
+
+.DateRangePickerInput_arrow {
+ display: inline-block;
+ vertical-align: middle;
+ color: #484848;
+}
+
+.DateRangePickerInput_arrow_svg {
+ vertical-align: middle;
+ fill: #484848;
+ height: 24px;
+ width: 24px;
+}
+
+.DateRangePickerInput_clearDates {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ padding: 10px;
+ margin: 0 10px 0 5px;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
+.DateRangePickerInput_clearDates__small {
+ padding: 6px;
+}
+
+.DateRangePickerInput_clearDates_default:focus,
+.DateRangePickerInput_clearDates_default:hover {
+ background: #dbdbdb;
+ border-radius: 50%;
+}
+
+.DateRangePickerInput_clearDates__hide {
+ visibility: hidden;
+}
+
+.DateRangePickerInput_clearDates_svg {
+ fill: #82888a;
+ height: 12px;
+ width: 15px;
+ vertical-align: middle;
+}
+
+.DateRangePickerInput_clearDates_svg__small {
+ height: 9px;
+}
+
+.DateRangePickerInput_calendarIcon {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ display: inline-block;
+ vertical-align: middle;
+ padding: 10px;
+ margin: 0 5px 0 10px;
+}
+
+.DateRangePickerInput_calendarIcon_svg {
+ fill: #82888a;
+ height: 15px;
+ width: 14px;
+ vertical-align: middle;
+}
+
+.DateRangePicker {
+ position: relative;
+ display: inline-block;
+}
+
+.DateRangePicker__block {
+ display: block;
+}
+
+.DateRangePicker_picker {
+ z-index: 1;
+ background-color: #fff;
+ position: absolute;
+}
+
+.DateRangePicker_picker__rtl {
+ direction: rtl;
+}
+
+.DateRangePicker_picker__directionLeft {
+ left: 0;
+}
+
+.DateRangePicker_picker__directionRight {
+ right: 0;
+}
+
+.DateRangePicker_picker__portal {
+ background-color: rgba(0, 0, 0, 0.3);
+ position: fixed;
+ top: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.DateRangePicker_picker__fullScreenPortal {
+ background-color: #fff;
+}
+
+.DateRangePicker_closeButton {
+ background: 0 0;
+ border: 0;
+ color: inherit;
+ font: inherit;
+ line-height: normal;
+ overflow: visible;
+ cursor: pointer;
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: 15px;
+ z-index: 2;
+}
+
+.DateRangePicker_closeButton:focus,
+.DateRangePicker_closeButton:hover {
+ color: #b0b3b4;
+ text-decoration: none;
+}
+
+.DateRangePicker_closeButton_svg {
+ height: 15px;
+ width: 15px;
+ fill: #cacccd;
+}
+
+/*rtl:end:ignore*/
+.components-datetime {
+ padding: 16px;
+}
+.components-panel__body .components-datetime {
+ padding: 0;
+}
+.components-datetime .components-datetime__calendar-help {
+ padding: 16px;
+ min-width: 260px;
+}
+.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-toggle {
+ display: block;
+ margin-left: auto;
+}
+.components-datetime fieldset {
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+.components-datetime select,
+.components-datetime input {
+ box-shadow: 0 0 0 transparent;
+ transition: box-shadow 0.1s linear;
+ border-radius: 2px;
+ border: 1px solid #757575;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-datetime select,
+.components-datetime input {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-datetime select,
+.components-datetime input[type=number],
+.components-datetime .components-button {
+ height: 30px;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.components-datetime .components-button:focus {
+ z-index: 1;
+}
+
+.components-datetime__date {
+ min-height: 236px;
+ border-top: 1px solid #ddd;
+}
+.components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault {
+ /*!rtl:begin:ignore*/
+ left: 13px;
+ /*!rtl:end:ignore*/
+}
+.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: none;
+ border-radius: 50%;
+ text-align: center;
+}
+.components-datetime__date .CalendarDay:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 3px #fff;
+ outline: 2px solid transparent;
+}
+.components-datetime__date .CalendarDay__selected {
+ background: var(--wp-admin-theme-color);
+ border: 2px solid transparent;
+}
+.components-datetime__date .CalendarDay__selected:hover {
+ background: var(--wp-admin-theme-color-darker-20);
+}
+.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 {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-datetime__date .DayPicker_weekHeader {
+ top: 50px;
+}
+.components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul {
+ margin: 1px;
+ padding-left: 0;
+ padding-right: 0;
+}
+.components-datetime__date.is-description-visible .DayPicker {
+ visibility: hidden;
+}
+
+.components-datetime__date .CalendarDay .components-datetime__date__day {
+ height: 100%;
+ display: flex;
+ justify-content: center;
+ align-content: center;
+ flex-direction: column;
+ position: relative;
+}
+.components-datetime__date .CalendarDay .components-datetime__date__day.has-events::before {
+ content: " ";
+ width: 4px;
+ height: 4px;
+ border-radius: 2px;
+ position: absolute;
+ left: 50%;
+ margin-left: -2px;
+ bottom: 0;
+ background-color: #fff;
+}
+
+.components-datetime__date .CalendarDay:not(.CalendarDay__selected) .components-datetime__date__day.has-events::before {
+ background: var(--wp-admin-theme-color);
+}
+
+.components-datetime__time {
+ padding-bottom: 16px;
+}
+.components-datetime__time fieldset {
+ position: relative;
+ margin-bottom: 0.5em;
+}
+.components-datetime__time fieldset + fieldset {
+ margin-bottom: 0;
+}
+.components-datetime__time .components-datetime__time-field-am-pm fieldset {
+ margin-top: 0;
+}
+.components-datetime__time .components-datetime__time-wrapper {
+ display: flex;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {
+ display: inline-block;
+ padding: 0 3px 0 0;
+}
+.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 select {
+ margin-right: 4px;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
+ position: relative;
+ z-index: 1;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number] {
+ padding: 2px;
+ margin-right: 4px;
+ text-align: center;
+ -moz-appearance: textfield;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]:focus {
+ position: relative;
+ z-index: 1;
+}
+.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]::-webkit-inner-spin-button {
+ -webkit-appearance: none;
+ margin: 0;
+}
+.components-datetime__time.is-12-hour .components-datetime__time-field-day input {
+ margin: -4px 0 0 !important;
+ border-radius: 2px 0 0 2px !important;
+}
+.components-datetime__time.is-12-hour .components-datetime__time-field-year input {
+ border-radius: 0 2px 2px 0 !important;
+}
+
+.components-datetime__timezone {
+ line-height: 30px;
+ margin-left: 4px;
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+}
+
+.components-datetime__time-legend {
+ font-weight: 600;
+ margin-top: 0.5em;
+}
+.components-datetime__time-legend.invisible {
+ position: absolute;
+ top: -999em;
+ left: -999em;
+}
+
+.components-datetime__time-field-integer-field {
+ font-family: inherit;
+}
+
+.components-datetime__time-field-hours-input,
+.components-datetime__time-field-minutes-input,
+.components-datetime__time-field-day-input {
+ width: 35px;
+}
+
+.components-datetime__time-field-year-input {
+ width: 55px;
+}
+
+.components-datetime__time-field-month-select {
+ max-width: 145px;
+}
+
+.components-popover .components-datetime__date {
+ padding-left: 4px;
+}
+
+.block-editor-dimension-control .components-base-control__field {
+ display: flex;
+ align-items: center;
+}
+.block-editor-dimension-control .components-base-control__label {
+ display: flex;
+ align-items: center;
+ margin-right: 1em;
+ margin-bottom: 0;
+}
+.block-editor-dimension-control .components-base-control__label .dashicon {
+ margin-right: 0.5em;
+}
+.block-editor-dimension-control.is-manual .components-base-control__label {
+ width: 10em;
+}
+
+body.is-dragging-components-draggable {
+ cursor: move;
+ /* Fallback for IE/Edge < 14 */
+ cursor: grabbing !important;
+}
+
+.components-draggable__invisible-drag-image {
+ position: fixed;
+ left: -1000px;
+ height: 50px;
+ width: 50px;
+}
+
+.components-draggable__clone {
+ position: fixed;
+ padding: 0;
+ background: transparent;
+ pointer-events: none;
+ z-index: 1000000000;
+}
+
+.components-drop-zone {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 40;
+ visibility: hidden;
+ opacity: 0;
+ border-radius: 2px;
+}
+.components-drop-zone.is-active {
+ opacity: 1;
+ visibility: visible;
+}
+
+.components-drop-zone__content {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 100%;
+ width: 100%;
+ display: flex;
+ background-color: var(--wp-admin-theme-color);
+ align-items: center;
+ justify-content: center;
+ z-index: 50;
+ text-align: center;
+ color: #fff;
+}
+
+.components-drop-zone__content-icon,
+.components-drop-zone__content-text {
+ display: block;
+}
+
+.components-drop-zone__content-icon {
+ margin: 0 auto;
+ line-height: 0;
+ fill: currentColor;
+ pointer-events: none;
+}
+
+.components-drop-zone__content-text {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.components-dropdown {
+ display: inline-block;
+}
+
+.components-dropdown__content .components-popover__content > div {
+ padding: 8px;
+}
+.components-dropdown__content [role=menuitem] {
+ white-space: nowrap;
+}
+
+.components-dropdown-menu__menu {
+ width: 100%;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ line-height: 1.4;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item,
+.components-dropdown-menu__menu .components-menu-item {
+ width: 100%;
+ padding: 6px;
+ outline: none;
+ cursor: pointer;
+ white-space: nowrap;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
+.components-dropdown-menu__menu .components-menu-item.has-separator {
+ margin-top: 6px;
+ position: relative;
+ overflow: visible;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,
+.components-dropdown-menu__menu .components-menu-item.has-separator::before {
+ display: block;
+ content: "";
+ box-sizing: content-box;
+ background-color: #ddd;
+ position: absolute;
+ top: -3px;
+ left: 0;
+ right: 0;
+ height: 1px;
+}
+.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;
+ 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: 2px;
+ width: 24px;
+ height: 24px;
+}
+.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,
+.components-dropdown-menu__menu .components-menu-item.is-icon-only {
+ width: auto;
+}
+.components-dropdown-menu__menu .components-menu-item__button,
+.components-dropdown-menu__menu .components-menu-item__button.components-button {
+ min-height: 36px;
+ height: auto;
+ text-align: left;
+ padding-left: 8px;
+ padding-right: 8px;
+}
+.components-dropdown-menu__menu .components-menu-group {
+ padding: 8px;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: -8px;
+ margin-right: -8px;
+}
+.components-dropdown-menu__menu .components-menu-group:first-child {
+ margin-top: -8px;
+}
+.components-dropdown-menu__menu .components-menu-group:last-child {
+ margin-bottom: -8px;
+}
+.components-dropdown-menu__menu .components-menu-group + .components-menu-group {
+ margin-top: 0;
+ border-top: 1px solid #ccc;
+ padding: 8px;
+}
+.is-alternate .components-dropdown-menu__menu .components-menu-group + .components-menu-group {
+ border-color: #1e1e1e;
+}
+
+.components-font-size-picker__header__hint {
+ margin-left: 4px;
+ color: #757575;
+}
+.components-font-size-picker__header .components-button.is-small.has-icon:not(.has-text) {
+ min-width: 24px;
+ padding: 0;
+}
+
+.components-font-size-picker__controls {
+ max-width: 248px;
+ align-items: center;
+ margin-top: 8px;
+ margin-bottom: 24px;
+}
+.components-font-size-picker__controls .components-unit-control-wrapper .components-input-control__label {
+ font-weight: 300;
+ padding-bottom: 0 !important;
+ margin-bottom: 8px !important;
+}
+.components-font-size-picker__controls .components-custom-select-control__button {
+ width: 100%;
+}
+.components-font-size-picker__controls .components-font-size-picker__number {
+ 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;
+ display: inline-block;
+ font-weight: 500;
+ height: 30px;
+ margin-bottom: 0;
+ margin-left: 0;
+ margin-right: 8px;
+ margin-top: 8px;
+ width: 54px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-font-size-picker__controls .components-font-size-picker__number {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-font-size-picker__controls .components-font-size-picker__number {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-font-size-picker__controls .components-font-size-picker__number:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-font-size-picker__controls .components-font-size-picker__number::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-font-size-picker__controls .components-font-size-picker__number::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-font-size-picker__controls .components-font-size-picker__number:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-font-size-picker__controls .components-font-size-picker__number[value=""] + .components-button {
+ cursor: default;
+ opacity: 0.3;
+ pointer-events: none;
+}
+.components-font-size-picker__controls .components-font-size-picker__number-container {
+ display: flex;
+ flex-direction: column;
+}
+.components-font-size-picker__controls .components-color-palette__clear {
+ height: 30px;
+}
+
+.components-font-size-picker__custom-input .components-range-control__slider + .dashicon {
+ width: 30px;
+ height: 30px;
+}
+
+.components-font-size-picker {
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+
+.components-form-toggle {
+ position: relative;
+ display: inline-block;
+}
+.components-form-toggle .components-form-toggle__track {
+ content: "";
+ display: inline-block;
+ box-sizing: border-box;
+ vertical-align: top;
+ background-color: #fff;
+ border: 1px solid #1e1e1e;
+ width: 36px;
+ height: 18px;
+ border-radius: 9px;
+ transition: 0.2s background ease;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-toggle .components-form-toggle__track {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-form-toggle .components-form-toggle__thumb {
+ display: block;
+ position: absolute;
+ box-sizing: border-box;
+ top: 3px;
+ left: 3px;
+ width: 12px;
+ height: 12px;
+ border-radius: 50%;
+ transition: 0.1s transform ease;
+ background-color: #1e1e1e;
+ border: 5px solid #1e1e1e;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-toggle .components-form-toggle__thumb {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-form-toggle.is-checked .components-form-toggle__track {
+ background-color: var(--wp-admin-theme-color);
+ border: 1px solid var(--wp-admin-theme-color);
+ border: 9px solid transparent;
+}
+.components-form-toggle .components-form-toggle__input:focus + .components-form-toggle__track {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+ outline-offset: 2px;
+}
+.components-form-toggle.is-checked .components-form-toggle__thumb {
+ background-color: #fff;
+ border-width: 0;
+ transform: translateX(18px);
+}
+.components-form-toggle.is-disabled, .components-disabled .components-form-toggle {
+ opacity: 0.3;
+}
+
+.components-form-toggle input.components-form-toggle__input[type=checkbox] {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+ margin: 0;
+ padding: 0;
+ z-index: 1;
+ border: none;
+}
+.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked {
+ background: none;
+}
+.components-form-toggle input.components-form-toggle__input[type=checkbox]::before {
+ content: "";
+}
+
+.components-form-token-field__input-container {
+ 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;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ width: 100%;
+ margin: 0 0 8px 0;
+ padding: 2px 4px;
+ cursor: text;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-token-field__input-container {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-form-token-field__input-container {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-form-token-field__input-container:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-form-token-field__input-container::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-form-token-field__input-container::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-form-token-field__input-container:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-form-token-field__input-container.is-disabled {
+ background: #ddd;
+ border-color: #ddd;
+}
+.components-form-token-field__input-container.is-active {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-form-token-field__input-container input[type=text].components-form-token-field__input {
+ display: inline-block;
+ flex: 1;
+ font-family: inherit;
+ font-size: 16px;
+ width: 100%;
+ max-width: 100%;
+ margin-left: 4px;
+ padding: 0;
+ min-height: 24px;
+ min-width: 50px;
+ background: inherit;
+ border: 0;
+ color: #1e1e1e;
+ box-shadow: none;
+}
+@media (min-width: 600px) {
+ .components-form-token-field__input-container input[type=text].components-form-token-field__input {
+ font-size: 13px;
+ }
+}
+.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus, .components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input {
+ outline: none;
+ box-shadow: none;
+}
+.components-form-token-field__input-container .components-form-token-field__token + input[type=text].components-form-token-field__input {
+ width: auto;
+}
+
+.components-form-token-field__label {
+ display: inline-block;
+ margin-bottom: 8px;
+}
+
+.components-form-token-field__help {
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.components-form-token-field__token {
+ font-size: 13px;
+ display: flex;
+ margin: 2px 4px 2px 0;
+ color: #1e1e1e;
+ max-width: 100%;
+}
+.components-form-token-field__token.is-success .components-form-token-field__token-text,
+.components-form-token-field__token.is-success .components-form-token-field__remove-token {
+ background: #4ab866;
+}
+.components-form-token-field__token.is-error .components-form-token-field__token-text,
+.components-form-token-field__token.is-error .components-form-token-field__remove-token {
+ background: #cc1818;
+}
+.components-form-token-field__token.is-validating .components-form-token-field__token-text,
+.components-form-token-field__token.is-validating .components-form-token-field__remove-token {
+ color: #757575;
+}
+.components-form-token-field__token.is-borderless {
+ position: relative;
+ padding: 0 16px 0 0;
+}
+.components-form-token-field__token.is-borderless .components-form-token-field__token-text {
+ background: transparent;
+ color: var(--wp-admin-theme-color);
+}
+.components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
+ background: transparent;
+ color: #757575;
+ position: absolute;
+ top: 1px;
+ right: 0;
+}
+.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
+ color: #4ab866;
+}
+.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
+ color: #cc1818;
+ border-radius: 4px 0 0 4px;
+ padding: 0 4px 0 6px;
+}
+.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
+ color: #1e1e1e;
+}
+.components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
+ cursor: default;
+}
+
+.components-form-token-field__token-text,
+.components-form-token-field__remove-token.components-button {
+ display: inline-block;
+ line-height: 24px;
+ height: auto;
+ background: #ddd;
+ min-width: unset;
+ transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1);
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-token-field__token-text,
+.components-form-token-field__remove-token.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+.components-form-token-field__token-text {
+ border-radius: 2px 0 0 2px;
+ padding: 0 0 0 8px;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.components-form-token-field__remove-token.components-button {
+ cursor: pointer;
+ border-radius: 0 2px 2px 0;
+ padding: 0 2px;
+ color: #1e1e1e;
+ line-height: 10px;
+ overflow: initial;
+}
+.components-form-token-field__remove-token.components-button:hover {
+ color: #1e1e1e;
+}
+
+.components-form-token-field__suggestions-list {
+ flex: 1 0 100%;
+ min-width: 100%;
+ max-height: 9em;
+ overflow-y: auto;
+ transition: all 0.15s ease-in-out;
+ list-style: none;
+ border-top: 1px solid #757575;
+ margin: 4px -4px -4px;
+ padding: 0;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-form-token-field__suggestions-list {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.components-form-token-field__suggestion {
+ color: #757575;
+ display: block;
+ font-size: 13px;
+ padding: 4px 8px;
+ margin: 0;
+ cursor: pointer;
+}
+.components-form-token-field__suggestion.is-selected {
+ background: var(--wp-admin-theme-color);
+ color: #fff;
+}
+
+.components-form-token-field__suggestion-match {
+ text-decoration: underline;
+}
+
+@media (min-width: 600px) {
+ .components-guide {
+ width: 600px;
+ }
+}
+.components-guide .components-modal__content {
+ padding: 0;
+ margin-top: 0;
+ border-radius: 2px;
+}
+.components-guide .components-modal__content::before {
+ content: none;
+}
+.components-guide .components-modal__header {
+ border-bottom: none;
+ padding: 0;
+ position: sticky;
+}
+.components-guide .components-modal__header .components-button {
+ align-self: flex-start;
+ margin: 8px 8px 0 0;
+ position: static;
+}
+.components-guide .components-modal__header .components-button:hover svg {
+ fill: #fff;
+}
+.components-guide__container {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ margin-top: -60px;
+ min-height: 100%;
+}
+.components-guide__page {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ position: relative;
+}
+@media (min-width: 600px) {
+ .components-guide__page {
+ min-height: 300px;
+ }
+}
+.components-guide__footer {
+ align-content: center;
+ display: flex;
+ height: 30px;
+ justify-content: center;
+ margin: 0 0 24px 0;
+ padding: 0 32px;
+ position: relative;
+ width: 100%;
+}
+.components-guide__page-control {
+ margin: 0;
+ text-align: center;
+}
+.components-guide__page-control li {
+ display: inline-block;
+ margin: 0;
+}
+.components-guide__page-control .components-button {
+ height: 30px;
+ min-width: 20px;
+ margin: -6px 0;
+}
+
+.components-modal__frame.components-guide {
+ border: none;
+ min-width: 312px;
+ height: 80vh;
+ max-height: 575px;
+}
+@media (max-width: 600px) {
+ .components-modal__frame.components-guide {
+ margin: auto;
+ max-width: calc(100vw - 16px * 2);
+ }
+}
+
+.components-button.components-guide__back-button, .components-button.components-guide__forward-button, .components-button.components-guide__finish-button {
+ height: 30px;
+ position: absolute;
+}
+.components-button.components-guide__back-button, .components-button.components-guide__forward-button {
+ font-size: 13px;
+ padding: 4px 2px;
+}
+.components-button.components-guide__back-button.has-text svg, .components-button.components-guide__forward-button.has-text svg {
+ margin: 0;
+}
+.components-button.components-guide__back-button:hover, .components-button.components-guide__forward-button:hover {
+ text-decoration: underline;
+}
+.components-button.components-guide__back-button {
+ left: 32px;
+}
+.components-button.components-guide__forward-button {
+ right: 32px;
+ color: #1386bf;
+ font-weight: bold;
+}
+.components-button.components-guide__finish-button {
+ right: 32px;
+}
+
+[role=region] {
+ position: relative;
+}
+
+.is-focusing-regions [role=region]:focus::after {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ pointer-events: none;
+ outline: 4px solid transparent;
+ box-shadow: inset 0 0 0 4px var(--wp-admin-theme-color);
+}
+@supports (outline-offset: 1px) {
+ .is-focusing-regions [role=region]:focus::after {
+ content: none;
+ }
+ .is-focusing-regions [role=region]:focus {
+ outline-style: solid;
+ outline-color: var(--wp-admin-theme-color);
+ outline-width: 4px;
+ outline-offset: -4px;
+ }
+}
+
+.components-menu-group + .components-menu-group {
+ margin-top: 8px;
+ padding-top: 8px;
+ border-top: 1px solid #1e1e1e;
+}
+.components-menu-group + .components-menu-group.has-hidden-separator {
+ border-top: none;
+ margin-top: 0;
+ padding-top: 0;
+}
+
+.components-menu-group__label {
+ padding: 0 8px;
+ margin-top: 4px;
+ margin-bottom: 12px;
+ color: #757575;
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+ white-space: nowrap;
+}
+
+.components-menu-item__button,
+.components-menu-item__button.components-button {
+ width: 100%;
+}
+.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child, .components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,
+.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,
+.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child {
+ padding-right: 48px;
+}
+.components-menu-item__button .components-menu-items__item-icon,
+.components-menu-item__button.components-button .components-menu-items__item-icon {
+ display: inline-block;
+ flex: 0 0 auto;
+}
+.components-menu-item__button .components-menu-items__item-icon.has-icon-right,
+.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right {
+ margin-right: -2px;
+ margin-left: 24px;
+}
+.components-menu-item__button .components-menu-item__shortcut + .components-menu-items__item-icon.has-icon-right,
+.components-menu-item__button.components-button .components-menu-item__shortcut + .components-menu-items__item-icon.has-icon-right {
+ margin-left: 8px;
+}
+.components-menu-item__button .block-editor-block-icon,
+.components-menu-item__button.components-button .block-editor-block-icon {
+ margin-left: -2px;
+ margin-right: 8px;
+}
+.components-menu-item__button.is-primary,
+.components-menu-item__button.components-button.is-primary {
+ justify-content: center;
+}
+.components-menu-item__button.is-primary .components-menu-item__item,
+.components-menu-item__button.components-button.is-primary .components-menu-item__item {
+ margin-right: 0;
+}
+
+.components-menu-item__info-wrapper {
+ display: flex;
+ flex-direction: column;
+ margin-right: auto;
+}
+
+.components-menu-item__info {
+ margin-top: 4px;
+ font-size: 12px;
+ color: #757575;
+ white-space: normal;
+}
+
+.components-menu-item__item {
+ white-space: nowrap;
+ min-width: 160px;
+ margin-right: auto;
+ display: inline-flex;
+ align-items: center;
+}
+
+.components-menu-item__shortcut {
+ align-self: center;
+ margin-right: 0;
+ margin-left: auto;
+ padding-left: 24px;
+ color: currentColor;
+ display: none;
+}
+@media (min-width: 480px) {
+ .components-menu-item__shortcut {
+ display: inline;
+ }
+}
+
+.components-menu-items-choice svg,
+.components-menu-items-choice.components-button svg {
+ margin-right: 12px;
+}
+.components-menu-items-choice.has-icon,
+.components-menu-items-choice.components-button.has-icon {
+ padding-left: 12px;
+}
+
+.components-modal__screen-overlay {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background-color: rgba(0, 0, 0, 0.35);
+ z-index: 100000;
+ display: flex;
+ animation: edit-post__fade-in-animation 0.2s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-modal__screen-overlay {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+.components-modal__frame {
+ margin: 0;
+ width: 100%;
+ background: #fff;
+ box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
+ border-radius: 2px;
+ overflow: hidden;
+ display: flex;
+}
+@media (min-width: 600px) {
+ .components-modal__frame {
+ margin: auto;
+ width: auto;
+ min-width: 360px;
+ max-width: calc(100% - 32px);
+ max-height: calc(100% - 120px);
+ animation: components-modal__appear-animation 0.1s ease-out;
+ animation-fill-mode: forwards;
+ }
+}
+@media (min-width: 600px) and (prefers-reduced-motion: reduce) {
+ .components-modal__frame {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-modal__frame.is-full-screen {
+ width: 90vw;
+ min-height: 90vh;
+ }
+}
+@media (min-width: 960px) {
+ .components-modal__frame {
+ max-height: 70%;
+ }
+}
+
+@keyframes components-modal__appear-animation {
+ from {
+ transform: translateY(32px);
+ }
+ to {
+ transform: translateY(0);
+ }
+}
+.components-modal__header {
+ box-sizing: border-box;
+ border-bottom: 1px solid #ddd;
+ padding: 0 32px;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
+ height: 60px;
+ width: 100%;
+ z-index: 10;
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+.components-modal__header .components-modal__header-heading {
+ font-size: 1rem;
+ font-weight: 600;
+}
+.components-modal__header h1 {
+ line-height: 1;
+ margin: 0;
+}
+.components-modal__header .components-button {
+ position: relative;
+ left: 8px;
+}
+
+.components-modal__header-heading-container {
+ align-items: center;
+ flex-grow: 1;
+ display: flex;
+ flex-direction: row;
+ justify-content: left;
+}
+
+.components-modal__header-icon-container {
+ display: inline-block;
+}
+.components-modal__header-icon-container svg {
+ max-width: 36px;
+ max-height: 36px;
+ padding: 8px;
+}
+
+.components-modal__content {
+ flex: 1;
+ margin-top: 60px;
+ padding: 0 32px 24px;
+ overflow: auto;
+}
+.components-modal__content::before {
+ content: "";
+ display: block;
+ margin-bottom: 24px;
+}
+.components-modal__content.hide-header {
+ margin-top: 0;
+ padding-top: 24px;
+}
+.components-modal__content.hide-header::before {
+ content: none;
+}
+
+.components-notice {
+ display: flex;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ background-color: #fff;
+ border-left: 4px solid var(--wp-admin-theme-color);
+ margin: 5px 15px 2px;
+ padding: 8px 12px;
+ align-items: center;
+}
+.components-notice.is-dismissible {
+ padding-right: 36px;
+ position: relative;
+}
+.components-notice.is-success {
+ border-left-color: #4ab866;
+ background-color: #eff9f1;
+}
+.components-notice.is-warning {
+ border-left-color: #f0b849;
+ background-color: #fef8ee;
+}
+.components-notice.is-error {
+ border-left-color: #cc1818;
+ background-color: #f4a2a2;
+}
+
+.components-notice__content {
+ flex-grow: 1;
+ margin: 4px 25px 4px 0;
+}
+
+.components-notice__actions {
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.components-notice__action.components-button {
+ margin-right: 8px;
+}
+.components-notice__action.components-button, .components-notice__action.components-button.is-link {
+ margin-left: 12px;
+}
+.components-notice__action.components-button.is-secondary {
+ vertical-align: initial;
+}
+
+.components-notice__dismiss {
+ color: #757575;
+ align-self: flex-start;
+ flex-shrink: 0;
+}
+.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 {
+ color: #1e1e1e;
+ background-color: transparent;
+}
+.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
+ box-shadow: none;
+}
+
+.components-notice-list {
+ max-width: 100vw;
+ box-sizing: border-box;
+}
+.components-notice-list .components-notice__content {
+ margin-top: 12px;
+ margin-bottom: 12px;
+ line-height: 2;
+}
+.components-notice-list .components-notice__action.components-button {
+ display: block;
+ margin-left: 0;
+ margin-top: 8px;
+}
+
+.components-panel {
+ background: #fff;
+ border: 1px solid #e0e0e0;
+}
+.components-panel > .components-panel__header:first-child,
+.components-panel > .components-panel__body:first-child {
+ margin-top: -1px;
+}
+.components-panel > .components-panel__header:last-child,
+.components-panel > .components-panel__body:last-child {
+ border-bottom-width: 0;
+}
+
+.components-panel + .components-panel {
+ margin-top: -1px;
+}
+
+.components-panel__body {
+ border-top: 1px solid #e0e0e0;
+ border-bottom: 1px solid #e0e0e0;
+}
+.components-panel__body h3 {
+ margin: 0 0 0.5em;
+}
+.components-panel__body.is-opened {
+ padding: 16px;
+}
+
+.components-panel__header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 0 16px;
+ height: 48px;
+ border-bottom: 1px solid #ddd;
+}
+.components-panel__header h2 {
+ margin: 0;
+ font-size: inherit;
+ color: inherit;
+}
+
+.components-panel__body + .components-panel__body,
+.components-panel__body + .components-panel__header,
+.components-panel__header + .components-panel__body,
+.components-panel__header + .components-panel__header {
+ margin-top: -1px;
+}
+
+.components-panel__body > .components-panel__body-title {
+ display: block;
+ padding: 0;
+ font-size: inherit;
+ margin-top: 0;
+ margin-bottom: 0;
+ transition: 0.1s background ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-panel__body > .components-panel__body-title {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.components-panel__body.is-opened > .components-panel__body-title {
+ margin: -16px;
+ margin-bottom: 5px;
+}
+
+.components-panel__body > .components-panel__body-title:hover {
+ background: #f0f0f0;
+ border: none;
+}
+
+.components-panel__body-toggle.components-button {
+ position: relative;
+ padding: 16px 48px 16px 16px;
+ outline: none;
+ width: 100%;
+ font-weight: 500;
+ text-align: left;
+ color: #1e1e1e;
+ border: none;
+ box-shadow: none;
+ transition: 0.1s background ease-in-out;
+ height: auto;
+ /* rtl:begin:ignore */
+ /* rtl:end:ignore */
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-panel__body-toggle.components-button {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.components-panel__body-toggle.components-button:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 0;
+}
+.components-panel__body-toggle.components-button .components-panel__arrow {
+ position: absolute;
+ right: 16px;
+ top: 50%;
+ transform: translateY(-50%);
+ color: #1e1e1e;
+ fill: currentColor;
+ transition: 0.1s color ease-in-out;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-panel__body-toggle.components-button .components-panel__arrow {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
+ transform: scaleX(-1);
+ -ms-filter: fliph;
+ filter: FlipH;
+ margin-top: -10px;
+}
+
+.components-panel__icon {
+ color: #757575;
+ margin: -2px 0 -2px 6px;
+}
+
+.components-panel__body-toggle-icon {
+ margin-right: -5px;
+}
+
+.components-panel__color-title {
+ float: left;
+ height: 19px;
+}
+
+.components-panel__row {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-top: 8px;
+ min-height: 36px;
+}
+.components-panel__row select {
+ min-width: 0;
+}
+.components-panel__row label {
+ margin-right: 12px;
+ flex-shrink: 0;
+ max-width: 75%;
+}
+.components-panel__row:empty, .components-panel__row:first-of-type {
+ margin-top: 0;
+}
+
+.components-panel .circle-picker {
+ padding-bottom: 20px;
+}
+
+.components-placeholder.components-placeholder {
+ box-sizing: border-box;
+ position: relative;
+ padding: 1em;
+ min-height: 200px;
+ width: 100%;
+ text-align: left;
+ margin: 0;
+ color: #1e1e1e;
+ -moz-font-smoothing: subpixel-antialiased;
+ -webkit-font-smoothing: subpixel-antialiased;
+ border-radius: 2px;
+ background-color: #fff;
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ outline: 1px solid transparent;
+}
+@supports (position: sticky) {
+ .components-placeholder.components-placeholder {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-start;
+ }
+}
+.components-placeholder.components-placeholder .components-base-control__label {
+ font-size: 13px;
+}
+
+.components-placeholder__error,
+.components-placeholder__instructions,
+.components-placeholder__label,
+.components-placeholder__fieldset {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.components-placeholder__label {
+ display: flex;
+ font-weight: 600;
+ margin-bottom: 16px;
+ align-items: center;
+}
+.components-placeholder__label > svg,
+.components-placeholder__label .dashicon,
+.components-placeholder__label .block-editor-block-icon {
+ margin-right: 1ch;
+ fill: currentColor;
+}
+@media (forced-colors: active) {
+ .components-placeholder__label > svg,
+.components-placeholder__label .dashicon,
+.components-placeholder__label .block-editor-block-icon {
+ fill: CanvasText;
+ }
+}
+.components-placeholder__label:empty {
+ display: none;
+}
+
+.components-placeholder__fieldset,
+.components-placeholder__fieldset form {
+ display: flex;
+ flex-direction: row;
+ width: 100%;
+ flex-wrap: wrap;
+}
+.components-placeholder__fieldset p,
+.components-placeholder__fieldset form p {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.components-placeholder__fieldset.components-placeholder__fieldset {
+ border: none;
+ padding: 0;
+}
+.components-placeholder__fieldset.components-placeholder__fieldset .components-placeholder__instructions {
+ padding: 0;
+ font-weight: normal;
+ font-size: 1em;
+}
+
+.components-placeholder__fieldset.is-column-layout,
+.components-placeholder__fieldset.is-column-layout form {
+ flex-direction: column;
+}
+
+.components-placeholder__input[type=url] {
+ 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;
+ margin: 0 8px 0 0;
+ flex: 1 1 auto;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-placeholder__input[type=url] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-placeholder__input[type=url] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-placeholder__input[type=url]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-placeholder__input[type=url]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-placeholder__input[type=url]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-placeholder__input[type=url]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.components-placeholder__instructions {
+ margin-bottom: 1em;
+}
+
+.components-placeholder__error {
+ margin-top: 1em;
+ width: 100%;
+}
+
+.components-placeholder__preview img {
+ margin: 3%;
+ width: 50%;
+}
+
+.components-placeholder__fieldset .components-button {
+ margin-right: 12px;
+ margin-bottom: 12px;
+}
+.components-placeholder__fieldset .components-button:last-child {
+ margin-bottom: 0;
+ margin-right: 0;
+}
+
+.components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link {
+ margin-left: 10px;
+ margin-right: 10px;
+}
+.components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link:last-child {
+ margin-right: 0;
+}
+
+.components-placeholder.is-large .components-placeholder__label {
+ font-size: 18pt;
+ font-weight: normal;
+}
+.components-placeholder.is-medium .components-placeholder__instructions, .components-placeholder.is-small .components-placeholder__instructions {
+ display: none;
+}
+.components-placeholder.is-medium .components-placeholder__fieldset,
+.components-placeholder.is-medium .components-placeholder__fieldset form, .components-placeholder.is-small .components-placeholder__fieldset,
+.components-placeholder.is-small .components-placeholder__fieldset form {
+ flex-direction: column;
+}
+.components-placeholder.is-medium .components-placeholder__fieldset .components-button, .components-placeholder.is-small .components-placeholder__fieldset .components-button {
+ margin-right: auto;
+}
+.components-placeholder.is-small .components-button {
+ padding: 0 8px 2px;
+}
+
+/*!rtl:begin:ignore*/
+.components-popover {
+ position: fixed;
+ z-index: 1000000;
+ top: 0;
+ left: 0;
+ opacity: 0;
+}
+.components-popover.is-expanded, .components-popover[data-x-axis][data-y-axis] {
+ opacity: 1;
+}
+.components-popover.is-expanded {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 1000000 !important;
+}
+.components-popover:not(.is-without-arrow) {
+ margin-left: 2px;
+}
+.components-popover:not(.is-without-arrow)::before {
+ border: 8px solid #ccc;
+}
+.components-popover:not(.is-without-arrow).is-alternate::before {
+ border-color: #1e1e1e;
+}
+.components-popover:not(.is-without-arrow)::after {
+ border: 8px solid #fff;
+}
+.components-popover:not(.is-without-arrow)::before, .components-popover:not(.is-without-arrow)::after {
+ content: "";
+ position: absolute;
+ height: 0;
+ width: 0;
+ line-height: 0;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top] {
+ margin-top: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top]::before {
+ bottom: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top]::after {
+ bottom: -6px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=top]::before, .components-popover:not(.is-without-arrow)[data-y-axis=top]::after {
+ border-bottom: none;
+ border-left-color: transparent;
+ border-right-color: transparent;
+ border-top-style: solid;
+ margin-left: -10px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom] {
+ margin-top: 8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom]::before {
+ top: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom]::after {
+ top: -6px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=bottom]::before, .components-popover:not(.is-without-arrow)[data-y-axis=bottom]::after {
+ border-bottom-style: solid;
+ border-left-color: transparent;
+ border-right-color: transparent;
+ border-top: none;
+ margin-left: -10px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left] {
+ margin-left: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::before {
+ right: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::after {
+ right: -6px;
+}
+.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 {
+ border-bottom-color: transparent;
+ border-left-style: solid;
+ border-right: none;
+ border-top-color: transparent;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right] {
+ margin-left: 8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::before {
+ left: -8px;
+}
+.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::after {
+ left: -6px;
+}
+.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 {
+ border-bottom-color: transparent;
+ border-left: none;
+ border-right-style: solid;
+ border-top-color: transparent;
+}
+.components-popover[data-y-axis=top] {
+ bottom: 100%;
+}
+.components-popover[data-y-axis=bottom] {
+ top: 100%;
+}
+.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%;
+ background: #fff;
+ 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;
+ overflow-y: auto;
+}
+.components-popover.is-expanded .components-popover__content {
+ position: static;
+ height: calc(100% - 48px);
+ overflow-y: visible;
+ min-width: auto;
+ border: none;
+ border-top: 1px solid #1e1e1e;
+}
+.components-popover[data-y-axis=top] .components-popover__content {
+ bottom: 100%;
+}
+.components-popover[data-x-axis=center] .components-popover__content {
+ left: 50%;
+ transform: translateX(-50%);
+}
+.components-popover[data-x-axis=right] .components-popover__content {
+ position: absolute;
+ left: 100%;
+}
+.components-popover:not([data-y-axis=middle])[data-x-axis=right] .components-popover__content {
+ margin-left: -25px;
+}
+.components-popover[data-x-axis=left] .components-popover__content {
+ position: absolute;
+ right: 100%;
+}
+.components-popover:not([data-y-axis=middle])[data-x-axis=left] .components-popover__content {
+ margin-right: -25px;
+}
+
+.components-popover__header {
+ align-items: center;
+ background: #fff;
+ display: flex;
+ height: 48px;
+ justify-content: space-between;
+ padding: 0 8px 0 16px;
+}
+
+.components-popover__header-title {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.components-popover__close.components-button {
+ z-index: 5;
+}
+
+/*!rtl:end:ignore*/
+.components-radio-control {
+ display: flex;
+ flex-direction: column;
+}
+.components-radio-control .components-base-control__help {
+ margin-top: 0;
+}
+.components-radio-control .components-base-control__field {
+ margin-bottom: 0;
+}
+
+.components-radio-control__option:not(:last-child) {
+ margin-bottom: 4px;
+}
+
+.components-radio-control__input[type=radio] {
+ 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;
+ border: 1px solid #1e1e1e;
+ margin-right: 12px;
+ transition: none;
+ border-radius: 50%;
+ width: 24px;
+ height: 24px;
+ margin-top: 0;
+ margin-right: 6px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-radio-control__input[type=radio] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-radio-control__input[type=radio] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-radio-control__input[type=radio]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-radio-control__input[type=radio]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-radio-control__input[type=radio]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-radio-control__input[type=radio]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+@media (min-width: 600px) {
+ .components-radio-control__input[type=radio] {
+ height: 20px;
+ width: 20px;
+ }
+}
+.components-radio-control__input[type=radio]:checked::before {
+ box-sizing: inherit;
+ width: 8px;
+ height: 8px;
+ transform: translate(7px, 7px);
+ margin: 0;
+ background-color: #fff;
+ border: 4px solid #fff;
+}
+@media (min-width: 600px) {
+ .components-radio-control__input[type=radio]:checked::before {
+ transform: translate(5px, 5px);
+ }
+}
+.components-radio-control__input[type=radio]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-radio-control__input[type=radio]:checked {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+
+.components-resizable-box__handle {
+ display: none;
+ width: 23px;
+ height: 23px;
+ z-index: 2;
+}
+.components-resizable-box__container.has-show-handle .components-resizable-box__handle {
+ display: block;
+}
+
+.components-resizable-box__container > img {
+ width: inherit;
+}
+
+.components-resizable-box__handle::after {
+ display: block;
+ content: "";
+ width: 15px;
+ height: 15px;
+ border-radius: 50%;
+ background: #fff;
+ cursor: inherit;
+ position: absolute;
+ top: calc(50% - 8px);
+ right: calc(50% - 8px);
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+
+.components-resizable-box__side-handle::before {
+ display: block;
+ border-radius: 2px;
+ content: "";
+ width: 3px;
+ height: 3px;
+ background: var(--wp-admin-theme-color);
+ cursor: inherit;
+ position: absolute;
+ top: calc(50% - 1px);
+ right: calc(50% - 1px);
+ transition: transform 0.1s ease-in;
+ opacity: 0;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-resizable-box__side-handle::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.components-resizable-box__side-handle {
+ z-index: 2;
+}
+
+.components-resizable-box__corner-handle {
+ z-index: 2;
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-top,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom,
+.components-resizable-box__side-handle.components-resizable-box__handle-top::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {
+ width: 100%;
+ left: 0;
+ border-left: 0;
+ border-right: 0;
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-left,
+.components-resizable-box__side-handle.components-resizable-box__handle-right,
+.components-resizable-box__side-handle.components-resizable-box__handle-left::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right::before {
+ height: 100%;
+ top: 0;
+ border-top: 0;
+ border-bottom: 0;
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
+ animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+.components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
+ animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;
+ animation-fill-mode: forwards;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+
+/* This CSS is shown only to Safari, which has a bug with table-caption making it jumpy.
+See https://bugs.webkit.org/show_bug.cgi?id=187903. */
+@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
+ @supports (-webkit-appearance: none) {
+ .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
+ animation: none;
+ }
+
+ .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
+.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
+ animation: none;
+ }
+ }
+}
+@keyframes components-resizable-box__top-bottom-animation {
+ from {
+ transform: scaleX(0);
+ opacity: 0;
+ }
+ to {
+ transform: scaleX(1);
+ opacity: 1;
+ }
+}
+@keyframes components-resizable-box__left-right-animation {
+ from {
+ transform: scaleY(0);
+ opacity: 0;
+ }
+ to {
+ transform: scaleY(1);
+ opacity: 1;
+ }
+}
+/*!rtl:begin:ignore*/
+.components-resizable-box__handle-right {
+ right: calc(11.5px * -1);
+}
+
+.components-resizable-box__handle-left {
+ left: calc(11.5px * -1);
+}
+
+.components-resizable-box__handle-top {
+ top: calc(11.5px * -1);
+}
+
+.components-resizable-box__handle-bottom {
+ bottom: calc(11.5px * -1);
+}
+
+/*!rtl:end:ignore*/
+.components-responsive-wrapper {
+ position: relative;
+ max-width: 100%;
+}
+.components-responsive-wrapper, .components-responsive-wrapper > span {
+ display: block;
+}
+
+.components-responsive-wrapper__content {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ margin: auto;
+}
+
+.components-sandbox {
+ overflow: hidden;
+}
+
+iframe.components-sandbox {
+ width: 100%;
+}
+
+html.lockscroll,
+body.lockscroll {
+ overflow: hidden;
+}
+
+.components-search-control {
+ position: relative;
+}
+.components-search-control input[type=search].components-search-control__input {
+ 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;
+ display: block;
+ padding: 16px 48px 16px 16px;
+ background: #f0f0f0;
+ border: none;
+ width: 100%;
+ height: 48px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .components-search-control input[type=search].components-search-control__input {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-search-control input[type=search].components-search-control__input {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-search-control input[type=search].components-search-control__input:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-search-control input[type=search].components-search-control__input::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-search-control input[type=search].components-search-control__input::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-search-control input[type=search].components-search-control__input:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+@media (min-width: 600px) {
+ .components-search-control input[type=search].components-search-control__input {
+ font-size: 13px;
+ }
+}
+.components-search-control input[type=search].components-search-control__input:focus {
+ background: #fff;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-search-control input[type=search].components-search-control__input::placeholder {
+ color: #757575;
+}
+.components-search-control input[type=search].components-search-control__input::-webkit-search-decoration, .components-search-control input[type=search].components-search-control__input::-webkit-search-cancel-button, .components-search-control input[type=search].components-search-control__input::-webkit-search-results-button, .components-search-control input[type=search].components-search-control__input::-webkit-search-results-decoration {
+ -webkit-appearance: none;
+}
+
+.components-search-control__icon {
+ position: absolute;
+ top: 0;
+ right: 12px;
+ bottom: 0;
+ display: flex;
+ align-items: center;
+}
+.components-search-control__icon > svg {
+ margin: 8px 0;
+}
+
+.components-search-control__input-wrapper {
+ position: relative;
+}
+
+.components-select-control__input {
+ background: #fff;
+ height: 36px;
+ line-height: 36px;
+ margin: 1px;
+ outline: 0;
+ width: 100%;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
+}
+@media (min-width: 782px) {
+ .components-select-control__input {
+ height: 28px;
+ line-height: 28px;
+ }
+}
+
+@media (max-width: 782px) {
+ .components-base-control .components-base-control__field .components-select-control__input {
+ font-size: 16px;
+ }
+}
+.components-snackbar {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ background-color: #1e1e1e;
+ border-radius: 2px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
+ color: #fff;
+ padding: 16px 24px;
+ width: 100%;
+ max-width: 600px;
+ box-sizing: border-box;
+ cursor: pointer;
+ pointer-events: auto;
+}
+@media (min-width: 600px) {
+ .components-snackbar {
+ width: -moz-fit-content;
+ width: fit-content;
+ }
+}
+.components-snackbar:focus {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
+}
+.components-snackbar.components-snackbar-explicit-dismiss {
+ cursor: default;
+}
+.components-snackbar .components-snackbar__content-with-icon {
+ margin-left: 24px;
+}
+.components-snackbar .components-snackbar__icon {
+ position: absolute;
+ top: 24px;
+ left: 28px;
+}
+.components-snackbar .components-snackbar__dismiss-button {
+ margin-left: 32px;
+ cursor: pointer;
+}
+
+.components-snackbar__action.components-button {
+ margin-left: 32px;
+ color: #fff;
+ height: auto;
+ flex-shrink: 0;
+ line-height: 1.4;
+ padding: 0;
+}
+.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) {
+ text-decoration: underline;
+ background-color: transparent;
+}
+.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):focus {
+ color: #fff;
+ box-shadow: none;
+ outline: 1px dotted #fff;
+}
+.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
+ color: var(--wp-admin-theme-color);
+}
+
+.components-snackbar__content {
+ display: flex;
+ align-items: baseline;
+ justify-content: space-between;
+ line-height: 1.4;
+}
+
+.components-snackbar-list {
+ position: absolute;
+ z-index: 100000;
+ width: 100%;
+ box-sizing: border-box;
+ pointer-events: none;
+}
+
+.components-snackbar-list__notice-container {
+ position: relative;
+ padding-top: 8px;
+}
+
+.components-swatch {
+ width: 18px;
+ height: 18px;
+ border-radius: 50%;
+ color: transparent;
+ background: transparent;
+}
+.components-swatch::after {
+ content: "";
+ display: block;
+ width: 100%;
+ height: 100%;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 50%;
+}
+
+.components-button.has-icon.has-text .components-swatch {
+ margin-right: 8px;
+}
+
+.components-tab-panel__tabs {
+ display: flex;
+ align-items: stretch;
+ flex-direction: row;
+}
+.components-tab-panel__tabs[aria-orientation=vertical] {
+ flex-direction: column;
+}
+
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-tab-panel__tabs-item.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ position: relative;
+}
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-tab-panel__tabs-item.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+.components-text-control__input,
+.components-text-control__input[type=text],
+.components-text-control__input[type=tel],
+.components-text-control__input[type=time],
+.components-text-control__input[type=url],
+.components-text-control__input[type=week],
+.components-text-control__input[type=password],
+.components-text-control__input[type=color],
+.components-text-control__input[type=date],
+.components-text-control__input[type=datetime],
+.components-text-control__input[type=datetime-local],
+.components-text-control__input[type=email],
+.components-text-control__input[type=month],
+.components-text-control__input[type=number] {
+ width: 100%;
+ 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) {
+ .components-text-control__input,
+.components-text-control__input[type=text],
+.components-text-control__input[type=tel],
+.components-text-control__input[type=time],
+.components-text-control__input[type=url],
+.components-text-control__input[type=week],
+.components-text-control__input[type=password],
+.components-text-control__input[type=color],
+.components-text-control__input[type=date],
+.components-text-control__input[type=datetime],
+.components-text-control__input[type=datetime-local],
+.components-text-control__input[type=email],
+.components-text-control__input[type=month],
+.components-text-control__input[type=number] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .components-text-control__input,
+.components-text-control__input[type=text],
+.components-text-control__input[type=tel],
+.components-text-control__input[type=time],
+.components-text-control__input[type=url],
+.components-text-control__input[type=week],
+.components-text-control__input[type=password],
+.components-text-control__input[type=color],
+.components-text-control__input[type=date],
+.components-text-control__input[type=datetime],
+.components-text-control__input[type=datetime-local],
+.components-text-control__input[type=email],
+.components-text-control__input[type=month],
+.components-text-control__input[type=number] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.components-text-control__input:focus,
+.components-text-control__input[type=text]:focus,
+.components-text-control__input[type=tel]:focus,
+.components-text-control__input[type=time]:focus,
+.components-text-control__input[type=url]:focus,
+.components-text-control__input[type=week]:focus,
+.components-text-control__input[type=password]:focus,
+.components-text-control__input[type=color]:focus,
+.components-text-control__input[type=date]:focus,
+.components-text-control__input[type=datetime]:focus,
+.components-text-control__input[type=datetime-local]:focus,
+.components-text-control__input[type=email]:focus,
+.components-text-control__input[type=month]:focus,
+.components-text-control__input[type=number]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.components-text-control__input::-webkit-input-placeholder,
+.components-text-control__input[type=text]::-webkit-input-placeholder,
+.components-text-control__input[type=tel]::-webkit-input-placeholder,
+.components-text-control__input[type=time]::-webkit-input-placeholder,
+.components-text-control__input[type=url]::-webkit-input-placeholder,
+.components-text-control__input[type=week]::-webkit-input-placeholder,
+.components-text-control__input[type=password]::-webkit-input-placeholder,
+.components-text-control__input[type=color]::-webkit-input-placeholder,
+.components-text-control__input[type=date]::-webkit-input-placeholder,
+.components-text-control__input[type=datetime]::-webkit-input-placeholder,
+.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,
+.components-text-control__input[type=email]::-webkit-input-placeholder,
+.components-text-control__input[type=month]::-webkit-input-placeholder,
+.components-text-control__input[type=number]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-text-control__input::-moz-placeholder,
+.components-text-control__input[type=text]::-moz-placeholder,
+.components-text-control__input[type=tel]::-moz-placeholder,
+.components-text-control__input[type=time]::-moz-placeholder,
+.components-text-control__input[type=url]::-moz-placeholder,
+.components-text-control__input[type=week]::-moz-placeholder,
+.components-text-control__input[type=password]::-moz-placeholder,
+.components-text-control__input[type=color]::-moz-placeholder,
+.components-text-control__input[type=date]::-moz-placeholder,
+.components-text-control__input[type=datetime]::-moz-placeholder,
+.components-text-control__input[type=datetime-local]::-moz-placeholder,
+.components-text-control__input[type=email]::-moz-placeholder,
+.components-text-control__input[type=month]::-moz-placeholder,
+.components-text-control__input[type=number]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.components-text-control__input:-ms-input-placeholder,
+.components-text-control__input[type=text]:-ms-input-placeholder,
+.components-text-control__input[type=tel]:-ms-input-placeholder,
+.components-text-control__input[type=time]:-ms-input-placeholder,
+.components-text-control__input[type=url]:-ms-input-placeholder,
+.components-text-control__input[type=week]:-ms-input-placeholder,
+.components-text-control__input[type=password]:-ms-input-placeholder,
+.components-text-control__input[type=color]:-ms-input-placeholder,
+.components-text-control__input[type=date]:-ms-input-placeholder,
+.components-text-control__input[type=datetime]:-ms-input-placeholder,
+.components-text-control__input[type=datetime-local]:-ms-input-placeholder,
+.components-text-control__input[type=email]:-ms-input-placeholder,
+.components-text-control__input[type=month]:-ms-input-placeholder,
+.components-text-control__input[type=number]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.components-tip {
+ display: flex;
+ color: #757575;
+}
+.components-tip svg {
+ align-self: center;
+ fill: #f0b849;
+ flex-shrink: 0;
+ margin-right: 16px;
+}
+.components-tip p {
+ margin: 0;
+}
+
+.components-toggle-control .components-base-control__field {
+ display: flex;
+ margin-bottom: 12px;
+ line-height: initial;
+ align-items: center;
+}
+.components-toggle-control .components-base-control__field .components-form-toggle {
+ margin-right: 12px;
+}
+.components-toggle-control .components-base-control__field .components-toggle-control__label {
+ display: block;
+}
+
+.components-accessible-toolbar {
+ display: inline-flex;
+ border: 1px solid #1e1e1e;
+ border-radius: 2px;
+ flex-shrink: 0;
+}
+.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;
+ 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;
+ animation-delay: 0s;
+ }
+}
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
+ outline: 2px solid transparent;
+}
+.components-accessible-toolbar .components-button.has-icon.has-icon,
+.components-toolbar .components-button.has-icon.has-icon {
+ padding-left: 12px;
+ padding-right: 12px;
+ min-width: 48px;
+}
+.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;
+}
+.components-toolbar__control.components-button[data-subscript] svg {
+ padding: 5px 10px 5px 0;
+}
+.components-toolbar__control.components-button[data-subscript]::after {
+ content: attr(data-subscript);
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-weight: 600;
+ line-height: 12px;
+ position: absolute;
+ right: 8px;
+ bottom: 10px;
+}
+.components-toolbar__control.components-button:active::before {
+ display: none;
+}
+.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]::after {
+ color: #fff;
+}
+
+.components-toolbar-group {
+ min-height: 48px;
+ border-right: 1px solid #1e1e1e;
+ background-color: #fff;
+ display: inline-flex;
+ flex-shrink: 0;
+ flex-wrap: wrap;
+ line-height: 0;
+}
+.components-toolbar-group .components-toolbar-group.components-toolbar-group {
+ border-width: 0;
+ margin: 0;
+}
+
+.components-toolbar {
+ min-height: 48px;
+ margin: 0;
+ border: 1px solid #1e1e1e;
+ background-color: #fff;
+ display: inline-flex;
+ flex-shrink: 0;
+ flex-wrap: wrap;
+}
+.components-toolbar .components-toolbar.components-toolbar {
+ border-width: 0;
+ margin: 0;
+}
+
+div.components-toolbar > div {
+ display: block;
+ margin: 0;
+}
+@supports (position: sticky) {
+ div.components-toolbar > div {
+ display: flex;
+ }
+}
+div.components-toolbar > div + div.has-left-divider {
+ margin-left: 6px;
+ position: relative;
+ overflow: visible;
+}
+div.components-toolbar > div + div.has-left-divider::before {
+ display: inline-block;
+ content: "";
+ box-sizing: content-box;
+ background-color: #ddd;
+ position: absolute;
+ top: 8px;
+ left: -3px;
+ width: 1px;
+ height: 20px;
+}
+
+.components-tooltip.components-popover {
+ z-index: 1000002;
+}
+.components-tooltip.components-popover .components-popover__content {
+ min-width: 0;
+}
+
+.components-tooltip .components-popover__content {
+ background: #1e1e1e;
+ border-radius: 2px;
+ border-width: 0;
+ color: #fff;
+ white-space: nowrap;
+ text-align: center;
+ line-height: 1.4;
+ font-size: 12px;
+ box-shadow: none;
+}
+.components-tooltip .components-popover__content > div {
+ padding: 4px 8px;
+}
+
+.components-tooltip__shortcut {
+ display: inline-block;
+ margin-left: 8px;
+}
+
+.disabled-element-wrapper {
+ position: relative;
+}
+.disabled-element-wrapper .event-catcher {
+ z-index: 100002;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/components/style.min.css b/static/wp-includes/css/dist/components/style.min.css
new file mode 100755
index 0000000..b1fc82b
--- /dev/null
+++ b/static/wp-includes/css/dist/components/style.min.css
@@ -0,0 +1,10 @@
+@charset "UTF-8";:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.components-animate__appear{animation:components-animate__appear-animation .1s cubic-bezier(0,0,.2,1) 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-animate__appear{animation-duration:1ms;animation-delay:0s}}.components-animate__appear.is-from-top,.components-animate__appear.is-from-top.is-from-left{transform-origin:top left}.components-animate__appear.is-from-top.is-from-right{transform-origin:top right}.components-animate__appear.is-from-bottom,.components-animate__appear.is-from-bottom.is-from-left{transform-origin:bottom left}.components-animate__appear.is-from-bottom.is-from-right{transform-origin:bottom right}@keyframes components-animate__appear-animation{0%{transform:translateY(-2em) scaleY(0) scaleX(0)}to{transform:translateY(0) scaleY(1) scaleX(1)}}.components-animate__slide-in{animation:components-animate__slide-in-animation .1s cubic-bezier(0,0,.2,1);animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-animate__slide-in{animation-duration:1ms;animation-delay:0s}}.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{to{transform:translateX(0)}}.components-animate__loading{animation:components-animate__loading 1.6s ease-in-out infinite}@keyframes components-animate__loading{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.components-autocomplete__popover .components-popover__content>div{padding:16px;min-width:220px}.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-button-group{display:inline-block}.components-button-group .components-button{border-radius:0;display:inline-flex;color:#1e1e1e;box-shadow:inset 0 0 0 1px #1e1e1e}.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.is-primary,.components-button-group .components-button:focus{position:relative;z-index:1}.components-button-group .components-button.is-primary{box-shadow:inset 0 0 0 1px #1e1e1e}.components-button{display:inline-flex;text-decoration:none;font-family:inherit;font-weight:400;font-size:13px;margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:none;transition:box-shadow .1s linear;height:36px;align-items:center;box-sizing:border-box;padding:6px 12px;border-radius:2px;color:#1e1e1e}@media (prefers-reduced-motion:reduce){.components-button{transition-duration:0s;transition-delay:0s}}.components-button:hover,.components-button[aria-expanded=true]{color:var(--wp-admin-theme-color)}.components-button[aria-disabled=true]:hover{color:initial}.components-button:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:3px solid transparent}.components-button.is-primary{white-space:nowrap;background:var(--wp-admin-theme-color);color:#fff;text-decoration:none;text-shadow:none;outline:1px solid transparent}.components-button.is-primary:hover:not(:disabled){background:var(--wp-admin-theme-color-darker-10);color:#fff}.components-button.is-primary:active:not(:disabled){background:var(--wp-admin-theme-color-darker-20);border-color:var(--wp-admin-theme-color-darker-20);color:#fff}.components-button.is-primary:focus:not(:disabled){box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.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]:active:enabled,.components-button.is-primary[aria-disabled=true]:enabled{color:hsla(0,0%,100%,.4);background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);opacity:1;outline:none}.components-button.is-primary:disabled:active:enabled:focus:enabled,.components-button.is-primary:disabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:focus:enabled{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color)}.components-button.is-primary.is-busy,.components-button.is-primary.is-busy:disabled,.components-button.is-primary.is-busy[aria-disabled=true]{color:#fff;background-size:100px 100%;background-image:linear-gradient(-45deg,var(--wp-admin-theme-color) 33%,var(--wp-admin-theme-color-darker-20) 0,var(--wp-admin-theme-color-darker-20) 70%,var(--wp-admin-theme-color) 0);border-color:var(--wp-admin-theme-color)}.components-button.is-secondary,.components-button.is-tertiary{outline:1px solid transparent}.components-button.is-secondary:active:not(:disabled),.components-button.is-tertiary:active:not(:disabled){background:#ddd;color:var(--wp-admin-theme-color-darker-10);box-shadow:none}.components-button.is-secondary:hover:not(:disabled),.components-button.is-tertiary:hover:not(:disabled){color:var(--wp-admin-theme-color-darker-10);box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color-darker-10)}.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{color:#828282;background:#eaeaea;transform:none;opacity:1;box-shadow:none;outline:none}.components-button.is-secondary{box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color);outline:1px solid transparent}.components-button.is-secondary,.components-button.is-tertiary{white-space:nowrap;color:var(--wp-admin-theme-color);background:transparent}.components-button.is-tertiary{padding:6px}.components-button.is-tertiary .dashicon{display:inline-block;flex:0 0 auto}p+.components-button.is-tertiary{margin-left:-6px}.components-button.is-destructive{color:#cc1818;box-shadow:inset 0 0 0 1px #cc1818}.components-button.is-destructive:hover:not(:disabled){color:#710d0d;box-shadow:inset 0 0 0 1px #710d0d}.components-button.is-destructive:focus:not(:disabled){color:var(--wp-admin-theme-color)}.components-button.is-destructive:active:not(:disabled){background:#ccc}.components-button.is-destructive.is-primary{color:#fff;background:#cc1818;box-shadow:inset 0 0 0 1px #cc1818}.components-button.is-destructive.is-primary:hover:not(:disabled){color:#fff;background:#710d0d;box-shadow:inset 0 0 0 1px #710d0d}.components-button.is-destructive.is-tertiary{box-shadow:none}.components-button.is-destructive.is-tertiary:hover:not(:disabled){box-shadow:inset 0 0 0 1px #cc1818;color:#cc1818}.components-button.is-destructive.is-tertiary:focus:not(:disabled){box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) #cc1818;color:#cc1818}.components-button.is-link{margin:0;padding:0;box-shadow:none;border:0;border-radius:0;background:none;outline:none;text-align:left;color:var(--wp-admin-theme-color);text-decoration:underline;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out;height:auto}@media (prefers-reduced-motion:reduce){.components-button.is-link{transition-duration:0s;transition-delay:0s}}.components-button.is-link:focus{border-radius:2px}.components-button.is-link.is-destructive{color:#cc1818}.components-button.is-link.is-destructive:active:not(:disabled),.components-button.is-link.is-destructive:hover:not(:disabled){color:#710d0d;background:none}.components-button.is-link.is-destructive:focus:not(:disabled){color:var(--wp-admin-theme-color)}.components-button:not([aria-disabled=true]):active{color:inherit}.components-button:disabled,.components-button[aria-disabled=true]{cursor:default;opacity:.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 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(-45deg,#fafafa 33%,#e0e0e0 0,#e0e0e0 70%,#fafafa 0)}.components-button.is-small{height:24px;line-height:22px;padding:0 8px;font-size:11px}.components-button.is-small.has-icon:not(.has-text){padding:0 8px;width:24px}.components-button.has-icon{padding:6px;min-width:36px;justify-content:center}.components-button.has-icon .dashicon{display:inline-block;flex:0 0 auto;margin-left:2px;margin-right:2px}.components-button.has-icon.has-text{justify-content:left}.components-button.has-icon.has-text svg{margin-right:8px}.components-button.has-icon.has-text .dashicon{margin-right:10px}.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.components-button.is-pressed:hover:not(:disabled){color:#fff;background:#1e1e1e}.components-button svg{fill:currentColor;outline:none}@media (forced-colors:active){.components-button svg{fill:CanvasText}}.components-button .components-visually-hidden{height:auto}@keyframes components-button__busy-animation{0%{background-position:200px 0}}.components-checkbox-control__input[type=checkbox]{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 .1s linear;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:2px;background:#fff;color:#1e1e1e;clear:none;cursor:pointer;display:inline-block;line-height:0;margin:0 4px 0 0;outline:0;padding:0!important;text-align:center;vertical-align:top;width:24px;height:24px;-webkit-appearance:none;appearance:none;transition:border-color .1s ease-in-out}@media (min-width:600px){.components-checkbox-control__input[type=checkbox]{font-size:13px;line-height:normal}}.components-checkbox-control__input[type=checkbox]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-checkbox-control__input[type=checkbox]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-checkbox-control__input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{margin:-3px -5px;color:#fff}@media (min-width:782px){.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{margin:-4px 0 0 -5px}}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{content:"ï‘ ";float:left;display:inline-block;vertical-align:middle;width:16px;font:normal 30px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:782px){.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{float:none;font-size:21px}}@media (min-width:600px){.components-checkbox-control__input[type=checkbox]{height:20px;width:20px}}@media (prefers-reduced-motion:reduce){.components-checkbox-control__input[type=checkbox]{transition-duration:0s;transition-delay:0s}}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.components-checkbox-control__input[type=checkbox]:checked,.components-checkbox-control__input[type=checkbox]:indeterminate{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked::-ms-check,.components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before{content:none}.components-checkbox-control__input-container{position:relative;display:inline-block;margin-right:12px;vertical-align:middle;width:24px;height:24px}@media (min-width:600px){.components-checkbox-control__input-container{width:20px;height:20px}}svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{fill:#fff;cursor:pointer;position:absolute;left:0;top:0;width:24px;height:24px;-webkit-user-select:none;user-select:none;pointer-events:none}@media (min-width:600px){svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{left:-2px;top:-2px}}.components-circular-option-picker{display:inline-block;width:100%;min-width:188px}.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper{display:flex;justify-content:flex-end;margin-top:12px}.components-circular-option-picker .components-circular-option-picker__swatches{display:flex;flex-wrap:wrap;gap:12px}.components-circular-option-picker__option-wrapper{display:inline-block;height:28px;width:28px;vertical-align:top;transform:scale(1);transition:transform .1s ease}@media (prefers-reduced-motion:reduce){.components-circular-option-picker__option-wrapper{transition-duration:0s;transition-delay:0s}}.components-circular-option-picker__option-wrapper:hover{transform:scale(1.2)}.components-circular-option-picker__option-wrapper>div{height:100%;width:100%}.components-circular-option-picker__option-wrapper:before{content:"";position:absolute;top:1px;left:1px;bottom:1px;right:1px;border-radius:50%;z-index:-1;background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='28' height='28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8V6H4v2h2zm2 0V6h2v2H8zm2 8H8v-2h2v2zm2 0v-2h2v2h-2zm0 2v-2h-2v2H8v2h2v-2h2zm2 0v2h-2v-2h2zm2 0h-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")}.components-circular-option-picker__option{display:inline-block;vertical-align:top;height:100%;width:100%;border:none;border-radius:50%;background:transparent;box-shadow:inset 0 0 0 14px;transition:box-shadow .1s ease;cursor:pointer}@media (prefers-reduced-motion:reduce){.components-circular-option-picker__option{transition-duration:0s;transition-delay:0s}}.components-circular-option-picker__option:hover{box-shadow:inset 0 0 0 14px!important}.components-circular-option-picker__option.is-pressed{box-shadow:inset 0 0 0 4px;position:relative;z-index:1;overflow:visible}.components-circular-option-picker__option.is-pressed+svg{position:absolute;left:2px;top:2px;border-radius:50%;z-index:2;pointer-events:none}.components-circular-option-picker__option:after{content:"";position:absolute;top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:50%;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);border:1px solid transparent}.components-circular-option-picker__option:focus:after{content:"";border:2px solid #757575;width:32px;height:32px;position:absolute;top:-2px;left:-2px;border-radius:50%;box-shadow:inset 0 0 0 2px #fff}.components-circular-option-picker__option.components-button:focus{background-color:transparent;box-shadow:inset 0 0 0 14px;outline:none}.components-circular-option-picker__button-action .components-circular-option-picker__option{color:#fff;background:#fff}.components-circular-option-picker__dropdown-link-action{margin-right:16px}.components-circular-option-picker__dropdown-link-action .components-button{line-height:22px}@media (min-width:782px){.components-palette-edit__popover.components-popover .components-popover__content.components-popover__content.components-popover__content{margin-right:156px;margin-top:-49px}}.components-palette-edit__popover .components-custom-gradient-picker__gradient-bar{margin-top:0}.components-palette-edit__popover .components-custom-gradient-picker__ui-line{margin-bottom:0}.components-palette-edit__popover .components-custom-gradient-picker{width:280px;padding:8px}.components-dropdown-menu__menu .components-palette-edit__menu-button{width:100%}.component-color-indicator{width:20px;height:20px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);border-radius:50%;display:inline-block;padding:0}.components-combobox-control{width:100%}input.components-combobox-control__input[type=text]{width:100%;border:none;box-shadow:none;font-family:inherit;font-size:16px;padding:2px;margin:0;line-height:inherit;min-height:auto}@media (min-width:600px){input.components-combobox-control__input[type=text]{font-size:13px}}input.components-combobox-control__input[type=text]:focus{outline:none;box-shadow:none}.components-combobox-control__suggestions-container{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;display:flex;flex-wrap:wrap;align-items:flex-start;width:100%;margin:0 0 8px;padding:4px}@media (prefers-reduced-motion:reduce){.components-combobox-control__suggestions-container{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-combobox-control__suggestions-container{font-size:13px;line-height:normal}}.components-combobox-control__suggestions-container:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-combobox-control__suggestions-container::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-combobox-control__suggestions-container::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-combobox-control__suggestions-container:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-combobox-control__suggestions-container:focus-within{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-combobox-control__reset.components-button{display:flex;height:16px;min-width:16px;padding:0}.components-color-list-picker,.components-color-list-picker__swatch-button{width:100%}.components-color-list-picker__color-picker{margin:8px 0}.components-color-palette__custom-color{position:relative;border:none;background:none;border-radius:2px;height:64px;padding:12px;font-family:inherit;width:100%;background-image:repeating-linear-gradient(45deg,#e0e0e0 25%,transparent 0,transparent 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(45deg,#e0e0e0 25%,transparent 0,transparent 75%,#e0e0e0 0,#e0e0e0);background-position:0 0,25px 25px;background-size:50px 50px;box-sizing:border-box;color:#fff;cursor:pointer;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);outline:1px solid transparent}.components-color-palette__custom-color:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline-width:2px}.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content{overflow:visible;box-shadow:0 4px 4px rgba(0,0,0,.05);border:none;border-radius:2px;max-height:-moz-fit-content!important;max-height:fit-content!important}.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content>div{padding:0}.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content .react-colorful__saturation{border-top-right-radius:2px;border-top-left-radius:2px}@media (min-width:782px){.components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar .components-popover__content.components-popover__content{margin-right:156px}.components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-top .components-popover__content{margin-top:-60px}.components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-bottom .components-popover__content{margin-bottom:-60px}}.components-color-palette__custom-color-name{text-align:left}.components-color-palette__custom-color-value{margin-left:16px;text-transform:uppercase}.components-custom-gradient-picker__gradient-bar:not(.has-gradient){opacity:.4}.components-custom-gradient-picker__gradient-bar{border-radius:2px;margin-top:12px;width:100%;height:48px;margin-bottom:20px;padding-right:16px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container{position:relative;width:calc(100% - 32px);margin-left:auto;margin-right:auto}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point{border-radius:50%;background:#fff;padding:2px;top:16px;min-width:16px;width:16px;height:16px;position:relative;color:#1e1e1e}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point svg{height:100%;width:100%}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button{border-radius:50%;height:16px;width:16px;padding:0;position:absolute;top:16px;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 2px 0 rgba(0,0,0,.25);outline:2px solid transparent}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active,.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus{box-shadow:inset 0 0 0 calc(var(--wp-admin-border-width-focus)*2) #fff,0 0 2px 0 rgba(0,0,0,.25);outline:4px solid transparent}.components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point{margin-left:auto;margin-right:auto;display:block;margin-bottom:8px}.components-custom-gradient-picker__inserter{direction:ltr;width:100%}.components-custom-gradient-picker__liner-gradient-indicator{display:inline-block;flex:0 auto;width:20px;height:20px}.components-custom-gradient-picker .components-custom-gradient-picker__ui-line{margin-bottom:16px}.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-angle-picker,.components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-custom-gradient-picker__type-picker{margin-bottom:0}.components-custom-gradient-picker .components-custom-gradient-picker__toolbar{border:none}.components-custom-gradient-picker .components-custom-gradient-picker__toolbar>div+div{margin-left:1px}.components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed>svg{background:#fff;border:1px solid #949494;border-radius:2px}.components-custom-gradient-picker .components-input-control__label{line-height:1}.components-custom-gradient-picker label{text-transform:uppercase;font-size:11px;font-weight:500}.components-custom-select-control{position:relative}.components-custom-select-control__label{display:block;margin-bottom:8px}.components-custom-select-control__button{border:1px solid #757575;border-radius:2px;min-width:130px;position:relative;text-align:left}.components-custom-select-control__button:not(.is-next-36px-default-size){min-height:30px}.components-custom-select-control__button.components-custom-select-control__button{padding-left:16px;padding-right:32px}.components-custom-select-control__button.components-custom-select-control__button:not(.is-next-36px-default-size){padding-left:8px;padding-right:24px}.components-custom-select-control__button:focus:not(:disabled){border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.components-custom-select-control__button .components-custom-select-control__button-icon{height:100%;padding:0;position:absolute;right:8px;top:0}.components-custom-select-control__button .components-custom-select-control__button-icon:not(.is-next-36px-default-size){right:4px}.components-custom-select-control__menu{border:1px solid #1e1e1e;background-color:#fff;border-radius:2px;outline:none;transition:none;max-height:400px;min-width:100%;overflow:auto;padding:0;position:absolute;z-index:1000000}.components-custom-select-control__menu[aria-hidden=true]{display:none}.components-custom-select-control__item{align-items:center;display:grid;grid-template-columns:auto auto;list-style-type:none;padding:8px 16px;cursor:default;line-height:28px}.components-custom-select-control__item:not(.is-next-36px-default-size){padding:8px}.components-custom-select-control__item.has-hint{grid-template-columns:auto auto 30px}.components-custom-select-control__item.is-highlighted{background:#ddd}.components-custom-select-control__item .components-custom-select-control__item-hint{color:#757575;text-align:right;padding-right:4px}.components-custom-select-control__item .components-custom-select-control__item-icon{margin-left:auto}.components-custom-select-control__item:last-child{margin-bottom:0}.PresetDateRangePicker_panel{padding:0 22px 11px}.PresetDateRangePicker_button{position:relative;height:100%;text-align:center;background:0 0;border:2px solid #00a699;color:#00a699;padding:4px 12px;margin-right:8px;font:inherit;font-weight:700;line-height:normal;overflow:visible;box-sizing:border-box;cursor:pointer}.PresetDateRangePicker_button:active{outline:0}.PresetDateRangePicker_button__selected{color:#fff;background:#00a699}.SingleDatePickerInput{display:inline-block;background-color:#fff}.SingleDatePickerInput__withBorder{border-radius:2px;border:1px solid #dbdbdb}.SingleDatePickerInput__rtl{direction:rtl}.SingleDatePickerInput__disabled{background-color:#f2f2f2}.SingleDatePickerInput__block{display:block}.SingleDatePickerInput__showClearDate{padding-right:30px}.SingleDatePickerInput_clearDate{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;padding:10px;margin:0 10px 0 5px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.SingleDatePickerInput_clearDate__default:focus,.SingleDatePickerInput_clearDate__default:hover{background:#dbdbdb;border-radius:50%}.SingleDatePickerInput_clearDate__small{padding:6px}.SingleDatePickerInput_clearDate__hide{visibility:hidden}.SingleDatePickerInput_clearDate_svg{fill:#82888a;height:12px;width:15px;vertical-align:middle}.SingleDatePickerInput_clearDate_svg__small{height:9px}.SingleDatePickerInput_calendarIcon{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 5px 0 10px}.SingleDatePickerInput_calendarIcon_svg{fill:#82888a;height:15px;width:14px;vertical-align:middle}.SingleDatePicker{position:relative;display:inline-block}.SingleDatePicker__block{display:block}.SingleDatePicker_picker{z-index:1;background-color:#fff;position:absolute}.SingleDatePicker_picker__rtl{direction:rtl}.SingleDatePicker_picker__directionLeft{left:0}.SingleDatePicker_picker__directionRight{right:0}.SingleDatePicker_picker__portal{background-color:rgba(0,0,0,.3);position:fixed;top:0;left:0;height:100%;width:100%}.SingleDatePicker_picker__fullScreenPortal{background-color:#fff}.SingleDatePicker_closeButton{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;position:absolute;top:0;right:0;padding:15px;z-index:2}.SingleDatePicker_closeButton:focus,.SingleDatePicker_closeButton:hover{color:#b0b3b4;text-decoration:none}.SingleDatePicker_closeButton_svg{height:15px;width:15px;fill:#cacccd}.DayPickerKeyboardShortcuts_buttonReset{background:0 0;border:0;border-radius:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;cursor:pointer;font-size:14px}.DayPickerKeyboardShortcuts_buttonReset:active{outline:0}.DayPickerKeyboardShortcuts_show{width:22px;position:absolute;z-index:2}.DayPickerKeyboardShortcuts_show__bottomRight{border-top:26px solid transparent;border-right:33px solid #00a699;bottom:0;right:0}.DayPickerKeyboardShortcuts_show__bottomRight:hover{border-right:33px solid #008489}.DayPickerKeyboardShortcuts_show__topRight{border-bottom:26px solid transparent;border-right:33px solid #00a699;top:0;right:0}.DayPickerKeyboardShortcuts_show__topRight:hover{border-right:33px solid #008489}.DayPickerKeyboardShortcuts_show__topLeft{border-bottom:26px solid transparent;border-left:33px solid #00a699;top:0;left:0}.DayPickerKeyboardShortcuts_show__topLeft:hover{border-left:33px solid #008489}.DayPickerKeyboardShortcuts_showSpan{color:#fff;position:absolute}.DayPickerKeyboardShortcuts_showSpan__bottomRight{bottom:0;right:-28px}.DayPickerKeyboardShortcuts_showSpan__topRight{top:1px;right:-28px}.DayPickerKeyboardShortcuts_showSpan__topLeft{top:1px;left:-28px}.DayPickerKeyboardShortcuts_panel{overflow:auto;background:#fff;border:1px solid #dbdbdb;border-radius:2px;position:absolute;top:0;bottom:0;right:0;left:0;z-index:2;padding:22px;margin:33px}.DayPickerKeyboardShortcuts_title{font-size:16px;font-weight:700;margin:0}.DayPickerKeyboardShortcuts_list{list-style:none;padding:0;font-size:14px}.DayPickerKeyboardShortcuts_close{position:absolute;right:22px;top:22px;z-index:2}.DayPickerKeyboardShortcuts_close:active{outline:0}.DayPickerKeyboardShortcuts_closeSvg{height:15px;width:15px;fill:#cacccd}.DayPickerKeyboardShortcuts_closeSvg:focus,.DayPickerKeyboardShortcuts_closeSvg:hover{fill:#82888a}.CalendarDay{box-sizing:border-box;cursor:pointer;font-size:14px;text-align:center}.CalendarDay:active{outline:0}.CalendarDay__defaultCursor{cursor:default}.CalendarDay__default{border:1px solid #e4e7e7;color:#484848;background:#fff}.CalendarDay__default:hover{background:#e4e7e7;border:1px double #e4e7e7;color:inherit}.CalendarDay__hovered_offset{background:#f4f5f5;border:1px double #e4e7e7;color:inherit}.CalendarDay__outside{border:0;background:#fff;color:#484848}.CalendarDay__outside:hover{border:0}.CalendarDay__blocked_minimum_nights{background:#fff;border:1px solid #eceeee;color:#cacccd}.CalendarDay__blocked_minimum_nights:active,.CalendarDay__blocked_minimum_nights:hover{background:#fff;color:#cacccd}.CalendarDay__highlighted_calendar{background:#ffe8bc;color:#484848}.CalendarDay__highlighted_calendar:active,.CalendarDay__highlighted_calendar:hover{background:#ffce71;color:#484848}.CalendarDay__selected_span{background:#66e2da;border:1px solid #33dacd;color:#fff}.CalendarDay__selected_span:active,.CalendarDay__selected_span:hover{background:#33dacd;border:1px solid #33dacd;color:#fff}.CalendarDay__last_in_range{border-right:#00a699}.CalendarDay__selected,.CalendarDay__selected:active,.CalendarDay__selected:hover{background:#00a699;border:1px solid #00a699;color:#fff}.CalendarDay__hovered_span,.CalendarDay__hovered_span:hover{background:#b2f1ec;border:1px solid #80e8e0;color:#007a87}.CalendarDay__hovered_span:active{background:#80e8e0;border:1px solid #80e8e0;color:#007a87}.CalendarDay__blocked_calendar,.CalendarDay__blocked_calendar:active,.CalendarDay__blocked_calendar:hover{background:#cacccd;border:1px solid #cacccd;color:#82888a}.CalendarDay__blocked_out_of_range,.CalendarDay__blocked_out_of_range:active,.CalendarDay__blocked_out_of_range:hover{background:#fff;border:1px solid #e4e7e7;color:#cacccd}.CalendarMonth{background:#fff;text-align:center;vertical-align:top;-webkit-user-select:none;user-select:none}.CalendarMonth_table{border-collapse:collapse;border-spacing:0}.CalendarMonth_verticalSpacing{border-collapse:separate}.CalendarMonth_caption{color:#484848;font-size:18px;text-align:center;padding-top:22px;padding-bottom:37px;caption-side:top}.CalendarMonth_caption__verticalScrollable{padding-top:12px;padding-bottom:7px}.CalendarMonthGrid{background:#fff;text-align:left;z-index:0}.CalendarMonthGrid__animating{z-index:1}.CalendarMonthGrid__horizontal{position:absolute;left:0}.CalendarMonthGrid__vertical{margin:0 auto}.CalendarMonthGrid__vertical_scrollable{margin:0 auto;overflow-y:scroll}.CalendarMonthGrid_month__horizontal{display:inline-block;vertical-align:top;min-height:100%}.CalendarMonthGrid_month__hideForAnimation{position:absolute;z-index:-1;opacity:0;pointer-events:none}.CalendarMonthGrid_month__hidden{visibility:hidden}.DayPickerNavigation{position:relative;z-index:2}.DayPickerNavigation__horizontal{height:0}.DayPickerNavigation__verticalDefault{position:absolute;width:100%;height:52px;bottom:0;left:0}.DayPickerNavigation__verticalScrollableDefault{position:relative}.DayPickerNavigation_button{cursor:pointer;-webkit-user-select:none;user-select:none;border:0;padding:0;margin:0}.DayPickerNavigation_button__default{border:1px solid #e4e7e7;background-color:#fff;color:#757575}.DayPickerNavigation_button__default:focus,.DayPickerNavigation_button__default:hover{border:1px solid #c4c4c4}.DayPickerNavigation_button__default:active{background:#f2f2f2}.DayPickerNavigation_button__horizontalDefault{position:absolute;top:18px;line-height:.78;border-radius:3px;padding:6px 9px}.DayPickerNavigation_leftButton__horizontalDefault{left:22px}.DayPickerNavigation_rightButton__horizontalDefault{right:22px}.DayPickerNavigation_button__verticalDefault{padding:5px;background:#fff;box-shadow:0 0 5px 2px rgba(0,0,0,.1);position:relative;display:inline-block;height:100%;width:50%}.DayPickerNavigation_nextButton__verticalDefault{border-left:0}.DayPickerNavigation_nextButton__verticalScrollableDefault{width:100%}.DayPickerNavigation_svg__horizontal{height:19px;width:19px;fill:#82888a;display:block}.DayPickerNavigation_svg__vertical{height:42px;width:42px;fill:#484848;display:block}.DayPicker{position:relative;text-align:left}.DayPicker,.DayPicker__horizontal{background:#fff}.DayPicker__verticalScrollable{height:100%}.DayPicker__hidden{visibility:hidden}.DayPicker__withBorder{box-shadow:0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);border-radius:3px}.DayPicker_portal__horizontal{box-shadow:none;position:absolute;left:50%;top:50%}.DayPicker_portal__vertical{position:static}.DayPicker_focusRegion{outline:0}.DayPicker_calendarInfo__horizontal,.DayPicker_wrapper__horizontal{display:inline-block;vertical-align:top}.DayPicker_weekHeaders{position:relative}.DayPicker_weekHeaders__horizontal{margin-left:13px}.DayPicker_weekHeader{color:#757575;position:absolute;top:62px;z-index:2;text-align:left;padding:0!important}.DayPicker_weekHeader__vertical{left:50%}.DayPicker_weekHeader__verticalScrollable{top:0;display:table-row;border-bottom:1px solid #dbdbdb;background:#fff;margin-left:0;left:0;width:100%;text-align:center}.DayPicker_weekHeader_ul{list-style:none;margin:1px 0;padding-left:0;padding-right:0;font-size:14px}.DayPicker_weekHeader_li{display:inline-block;text-align:center;margin:0 1px}.DayPicker_transitionContainer{position:relative;overflow:hidden;border-radius:3px}.DayPicker_transitionContainer__horizontal{transition:height .2s ease-in-out}.DayPicker_transitionContainer__vertical{width:100%}.DayPicker_transitionContainer__verticalScrollable{padding-top:20px;height:100%;position:absolute;top:0;bottom:0;right:0;left:0;overflow-y:scroll}.DateInput{margin:0;padding:0;background:#fff;position:relative;display:inline-block;width:130px;vertical-align:middle}.DateInput__small{width:97px}.DateInput__block{width:100%}.DateInput__disabled{background:#f2f2f2;color:#dbdbdb}.DateInput_input{font-weight:200;font-size:19px;line-height:24px;color:#484848;background-color:#fff;width:100%;padding:11px 11px 9px;border:0;border-bottom:2px solid transparent;border-radius:0}.DateInput_input__small{font-size:15px;line-height:18px;letter-spacing:.2px;padding:7px 7px 5px}.DateInput_input__regular{font-weight:auto}.DateInput_input__readOnly{-webkit-user-select:none;user-select:none}.DateInput_input__focused{outline:0;background:#fff;border:0;border-bottom:2px solid #008489}.DateInput_input__disabled{background:#f2f2f2;font-style:italic}.DateInput_screenReaderMessage{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.DateInput_fang{position:absolute;width:20px;height:10px;left:22px;z-index:2}.DateInput_fangShape{fill:#fff}.DateInput_fangStroke{stroke:#dbdbdb;fill:transparent}.DateRangePickerInput{background-color:#fff;display:inline-block}.DateRangePickerInput__disabled{background:#f2f2f2}.DateRangePickerInput__withBorder{border-radius:2px;border:1px solid #dbdbdb}.DateRangePickerInput__rtl{direction:rtl}.DateRangePickerInput__block{display:block}.DateRangePickerInput__showClearDates{padding-right:30px}.DateRangePickerInput_arrow{display:inline-block;vertical-align:middle;color:#484848}.DateRangePickerInput_arrow_svg{vertical-align:middle;fill:#484848;height:24px;width:24px}.DateRangePickerInput_clearDates{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;padding:10px;margin:0 10px 0 5px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.DateRangePickerInput_clearDates__small{padding:6px}.DateRangePickerInput_clearDates_default:focus,.DateRangePickerInput_clearDates_default:hover{background:#dbdbdb;border-radius:50%}.DateRangePickerInput_clearDates__hide{visibility:hidden}.DateRangePickerInput_clearDates_svg{fill:#82888a;height:12px;width:15px;vertical-align:middle}.DateRangePickerInput_clearDates_svg__small{height:9px}.DateRangePickerInput_calendarIcon{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 5px 0 10px}.DateRangePickerInput_calendarIcon_svg{fill:#82888a;height:15px;width:14px;vertical-align:middle}.DateRangePicker{position:relative;display:inline-block}.DateRangePicker__block{display:block}.DateRangePicker_picker{z-index:1;background-color:#fff;position:absolute}.DateRangePicker_picker__rtl{direction:rtl}.DateRangePicker_picker__directionLeft{left:0}.DateRangePicker_picker__directionRight{right:0}.DateRangePicker_picker__portal{background-color:rgba(0,0,0,.3);position:fixed;top:0;left:0;height:100%;width:100%}.DateRangePicker_picker__fullScreenPortal{background-color:#fff}.DateRangePicker_closeButton{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;position:absolute;top:0;right:0;padding:15px;z-index:2}.DateRangePicker_closeButton:focus,.DateRangePicker_closeButton:hover{color:#b0b3b4;text-decoration:none}.DateRangePicker_closeButton_svg{height:15px;width:15px;fill:#cacccd}.components-datetime{padding:16px}.components-panel__body .components-datetime{padding:0}.components-datetime .components-datetime__calendar-help{padding:16px;min-width:260px}.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-toggle{display:block;margin-left:auto}.components-datetime fieldset{border:0;padding:0;margin:0}.components-datetime input,.components-datetime select{box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid #757575}@media (prefers-reduced-motion:reduce){.components-datetime input,.components-datetime select{transition-duration:0s;transition-delay:0s}}.components-datetime .components-button,.components-datetime input[type=number],.components-datetime select{height:30px;margin-top:0;margin-bottom:0}.components-datetime .components-button:focus{z-index:1}.components-datetime__date{min-height:236px;border-top:1px solid #ddd}.components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault{
+ /*!rtl:begin:ignore*/left:13px
+ /*!rtl:end:ignore*/}.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:none;border-radius:50%;text-align:center}.components-datetime__date .CalendarDay:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 3px #fff;outline:2px solid transparent}.components-datetime__date .CalendarDay__selected{background:var(--wp-admin-theme-color);border:2px solid transparent}.components-datetime__date .CalendarDay__selected:hover{background:var(--wp-admin-theme-color-darker-20)}.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{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-datetime__date .DayPicker_weekHeader{top:50px}.components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul{margin:1px;padding-left:0;padding-right:0}.components-datetime__date.is-description-visible .DayPicker{visibility:hidden}.components-datetime__date .CalendarDay .components-datetime__date__day{height:100%;display:flex;justify-content:center;align-content:center;flex-direction:column;position:relative}.components-datetime__date .CalendarDay .components-datetime__date__day.has-events:before{content:" ";width:4px;height:4px;border-radius:2px;position:absolute;left:50%;margin-left:-2px;bottom:0;background-color:#fff}.components-datetime__date .CalendarDay:not(.CalendarDay__selected) .components-datetime__date__day.has-events:before{background:var(--wp-admin-theme-color)}.components-datetime__time{padding-bottom:16px}.components-datetime__time fieldset{position:relative;margin-bottom:.5em}.components-datetime__time fieldset+fieldset{margin-bottom:0}.components-datetime__time .components-datetime__time-field-am-pm fieldset{margin-top:0}.components-datetime__time .components-datetime__time-wrapper{display:flex}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator{display:inline-block;padding:0 3px 0 0}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time{direction:ltr}.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{position:relative;z-index:1}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]{padding:2px;margin-right:4px;text-align:center;-moz-appearance:textfield}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]:focus{position:relative;z-index:1}.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.components-datetime__time.is-12-hour .components-datetime__time-field-day input{margin:-4px 0 0!important;border-radius:2px 0 0 2px!important}.components-datetime__time.is-12-hour .components-datetime__time-field-year input{border-radius:0 2px 2px 0!important}.components-datetime__timezone{line-height:30px;margin-left:4px;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.components-datetime__time-legend{font-weight:600;margin-top:.5em}.components-datetime__time-legend.invisible{position:absolute;top:-999em;left:-999em}.components-datetime__time-field-integer-field{font-family:inherit}.components-datetime__time-field-day-input,.components-datetime__time-field-hours-input,.components-datetime__time-field-minutes-input{width:35px}.components-datetime__time-field-year-input{width:55px}.components-datetime__time-field-month-select{max-width:145px}.components-popover .components-datetime__date{padding-left:4px}.block-editor-dimension-control .components-base-control__field{display:flex;align-items:center}.block-editor-dimension-control .components-base-control__label{display:flex;align-items:center;margin-right:1em;margin-bottom:0}.block-editor-dimension-control .components-base-control__label .dashicon{margin-right:.5em}.block-editor-dimension-control.is-manual .components-base-control__label{width:10em}body.is-dragging-components-draggable{cursor:move;cursor:grabbing!important}.components-draggable__invisible-drag-image{position:fixed;left:-1000px;height:50px;width:50px}.components-draggable__clone{position:fixed;padding:0;background:transparent;pointer-events:none;z-index:1000000000}.components-drop-zone{position:absolute;top:0;right:0;bottom:0;left:0;z-index:40;visibility:hidden;opacity:0;border-radius:2px}.components-drop-zone.is-active{opacity:1;visibility:visible}.components-drop-zone__content{position:absolute;top:0;bottom:0;left:0;right:0;height:100%;width:100%;display:flex;background-color:var(--wp-admin-theme-color);align-items:center;justify-content:center;z-index:50;text-align:center;color:#fff}.components-drop-zone__content-icon,.components-drop-zone__content-text{display:block}.components-drop-zone__content-icon{margin:0 auto;line-height:0;fill:currentColor;pointer-events:none}.components-drop-zone__content-text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-dropdown{display:inline-block}.components-dropdown__content .components-popover__content>div{padding:8px}.components-dropdown__content [role=menuitem]{white-space:nowrap}.components-dropdown-menu__menu{width:100%;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4}.components-dropdown-menu__menu .components-dropdown-menu__menu-item,.components-dropdown-menu__menu .components-menu-item{width:100%;padding:6px;outline:none;cursor:pointer;white-space:nowrap}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,.components-dropdown-menu__menu .components-menu-item.has-separator{margin-top:6px;position:relative;overflow:visible}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator:before,.components-dropdown-menu__menu .components-menu-item.has-separator:before{display:block;content:"";box-sizing:content-box;background-color:#ddd;position:absolute;top:-3px;left:0;right:0;height:1px}.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;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:2px;width:24px;height:24px}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,.components-dropdown-menu__menu .components-menu-item.is-icon-only{width:auto}.components-dropdown-menu__menu .components-menu-item__button,.components-dropdown-menu__menu .components-menu-item__button.components-button{min-height:36px;height:auto;text-align:left;padding-left:8px;padding-right:8px}.components-dropdown-menu__menu .components-menu-group{padding:8px;margin:0 -8px}.components-dropdown-menu__menu .components-menu-group:first-child{margin-top:-8px}.components-dropdown-menu__menu .components-menu-group:last-child{margin-bottom:-8px}.components-dropdown-menu__menu .components-menu-group+.components-menu-group{margin-top:0;border-top:1px solid #ccc;padding:8px}.is-alternate .components-dropdown-menu__menu .components-menu-group+.components-menu-group{border-color:#1e1e1e}.components-font-size-picker__header__hint{margin-left:4px;color:#757575}.components-font-size-picker__header .components-button.is-small.has-icon:not(.has-text){min-width:24px;padding:0}.components-font-size-picker__controls{max-width:248px;align-items:center;margin-top:8px;margin-bottom:24px}.components-font-size-picker__controls .components-unit-control-wrapper .components-input-control__label{font-weight:300;padding-bottom:0!important;margin-bottom:8px!important}.components-font-size-picker__controls .components-custom-select-control__button{width:100%}.components-font-size-picker__controls .components-font-size-picker__number{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;display:inline-block;font-weight:500;height:30px;margin:8px 8px 0 0;width:54px}@media (prefers-reduced-motion:reduce){.components-font-size-picker__controls .components-font-size-picker__number{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-font-size-picker__controls .components-font-size-picker__number{font-size:13px;line-height:normal}}.components-font-size-picker__controls .components-font-size-picker__number:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-font-size-picker__controls .components-font-size-picker__number::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-font-size-picker__controls .components-font-size-picker__number::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-font-size-picker__controls .components-font-size-picker__number:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-font-size-picker__controls .components-font-size-picker__number[value=""]+.components-button{cursor:default;opacity:.3;pointer-events:none}.components-font-size-picker__controls .components-font-size-picker__number-container{display:flex;flex-direction:column}.components-font-size-picker__controls .components-color-palette__clear{height:30px}.components-font-size-picker__custom-input .components-range-control__slider+.dashicon{width:30px;height:30px}.components-font-size-picker{border:0;padding:0;margin:0}.components-form-toggle{position:relative;display:inline-block}.components-form-toggle .components-form-toggle__track{content:"";display:inline-block;box-sizing:border-box;vertical-align:top;background-color:#fff;border:1px solid #1e1e1e;width:36px;height:18px;border-radius:9px;transition:background .2s ease}@media (prefers-reduced-motion:reduce){.components-form-toggle .components-form-toggle__track{transition-duration:0s;transition-delay:0s}}.components-form-toggle .components-form-toggle__thumb{display:block;position:absolute;box-sizing:border-box;top:3px;left:3px;width:12px;height:12px;border-radius:50%;transition:transform .1s ease;background-color:#1e1e1e;border:5px solid #1e1e1e}@media (prefers-reduced-motion:reduce){.components-form-toggle .components-form-toggle__thumb{transition-duration:0s;transition-delay:0s}}.components-form-toggle.is-checked .components-form-toggle__track{background-color:var(--wp-admin-theme-color);border:9px solid transparent}.components-form-toggle .components-form-toggle__input:focus+.components-form-toggle__track{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent;outline-offset:2px}.components-form-toggle.is-checked .components-form-toggle__thumb{background-color:#fff;border-width:0;transform:translateX(18px)}.components-disabled .components-form-toggle,.components-form-toggle.is-disabled{opacity:.3}.components-form-toggle input.components-form-toggle__input[type=checkbox]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;margin:0;padding:0;z-index:1;border:none}.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked{background:none}.components-form-toggle input.components-form-toggle__input[type=checkbox]:before{content:""}.components-form-token-field__input-container{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;display:flex;flex-wrap:wrap;align-items:center;width:100%;margin:0 0 8px;padding:2px 4px;cursor:text}@media (prefers-reduced-motion:reduce){.components-form-token-field__input-container{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-form-token-field__input-container{font-size:13px;line-height:normal}}.components-form-token-field__input-container:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-form-token-field__input-container::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-form-token-field__input-container::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-form-token-field__input-container:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-form-token-field__input-container.is-disabled{background:#ddd;border-color:#ddd}.components-form-token-field__input-container.is-active{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-form-token-field__input-container input[type=text].components-form-token-field__input{display:inline-block;flex:1;font-family:inherit;font-size:16px;width:100%;max-width:100%;margin-left:4px;padding:0;min-height:24px;min-width:50px;background:inherit;border:0;color:#1e1e1e;box-shadow:none}@media (min-width:600px){.components-form-token-field__input-container input[type=text].components-form-token-field__input{font-size:13px}}.components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input,.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus{outline:none;box-shadow:none}.components-form-token-field__input-container .components-form-token-field__token+input[type=text].components-form-token-field__input{width:auto}.components-form-token-field__label{display:inline-block;margin-bottom:8px}.components-form-token-field__help{font-size:12px;font-style:normal;color:#757575}.components-form-token-field__token{font-size:13px;display:flex;margin:2px 4px 2px 0;color:#1e1e1e;max-width:100%}.components-form-token-field__token.is-success .components-form-token-field__remove-token,.components-form-token-field__token.is-success .components-form-token-field__token-text{background:#4ab866}.components-form-token-field__token.is-error .components-form-token-field__remove-token,.components-form-token-field__token.is-error .components-form-token-field__token-text{background:#cc1818}.components-form-token-field__token.is-validating .components-form-token-field__remove-token,.components-form-token-field__token.is-validating .components-form-token-field__token-text{color:#757575}.components-form-token-field__token.is-borderless{position:relative;padding:0 16px 0 0}.components-form-token-field__token.is-borderless .components-form-token-field__token-text{background:transparent;color:var(--wp-admin-theme-color)}.components-form-token-field__token.is-borderless .components-form-token-field__remove-token{background:transparent;color:#757575;position:absolute;top:1px;right:0}.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text{color:#4ab866}.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text{color:#cc1818;border-radius:4px 0 0 4px;padding:0 4px 0 6px}.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text{color:#1e1e1e}.components-form-token-field__token.is-disabled .components-form-token-field__remove-token{cursor:default}.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{display:inline-block;line-height:24px;height:auto;background:#ddd;min-width:unset;transition:all .2s cubic-bezier(.4,1,.4,1)}@media (prefers-reduced-motion:reduce){.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{transition-duration:0s;transition-delay:0s;animation-duration:1ms;animation-delay:0s}}.components-form-token-field__token-text{border-radius:2px 0 0 2px;padding:0 0 0 8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.components-form-token-field__remove-token.components-button{cursor:pointer;border-radius:0 2px 2px 0;padding:0 2px;color:#1e1e1e;line-height:10px;overflow:initial}.components-form-token-field__remove-token.components-button:hover{color:#1e1e1e}.components-form-token-field__suggestions-list{flex:1 0 100%;min-width:100%;max-height:9em;overflow-y:auto;transition:all .15s ease-in-out;list-style:none;border-top:1px solid #757575;margin:4px -4px -4px;padding:0}@media (prefers-reduced-motion:reduce){.components-form-token-field__suggestions-list{transition-duration:0s;transition-delay:0s}}.components-form-token-field__suggestion{color:#757575;display:block;font-size:13px;padding:4px 8px;margin:0;cursor:pointer}.components-form-token-field__suggestion.is-selected{background:var(--wp-admin-theme-color);color:#fff}.components-form-token-field__suggestion-match{text-decoration:underline}@media (min-width:600px){.components-guide{width:600px}}.components-guide .components-modal__content{padding:0;margin-top:0;border-radius:2px}.components-guide .components-modal__content:before{content:none}.components-guide .components-modal__header{border-bottom:none;padding:0;position:sticky}.components-guide .components-modal__header .components-button{align-self:flex-start;margin:8px 8px 0 0;position:static}.components-guide .components-modal__header .components-button:hover svg{fill:#fff}.components-guide__container{display:flex;flex-direction:column;justify-content:space-between;margin-top:-60px;min-height:100%}.components-guide__page{display:flex;flex-direction:column;justify-content:center;position:relative}@media (min-width:600px){.components-guide__page{min-height:300px}}.components-guide__footer{align-content:center;display:flex;height:30px;justify-content:center;margin:0 0 24px;padding:0 32px;position:relative;width:100%}.components-guide__page-control{margin:0;text-align:center}.components-guide__page-control li{display:inline-block;margin:0}.components-guide__page-control .components-button{height:30px;min-width:20px;margin:-6px 0}.components-modal__frame.components-guide{border:none;min-width:312px;height:80vh;max-height:575px}@media (max-width:600px){.components-modal__frame.components-guide{margin:auto;max-width:calc(100vw - 32px)}}.components-button.components-guide__back-button,.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{height:30px;position:absolute}.components-button.components-guide__back-button,.components-button.components-guide__forward-button{font-size:13px;padding:4px 2px}.components-button.components-guide__back-button.has-text svg,.components-button.components-guide__forward-button.has-text svg{margin:0}.components-button.components-guide__back-button:hover,.components-button.components-guide__forward-button:hover{text-decoration:underline}.components-button.components-guide__back-button{left:32px}.components-button.components-guide__forward-button{right:32px;color:#1386bf;font-weight:700}.components-button.components-guide__finish-button{right:32px}[role=region]{position:relative}.is-focusing-regions [role=region]:focus:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;pointer-events:none;outline:4px solid transparent;box-shadow:inset 0 0 0 4px var(--wp-admin-theme-color)}@supports (outline-offset:1px){.is-focusing-regions [role=region]:focus:after{content:none}.is-focusing-regions [role=region]:focus{outline-style:solid;outline-color:var(--wp-admin-theme-color);outline-width:4px;outline-offset:-4px}}.components-menu-group+.components-menu-group{margin-top:8px;padding-top:8px;border-top:1px solid #1e1e1e}.components-menu-group+.components-menu-group.has-hidden-separator{border-top:none;margin-top:0;padding-top:0}.components-menu-group__label{padding:0 8px;margin-top:4px;margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500;white-space:nowrap}.components-menu-item__button,.components-menu-item__button.components-button{width:100%}.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child{padding-right:48px}.components-menu-item__button.components-button .components-menu-items__item-icon,.components-menu-item__button .components-menu-items__item-icon{display:inline-block;flex:0 0 auto}.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right,.components-menu-item__button .components-menu-items__item-icon.has-icon-right{margin-right:-2px;margin-left:24px}.components-menu-item__button.components-button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right,.components-menu-item__button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right{margin-left:8px}.components-menu-item__button .block-editor-block-icon,.components-menu-item__button.components-button .block-editor-block-icon{margin-left:-2px;margin-right:8px}.components-menu-item__button.components-button.is-primary,.components-menu-item__button.is-primary{justify-content:center}.components-menu-item__button.components-button.is-primary .components-menu-item__item,.components-menu-item__button.is-primary .components-menu-item__item{margin-right:0}.components-menu-item__info-wrapper{display:flex;flex-direction:column;margin-right:auto}.components-menu-item__info{margin-top:4px;font-size:12px;color:#757575;white-space:normal}.components-menu-item__item{white-space:nowrap;min-width:160px;margin-right:auto;display:inline-flex;align-items:center}.components-menu-item__shortcut{align-self:center;margin-right:0;margin-left:auto;padding-left:24px;color:currentColor;display:none}@media (min-width:480px){.components-menu-item__shortcut{display:inline}}.components-menu-items-choice.components-button svg,.components-menu-items-choice svg{margin-right:12px}.components-menu-items-choice.components-button.has-icon,.components-menu-items-choice.has-icon{padding-left:12px}.components-modal__screen-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.35);z-index:100000;display:flex;animation:edit-post__fade-in-animation .2s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-modal__screen-overlay{animation-duration:1ms;animation-delay:0s}}.components-modal__frame{margin:0;width:100%;background:#fff;box-shadow:0 10px 10px rgba(0,0,0,.25);border-radius:2px;overflow:hidden;display:flex}@media (min-width:600px){.components-modal__frame{margin:auto;width:auto;min-width:360px;max-width:calc(100% - 32px);max-height:calc(100% - 120px);animation:components-modal__appear-animation .1s ease-out;animation-fill-mode:forwards}}@media (min-width:600px) and (prefers-reduced-motion:reduce){.components-modal__frame{animation-duration:1ms;animation-delay:0s}}@media (min-width:600px){.components-modal__frame.is-full-screen{width:90vw;min-height:90vh}}@media (min-width:960px){.components-modal__frame{max-height:70%}}@keyframes components-modal__appear-animation{0%{transform:translateY(32px)}to{transform:translateY(0)}}.components-modal__header{box-sizing:border-box;border-bottom:1px solid #ddd;padding:0 32px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:60px;width:100%;z-index:10;position:absolute;top:0;left:0}.components-modal__header .components-modal__header-heading{font-size:1rem;font-weight:600}.components-modal__header h1{line-height:1;margin:0}.components-modal__header .components-button{position:relative;left:8px}.components-modal__header-heading-container{align-items:center;flex-grow:1;display:flex;flex-direction:row;justify-content:left}.components-modal__header-icon-container{display:inline-block}.components-modal__header-icon-container svg{max-width:36px;max-height:36px;padding:8px}.components-modal__content{flex:1;margin-top:60px;padding:0 32px 24px;overflow:auto}.components-modal__content:before{content:"";display:block;margin-bottom:24px}.components-modal__content.hide-header{margin-top:0;padding-top:24px}.components-modal__content.hide-header:before{content:none}.components-notice{display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;background-color:#fff;border-left:4px solid var(--wp-admin-theme-color);margin:5px 15px 2px;padding:8px 12px;align-items:center}.components-notice.is-dismissible{padding-right:36px;position:relative}.components-notice.is-success{border-left-color:#4ab866;background-color:#eff9f1}.components-notice.is-warning{border-left-color:#f0b849;background-color:#fef8ee}.components-notice.is-error{border-left-color:#cc1818;background-color:#f4a2a2}.components-notice__content{flex-grow:1;margin:4px 25px 4px 0}.components-notice__actions{display:flex;flex-wrap:wrap}.components-notice__action.components-button{margin-right:8px}.components-notice__action.components-button,.components-notice__action.components-button.is-link{margin-left:12px}.components-notice__action.components-button.is-secondary{vertical-align:initial}.components-notice__dismiss{color:#757575;align-self:flex-start;flex-shrink:0}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{color:#1e1e1e;background-color:transparent}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{box-shadow:none}.components-notice-list{max-width:100vw;box-sizing:border-box}.components-notice-list .components-notice__content{margin-top:12px;margin-bottom:12px;line-height:2}.components-notice-list .components-notice__action.components-button{display:block;margin-left:0;margin-top:8px}.components-panel{background:#fff;border:1px solid #e0e0e0}.components-panel>.components-panel__body:first-child,.components-panel>.components-panel__header:first-child{margin-top:-1px}.components-panel>.components-panel__body:last-child,.components-panel>.components-panel__header:last-child{border-bottom-width:0}.components-panel+.components-panel{margin-top:-1px}.components-panel__body{border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.components-panel__body h3{margin:0 0 .5em}.components-panel__body.is-opened{padding:16px}.components-panel__header{display:flex;justify-content:space-between;align-items:center;padding:0 16px;height:48px;border-bottom:1px solid #ddd}.components-panel__header h2{margin:0;font-size:inherit;color:inherit}.components-panel__body+.components-panel__body,.components-panel__body+.components-panel__header,.components-panel__header+.components-panel__body,.components-panel__header+.components-panel__header{margin-top:-1px}.components-panel__body>.components-panel__body-title{display:block;padding:0;font-size:inherit;margin-top:0;margin-bottom:0;transition:background .1s ease-in-out}@media (prefers-reduced-motion:reduce){.components-panel__body>.components-panel__body-title{transition-duration:0s;transition-delay:0s}}.components-panel__body.is-opened>.components-panel__body-title{margin:-16px -16px 5px}.components-panel__body>.components-panel__body-title:hover{background:#f0f0f0;border:none}.components-panel__body-toggle.components-button{position:relative;padding:16px 48px 16px 16px;outline:none;width:100%;font-weight:500;text-align:left;color:#1e1e1e;border:none;box-shadow:none;transition:background .1s ease-in-out;height:auto}@media (prefers-reduced-motion:reduce){.components-panel__body-toggle.components-button{transition-duration:0s;transition-delay:0s}}.components-panel__body-toggle.components-button:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:0}.components-panel__body-toggle.components-button .components-panel__arrow{position:absolute;right:16px;top:50%;transform:translateY(-50%);color:#1e1e1e;fill:currentColor;transition:color .1s ease-in-out}@media (prefers-reduced-motion:reduce){.components-panel__body-toggle.components-button .components-panel__arrow{transition-duration:0s;transition-delay:0s}}body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right{transform:scaleX(-1);-ms-filter:fliph;filter:FlipH;margin-top:-10px}.components-panel__icon{color:#757575;margin:-2px 0 -2px 6px}.components-panel__body-toggle-icon{margin-right:-5px}.components-panel__color-title{float:left;height:19px}.components-panel__row{display:flex;justify-content:space-between;align-items:center;margin-top:8px;min-height:36px}.components-panel__row select{min-width:0}.components-panel__row label{margin-right:12px;flex-shrink:0;max-width:75%}.components-panel__row:empty,.components-panel__row:first-of-type{margin-top:0}.components-panel .circle-picker{padding-bottom:20px}.components-placeholder.components-placeholder{box-sizing:border-box;position:relative;padding:1em;min-height:200px;width:100%;text-align:left;margin:0;color:#1e1e1e;-moz-font-smoothing:subpixel-antialiased;-webkit-font-smoothing:subpixel-antialiased;border-radius:2px;background-color:#fff;box-shadow:inset 0 0 0 1px #1e1e1e;outline:1px solid transparent}@supports (position:sticky){.components-placeholder.components-placeholder{display:flex;flex-direction:column;justify-content:center;align-items:flex-start}}.components-placeholder.components-placeholder .components-base-control__label{font-size:13px}.components-placeholder__error,.components-placeholder__fieldset,.components-placeholder__instructions,.components-placeholder__label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-placeholder__label{display:flex;font-weight:600;margin-bottom:16px;align-items:center}.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{margin-right:1ch;fill:currentColor}@media (forced-colors:active){.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{fill:CanvasText}}.components-placeholder__label:empty{display:none}.components-placeholder__fieldset,.components-placeholder__fieldset form{display:flex;flex-direction:row;width:100%;flex-wrap:wrap}.components-placeholder__fieldset form p,.components-placeholder__fieldset p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-placeholder__fieldset.components-placeholder__fieldset{border:none;padding:0}.components-placeholder__fieldset.components-placeholder__fieldset .components-placeholder__instructions{padding:0;font-weight:400;font-size:1em}.components-placeholder__fieldset.is-column-layout,.components-placeholder__fieldset.is-column-layout form{flex-direction:column}.components-placeholder__input[type=url]{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;margin:0 8px 0 0;flex:1 1 auto}@media (prefers-reduced-motion:reduce){.components-placeholder__input[type=url]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-placeholder__input[type=url]{font-size:13px;line-height:normal}}.components-placeholder__input[type=url]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-placeholder__input[type=url]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-placeholder__input[type=url]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-placeholder__input[type=url]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-placeholder__instructions{margin-bottom:1em}.components-placeholder__error{margin-top:1em;width:100%}.components-placeholder__preview img{margin:3%;width:50%}.components-placeholder__fieldset .components-button{margin-right:12px;margin-bottom:12px}.components-placeholder__fieldset .components-button:last-child{margin-bottom:0;margin-right:0}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link{margin-left:10px;margin-right:10px}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link:last-child{margin-right:0}.components-placeholder.is-large .components-placeholder__label{font-size:18pt;font-weight:400}.components-placeholder.is-medium .components-placeholder__instructions,.components-placeholder.is-small .components-placeholder__instructions{display:none}.components-placeholder.is-medium .components-placeholder__fieldset,.components-placeholder.is-medium .components-placeholder__fieldset form,.components-placeholder.is-small .components-placeholder__fieldset,.components-placeholder.is-small .components-placeholder__fieldset form{flex-direction:column}.components-placeholder.is-medium .components-placeholder__fieldset .components-button,.components-placeholder.is-small .components-placeholder__fieldset .components-button{margin-right:auto}.components-placeholder.is-small .components-button{padding:0 8px 2px}
+
+/*!rtl:begin:ignore*/.components-popover{position:fixed;z-index:1000000;top:0;left:0;opacity:0}.components-popover.is-expanded,.components-popover[data-x-axis][data-y-axis]{opacity:1}.components-popover.is-expanded{top:0;left:0;right:0;bottom:0;z-index:1000000!important}.components-popover:not(.is-without-arrow){margin-left:2px}.components-popover:not(.is-without-arrow):before{border:8px solid #ccc}.components-popover:not(.is-without-arrow).is-alternate:before{border-color:#1e1e1e}.components-popover:not(.is-without-arrow):after{border:8px solid #fff}.components-popover:not(.is-without-arrow):after,.components-popover:not(.is-without-arrow):before{content:"";position:absolute;height:0;width:0;line-height:0}.components-popover:not(.is-without-arrow)[data-y-axis=top]{margin-top:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=top]:before{bottom:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=top]:after{bottom:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=top]:after,.components-popover:not(.is-without-arrow)[data-y-axis=top]:before{border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-style:solid;margin-left:-10px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]{margin-top:8px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:before{top:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:after{top:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:after,.components-popover:not(.is-without-arrow)[data-y-axis=bottom]:before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]{margin-left:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:before{right:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:after{right:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:after,.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]:before{border-bottom-color:transparent;border-left-style:solid;border-right:none;border-top-color:transparent}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]{margin-left:8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:before{left:-8px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:after{left:-6px}.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:after,.components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]:before{border-bottom-color:transparent;border-left:none;border-right-style:solid;border-top-color:transparent}.components-popover[data-y-axis=top]{bottom:100%}.components-popover[data-y-axis=bottom]{top:100%}.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%;background:#fff;border:1px solid #ccc;box-shadow:0 2px 6px rgba(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;overflow-y:auto}.components-popover.is-expanded .components-popover__content{position:static;height:calc(100% - 48px);overflow-y:visible;min-width:auto;border:none;border-top:1px solid #1e1e1e}.components-popover[data-y-axis=top] .components-popover__content{bottom:100%}.components-popover[data-x-axis=center] .components-popover__content{left:50%;transform:translateX(-50%)}.components-popover[data-x-axis=right] .components-popover__content{position:absolute;left:100%}.components-popover:not([data-y-axis=middle])[data-x-axis=right] .components-popover__content{margin-left:-25px}.components-popover[data-x-axis=left] .components-popover__content{position:absolute;right:100%}.components-popover:not([data-y-axis=middle])[data-x-axis=left] .components-popover__content{margin-right:-25px}.components-popover__header{align-items:center;background:#fff;display:flex;height:48px;justify-content:space-between;padding:0 8px 0 16px}.components-popover__header-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.components-popover__close.components-button{z-index:5}
+
+/*!rtl:end:ignore*/.components-radio-control{display:flex;flex-direction:column}.components-radio-control .components-base-control__help{margin-top:0}.components-radio-control .components-base-control__field{margin-bottom:0}.components-radio-control__option:not(:last-child){margin-bottom:4px}.components-radio-control__input[type=radio]{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 .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;transition:none;border-radius:50%;width:24px;height:24px;margin-top:0;margin-right:6px}@media (prefers-reduced-motion:reduce){.components-radio-control__input[type=radio]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-radio-control__input[type=radio]{font-size:13px;line-height:normal}}.components-radio-control__input[type=radio]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.components-radio-control__input[type=radio]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-radio-control__input[type=radio]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-radio-control__input[type=radio]:-ms-input-placeholder{color:rgba(30,30,30,.62)}@media (min-width:600px){.components-radio-control__input[type=radio]{height:20px;width:20px}}.components-radio-control__input[type=radio]:checked:before{box-sizing:inherit;width:8px;height:8px;transform:translate(7px,7px);margin:0;background-color:#fff;border:4px solid #fff}@media (min-width:600px){.components-radio-control__input[type=radio]:checked:before{transform:translate(5px,5px)}}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.components-radio-control__input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-resizable-box__handle{display:none;width:23px;height:23px;z-index:2}.components-resizable-box__container.has-show-handle .components-resizable-box__handle{display:block}.components-resizable-box__container>img{width:inherit}.components-resizable-box__handle:after{display:block;content:"";width:15px;height:15px;border-radius:50%;background:#fff;cursor:inherit;position:absolute;top:calc(50% - 8px);right:calc(50% - 8px);box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.components-resizable-box__side-handle:before{display:block;border-radius:2px;content:"";width:3px;height:3px;background:var(--wp-admin-theme-color);cursor:inherit;position:absolute;top:calc(50% - 1px);right:calc(50% - 1px);transition:transform .1s ease-in;opacity:0}@media (prefers-reduced-motion:reduce){.components-resizable-box__side-handle:before{transition-duration:0s;transition-delay:0s}}.components-resizable-box__corner-handle,.components-resizable-box__side-handle{z-index:2}.components-resizable-box__side-handle.components-resizable-box__handle-bottom,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:before,.components-resizable-box__side-handle.components-resizable-box__handle-top,.components-resizable-box__side-handle.components-resizable-box__handle-top:before{width:100%;left:0;border-left:0;border-right:0}.components-resizable-box__side-handle.components-resizable-box__handle-left,.components-resizable-box__side-handle.components-resizable-box__handle-left:before,.components-resizable-box__side-handle.components-resizable-box__handle-right,.components-resizable-box__side-handle.components-resizable-box__handle-right:before{height:100%;top:0;border-top:0;border-bottom:0}.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:components-resizable-box__top-bottom-animation .1s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation-duration:1ms;animation-delay:0s}}.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before{animation:components-resizable-box__left-right-animation .1s ease-out 0s;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before{animation-duration:1ms;animation-delay:0s}}@media not all and (-webkit-min-device-pixel-ratio:0),not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:none}}}@keyframes components-resizable-box__top-bottom-animation{0%{transform:scaleX(0);opacity:0}to{transform:scaleX(1);opacity:1}}@keyframes components-resizable-box__left-right-animation{0%{transform:scaleY(0);opacity:0}to{transform:scaleY(1);opacity:1}}
+/*!rtl:begin:ignore*/.components-resizable-box__handle-right{right:-11.5px}.components-resizable-box__handle-left{left:-11.5px}.components-resizable-box__handle-top{top:-11.5px}.components-resizable-box__handle-bottom{bottom:-11.5px}
+
+/*!rtl:end:ignore*/.components-responsive-wrapper{position:relative;max-width:100%}.components-responsive-wrapper,.components-responsive-wrapper>span{display:block}.components-responsive-wrapper__content{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:auto}.components-sandbox{overflow:hidden}iframe.components-sandbox{width:100%}body.lockscroll,html.lockscroll{overflow:hidden}.components-search-control{position:relative}.components-search-control input[type=search].components-search-control__input{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;line-height:normal;display:block;padding:16px 48px 16px 16px;background:#f0f0f0;border:none;width:100%;height:48px;font-size:16px}@media (prefers-reduced-motion:reduce){.components-search-control input[type=search].components-search-control__input{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-search-control input[type=search].components-search-control__input{font-size:13px;line-height:normal}}.components-search-control input[type=search].components-search-control__input:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-search-control input[type=search].components-search-control__input::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-search-control input[type=search].components-search-control__input::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-search-control input[type=search].components-search-control__input:-ms-input-placeholder{color:rgba(30,30,30,.62)}@media (min-width:600px){.components-search-control input[type=search].components-search-control__input{font-size:13px}}.components-search-control input[type=search].components-search-control__input:focus{background:#fff;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-search-control input[type=search].components-search-control__input::placeholder{color:#757575}.components-search-control input[type=search].components-search-control__input::-webkit-search-cancel-button,.components-search-control input[type=search].components-search-control__input::-webkit-search-decoration,.components-search-control input[type=search].components-search-control__input::-webkit-search-results-button,.components-search-control input[type=search].components-search-control__input::-webkit-search-results-decoration{-webkit-appearance:none}.components-search-control__icon{position:absolute;top:0;right:12px;bottom:0;display:flex;align-items:center}.components-search-control__icon>svg{margin:8px 0}.components-search-control__input-wrapper{position:relative}.components-select-control__input{background:#fff;height:36px;line-height:36px;margin:1px;outline:0;width:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)!important}@media (min-width:782px){.components-select-control__input{height:28px;line-height:28px}}@media (max-width:782px){.components-base-control .components-base-control__field .components-select-control__input{font-size:16px}}.components-snackbar{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;background-color:#1e1e1e;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.3);color:#fff;padding:16px 24px;width:100%;max-width:600px;box-sizing:border-box;cursor:pointer;pointer-events:auto}@media (min-width:600px){.components-snackbar{width:-moz-fit-content;width:fit-content}}.components-snackbar:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color)}.components-snackbar.components-snackbar-explicit-dismiss{cursor:default}.components-snackbar .components-snackbar__content-with-icon{margin-left:24px}.components-snackbar .components-snackbar__icon{position:absolute;top:24px;left:28px}.components-snackbar .components-snackbar__dismiss-button{margin-left:32px;cursor:pointer}.components-snackbar__action.components-button{margin-left:32px;color:#fff;height:auto;flex-shrink:0;line-height:1.4;padding:0}.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary){text-decoration:underline;background-color:transparent}.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):focus{color:#fff;box-shadow:none;outline:1px dotted #fff}.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{color:var(--wp-admin-theme-color)}.components-snackbar__content{display:flex;align-items:baseline;justify-content:space-between;line-height:1.4}.components-snackbar-list{position:absolute;z-index:100000;width:100%;box-sizing:border-box;pointer-events:none}.components-snackbar-list__notice-container{position:relative;padding-top:8px}.components-swatch{width:18px;height:18px;border-radius:50%;color:transparent;background:transparent}.components-swatch:after{content:"";display:block;width:100%;height:100%;border:1px solid rgba(0,0,0,.2);border-radius:50%}.components-button.has-icon.has-text .components-swatch{margin-right:8px}.components-tab-panel__tabs{display:flex;align-items:stretch;flex-direction:row}.components-tab-panel__tabs[aria-orientation=vertical]{flex-direction:column}.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 .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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-tab-panel__tabs-item.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative}.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-tab-panel__tabs-item.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{width:100%;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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal}@media (prefers-reduced-motion:reduce){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{font-size:13px;line-height:normal}}.components-text-control__input:focus,.components-text-control__input[type=color]:focus,.components-text-control__input[type=date]:focus,.components-text-control__input[type=datetime-local]:focus,.components-text-control__input[type=datetime]:focus,.components-text-control__input[type=email]:focus,.components-text-control__input[type=month]:focus,.components-text-control__input[type=number]:focus,.components-text-control__input[type=password]:focus,.components-text-control__input[type=tel]:focus,.components-text-control__input[type=text]:focus,.components-text-control__input[type=time]:focus,.components-text-control__input[type=url]:focus,.components-text-control__input[type=week]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.components-text-control__input::-webkit-input-placeholder,.components-text-control__input[type=color]::-webkit-input-placeholder,.components-text-control__input[type=date]::-webkit-input-placeholder,.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,.components-text-control__input[type=datetime]::-webkit-input-placeholder,.components-text-control__input[type=email]::-webkit-input-placeholder,.components-text-control__input[type=month]::-webkit-input-placeholder,.components-text-control__input[type=number]::-webkit-input-placeholder,.components-text-control__input[type=password]::-webkit-input-placeholder,.components-text-control__input[type=tel]::-webkit-input-placeholder,.components-text-control__input[type=text]::-webkit-input-placeholder,.components-text-control__input[type=time]::-webkit-input-placeholder,.components-text-control__input[type=url]::-webkit-input-placeholder,.components-text-control__input[type=week]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.components-text-control__input::-moz-placeholder,.components-text-control__input[type=color]::-moz-placeholder,.components-text-control__input[type=date]::-moz-placeholder,.components-text-control__input[type=datetime-local]::-moz-placeholder,.components-text-control__input[type=datetime]::-moz-placeholder,.components-text-control__input[type=email]::-moz-placeholder,.components-text-control__input[type=month]::-moz-placeholder,.components-text-control__input[type=number]::-moz-placeholder,.components-text-control__input[type=password]::-moz-placeholder,.components-text-control__input[type=tel]::-moz-placeholder,.components-text-control__input[type=text]::-moz-placeholder,.components-text-control__input[type=time]::-moz-placeholder,.components-text-control__input[type=url]::-moz-placeholder,.components-text-control__input[type=week]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.components-text-control__input:-ms-input-placeholder,.components-text-control__input[type=color]:-ms-input-placeholder,.components-text-control__input[type=date]:-ms-input-placeholder,.components-text-control__input[type=datetime-local]:-ms-input-placeholder,.components-text-control__input[type=datetime]:-ms-input-placeholder,.components-text-control__input[type=email]:-ms-input-placeholder,.components-text-control__input[type=month]:-ms-input-placeholder,.components-text-control__input[type=number]:-ms-input-placeholder,.components-text-control__input[type=password]:-ms-input-placeholder,.components-text-control__input[type=tel]:-ms-input-placeholder,.components-text-control__input[type=text]:-ms-input-placeholder,.components-text-control__input[type=time]:-ms-input-placeholder,.components-text-control__input[type=url]:-ms-input-placeholder,.components-text-control__input[type=week]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.components-tip{display:flex;color:#757575}.components-tip svg{align-self:center;fill:#f0b849;flex-shrink:0;margin-right:16px}.components-tip p{margin:0}.components-toggle-control .components-base-control__field{display:flex;margin-bottom:12px;line-height:normal;align-items:center}.components-toggle-control .components-base-control__field .components-form-toggle{margin-right:12px}.components-toggle-control .components-base-control__field .components-toggle-control__label{display:block}.components-accessible-toolbar{display:inline-flex;border:1px solid #1e1e1e;border-radius:2px;flex-shrink:0}.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;left:8px;right:8px;z-index:-1;animation:components-button__appear-animation .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;animation-delay:0s}}.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-accessible-toolbar .components-button.is-pressed:hover,.components-toolbar .components-button.is-pressed,.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 4px #fff;outline:2px solid transparent}.components-accessible-toolbar .components-button.has-icon.has-icon,.components-toolbar .components-button.has-icon.has-icon{padding-left:12px;padding-right:12px;min-width:48px}.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{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.components-toolbar__control.components-button{position:relative}.components-toolbar__control.components-button[data-subscript] svg{padding:5px 10px 5px 0}.components-toolbar__control.components-button[data-subscript]:after{content:attr(data-subscript);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;line-height:12px;position:absolute;right:8px;bottom:10px}.components-toolbar__control.components-button:active:before{display:none}.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]:after{color:#fff}.components-toolbar-group{min-height:48px;border-right:1px solid #1e1e1e;background-color:#fff;display:inline-flex;flex-shrink:0;flex-wrap:wrap;line-height:0}.components-toolbar-group .components-toolbar-group.components-toolbar-group{border-width:0;margin:0}.components-toolbar{min-height:48px;margin:0;border:1px solid #1e1e1e;background-color:#fff;display:inline-flex;flex-shrink:0;flex-wrap:wrap}.components-toolbar .components-toolbar.components-toolbar{border-width:0;margin:0}div.components-toolbar>div{display:block;margin:0}@supports (position:sticky){div.components-toolbar>div{display:flex}}div.components-toolbar>div+div.has-left-divider{margin-left:6px;position:relative;overflow:visible}div.components-toolbar>div+div.has-left-divider:before{display:inline-block;content:"";box-sizing:content-box;background-color:#ddd;position:absolute;top:8px;left:-3px;width:1px;height:20px}.components-tooltip.components-popover{z-index:1000002}.components-tooltip.components-popover .components-popover__content{min-width:0}.components-tooltip .components-popover__content{background:#1e1e1e;border-radius:2px;border-width:0;color:#fff;white-space:nowrap;text-align:center;line-height:1.4;font-size:12px;box-shadow:none}.components-tooltip .components-popover__content>div{padding:4px 8px}.components-tooltip__shortcut{display:inline-block;margin-left:8px}.disabled-element-wrapper{position:relative}.disabled-element-wrapper .event-catcher{z-index:100002;position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/customize-widgets/style-rtl.css b/static/wp-includes/css/dist/customize-widgets/style-rtl.css
new file mode 100755
index 0000000..91da93c
--- /dev/null
+++ b/static/wp-includes/css/dist/customize-widgets/style-rtl.css
@@ -0,0 +1,309 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector {
+ background: #fff;
+ box-sizing: border-box;
+}
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector * {
+ box-sizing: inherit;
+}
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector {
+ margin: -12px;
+}
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector h3 {
+ margin-bottom: 0;
+}
+
+#customize-theme-controls .customize-pane-child.control-section-sidebar.is-sub-section-open {
+ transform: translateX(100%);
+}
+
+.customize-widgets-header {
+ display: flex;
+ justify-content: flex-end;
+ margin: -15px -12px 0 -12px;
+ background: #f0f0f1;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 8;
+}
+@media (min-width: 782px) {
+ .customize-widgets-header {
+ margin-bottom: 44px;
+ }
+}
+.customize-widgets-header.is-fixed-toolbar-active {
+ margin-bottom: 0;
+}
+
+.customize-widgets-header-toolbar {
+ display: flex;
+ border: none;
+ width: 100%;
+ align-items: center;
+}
+.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon {
+ border-radius: 2px;
+ color: #fff;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+ margin: 12px auto 12px 0;
+}
+.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon::before {
+ content: none;
+}
+.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon.is-pressed {
+ background: #1e1e1e;
+}
+.customize-widgets-header-toolbar .components-button.has-icon.customize-widgets-editor-history-button.redo-button {
+ margin-right: -12px;
+}
+
+#customize-sidebar-outer-content {
+ width: auto;
+ min-width: 100%;
+}
+
+#customize-outer-theme-controls .widgets-inserter {
+ padding: 0;
+}
+#customize-outer-theme-controls .widgets-inserter .customize-section-description-container {
+ display: none;
+}
+
+.customize-widgets-layout__inserter-panel {
+ background: #fff;
+}
+
+.customize-widgets-layout__inserter-panel-header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 16px;
+ height: 46px;
+ box-sizing: border-box;
+ border-bottom: 1px solid #ddd;
+}
+.customize-widgets-layout__inserter-panel-header .customize-widgets-layout__inserter-panel-header-title {
+ margin: 0;
+}
+
+.block-editor-inserter__quick-inserter .block-editor-inserter__panel-content {
+ background: #fff;
+}
+
+.customize-widgets-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.customize-widgets-keyboard-shortcut-help-modal__main-shortcuts .customize-widgets-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.customize-widgets-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 1rem 0 0;
+ text-align: left;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination + .customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0.2rem 0 0;
+}
+
+.block-editor-block-contextual-toolbar.is-fixed {
+ top: 0;
+ margin-right: -12px;
+ margin-left: -12px;
+ width: calc(100% + 24px);
+ overflow-y: auto;
+ z-index: 7;
+}
+
+.customize-control-sidebar_block_editor .block-editor-block-list__block-popover {
+ position: fixed;
+ z-index: 7;
+}
+
+.customize-widgets-welcome-guide__image__wrapper {
+ background: #00a0d2;
+ text-align: center;
+ margin-bottom: 8px;
+}
+.customize-widgets-welcome-guide__image {
+ height: auto;
+}
+.wrap .customize-widgets-welcome-guide__heading {
+ font-size: 18px;
+ font-weight: 600;
+}
+.customize-widgets-welcome-guide__text {
+ line-height: 1.7;
+}
+.customize-widgets-welcome-guide__button {
+ justify-content: center;
+ margin: 1em 0;
+ width: 100%;
+}
+.customize-widgets-welcome-guide__separator {
+ margin: 1em 0;
+}
+.customize-widgets-welcome-guide__more-info {
+ line-height: 1.4;
+}
+
+#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section {
+ min-height: 100%;
+ background-color: #fff;
+ padding-top: 12px !important;
+}
+#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section.open {
+ overflow: unset;
+}
+#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section .customize-section-title {
+ position: static !important;
+ margin-top: -12px !important;
+ width: unset !important;
+}
+
+.components-modal__screen-overlay {
+ z-index: 999999;
+}
+
+.customize-control-sidebar_block_editor,
+.customize-widgets-layout__inspector,
+.customize-widgets-popover {
+ box-sizing: border-box;
+}
+.customize-control-sidebar_block_editor *,
+.customize-control-sidebar_block_editor *::before,
+.customize-control-sidebar_block_editor *::after,
+.customize-widgets-layout__inspector *,
+.customize-widgets-layout__inspector *::before,
+.customize-widgets-layout__inspector *::after,
+.customize-widgets-popover *,
+.customize-widgets-popover *::before,
+.customize-widgets-popover *::after {
+ box-sizing: inherit;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/customize-widgets/style-rtl.min.css b/static/wp-includes/css/dist/customize-widgets/style-rtl.min.css
new file mode 100755
index 0000000..82695b3
--- /dev/null
+++ b/static/wp-includes/css/dist/customize-widgets/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector{background:#fff;box-sizing:border-box}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector *{box-sizing:inherit}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector{margin:-12px}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector h3{margin-bottom:0}#customize-theme-controls .customize-pane-child.control-section-sidebar.is-sub-section-open{transform:translateX(100%)}.customize-widgets-header{display:flex;justify-content:flex-end;margin:-15px -12px 0;background:#f0f0f1;border-bottom:1px solid #e0e0e0;z-index:8}@media (min-width:782px){.customize-widgets-header{margin-bottom:44px}}.customize-widgets-header.is-fixed-toolbar-active{margin-bottom:0}.customize-widgets-header-toolbar{display:flex;border:none;width:100%;align-items:center}.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon{border-radius:2px;color:#fff;padding:0;min-width:24px;height:24px;margin:12px auto 12px 0}.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon:before{content:none}.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon.is-pressed{background:#1e1e1e}.customize-widgets-header-toolbar .components-button.has-icon.customize-widgets-editor-history-button.redo-button{margin-right:-12px}#customize-sidebar-outer-content{width:auto;min-width:100%}#customize-outer-theme-controls .widgets-inserter{padding:0}#customize-outer-theme-controls .widgets-inserter .customize-section-description-container{display:none}.customize-widgets-layout__inserter-panel{background:#fff}.customize-widgets-layout__inserter-panel-header{display:flex;justify-content:space-between;align-items:center;padding:16px;height:46px;box-sizing:border-box;border-bottom:1px solid #ddd}.customize-widgets-layout__inserter-panel-header .customize-widgets-layout__inserter-panel-header-title{margin:0}.block-editor-inserter__quick-inserter .block-editor-inserter__panel-content{background:#fff}.customize-widgets-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.customize-widgets-keyboard-shortcut-help-modal__main-shortcuts .customize-widgets-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.customize-widgets-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.customize-widgets-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.customize-widgets-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.customize-widgets-keyboard-shortcut-help-modal__shortcut:empty{display:none}.customize-widgets-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 1rem 0 0;text-align:left}.customize-widgets-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 .2rem 0 0}.block-editor-block-contextual-toolbar.is-fixed{top:0;margin-right:-12px;margin-left:-12px;width:calc(100% + 24px);overflow-y:auto;z-index:7}.customize-control-sidebar_block_editor .block-editor-block-list__block-popover{position:fixed;z-index:7}.customize-widgets-welcome-guide__image__wrapper{background:#00a0d2;text-align:center;margin-bottom:8px}.customize-widgets-welcome-guide__image{height:auto}.wrap .customize-widgets-welcome-guide__heading{font-size:18px;font-weight:600}.customize-widgets-welcome-guide__text{line-height:1.7}.customize-widgets-welcome-guide__button{justify-content:center;margin:1em 0;width:100%}.customize-widgets-welcome-guide__separator{margin:1em 0}.customize-widgets-welcome-guide__more-info{line-height:1.4}#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section{min-height:100%;background-color:#fff;padding-top:12px!important}#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section.open{overflow:unset}#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section .customize-section-title{position:static!important;margin-top:-12px!important;width:unset!important}.components-modal__screen-overlay{z-index:999999}.customize-control-sidebar_block_editor,.customize-widgets-layout__inspector,.customize-widgets-popover{box-sizing:border-box}.customize-control-sidebar_block_editor *,.customize-control-sidebar_block_editor :after,.customize-control-sidebar_block_editor :before,.customize-widgets-layout__inspector *,.customize-widgets-layout__inspector :after,.customize-widgets-layout__inspector :before,.customize-widgets-popover *,.customize-widgets-popover :after,.customize-widgets-popover :before{box-sizing:inherit}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/customize-widgets/style.css b/static/wp-includes/css/dist/customize-widgets/style.css
new file mode 100755
index 0000000..944801a
--- /dev/null
+++ b/static/wp-includes/css/dist/customize-widgets/style.css
@@ -0,0 +1,309 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector {
+ background: #fff;
+ box-sizing: border-box;
+}
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector * {
+ box-sizing: inherit;
+}
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector {
+ margin: -12px;
+}
+#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector h3 {
+ margin-bottom: 0;
+}
+
+#customize-theme-controls .customize-pane-child.control-section-sidebar.is-sub-section-open {
+ transform: translateX(-100%);
+}
+
+.customize-widgets-header {
+ display: flex;
+ justify-content: flex-end;
+ margin: -15px -12px 0 -12px;
+ background: #f0f0f1;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 8;
+}
+@media (min-width: 782px) {
+ .customize-widgets-header {
+ margin-bottom: 44px;
+ }
+}
+.customize-widgets-header.is-fixed-toolbar-active {
+ margin-bottom: 0;
+}
+
+.customize-widgets-header-toolbar {
+ display: flex;
+ border: none;
+ width: 100%;
+ align-items: center;
+}
+.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon {
+ border-radius: 2px;
+ color: #fff;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+ margin: 12px 0 12px auto;
+}
+.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon::before {
+ content: none;
+}
+.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon.is-pressed {
+ background: #1e1e1e;
+}
+.customize-widgets-header-toolbar .components-button.has-icon.customize-widgets-editor-history-button.redo-button {
+ margin-left: -12px;
+}
+
+#customize-sidebar-outer-content {
+ width: auto;
+ min-width: 100%;
+}
+
+#customize-outer-theme-controls .widgets-inserter {
+ padding: 0;
+}
+#customize-outer-theme-controls .widgets-inserter .customize-section-description-container {
+ display: none;
+}
+
+.customize-widgets-layout__inserter-panel {
+ background: #fff;
+}
+
+.customize-widgets-layout__inserter-panel-header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 16px;
+ height: 46px;
+ box-sizing: border-box;
+ border-bottom: 1px solid #ddd;
+}
+.customize-widgets-layout__inserter-panel-header .customize-widgets-layout__inserter-panel-header-title {
+ margin: 0;
+}
+
+.block-editor-inserter__quick-inserter .block-editor-inserter__panel-content {
+ background: #fff;
+}
+
+.customize-widgets-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.customize-widgets-keyboard-shortcut-help-modal__main-shortcuts .customize-widgets-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.customize-widgets-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 0 0 1rem;
+ text-align: right;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination + .customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0 0 0.2rem;
+}
+
+.block-editor-block-contextual-toolbar.is-fixed {
+ top: 0;
+ margin-left: -12px;
+ margin-right: -12px;
+ width: calc(100% + 24px);
+ overflow-y: auto;
+ z-index: 7;
+}
+
+.customize-control-sidebar_block_editor .block-editor-block-list__block-popover {
+ position: fixed;
+ z-index: 7;
+}
+
+.customize-widgets-welcome-guide__image__wrapper {
+ background: #00a0d2;
+ text-align: center;
+ margin-bottom: 8px;
+}
+.customize-widgets-welcome-guide__image {
+ height: auto;
+}
+.wrap .customize-widgets-welcome-guide__heading {
+ font-size: 18px;
+ font-weight: 600;
+}
+.customize-widgets-welcome-guide__text {
+ line-height: 1.7;
+}
+.customize-widgets-welcome-guide__button {
+ justify-content: center;
+ margin: 1em 0;
+ width: 100%;
+}
+.customize-widgets-welcome-guide__separator {
+ margin: 1em 0;
+}
+.customize-widgets-welcome-guide__more-info {
+ line-height: 1.4;
+}
+
+#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section {
+ min-height: 100%;
+ background-color: #fff;
+ padding-top: 12px !important;
+}
+#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section.open {
+ overflow: unset;
+}
+#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section .customize-section-title {
+ position: static !important;
+ margin-top: -12px !important;
+ width: unset !important;
+}
+
+.components-modal__screen-overlay {
+ z-index: 999999;
+}
+
+.customize-control-sidebar_block_editor,
+.customize-widgets-layout__inspector,
+.customize-widgets-popover {
+ box-sizing: border-box;
+}
+.customize-control-sidebar_block_editor *,
+.customize-control-sidebar_block_editor *::before,
+.customize-control-sidebar_block_editor *::after,
+.customize-widgets-layout__inspector *,
+.customize-widgets-layout__inspector *::before,
+.customize-widgets-layout__inspector *::after,
+.customize-widgets-popover *,
+.customize-widgets-popover *::before,
+.customize-widgets-popover *::after {
+ box-sizing: inherit;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/customize-widgets/style.min.css b/static/wp-includes/css/dist/customize-widgets/style.min.css
new file mode 100755
index 0000000..7bcb8ed
--- /dev/null
+++ b/static/wp-includes/css/dist/customize-widgets/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector{background:#fff;box-sizing:border-box}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector *{box-sizing:inherit}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector{margin:-12px}#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector h3{margin-bottom:0}#customize-theme-controls .customize-pane-child.control-section-sidebar.is-sub-section-open{transform:translateX(-100%)}.customize-widgets-header{display:flex;justify-content:flex-end;margin:-15px -12px 0;background:#f0f0f1;border-bottom:1px solid #e0e0e0;z-index:8}@media (min-width:782px){.customize-widgets-header{margin-bottom:44px}}.customize-widgets-header.is-fixed-toolbar-active{margin-bottom:0}.customize-widgets-header-toolbar{display:flex;border:none;width:100%;align-items:center}.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon{border-radius:2px;color:#fff;padding:0;min-width:24px;height:24px;margin:12px 0 12px auto}.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon:before{content:none}.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon.is-pressed{background:#1e1e1e}.customize-widgets-header-toolbar .components-button.has-icon.customize-widgets-editor-history-button.redo-button{margin-left:-12px}#customize-sidebar-outer-content{width:auto;min-width:100%}#customize-outer-theme-controls .widgets-inserter{padding:0}#customize-outer-theme-controls .widgets-inserter .customize-section-description-container{display:none}.customize-widgets-layout__inserter-panel{background:#fff}.customize-widgets-layout__inserter-panel-header{display:flex;justify-content:space-between;align-items:center;padding:16px;height:46px;box-sizing:border-box;border-bottom:1px solid #ddd}.customize-widgets-layout__inserter-panel-header .customize-widgets-layout__inserter-panel-header-title{margin:0}.block-editor-inserter__quick-inserter .block-editor-inserter__panel-content{background:#fff}.customize-widgets-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.customize-widgets-keyboard-shortcut-help-modal__main-shortcuts .customize-widgets-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.customize-widgets-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.customize-widgets-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.customize-widgets-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.customize-widgets-keyboard-shortcut-help-modal__shortcut:empty{display:none}.customize-widgets-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 0 0 1rem;text-align:right}.customize-widgets-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.customize-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 0 0 .2rem}.block-editor-block-contextual-toolbar.is-fixed{top:0;margin-left:-12px;margin-right:-12px;width:calc(100% + 24px);overflow-y:auto;z-index:7}.customize-control-sidebar_block_editor .block-editor-block-list__block-popover{position:fixed;z-index:7}.customize-widgets-welcome-guide__image__wrapper{background:#00a0d2;text-align:center;margin-bottom:8px}.customize-widgets-welcome-guide__image{height:auto}.wrap .customize-widgets-welcome-guide__heading{font-size:18px;font-weight:600}.customize-widgets-welcome-guide__text{line-height:1.7}.customize-widgets-welcome-guide__button{justify-content:center;margin:1em 0;width:100%}.customize-widgets-welcome-guide__separator{margin:1em 0}.customize-widgets-welcome-guide__more-info{line-height:1.4}#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section{min-height:100%;background-color:#fff;padding-top:12px!important}#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section.open{overflow:unset}#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section .customize-section-title{position:static!important;margin-top:-12px!important;width:unset!important}.components-modal__screen-overlay{z-index:999999}.customize-control-sidebar_block_editor,.customize-widgets-layout__inspector,.customize-widgets-popover{box-sizing:border-box}.customize-control-sidebar_block_editor *,.customize-control-sidebar_block_editor :after,.customize-control-sidebar_block_editor :before,.customize-widgets-layout__inspector *,.customize-widgets-layout__inspector :after,.customize-widgets-layout__inspector :before,.customize-widgets-popover *,.customize-widgets-popover :after,.customize-widgets-popover :before{box-sizing:inherit}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/classic-rtl.css b/static/wp-includes/css/dist/edit-post/classic-rtl.css
new file mode 100755
index 0000000..a80aa75
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/classic-rtl.css
@@ -0,0 +1,167 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.editor-styles-wrapper .wp-block {
+ margin-right: auto;
+ margin-left: auto;
+}
+
+html :where(.editor-styles-wrapper) {
+ padding: 8px;
+}
+html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container > .wp-block[data-align=full] {
+ margin-right: -8px;
+ margin-left: -8px;
+}
+
+html :where(.wp-block) {
+ max-width: 840px;
+ margin-top: 28px;
+ margin-bottom: 28px;
+}
+html :where(.wp-block)[data-align=wide] {
+ max-width: 1100px;
+}
+html :where(.wp-block)[data-align=full] {
+ max-width: none;
+}
+html :where(.wp-block)[data-align=left], html :where(.wp-block)[data-align=right] {
+ width: 100%;
+ height: 0;
+}
+html :where(.wp-block)[data-align=left]::before, html :where(.wp-block)[data-align=right]::before {
+ content: none;
+}
+html :where(.wp-block)[data-align=left] > * {
+ float: left;
+ margin-right: 2em;
+}
+html :where(.wp-block)[data-align=right] > * {
+ float: right;
+ margin-left: 2em;
+}
+html :where(.wp-block)[data-align=full], html :where(.wp-block)[data-align=wide] {
+ clear: both;
+}
+
+.wp-block-group > [data-align=full] {
+ margin-right: auto;
+ margin-left: auto;
+}
+
+.wp-block-group.has-background > [data-align=full] {
+ margin-right: -30px;
+ width: calc(100% + 60px);
+}
+
+/**
+* Group: Full Width Alignment
+*/
+[data-align=full] .wp-block-group > .wp-block {
+ padding-right: 14px;
+ padding-left: 14px;
+}
+@media (min-width: 600px) {
+ [data-align=full] .wp-block-group > .wp-block {
+ padding-right: 0;
+ padding-left: 0;
+ }
+}
+[data-align=full] .wp-block-group > [data-align=full] {
+ padding-left: 0;
+ padding-right: 0;
+ right: 0;
+ width: 100%;
+ max-width: none;
+}
+[data-align=full] .wp-block-group.has-background > [data-align=full] {
+ width: calc(100% + 60px);
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/classic-rtl.min.css b/static/wp-includes/css/dist/edit-post/classic-rtl.min.css
new file mode 100755
index 0000000..e031534
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/classic-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.editor-styles-wrapper .wp-block{margin-right:auto;margin-left:auto}html :where(.editor-styles-wrapper){padding:8px}html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container>.wp-block[data-align=full]{margin-right:-8px;margin-left:-8px}html :where(.wp-block){max-width:840px;margin-top:28px;margin-bottom:28px}html :where(.wp-block)[data-align=wide]{max-width:1100px}html :where(.wp-block)[data-align=full]{max-width:none}html :where(.wp-block)[data-align=left],html :where(.wp-block)[data-align=right]{width:100%;height:0}html :where(.wp-block)[data-align=left]:before,html :where(.wp-block)[data-align=right]:before{content:none}html :where(.wp-block)[data-align=left]>*{float:left;margin-right:2em}html :where(.wp-block)[data-align=right]>*{float:right;margin-left:2em}html :where(.wp-block)[data-align=full],html :where(.wp-block)[data-align=wide]{clear:both}.wp-block-group>[data-align=full]{margin-right:auto;margin-left:auto}.wp-block-group.has-background>[data-align=full]{margin-right:-30px;width:calc(100% + 60px)}[data-align=full] .wp-block-group>.wp-block{padding-right:14px;padding-left:14px}@media (min-width:600px){[data-align=full] .wp-block-group>.wp-block{padding-right:0;padding-left:0}}[data-align=full] .wp-block-group>[data-align=full]{padding-left:0;padding-right:0;right:0;width:100%;max-width:none}[data-align=full] .wp-block-group.has-background>[data-align=full]{width:calc(100% + 60px)}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/classic.css b/static/wp-includes/css/dist/edit-post/classic.css
new file mode 100755
index 0000000..0835b55
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/classic.css
@@ -0,0 +1,171 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.editor-styles-wrapper .wp-block {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+html :where(.editor-styles-wrapper) {
+ padding: 8px;
+}
+html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container > .wp-block[data-align=full] {
+ margin-left: -8px;
+ margin-right: -8px;
+}
+
+html :where(.wp-block) {
+ max-width: 840px;
+ margin-top: 28px;
+ margin-bottom: 28px;
+}
+html :where(.wp-block)[data-align=wide] {
+ max-width: 1100px;
+}
+html :where(.wp-block)[data-align=full] {
+ max-width: none;
+}
+html :where(.wp-block)[data-align=left], html :where(.wp-block)[data-align=right] {
+ width: 100%;
+ height: 0;
+}
+html :where(.wp-block)[data-align=left]::before, html :where(.wp-block)[data-align=right]::before {
+ content: none;
+}
+html :where(.wp-block)[data-align=left] > * {
+ /*!rtl:begin:ignore*/
+ float: left;
+ margin-right: 2em;
+ /*!rtl:end:ignore*/
+}
+html :where(.wp-block)[data-align=right] > * {
+ /*!rtl:begin:ignore*/
+ float: right;
+ margin-left: 2em;
+ /*!rtl:end:ignore*/
+}
+html :where(.wp-block)[data-align=full], html :where(.wp-block)[data-align=wide] {
+ clear: both;
+}
+
+.wp-block-group > [data-align=full] {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.wp-block-group.has-background > [data-align=full] {
+ margin-left: -30px;
+ width: calc(100% + 60px);
+}
+
+/**
+* Group: Full Width Alignment
+*/
+[data-align=full] .wp-block-group > .wp-block {
+ padding-left: 14px;
+ padding-right: 14px;
+}
+@media (min-width: 600px) {
+ [data-align=full] .wp-block-group > .wp-block {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+[data-align=full] .wp-block-group > [data-align=full] {
+ padding-right: 0;
+ padding-left: 0;
+ left: 0;
+ width: 100%;
+ max-width: none;
+}
+[data-align=full] .wp-block-group.has-background > [data-align=full] {
+ width: calc(100% + 60px);
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/classic.min.css b/static/wp-includes/css/dist/edit-post/classic.min.css
new file mode 100755
index 0000000..6772819
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/classic.min.css
@@ -0,0 +1,5 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.editor-styles-wrapper .wp-block{margin-left:auto;margin-right:auto}html :where(.editor-styles-wrapper){padding:8px}html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container>.wp-block[data-align=full]{margin-left:-8px;margin-right:-8px}html :where(.wp-block){max-width:840px;margin-top:28px;margin-bottom:28px}html :where(.wp-block)[data-align=wide]{max-width:1100px}html :where(.wp-block)[data-align=full]{max-width:none}html :where(.wp-block)[data-align=left],html :where(.wp-block)[data-align=right]{width:100%;height:0}html :where(.wp-block)[data-align=left]:before,html :where(.wp-block)[data-align=right]:before{content:none}html :where(.wp-block)[data-align=left]>*{
+ /*!rtl:begin:ignore*/float:left;margin-right:2em
+ /*!rtl:end:ignore*/}html :where(.wp-block)[data-align=right]>*{
+ /*!rtl:begin:ignore*/float:right;margin-left:2em
+ /*!rtl:end:ignore*/}html :where(.wp-block)[data-align=full],html :where(.wp-block)[data-align=wide]{clear:both}.wp-block-group>[data-align=full]{margin-left:auto;margin-right:auto}.wp-block-group.has-background>[data-align=full]{margin-left:-30px;width:calc(100% + 60px)}[data-align=full] .wp-block-group>.wp-block{padding-left:14px;padding-right:14px}@media (min-width:600px){[data-align=full] .wp-block-group>.wp-block{padding-left:0;padding-right:0}}[data-align=full] .wp-block-group>[data-align=full]{padding-right:0;padding-left:0;left:0;width:100%;max-width:none}[data-align=full] .wp-block-group.has-background>[data-align=full]{width:calc(100% + 60px)}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/style-rtl.css b/static/wp-includes/css/dist/edit-post/style-rtl.css
new file mode 100755
index 0000000..f12d48b
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/style-rtl.css
@@ -0,0 +1,2051 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.components-panel__header.interface-complementary-area-header__small {
+ background: #fff;
+ padding-left: 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 {
+ background: #fff;
+ padding-left: 4px;
+}
+.interface-complementary-area-header .components-button.has-icon {
+ display: none;
+ margin-right: auto;
+}
+.interface-complementary-area-header .components-button.has-icon ~ .components-button {
+ margin-right: 0;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area-header .components-button.has-icon {
+ display: flex;
+ }
+}
+
+@media (min-width: 782px) {
+ .components-panel__header + .interface-complementary-area-header {
+ margin-top: 0;
+ }
+}
+
+.interface-complementary-area {
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 600px) {
+ .interface-complementary-area {
+ -webkit-overflow-scrolling: touch;
+ }
+}
+@media (min-width: 782px) {
+ .interface-complementary-area {
+ width: 280px;
+ }
+}
+.interface-complementary-area .components-panel {
+ border: none;
+ position: relative;
+ z-index: 0;
+}
+.interface-complementary-area .components-panel__header {
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 48px;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 0;
+ }
+}
+.interface-complementary-area p {
+ margin-top: 0;
+}
+.interface-complementary-area h2 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area h3 {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area hr {
+ border-top: none;
+ border-bottom: 1px solid #f0f0f0;
+ 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;
+ left: 10px;
+ bottom: 10px;
+ right: 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-right: 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: row;
+ height: auto;
+ max-height: 100%;
+ position: fixed;
+ top: 46px;
+ right: 0;
+ left: 0;
+ bottom: 0;
+}
+@media (min-width: 783px) {
+ .interface-interface-skeleton {
+ top: 32px;
+ }
+ .is-fullscreen-mode .interface-interface-skeleton {
+ top: 0;
+ }
+}
+
+.interface-interface-skeleton__editor {
+ display: flex;
+ flex-direction: column;
+ flex: 0 1 100%;
+ overflow: hidden;
+}
+
+.interface-interface-skeleton {
+ /* Set left position when auto-fold is not on the body element. */
+ right: 0;
+}
+@media (min-width: 783px) {
+ .interface-interface-skeleton {
+ right: 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 {
+ right: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .interface-interface-skeleton {
+ right: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .interface-interface-skeleton {
+ right: 0;
+}
+@media (min-width: 783px) {
+ .folded .interface-interface-skeleton {
+ right: 36px;
+ }
+}
+
+body.is-fullscreen-mode .interface-interface-skeleton {
+ right: 0 !important;
+}
+
+.interface-interface-skeleton__body {
+ flex-grow: 1;
+ display: flex;
+ overflow: auto;
+ overscroll-behavior-y: none;
+}
+@media (min-width: 782px) {
+ .has-footer .interface-interface-skeleton__body {
+ padding-bottom: 25px;
+ }
+}
+
+.interface-interface-skeleton__content {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow: auto;
+ z-index: 20;
+}
+
+.interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ display: block;
+ flex-shrink: 0;
+ position: absolute;
+ z-index: 100000;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ position: relative !important;
+ z-index: 90;
+ width: auto;
+ }
+}
+
+.interface-interface-skeleton__sidebar {
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__sidebar {
+ border-right: 1px solid #e0e0e0;
+ }
+}
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar {
+ border-left: 1px solid #e0e0e0;
+ }
+}
+
+.interface-interface-skeleton__header {
+ flex-shrink: 0;
+ height: auto;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 30;
+ color: #1e1e1e;
+}
+
+.interface-interface-skeleton__footer {
+ height: auto;
+ flex-shrink: 0;
+ border-top: 1px solid #e0e0e0;
+ color: #1e1e1e;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ width: 100%;
+ background-color: #fff;
+ z-index: 90;
+ display: none;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__footer {
+ display: flex;
+ }
+}
+.interface-interface-skeleton__footer .block-editor-block-breadcrumb {
+ z-index: 30;
+ display: flex;
+ background: #fff;
+ height: 24px;
+ align-items: center;
+ font-size: 13px;
+ padding: 0 18px;
+}
+
+.interface-interface-skeleton__actions {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ right: auto;
+ left: 0;
+ width: 280px;
+ color: #1e1e1e;
+}
+.interface-interface-skeleton__actions:focus {
+ top: auto;
+ bottom: 0;
+}
+
+.interface-more-menu-dropdown {
+ margin-right: -4px;
+}
+.interface-more-menu-dropdown .components-button {
+ width: auto;
+ padding: 0 2px;
+}
+@media (min-width: 600px) {
+ .interface-more-menu-dropdown {
+ margin-right: 0;
+ }
+ .interface-more-menu-dropdown .components-button {
+ padding: 0 4px;
+ }
+}
+
+.interface-more-menu-dropdown__content .components-popover__content {
+ min-width: 280px;
+}
+@media (min-width: 480px) {
+ .interface-more-menu-dropdown__content .components-popover__content {
+ width: auto;
+ max-width: 480px;
+ }
+}
+.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.components-popover.interface-more-menu-dropdown__content {
+ z-index: 99998;
+}
+
+.interface-pinned-items {
+ display: flex;
+}
+.interface-pinned-items .components-button:not(:first-child) {
+ display: none;
+}
+@media (min-width: 600px) {
+ .interface-pinned-items .components-button:not(:first-child) {
+ display: flex;
+ }
+}
+.interface-pinned-items .components-button {
+ margin-right: 4px;
+}
+.interface-pinned-items .components-button svg {
+ max-width: 24px;
+ max-height: 24px;
+}
+
+@media (min-width: 600px) {
+ .interface-preferences-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .interface-preferences-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .interface-preferences-modal {
+ height: 70%;
+ }
+}
+@media (max-width: 781px) {
+ .interface-preferences-modal .components-modal__content {
+ padding: 0;
+ }
+ .interface-preferences-modal .components-modal__content::before {
+ content: none;
+ }
+}
+
+.interface-preferences__tabs .components-tab-panel__tabs {
+ position: absolute;
+ top: 84px;
+ right: 16px;
+ width: 160px;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
+ border-radius: 2px;
+ font-weight: 400;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active {
+ background: #f0f0f0;
+ box-shadow: none;
+ font-weight: 500;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.interface-preferences__tabs .components-tab-panel__tab-content {
+ padding-right: 24px;
+ margin-right: 160px;
+}
+
+@media (max-width: 781px) {
+ .interface-preferences__provider {
+ height: 100%;
+ }
+}
+.interface-preferences-modal__section {
+ margin: 0 0 2.5rem 0;
+}
+.interface-preferences-modal__section:last-child {
+ margin: 0;
+}
+
+.interface-preferences-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+ margin-top: 0;
+}
+
+.interface-preferences-modal__section-description {
+ margin: -8px 0 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.interface-preferences-modal__option .components-base-control .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin-bottom: 0;
+}
+.interface-preferences-modal__option .components-base-control .components-base-control__field > label {
+ flex-grow: 1;
+ padding: 0.6rem 10px 0.6rem 0;
+}
+.interface-preferences-modal__option .components-base-control__help {
+ margin: -8px 58px 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.edit-post-header {
+ height: 60px;
+ background: #fff;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ max-width: 100vw;
+}
+@media (min-width: 280px) {
+ .edit-post-header {
+ flex-wrap: nowrap;
+ }
+}
+.edit-post-header > .edit-post-header__settings {
+ order: 1;
+}
+@supports (position: sticky) {
+ .edit-post-header > .edit-post-header__settings {
+ order: initial;
+ }
+}
+
+.edit-post-header__toolbar {
+ display: flex;
+ flex-grow: 1;
+}
+.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-left: 4px;
+ /**
+ * Buttons in the Toolbar
+ */
+}
+@media (min-width: 600px) {
+ .edit-post-header__settings {
+ padding-left: 16px;
+ }
+}
+.edit-post-header__settings .editor-post-saved-state,
+.edit-post-header__settings .components-button.components-button {
+ margin-left: 4px;
+}
+@media (min-width: 600px) {
+ .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header__settings .components-button.components-button {
+ margin-left: 12px;
+ }
+}
+.edit-post-header__settings .editor-post-saved-state,
+.edit-post-header__settings .components-button.is-tertiary {
+ padding: 0 6px;
+}
+.edit-post-header__settings .interface-more-menu-dropdown .components-button,
+.edit-post-header__settings .interface-pinned-items .components-button {
+ margin-left: 0;
+}
+
+.edit-post-header-preview__grouping-external {
+ display: flex;
+ position: relative;
+ padding-bottom: 0;
+}
+
+.edit-post-header-preview__button-external {
+ padding-right: 8px;
+ margin-left: auto;
+ width: 100%;
+ display: flex;
+ justify-content: flex-start;
+}
+.edit-post-header-preview__button-external svg {
+ margin-right: auto;
+}
+
+.edit-post-post-preview-dropdown .components-popover__content > div {
+ padding-bottom: 0;
+}
+
+.show-icon-labels.interface-pinned-items .components-button.has-icon,
+.show-icon-labels .edit-post-header .components-button.has-icon,
+.edit-post-header__dropdown .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels.interface-pinned-items .components-button.has-icon svg,
+.show-icon-labels .edit-post-header .components-button.has-icon svg,
+.edit-post-header__dropdown .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels.interface-pinned-items .components-button.has-icon::after,
+.show-icon-labels .edit-post-header .components-button.has-icon::after,
+.edit-post-header__dropdown .components-button.has-icon::after {
+ content: attr(aria-label);
+}
+.show-icon-labels.interface-pinned-items .components-button.has-icon[aria-disabled=true],
+.show-icon-labels .edit-post-header .components-button.has-icon[aria-disabled=true],
+.edit-post-header__dropdown .components-button.has-icon[aria-disabled=true] {
+ background-color: transparent;
+}
+.show-icon-labels.interface-pinned-items .is-tertiary:active,
+.show-icon-labels .edit-post-header .is-tertiary:active,
+.edit-post-header__dropdown .is-tertiary:active {
+ box-shadow: 0 0 0 1.5px var(--wp-admin-theme-color);
+ background-color: transparent;
+}
+.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon svg,
+.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle svg,
+.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon svg,
+.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle svg,
+.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon svg,
+.edit-post-header__dropdown .components-button.has-icon.button-toggle svg {
+ display: block;
+}
+.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon::after,
+.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle::after,
+.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon::after,
+.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle::after,
+.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon::after,
+.edit-post-header__dropdown .components-button.has-icon.button-toggle::after {
+ content: none;
+}
+.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon,
+.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon,
+.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon {
+ width: 60px;
+}
+.show-icon-labels.interface-pinned-items .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,
+.show-icon-labels .edit-post-header .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,
+.edit-post-header__dropdown .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon {
+ display: block;
+}
+.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button,
+.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels .edit-post-header .interface-pinned-items .components-button,
+.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.edit-post-header__dropdown .interface-pinned-items .components-button {
+ padding-right: 8px;
+ padding-left: 8px;
+}
+@media (min-width: 600px) {
+ .show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button,
+.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels .edit-post-header .interface-pinned-items .components-button,
+.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.edit-post-header__dropdown .interface-pinned-items .components-button {
+ padding-right: 12px;
+ padding-left: 12px;
+ }
+}
+.show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle,
+.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,
+.edit-post-header__dropdown .components-dropdown-menu__toggle {
+ margin-right: 8px;
+ padding-right: 8px;
+ padding-left: 8px;
+}
+@media (min-width: 600px) {
+ .show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle,
+.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,
+.edit-post-header__dropdown .components-dropdown-menu__toggle {
+ margin-right: 12px;
+ padding-right: 12px;
+ padding-left: 12px;
+ }
+}
+.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after,
+.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after,
+.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after {
+ content: none;
+}
+.show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft::after,
+.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft::after,
+.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft::after {
+ content: none;
+}
+@media (min-width: 600px) {
+ .show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft::after,
+.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft::after,
+.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft::after {
+ content: attr(aria-label);
+ }
+}
+
+.edit-post-header__dropdown .components-menu-item__button.components-menu-item__button,
+.edit-post-header__dropdown .components-button.editor-history__undo,
+.edit-post-header__dropdown .components-button.editor-history__redo,
+.edit-post-header__dropdown .table-of-contents .components-button,
+.edit-post-header__dropdown .components-button.block-editor-list-view {
+ margin: 0;
+ padding: 6px 40px 6px 6px;
+ width: 14.625rem;
+ text-align: right;
+ justify-content: flex-start;
+}
+
+.show-icon-labels.interface-pinned-items {
+ padding: 6px 12px 12px;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-right: -12px;
+ margin-left: -12px;
+ border-bottom: 1px solid #ccc;
+ display: block;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon {
+ margin: 0;
+ padding: 6px 8px 6px 6px;
+ width: 14.625rem;
+ justify-content: flex-start;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon[aria-expanded=true] svg {
+ display: block;
+ max-width: 24px;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon[aria-expanded=false] {
+ padding-right: 40px;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon svg {
+ margin-left: 8px;
+}
+
+.edit-post-fullscreen-mode-close.components-button {
+ display: none;
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button {
+ display: flex;
+ align-items: center;
+ align-self: stretch;
+ border: none;
+ background: #1e1e1e;
+ color: #fff;
+ border-radius: 0;
+ height: 61px;
+ width: 60px;
+ position: relative;
+ margin-bottom: -1px;
+ }
+ .edit-post-fullscreen-mode-close.components-button:active {
+ color: #fff;
+ }
+ .edit-post-fullscreen-mode-close.components-button:focus {
+ box-shadow: none;
+ }
+ .edit-post-fullscreen-mode-close.components-button::before {
+ transition: box-shadow 0.1s ease;
+ content: "";
+ display: block;
+ position: absolute;
+ top: 9px;
+ left: 9px;
+ bottom: 9px;
+ right: 9px;
+ border-radius: 4px;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
+ }
+}
+@media (min-width: 782px) and (prefers-reduced-motion: reduce) {
+ .edit-post-fullscreen-mode-close.components-button::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button:hover::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #757575;
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button.has-icon:hover::before {
+ box-shadow: none;
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button:focus::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) rgba(255, 255, 255, 0.1), inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ }
+}
+.edit-post-fullscreen-mode-close.components-button .edit-post-fullscreen-mode-close_site-icon {
+ width: 36px;
+ height: 36px;
+ border-radius: 2px;
+ -o-object-fit: cover;
+ object-fit: cover;
+ margin-top: -1px;
+}
+
+.edit-post-header-toolbar {
+ display: inline-flex;
+ flex-grow: 1;
+ align-items: center;
+ border: none;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button {
+ display: none;
+}
+@media (min-width: 600px) {
+ .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button {
+ display: inline-flex;
+ }
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle {
+ display: inline-flex;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle svg {
+ transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.is-pressed svg {
+ transform: rotate(-45deg);
+}
+.edit-post-header-toolbar .block-editor-list-view {
+ display: none;
+}
+@media (min-width: 600px) {
+ .edit-post-header-toolbar .block-editor-list-view {
+ display: flex;
+ }
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon,
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon {
+ height: 36px;
+ min-width: 36px;
+ padding: 6px;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon.is-pressed,
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon.is-pressed {
+ background: #1e1e1e;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon:focus:not(:disabled),
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 1px #fff;
+ outline: 1px solid transparent;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon::before,
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon::before {
+ display: none;
+}
+
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-button,
+.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
+ transition: opacity 0.1s linear;
+ }
+}
+@media (min-width: 600px) and (prefers-reduced-motion: reduce) {
+ .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-button,
+.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left > * + .components-button, .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
+ opacity: 0;
+ }
+}
+
+.edit-post-header-toolbar__left {
+ display: inline-flex;
+ align-items: center;
+ padding-right: 8px;
+}
+@media (min-width: 600px) {
+ .edit-post-header-toolbar__left {
+ padding-right: 24px;
+ }
+}
+@media (min-width: 1280px) {
+ .edit-post-header-toolbar__left {
+ padding-left: 8px;
+ }
+}
+
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-icon {
+ margin-left: 8px;
+ min-width: 32px;
+ width: 32px;
+ height: 32px;
+ padding: 0;
+}
+.show-icon-labels .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-icon {
+ height: 36px;
+}
+
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-text.has-icon {
+ width: auto;
+ padding: 0 8px;
+}
+
+.show-icon-labels .edit-post-header-toolbar__left > * + * {
+ margin-right: 8px;
+}
+
+.edit-post-template-top-area {
+ display: flex;
+ flex-direction: column;
+ align-content: space-between;
+ width: 100%;
+ align-items: center;
+}
+.edit-post-template-top-area .edit-post-template-title,
+.edit-post-template-top-area .edit-post-template-post-title {
+ padding: 0;
+ text-decoration: none;
+ height: auto;
+}
+.edit-post-template-top-area .edit-post-template-title::before,
+.edit-post-template-top-area .edit-post-template-post-title::before {
+ height: 100%;
+}
+.edit-post-template-top-area .edit-post-template-title.has-icon svg,
+.edit-post-template-top-area .edit-post-template-post-title.has-icon svg {
+ order: 1;
+ margin-left: 0;
+}
+.edit-post-template-top-area .edit-post-template-title {
+ color: #1e1e1e;
+}
+.edit-post-template-top-area .edit-post-template-post-title {
+ margin-top: 4px;
+ max-width: 160px;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ display: block;
+}
+.edit-post-template-top-area .edit-post-template-post-title::before {
+ right: 0;
+ left: 0;
+}
+@media (min-width: 1080px) {
+ .edit-post-template-top-area .edit-post-template-post-title {
+ max-width: 400px;
+ }
+}
+
+.edit-post-template-top-area__popover .components-popover__content {
+ min-width: 280px;
+ padding: 8px;
+}
+.edit-post-template-top-area__popover .edit-post-template-details__description {
+ color: #757575;
+}
+
+.edit-post-template-top-area__second-menu-group {
+ margin-right: -16px;
+ margin-left: -16px;
+ padding: 16px;
+ padding-bottom: 0;
+ border-top: 1px solid #ddd;
+}
+.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button {
+ display: flex;
+ justify-content: center;
+}
+.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button .components-menu-item__item {
+ margin-left: 0;
+ min-width: 0;
+}
+
+.edit-post-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.edit-post-keyboard-shortcut-help-modal__main-shortcuts .edit-post-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.edit-post-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 1rem 0 0;
+ text-align: left;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0.2rem 0 0;
+}
+
+.edit-post-layout__metaboxes {
+ flex-shrink: 0;
+ clear: both;
+}
+
+.edit-post-layout .components-editor-notices__snackbar {
+ position: fixed;
+ left: 0;
+ bottom: 40px;
+ padding-right: 16px;
+ padding-left: 16px;
+}
+
+.edit-post-layout .components-editor-notices__snackbar {
+ /* Set left position when auto-fold is not on the body element. */
+ right: 0;
+}
+@media (min-width: 783px) {
+ .edit-post-layout .components-editor-notices__snackbar {
+ right: 160px;
+ }
+}
+
+.auto-fold .edit-post-layout .components-editor-notices__snackbar {
+ /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
+}
+@media (min-width: 783px) {
+ .auto-fold .edit-post-layout .components-editor-notices__snackbar {
+ right: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .edit-post-layout .components-editor-notices__snackbar {
+ right: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .edit-post-layout .components-editor-notices__snackbar {
+ right: 0;
+}
+@media (min-width: 783px) {
+ .folded .edit-post-layout .components-editor-notices__snackbar {
+ right: 36px;
+ }
+}
+
+body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
+ right: 0 !important;
+}
+
+.edit-post-layout .editor-post-publish-panel {
+ position: fixed;
+ z-index: 100001;
+ top: 46px;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .edit-post-layout .editor-post-publish-panel {
+ z-index: 99998;
+ top: 32px;
+ right: auto;
+ width: 281px;
+ border-right: 1px solid #ddd;
+ transform: translateX(-100%);
+ animation: edit-post-post-publish-panel__slide-in-animation 0.1s forwards;
+ }
+}
+@media (min-width: 782px) and (prefers-reduced-motion: reduce) {
+ .edit-post-layout .editor-post-publish-panel {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+@media (min-width: 782px) {
+ body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel {
+ top: 0;
+ }
+}
+@media (min-width: 782px) {
+ [role=region]:focus .edit-post-layout .editor-post-publish-panel {
+ transform: translateX(0%);
+ }
+}
+
+@keyframes edit-post-post-publish-panel__slide-in-animation {
+ 100% {
+ transform: translateX(0%);
+ }
+}
+.edit-post-layout .editor-post-publish-panel__header-publish-button {
+ justify-content: center;
+}
+
+.edit-post-layout__toggle-publish-panel,
+.edit-post-layout__toggle-sidebar-panel,
+.edit-post-layout__toggle-entities-saved-states-panel {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ right: auto;
+ left: 0;
+ width: 280px;
+ background-color: #fff;
+ border: 1px dotted #ddd;
+ height: auto !important;
+ padding: 24px;
+ display: flex;
+ justify-content: center;
+}
+.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-sidebar-panel,
+.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-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 {
+ top: auto;
+ bottom: 0;
+}
+
+.edit-post-block-manager__no-results {
+ font-style: italic;
+ padding: 24px 0;
+ text-align: center;
+}
+
+.edit-post-block-manager__search {
+ margin: 16px 0;
+}
+
+.edit-post-block-manager__disabled-blocks-count {
+ border: 1px solid #ddd;
+ border-width: 1px 0;
+ box-shadow: 32px 0 0 0 #fff, -32px 0 0 0 #fff;
+ padding: 8px;
+ background-color: #fff;
+ text-align: center;
+ font-style: italic;
+ position: sticky;
+ top: -1px;
+ z-index: 2;
+}
+.edit-post-block-manager__disabled-blocks-count ~ .edit-post-block-manager__results .edit-post-block-manager__category-title {
+ top: 35px;
+}
+
+.edit-post-block-manager__category {
+ margin: 0 0 24px 0;
+}
+
+.edit-post-block-manager__category-title {
+ position: sticky;
+ top: 0;
+ padding: 16px 0;
+ background-color: #fff;
+ z-index: 1;
+}
+.edit-post-block-manager__category-title .components-checkbox-control__label {
+ font-weight: 600;
+}
+
+.edit-post-block-manager__show-all {
+ margin-left: 8px;
+}
+
+.edit-post-block-manager__checklist {
+ margin-top: 0;
+}
+
+.edit-post-block-manager__category-title,
+.edit-post-block-manager__checklist-item {
+ border-bottom: 1px solid #ddd;
+}
+.edit-post-block-manager__category-title .components-base-control__field,
+.edit-post-block-manager__checklist-item .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin: 0;
+}
+
+.edit-post-block-manager__checklist-item {
+ margin-bottom: 0;
+ padding-right: 16px;
+}
+.components-modal__content .edit-post-block-manager__checklist-item.components-checkbox-control__input-container {
+ margin: 0 8px;
+}
+.edit-post-block-manager__checklist-item .components-checkbox-control__label {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ flex-grow: 1;
+ padding: 8px 0;
+}
+.edit-post-block-manager__checklist-item .block-editor-block-icon {
+ margin-left: 10px;
+ fill: #1e1e1e;
+}
+
+.edit-post-block-manager__results {
+ border-top: 1px solid #ddd;
+}
+
+.edit-post-block-manager__disabled-blocks-count + .edit-post-block-manager__results {
+ border-top-width: 0;
+}
+
+.edit-post-meta-boxes-area {
+ position: relative;
+ /**
+ * The wordpress default for most meta-box elements is content-box. Some
+ * elements such as textarea and input are set to border-box in forms.css.
+ * These elements therefore specifically set back to border-box here, while
+ * other elements (such as .button) are unaffected by Gutenberg's style
+ * because of their higher specificity.
+ */
+ /* Match width and positioning of the meta boxes. Override default styles. */
+ /* Override Default meta box stylings */
+}
+.edit-post-meta-boxes-area__container,
+.edit-post-meta-boxes-area .inside {
+ box-sizing: content-box;
+}
+.edit-post-meta-boxes-area textarea,
+.edit-post-meta-boxes-area input {
+ box-sizing: border-box;
+}
+.edit-post-meta-boxes-area .postbox-header {
+ border-top: 1px solid #ddd;
+ border-bottom: 0;
+}
+.edit-post-meta-boxes-area #poststuff {
+ margin: 0 auto;
+ padding-top: 0;
+ min-width: auto;
+}
+.edit-post-meta-boxes-area #poststuff h3.hndle,
+.edit-post-meta-boxes-area #poststuff .stuffbox > h3,
+.edit-post-meta-boxes-area #poststuff h2.hndle {
+ /* WordPress selectors yolo */
+ box-sizing: border-box;
+ color: inherit;
+ font-weight: 600;
+ outline: none;
+ padding: 0 24px;
+ position: relative;
+ width: 100%;
+}
+.edit-post-meta-boxes-area .postbox {
+ border: 0;
+ color: inherit;
+ margin-bottom: 0;
+}
+.edit-post-meta-boxes-area .postbox > .inside {
+ color: inherit;
+ padding: 0 24px 24px;
+ margin: 0;
+}
+.edit-post-meta-boxes-area .postbox .handlediv {
+ height: 44px;
+ width: 44px;
+}
+.edit-post-meta-boxes-area.is-loading::before {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ content: "";
+ background: transparent;
+ z-index: 1;
+}
+.edit-post-meta-boxes-area .components-spinner {
+ position: absolute;
+ top: 10px;
+ left: 20px;
+ z-index: 5;
+}
+.edit-post-meta-boxes-area .is-hidden {
+ display: none;
+}
+.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox] {
+ border: 1px solid #757575;
+}
+.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:checked {
+ background: #fff;
+ border-color: #757575;
+}
+.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]::before {
+ margin: -3px -4px;
+}
+
+.edit-post-meta-boxes-area__clear {
+ clear: both;
+}
+
+.edit-post-editor__inserter-panel,
+.edit-post-editor__list-view-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+
+.edit-post-editor__list-view-panel {
+ min-width: 350px;
+}
+
+.edit-post-editor__inserter-panel-header {
+ padding-top: 8px;
+ padding-left: 8px;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.edit-post-editor__inserter-panel-content,
+.edit-post-editor__list-view-panel-content {
+ height: calc(100% - 36px - 8px);
+}
+
+@media (min-width: 782px) {
+ .edit-post-editor__inserter-panel-content {
+ height: 100%;
+ }
+}
+
+.edit-post-editor__list-view-panel-header {
+ align-items: center;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ justify-content: space-between;
+ height: 48px;
+ padding-right: 16px;
+ padding-left: 4px;
+}
+
+.edit-post-editor__list-view-panel-content {
+ overflow-y: auto;
+ padding: 8px 6px;
+}
+
+.components-panel__header.edit-post-sidebar__panel-tabs {
+ justify-content: flex-start;
+ padding-right: 0;
+ padding-left: 16px;
+ border-top: 0;
+ margin-top: 0;
+}
+.components-panel__header.edit-post-sidebar__panel-tabs ul {
+ display: flex;
+}
+.components-panel__header.edit-post-sidebar__panel-tabs li {
+ margin: 0;
+}
+.components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {
+ display: none;
+ margin: 0 auto 0 0;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+}
+@media (min-width: 782px) {
+ .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {
+ display: flex;
+ }
+}
+
+.components-panel__body.is-opened.edit-post-last-revision__panel {
+ padding: 0;
+ height: 48px;
+}
+
+.editor-post-last-revision__title.components-button {
+ padding: 16px;
+}
+
+.editor-post-author__select {
+ margin: -5px 0;
+ width: 100%;
+}
+@supports (position: sticky) {
+ .editor-post-author__select {
+ width: auto;
+ }
+}
+
+.edit-post-post-link__link-post-name {
+ font-weight: 600;
+}
+
+.edit-post-post-link__preview-label {
+ font-weight: 400;
+ margin: 0;
+}
+
+.edit-post-post-link__link {
+ text-align: right;
+ word-wrap: break-word;
+ display: block;
+}
+.edit-post-post-link__preview-link-container {
+ direction: ltr;
+}
+.edit-post-post-schedule {
+ width: 100%;
+ position: relative;
+ justify-content: left;
+}
+.edit-post-post-schedule span {
+ display: block;
+ width: 45%;
+}
+
+.components-button.edit-post-post-schedule__toggle {
+ text-align: left;
+}
+
+.edit-post-post-schedule__dialog .components-popover__content > div {
+ padding: 0;
+}
+
+.editor-post-slug__input {
+ margin: -5px 0;
+ padding: 2px;
+}
+
+.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft {
+ margin-top: 15px;
+ width: 100%;
+ text-align: center;
+}
+
+.edit-post-post-visibility {
+ width: 100%;
+ justify-content: left;
+}
+.edit-post-post-visibility span {
+ display: block;
+ width: 45%;
+}
+
+@media (min-width: 782px) {
+ .edit-post-post-visibility__dialog .components-popover__content {
+ width: 257px;
+ }
+}
+
+.edit-post-post-visibility__dialog-legend {
+ font-weight: 600;
+}
+
+.edit-post-post-visibility__choice {
+ margin: 10px 0;
+}
+
+.edit-post-post-visibility__dialog-radio,
+.edit-post-post-visibility__dialog-label {
+ vertical-align: top;
+}
+
+.edit-post-post-visibility__dialog-password-input {
+ width: calc(100% - 20px);
+ margin-right: 20px;
+}
+
+.edit-post-post-visibility__dialog-info {
+ color: #757575;
+ padding-right: 20px;
+ font-style: italic;
+ margin: 4px 0 0;
+ line-height: 1.4;
+}
+
+.components-button.edit-post-sidebar__panel-tab {
+ border-radius: 0;
+ height: 48px;
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ padding: 3px 15px;
+ margin-right: 0;
+ font-weight: 500;
+}
+.components-button.edit-post-sidebar__panel-tab::after {
+ content: attr(data-label);
+ display: block;
+ font-weight: 600;
+ height: 0;
+ overflow: hidden;
+ speak: none;
+ visibility: hidden;
+}
+.components-button.edit-post-sidebar__panel-tab.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-post-sidebar__panel-tab.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ left: 0;
+ right: 0;
+ border-bottom: 4px solid transparent;
+}
+.components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+@media (min-width: 782px) {
+ .edit-post-template__modal .components-base-control {
+ width: 320px;
+ }
+}
+.edit-post-template__modal .components-modal__header {
+ border-bottom: none;
+}
+.edit-post-template__modal .components-modal__content::before {
+ margin-bottom: 4px;
+}
+
+.edit-post-template__modal-actions {
+ margin-top: 12px;
+}
+
+.edit-post-template-modal__tip {
+ padding: 16px 24px;
+ background: #f0f0f0;
+ border-radius: 2px;
+}
+@media (min-width: 782px) {
+ .edit-post-template-modal__tip {
+ width: 240px;
+ }
+}
+
+.edit-post-template__notice {
+ margin: 0 0 8px 0;
+}
+.edit-post-template__notice .components-notice__content {
+ margin: 0;
+}
+
+.edit-post-template__actions button:not(:last-child) {
+ margin-left: 8px;
+}
+
+h2.edit-post-template-summary__title {
+ line-height: 24px;
+ margin: 0 0 4px;
+ font-weight: 500;
+}
+
+.edit-post-text-editor {
+ position: relative;
+ width: 100%;
+ background-color: #fff;
+ flex-grow: 1;
+}
+.edit-post-text-editor .editor-post-title {
+ max-width: none;
+ line-height: 1.4;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 2.5em;
+ font-weight: normal;
+ border: 1px solid #949494;
+ padding: 16px;
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor .editor-post-title {
+ padding: 24px;
+ }
+}
+.edit-post-text-editor .editor-post-title:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.edit-post-text-editor__body {
+ width: 100%;
+ padding: 0 12px 12px 12px;
+ max-width: 1080px;
+ margin-right: auto;
+ margin-left: auto;
+}
+@media (min-width: 960px) {
+ .edit-post-text-editor__body {
+ padding: 16px 24px 96px 24px;
+ padding: 0 24px 24px 24px;
+ }
+}
+
+.edit-post-text-editor__toolbar {
+ position: sticky;
+ z-index: 1;
+ top: 0;
+ right: 0;
+ left: 0;
+ display: flex;
+ background: rgba(255, 255, 255, 0.8);
+ padding: 4px 12px;
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor__toolbar {
+ padding: 12px;
+ }
+}
+@media (min-width: 960px) {
+ .edit-post-text-editor__toolbar {
+ padding: 12px 24px;
+ }
+}
+.edit-post-text-editor__toolbar h2 {
+ line-height: 36px;
+ margin: 0 0 0 auto;
+ font-size: 13px;
+ color: #1e1e1e;
+}
+.edit-post-text-editor__toolbar .components-button svg {
+ order: 1;
+}
+
+.edit-post-visual-editor {
+ position: relative;
+ display: flex;
+ flex-flow: column;
+ background-color: #2f2f2f;
+ flex: 1 0 auto;
+}
+.edit-post-visual-editor .components-button {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ padding: 6px 12px;
+}
+.edit-post-visual-editor .components-button.is-tertiary, .edit-post-visual-editor .components-button.has-icon {
+ padding: 6px;
+}
+
+.edit-post-visual-editor__post-title-wrapper {
+ margin-top: 4rem;
+ margin-bottom: var(--wp--style--block-gap);
+}
+.edit-post-visual-editor__post-title-wrapper .editor-post-title {
+ margin-right: auto;
+ margin-left: auto;
+}
+
+.edit-post-visual-editor__exit-template-mode {
+ position: absolute;
+ top: 8px;
+ right: 8px;
+ color: #fff;
+}
+.edit-post-visual-editor__exit-template-mode:active:not([aria-disabled=true]), .edit-post-visual-editor__exit-template-mode:focus:not([aria-disabled=true]), .edit-post-visual-editor__exit-template-mode:hover {
+ color: #f0f0f0;
+}
+
+.edit-post-visual-editor__content-area {
+ width: 100%;
+ height: 100%;
+ position: relative;
+ box-sizing: border-box;
+ display: flex;
+ flex-grow: 1;
+}
+
+.edit-post-welcome-guide,
+.edit-template-welcome-guide {
+ width: 312px;
+}
+.edit-post-welcome-guide__image,
+.edit-template-welcome-guide__image {
+ background: #00a0d2;
+ margin: 0 0 16px;
+}
+.edit-post-welcome-guide__image > img,
+.edit-template-welcome-guide__image > img {
+ display: block;
+ max-width: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.edit-post-welcome-guide__heading,
+.edit-template-welcome-guide__heading {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 24px;
+ line-height: 1.4;
+ margin: 16px 0 16px 0;
+ padding: 0 32px;
+}
+.edit-post-welcome-guide__text,
+.edit-template-welcome-guide__text {
+ font-size: 13px;
+ line-height: 1.4;
+ margin: 0 0 24px 0;
+ padding: 0 32px;
+}
+.edit-post-welcome-guide__inserter-icon,
+.edit-template-welcome-guide__inserter-icon {
+ margin: 0 4px;
+ vertical-align: text-top;
+}
+
+.edit-template-welcome-guide .components-button svg {
+ fill: #fff;
+}
+
+@media (min-width: 600px) {
+ .edit-post-start-page-options__modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-start-page-options__modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .edit-post-start-page-options__modal {
+ height: 70%;
+ }
+}
+.edit-post-start-page-options__modal .components-modal__header {
+ border-bottom: none;
+}
+.edit-post-start-page-options__modal .components-modal__content::before {
+ content: none;
+}
+
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list {
+ column-count: 2;
+ column-gap: 24px;
+}
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ break-inside: avoid-column;
+ margin-bottom: 24px;
+}
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container {
+ min-height: 100px;
+}
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__content {
+ width: 100%;
+}
+
+/**
+ * Animations
+ */
+@keyframes edit-post__fade-in-animation {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+html.wp-toolbar {
+ background: #fff;
+}
+
+body.block-editor-page {
+ background: #fff;
+ /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
+ Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
+}
+body.block-editor-page #wpcontent {
+ padding-right: 0;
+}
+body.block-editor-page #wpbody-content {
+ padding-bottom: 0;
+}
+body.block-editor-page #wpbody-content > div:not(.block-editor):not(#screen-meta) {
+ display: none;
+}
+body.block-editor-page #wpfooter {
+ display: none;
+}
+body.block-editor-page .a11y-speak-region {
+ right: -1px;
+ top: -1px;
+}
+body.block-editor-page ul#adminmenu a.wp-has-current-submenu::after,
+body.block-editor-page ul#adminmenu > li.current > a.current::after {
+ border-left-color: #fff;
+}
+body.block-editor-page .media-frame select.attachment-filters:last-of-type {
+ width: auto;
+ max-width: 100%;
+}
+
+.block-editor-page #wpwrap {
+ overflow-y: auto;
+}
+@media (min-width: 782px) {
+ .block-editor-page #wpwrap {
+ overflow-y: initial;
+ }
+}
+
+.edit-post-header,
+.edit-post-text-editor,
+.edit-post-sidebar,
+.editor-post-publish-panel,
+.components-popover,
+.components-modal__frame,
+.edit-post-editor__inserter-panel {
+ box-sizing: border-box;
+}
+.edit-post-header *,
+.edit-post-header *::before,
+.edit-post-header *::after,
+.edit-post-text-editor *,
+.edit-post-text-editor *::before,
+.edit-post-text-editor *::after,
+.edit-post-sidebar *,
+.edit-post-sidebar *::before,
+.edit-post-sidebar *::after,
+.editor-post-publish-panel *,
+.editor-post-publish-panel *::before,
+.editor-post-publish-panel *::after,
+.components-popover *,
+.components-popover *::before,
+.components-popover *::after,
+.components-modal__frame *,
+.components-modal__frame *::before,
+.components-modal__frame *::after,
+.edit-post-editor__inserter-panel *,
+.edit-post-editor__inserter-panel *::before,
+.edit-post-editor__inserter-panel *::after {
+ box-sizing: inherit;
+}
+
+@media (min-width: 600px) {
+ .block-editor__container {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ min-height: calc(100vh - 46px);
+ }
+}
+@media (min-width: 782px) {
+ .block-editor__container {
+ min-height: calc(100vh - 32px);
+ }
+ body.is-fullscreen-mode .block-editor__container {
+ min-height: 100vh;
+ }
+}
+.block-editor__container img {
+ max-width: 100%;
+ height: auto;
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/style-rtl.min.css b/static/wp-includes/css/dist/edit-post/style-rtl.min.css
new file mode 100755
index 0000000..649f75f
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.components-panel__header.interface-complementary-area-header__small{background:#fff;padding-left: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{background:#fff;padding-left:4px}.interface-complementary-area-header .components-button.has-icon{display:none;margin-right:auto}.interface-complementary-area-header .components-button.has-icon~.components-button{margin-right:0}@media (min-width:782px){.interface-complementary-area-header .components-button.has-icon{display:flex}}@media (min-width:782px){.components-panel__header+.interface-complementary-area-header{margin-top:0}}.interface-complementary-area{background:#fff;color:#1e1e1e}@media (min-width:600px){.interface-complementary-area{-webkit-overflow-scrolling:touch}}@media (min-width:782px){.interface-complementary-area{width:280px}}.interface-complementary-area .components-panel{border:none;position:relative;z-index:0}.interface-complementary-area .components-panel__header{position:sticky;top:0;z-index:1}.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:48px}@media (min-width:782px){.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:0}}.interface-complementary-area p{margin-top:0}.interface-complementary-area h2{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area h3{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area hr{border-top:none;border-bottom:1px solid #f0f0f0;margin:1.5em 0}.interface-complementary-area div.components-toolbar,.interface-complementary-area div.components-toolbar-group{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;left:10px;bottom:10px;right: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-right:0}}html.interface-interface-skeleton__html-container{position:fixed;width:100%}@media (min-width:782px){html.interface-interface-skeleton__html-container{position:static;width:auto}}.interface-interface-skeleton{display:flex;flex-direction:row;height:auto;max-height:100%;position:fixed;top:46px;left:0;bottom:0}@media (min-width:783px){.interface-interface-skeleton{top:32px}.is-fullscreen-mode .interface-interface-skeleton{top:0}}.interface-interface-skeleton__editor{display:flex;flex-direction:column;flex:0 1 100%;overflow:hidden}.interface-interface-skeleton{right:0}@media (min-width:783px){.interface-interface-skeleton{right:160px}}@media (min-width:783px){.auto-fold .interface-interface-skeleton{right:36px}}@media (min-width:961px){.auto-fold .interface-interface-skeleton{right:160px}}.folded .interface-interface-skeleton{right:0}@media (min-width:783px){.folded .interface-interface-skeleton{right:36px}}body.is-fullscreen-mode .interface-interface-skeleton{right:0!important}.interface-interface-skeleton__body{flex-grow:1;display:flex;overflow:auto;overscroll-behavior-y:none}@media (min-width:782px){.has-footer .interface-interface-skeleton__body{padding-bottom:25px}}.interface-interface-skeleton__content{flex-grow:1;display:flex;flex-direction:column;overflow:auto;z-index:20}.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{display:block;flex-shrink:0;position:absolute;z-index:100000;top:0;left:0;bottom:0;right:0;background:#fff;color:#1e1e1e}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{position:relative!important;z-index:90;width:auto}}.interface-interface-skeleton__sidebar{overflow:auto}@media (min-width:782px){.interface-interface-skeleton__sidebar{border-right:1px solid #e0e0e0}}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar{border-left:1px solid #e0e0e0}}.interface-interface-skeleton__header{flex-shrink:0;height:auto;border-bottom:1px solid #e0e0e0;z-index:30;color:#1e1e1e}.interface-interface-skeleton__footer{height:auto;flex-shrink:0;border-top:1px solid #e0e0e0;color:#1e1e1e;position:absolute;bottom:0;right:0;width:100%;background-color:#fff;z-index:90;display:none}@media (min-width:782px){.interface-interface-skeleton__footer{display:flex}}.interface-interface-skeleton__footer .block-editor-block-breadcrumb{z-index:30;display:flex;background:#fff;height:24px;align-items:center;font-size:13px;padding:0 18px}.interface-interface-skeleton__actions{z-index:100000;position:fixed!important;top:-9999em;bottom:auto;right:auto;left:0;width:280px;color:#1e1e1e}.interface-interface-skeleton__actions:focus{top:auto;bottom:0}.interface-more-menu-dropdown{margin-right:-4px}.interface-more-menu-dropdown .components-button{width:auto;padding:0 2px}@media (min-width:600px){.interface-more-menu-dropdown{margin-right:0}.interface-more-menu-dropdown .components-button{padding:0 4px}}.interface-more-menu-dropdown__content .components-popover__content{min-width:280px}@media (min-width:480px){.interface-more-menu-dropdown__content .components-popover__content{width:auto;max-width:480px}}.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu{padding:0}.components-popover.interface-more-menu-dropdown__content{z-index:99998}.interface-pinned-items{display:flex}.interface-pinned-items .components-button:not(:first-child){display:none}@media (min-width:600px){.interface-pinned-items .components-button:not(:first-child){display:flex}}.interface-pinned-items .components-button{margin-right:4px}.interface-pinned-items .components-button svg{max-width:24px;max-height:24px}@media (min-width:600px){.interface-preferences-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.interface-preferences-modal{width:750px}}@media (min-width:960px){.interface-preferences-modal{height:70%}}@media (max-width:781px){.interface-preferences-modal .components-modal__content{padding:0}.interface-preferences-modal .components-modal__content:before{content:none}}.interface-preferences__tabs .components-tab-panel__tabs{position:absolute;top:84px;right:16px;width:160px}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item{border-radius:2px;font-weight:400}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active{background:#f0f0f0;box-shadow:none;font-weight:500}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.interface-preferences__tabs .components-tab-panel__tab-content{padding-right:24px;margin-right:160px}@media (max-width:781px){.interface-preferences__provider{height:100%}}.interface-preferences-modal__section{margin:0 0 2.5rem}.interface-preferences-modal__section:last-child{margin:0}.interface-preferences-modal__section-title{font-size:.9rem;font-weight:600;margin-top:0}.interface-preferences-modal__section-description{margin:-8px 0 8px;font-size:12px;font-style:normal;color:#757575}.interface-preferences-modal__option .components-base-control .components-base-control__field{align-items:center;display:flex;margin-bottom:0}.interface-preferences-modal__option .components-base-control .components-base-control__field>label{flex-grow:1;padding:.6rem 10px .6rem 0}.interface-preferences-modal__option .components-base-control__help{margin:-8px 58px 8px 0;font-size:12px;font-style:normal;color:#757575}.edit-post-header{height:60px;background:#fff;display:flex;flex-wrap:wrap;align-items:center;max-width:100vw}@media (min-width:280px){.edit-post-header{flex-wrap:nowrap}}.edit-post-header>.edit-post-header__settings{order:1}@supports (position:sticky){.edit-post-header>.edit-post-header__settings{order:0}}.edit-post-header__toolbar{display:flex;flex-grow:1}.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-left:4px}@media (min-width:600px){.edit-post-header__settings{padding-left:16px}}.edit-post-header__settings .components-button.components-button,.edit-post-header__settings .editor-post-saved-state{margin-left:4px}@media (min-width:600px){.edit-post-header__settings .components-button.components-button,.edit-post-header__settings .editor-post-saved-state{margin-left:12px}}.edit-post-header__settings .components-button.is-tertiary,.edit-post-header__settings .editor-post-saved-state{padding:0 6px}.edit-post-header__settings .interface-more-menu-dropdown .components-button,.edit-post-header__settings .interface-pinned-items .components-button{margin-left:0}.edit-post-header-preview__grouping-external{display:flex;position:relative;padding-bottom:0}.edit-post-header-preview__button-external{padding-right:8px;margin-left:auto;width:100%;display:flex;justify-content:flex-start}.edit-post-header-preview__button-external svg{margin-right:auto}.edit-post-post-preview-dropdown .components-popover__content>div{padding-bottom:0}.edit-post-header__dropdown .components-button.has-icon,.show-icon-labels .edit-post-header .components-button.has-icon,.show-icon-labels.interface-pinned-items .components-button.has-icon{width:auto}.edit-post-header__dropdown .components-button.has-icon svg,.show-icon-labels .edit-post-header .components-button.has-icon svg,.show-icon-labels.interface-pinned-items .components-button.has-icon svg{display:none}.edit-post-header__dropdown .components-button.has-icon:after,.show-icon-labels .edit-post-header .components-button.has-icon:after,.show-icon-labels.interface-pinned-items .components-button.has-icon:after{content:attr(aria-label)}.edit-post-header__dropdown .components-button.has-icon[aria-disabled=true],.show-icon-labels .edit-post-header .components-button.has-icon[aria-disabled=true],.show-icon-labels.interface-pinned-items .components-button.has-icon[aria-disabled=true]{background-color:transparent}.edit-post-header__dropdown .is-tertiary:active,.show-icon-labels .edit-post-header .is-tertiary:active,.show-icon-labels.interface-pinned-items .is-tertiary:active{box-shadow:0 0 0 1.5px var(--wp-admin-theme-color);background-color:transparent}.edit-post-header__dropdown .components-button.has-icon.button-toggle svg,.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon svg,.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle svg,.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon svg,.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle svg,.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon svg{display:block}.edit-post-header__dropdown .components-button.has-icon.button-toggle:after,.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon:after,.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle:after,.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon:after,.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle:after,.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon:after{content:none}.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon,.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon,.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon{width:60px}.edit-post-header__dropdown .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,.show-icon-labels .edit-post-header .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,.show-icon-labels.interface-pinned-items .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon{display:block}.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.edit-post-header__dropdown .interface-pinned-items .components-button,.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels .edit-post-header .interface-pinned-items .components-button,.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button{padding-right:8px;padding-left:8px}@media (min-width:600px){.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.edit-post-header__dropdown .interface-pinned-items .components-button,.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels .edit-post-header .interface-pinned-items .components-button,.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button{padding-right:12px;padding-left:12px}}.edit-post-header__dropdown .components-dropdown-menu__toggle,.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,.show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle{margin-right:8px;padding-right:8px;padding-left:8px}@media (min-width:600px){.edit-post-header__dropdown .components-dropdown-menu__toggle,.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,.show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle{margin-right:12px;padding-right:12px;padding-left:12px}}.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle:after,.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle:after,.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle:after,.show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft:after{content:none}@media (min-width:600px){.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft:after{content:attr(aria-label)}}.edit-post-header__dropdown .components-button.block-editor-list-view,.edit-post-header__dropdown .components-button.editor-history__redo,.edit-post-header__dropdown .components-button.editor-history__undo,.edit-post-header__dropdown .components-menu-item__button.components-menu-item__button,.edit-post-header__dropdown .table-of-contents .components-button{margin:0;padding:6px 40px 6px 6px;width:14.625rem;text-align:right;justify-content:flex-start}.show-icon-labels.interface-pinned-items{padding:6px 12px 12px;margin:0 -12px;border-bottom:1px solid #ccc;display:block}.show-icon-labels.interface-pinned-items>.components-button.has-icon{margin:0;padding:6px 8px 6px 6px;width:14.625rem;justify-content:flex-start}.show-icon-labels.interface-pinned-items>.components-button.has-icon[aria-expanded=true] svg{display:block;max-width:24px}.show-icon-labels.interface-pinned-items>.components-button.has-icon[aria-expanded=false]{padding-right:40px}.show-icon-labels.interface-pinned-items>.components-button.has-icon svg{margin-left:8px}.edit-post-fullscreen-mode-close.components-button{display:none}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button{display:flex;align-items:center;align-self:stretch;border:none;background:#1e1e1e;color:#fff;border-radius:0;height:61px;width:60px;position:relative;margin-bottom:-1px}.edit-post-fullscreen-mode-close.components-button:active{color:#fff}.edit-post-fullscreen-mode-close.components-button:focus{box-shadow:none}.edit-post-fullscreen-mode-close.components-button:before{transition:box-shadow .1s ease;content:"";display:block;position:absolute;top:9px;left:9px;bottom:9px;right:9px;border-radius:4px;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e}}@media (min-width:782px) and (prefers-reduced-motion:reduce){.edit-post-fullscreen-mode-close.components-button:before{transition-duration:0s;transition-delay:0s}}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button:hover:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #757575}}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button.has-icon:hover:before{box-shadow:none}}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button:focus:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) hsla(0,0%,100%,.1),inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}}.edit-post-fullscreen-mode-close.components-button .edit-post-fullscreen-mode-close_site-icon{width:36px;height:36px;border-radius:2px;-o-object-fit:cover;object-fit:cover;margin-top:-1px}.edit-post-header-toolbar{display:inline-flex;flex-grow:1;align-items:center;border:none}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button{display:none}@media (min-width:600px){.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button{display:inline-flex}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle{display:inline-flex}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle svg{transition:transform .2s cubic-bezier(.165,.84,.44,1)}@media (prefers-reduced-motion:reduce){.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle svg{transition-duration:0s;transition-delay:0s}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.is-pressed svg{transform:rotate(-45deg)}.edit-post-header-toolbar .block-editor-list-view{display:none}@media (min-width:600px){.edit-post-header-toolbar .block-editor-list-view{display:flex}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon,.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon{height:36px;min-width:36px;padding:6px}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon.is-pressed,.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon.is-pressed{background:#1e1e1e}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon:focus:not(:disabled),.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon:before,.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon:before{display:none}@media (min-width:600px){.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-button,.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-dropdown>[aria-expanded=false]{transition:opacity .1s linear}}@media (min-width:600px) and (prefers-reduced-motion:reduce){.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-button,.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-dropdown>[aria-expanded=false]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left>*+.components-button,.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left>*+.components-dropdown>[aria-expanded=false]{opacity:0}}.edit-post-header-toolbar__left{display:inline-flex;align-items:center;padding-right:8px}@media (min-width:600px){.edit-post-header-toolbar__left{padding-right:24px}}@media (min-width:1280px){.edit-post-header-toolbar__left{padding-left:8px}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.has-icon{margin-left:8px;min-width:32px;width:32px;height:32px;padding:0}.show-icon-labels .edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.has-icon{height:36px}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.has-text.has-icon{width:auto;padding:0 8px}.show-icon-labels .edit-post-header-toolbar__left>*+*{margin-right:8px}.edit-post-template-top-area{display:flex;flex-direction:column;align-content:space-between;width:100%;align-items:center}.edit-post-template-top-area .edit-post-template-post-title,.edit-post-template-top-area .edit-post-template-title{padding:0;text-decoration:none;height:auto}.edit-post-template-top-area .edit-post-template-post-title:before,.edit-post-template-top-area .edit-post-template-title:before{height:100%}.edit-post-template-top-area .edit-post-template-post-title.has-icon svg,.edit-post-template-top-area .edit-post-template-title.has-icon svg{order:1;margin-left:0}.edit-post-template-top-area .edit-post-template-title{color:#1e1e1e}.edit-post-template-top-area .edit-post-template-post-title{margin-top:4px;max-width:160px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}.edit-post-template-top-area .edit-post-template-post-title:before{right:0;left:0}@media (min-width:1080px){.edit-post-template-top-area .edit-post-template-post-title{max-width:400px}}.edit-post-template-top-area__popover .components-popover__content{min-width:280px;padding:8px}.edit-post-template-top-area__popover .edit-post-template-details__description{color:#757575}.edit-post-template-top-area__second-menu-group{margin-right:-16px;margin-left:-16px;padding:16px 16px 0;border-top:1px solid #ddd}.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button{display:flex;justify-content:center}.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button .components-menu-item__item{margin-left:0;min-width:0}.edit-post-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.edit-post-keyboard-shortcut-help-modal__main-shortcuts .edit-post-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.edit-post-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.edit-post-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.edit-post-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.edit-post-keyboard-shortcut-help-modal__shortcut:empty{display:none}.edit-post-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 1rem 0 0;text-align:left}.edit-post-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination+.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.edit-post-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.edit-post-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 .2rem 0 0}.edit-post-layout__metaboxes{flex-shrink:0;clear:both}.edit-post-layout .components-editor-notices__snackbar{position:fixed;left:0;bottom:40px;padding-right:16px;padding-left:16px;right:0}@media (min-width:783px){.edit-post-layout .components-editor-notices__snackbar{right:160px}}@media (min-width:783px){.auto-fold .edit-post-layout .components-editor-notices__snackbar{right:36px}}@media (min-width:961px){.auto-fold .edit-post-layout .components-editor-notices__snackbar{right:160px}}.folded .edit-post-layout .components-editor-notices__snackbar{right:0}@media (min-width:783px){.folded .edit-post-layout .components-editor-notices__snackbar{right:36px}}body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar{right:0!important}.edit-post-layout .editor-post-publish-panel{position:fixed;z-index:100001;top:46px;bottom:0;left:0;right:0;overflow:auto}@media (min-width:782px){.edit-post-layout .editor-post-publish-panel{z-index:99998;top:32px;right:auto;width:281px;border-right:1px solid #ddd;transform:translateX(-100%);animation:edit-post-post-publish-panel__slide-in-animation .1s forwards}}@media (min-width:782px) and (prefers-reduced-motion:reduce){.edit-post-layout .editor-post-publish-panel{animation-duration:1ms;animation-delay:0s}}@media (min-width:782px){body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}}@media (min-width:782px){[role=region]:focus .edit-post-layout .editor-post-publish-panel{transform:translateX(0)}}@keyframes edit-post-post-publish-panel__slide-in-animation{to{transform:translateX(0)}}.edit-post-layout .editor-post-publish-panel__header-publish-button{justify-content:center}.edit-post-layout__toggle-entities-saved-states-panel,.edit-post-layout__toggle-publish-panel,.edit-post-layout__toggle-sidebar-panel{z-index:100000;position:fixed!important;top:-9999em;bottom:auto;right:auto;left:0;width:280px;background-color:#fff;border:1px dotted #ddd;height:auto!important;padding:24px;display:flex;justify-content:center}.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-entities-saved-states-panel,.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-publish-panel,.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-sidebar-panel,.interface-interface-skeleton__actions:focus .edit-post-layout__toggle-entities-saved-states-panel,.interface-interface-skeleton__actions:focus .edit-post-layout__toggle-publish-panel,.interface-interface-skeleton__actions:focus .edit-post-layout__toggle-sidebar-panel{top:auto;bottom:0}.edit-post-block-manager__no-results{font-style:italic;padding:24px 0;text-align:center}.edit-post-block-manager__search{margin:16px 0}.edit-post-block-manager__disabled-blocks-count{border:1px solid #ddd;border-width:1px 0;box-shadow:32px 0 0 0 #fff,-32px 0 0 0 #fff;padding:8px;background-color:#fff;text-align:center;font-style:italic;position:sticky;top:-1px;z-index:2}.edit-post-block-manager__disabled-blocks-count~.edit-post-block-manager__results .edit-post-block-manager__category-title{top:35px}.edit-post-block-manager__category{margin:0 0 24px}.edit-post-block-manager__category-title{position:sticky;top:0;padding:16px 0;background-color:#fff;z-index:1}.edit-post-block-manager__category-title .components-checkbox-control__label{font-weight:600}.edit-post-block-manager__show-all{margin-left:8px}.edit-post-block-manager__checklist{margin-top:0}.edit-post-block-manager__category-title,.edit-post-block-manager__checklist-item{border-bottom:1px solid #ddd}.edit-post-block-manager__category-title .components-base-control__field,.edit-post-block-manager__checklist-item .components-base-control__field{align-items:center;display:flex;margin:0}.edit-post-block-manager__checklist-item{margin-bottom:0;padding-right:16px}.components-modal__content .edit-post-block-manager__checklist-item.components-checkbox-control__input-container{margin:0 8px}.edit-post-block-manager__checklist-item .components-checkbox-control__label{display:flex;align-items:center;justify-content:space-between;flex-grow:1;padding:8px 0}.edit-post-block-manager__checklist-item .block-editor-block-icon{margin-left:10px;fill:#1e1e1e}.edit-post-block-manager__results{border-top:1px solid #ddd}.edit-post-block-manager__disabled-blocks-count+.edit-post-block-manager__results{border-top-width:0}.edit-post-meta-boxes-area{position:relative}.edit-post-meta-boxes-area .inside,.edit-post-meta-boxes-area__container{box-sizing:content-box}.edit-post-meta-boxes-area input,.edit-post-meta-boxes-area textarea{box-sizing:border-box}.edit-post-meta-boxes-area .postbox-header{border-top:1px solid #ddd;border-bottom:0}.edit-post-meta-boxes-area #poststuff{margin:0 auto;padding-top:0;min-width:auto}.edit-post-meta-boxes-area #poststuff .stuffbox>h3,.edit-post-meta-boxes-area #poststuff h2.hndle,.edit-post-meta-boxes-area #poststuff h3.hndle{box-sizing:border-box;color:inherit;font-weight:600;outline:none;padding:0 24px;position:relative;width:100%}.edit-post-meta-boxes-area .postbox{border:0;color:inherit;margin-bottom:0}.edit-post-meta-boxes-area .postbox>.inside{color:inherit;padding:0 24px 24px;margin:0}.edit-post-meta-boxes-area .postbox .handlediv{height:44px;width:44px}.edit-post-meta-boxes-area.is-loading:before{position:absolute;top:0;right:0;left:0;bottom:0;content:"";background:transparent;z-index:1}.edit-post-meta-boxes-area .components-spinner{position:absolute;top:10px;left:20px;z-index:5}.edit-post-meta-boxes-area .is-hidden{display:none}.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]{border:1px solid #757575}.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:checked{background:#fff;border-color:#757575}.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:before{margin:-3px -4px}.edit-post-meta-boxes-area__clear{clear:both}.edit-post-editor__inserter-panel,.edit-post-editor__list-view-panel{height:100%;display:flex;flex-direction:column}.edit-post-editor__list-view-panel{min-width:350px}.edit-post-editor__inserter-panel-header{padding-top:8px;padding-left:8px;display:flex;justify-content:flex-end}.edit-post-editor__inserter-panel-content,.edit-post-editor__list-view-panel-content{height:calc(100% - 44px)}@media (min-width:782px){.edit-post-editor__inserter-panel-content{height:100%}}.edit-post-editor__list-view-panel-header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;height:48px;padding-right:16px;padding-left:4px}.edit-post-editor__list-view-panel-content{overflow-y:auto;padding:8px 6px}.components-panel__header.edit-post-sidebar__panel-tabs{justify-content:flex-start;padding-right:0;padding-left:16px;border-top:0;margin-top:0}.components-panel__header.edit-post-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-post-sidebar__panel-tabs li{margin:0}.components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon{display:none;margin:0 auto 0 0;padding:0;min-width:24px;height:24px}@media (min-width:782px){.components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon{display:flex}}.components-panel__body.is-opened.edit-post-last-revision__panel{padding:0;height:48px}.editor-post-last-revision__title.components-button{padding:16px}.editor-post-author__select{margin:-5px 0;width:100%}@supports (position:sticky){.editor-post-author__select{width:auto}}.edit-post-post-link__link-post-name{font-weight:600}.edit-post-post-link__preview-label{font-weight:400;margin:0}.edit-post-post-link__link{text-align:right;word-wrap:break-word;display:block}.edit-post-post-link__preview-link-container{direction:ltr}.edit-post-post-schedule{width:100%;position:relative;justify-content:left}.edit-post-post-schedule span{display:block;width:45%}.components-button.edit-post-post-schedule__toggle{text-align:left}.edit-post-post-schedule__dialog .components-popover__content>div{padding:0}.editor-post-slug__input{margin:-5px 0;padding:2px}.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft{margin-top:15px;width:100%;text-align:center}.edit-post-post-visibility{width:100%;justify-content:left}.edit-post-post-visibility span{display:block;width:45%}@media (min-width:782px){.edit-post-post-visibility__dialog .components-popover__content{width:257px}}.edit-post-post-visibility__dialog-legend{font-weight:600}.edit-post-post-visibility__choice{margin:10px 0}.edit-post-post-visibility__dialog-label,.edit-post-post-visibility__dialog-radio{vertical-align:top}.edit-post-post-visibility__dialog-password-input{width:calc(100% - 20px);margin-right:20px}.edit-post-post-visibility__dialog-info{color:#757575;padding-right:20px;font-style:italic;margin:4px 0 0;line-height:1.4}.components-button.edit-post-sidebar__panel-tab{border-radius:0;height:48px;background:transparent;border:none;box-shadow:none;cursor:pointer;display:inline-block;padding:3px 15px;margin-right:0;font-weight:500}.components-button.edit-post-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.components-button.edit-post-sidebar__panel-tab.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-post-sidebar__panel-tab.is-active:before{content:"";position:absolute;top:0;bottom:1px;left:0;right:0;border-bottom:4px solid transparent}.components-button.edit-post-sidebar__panel-tab:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-post-sidebar__panel-tab.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}@media (min-width:782px){.edit-post-template__modal .components-base-control{width:320px}}.edit-post-template__modal .components-modal__header{border-bottom:none}.edit-post-template__modal .components-modal__content:before{margin-bottom:4px}.edit-post-template__modal-actions{margin-top:12px}.edit-post-template-modal__tip{padding:16px 24px;background:#f0f0f0;border-radius:2px}@media (min-width:782px){.edit-post-template-modal__tip{width:240px}}.edit-post-template__notice{margin:0 0 8px}.edit-post-template__notice .components-notice__content{margin:0}.edit-post-template__actions button:not(:last-child){margin-left:8px}h2.edit-post-template-summary__title{line-height:24px;margin:0 0 4px;font-weight:500}.edit-post-text-editor{position:relative;width:100%;background-color:#fff;flex-grow:1}.edit-post-text-editor .editor-post-title{max-width:none;line-height:1.4;font-family:Menlo,Consolas,monaco,monospace;font-size:2.5em;font-weight:400;border:1px solid #949494;padding:16px}@media (min-width:600px){.edit-post-text-editor .editor-post-title{padding:24px}}.edit-post-text-editor .editor-post-title:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.edit-post-text-editor__body{width:100%;padding:0 12px 12px;max-width:1080px;margin-right:auto;margin-left:auto}@media (min-width:960px){.edit-post-text-editor__body{padding:0 24px 24px}}.edit-post-text-editor__toolbar{position:sticky;z-index:1;top:0;right:0;left:0;display:flex;background:hsla(0,0%,100%,.8);padding:4px 12px}@media (min-width:600px){.edit-post-text-editor__toolbar{padding:12px}}@media (min-width:960px){.edit-post-text-editor__toolbar{padding:12px 24px}}.edit-post-text-editor__toolbar h2{line-height:36px;margin:0 0 0 auto;font-size:13px;color:#1e1e1e}.edit-post-text-editor__toolbar .components-button svg{order:1}.edit-post-visual-editor{position:relative;display:flex;flex-flow:column;background-color:#2f2f2f;flex:1 0 auto}.edit-post-visual-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 12px}.edit-post-visual-editor .components-button.has-icon,.edit-post-visual-editor .components-button.is-tertiary{padding:6px}.edit-post-visual-editor__post-title-wrapper{margin-top:4rem;margin-bottom:var(--wp--style--block-gap)}.edit-post-visual-editor__post-title-wrapper .editor-post-title{margin-right:auto;margin-left:auto}.edit-post-visual-editor__exit-template-mode{position:absolute;top:8px;right:8px;color:#fff}.edit-post-visual-editor__exit-template-mode:active:not([aria-disabled=true]),.edit-post-visual-editor__exit-template-mode:focus:not([aria-disabled=true]),.edit-post-visual-editor__exit-template-mode:hover{color:#f0f0f0}.edit-post-visual-editor__content-area{width:100%;height:100%;position:relative;box-sizing:border-box;display:flex;flex-grow:1}.edit-post-welcome-guide,.edit-template-welcome-guide{width:312px}.edit-post-welcome-guide__image,.edit-template-welcome-guide__image{background:#00a0d2;margin:0 0 16px}.edit-post-welcome-guide__image>img,.edit-template-welcome-guide__image>img{display:block;max-width:100%;-o-object-fit:cover;object-fit:cover}.edit-post-welcome-guide__heading,.edit-template-welcome-guide__heading{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:24px;line-height:1.4;margin:16px 0;padding:0 32px}.edit-post-welcome-guide__text,.edit-template-welcome-guide__text{font-size:13px;line-height:1.4;margin:0 0 24px;padding:0 32px}.edit-post-welcome-guide__inserter-icon,.edit-template-welcome-guide__inserter-icon{margin:0 4px;vertical-align:text-top}.edit-template-welcome-guide .components-button svg{fill:#fff}@media (min-width:600px){.edit-post-start-page-options__modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.edit-post-start-page-options__modal{width:750px}}@media (min-width:960px){.edit-post-start-page-options__modal{height:70%}}.edit-post-start-page-options__modal .components-modal__header{border-bottom:none}.edit-post-start-page-options__modal .components-modal__content:before{content:none}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list{column-count:2;column-gap:24px}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{break-inside:avoid-column;margin-bottom:24px}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container{min-height:100px}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__content{width:100%}@keyframes edit-post__fade-in-animation{0%{opacity:0}to{opacity:1}}body.block-editor-page,html.wp-toolbar{background:#fff}body.block-editor-page #wpcontent{padding-right:0}body.block-editor-page #wpbody-content{padding-bottom:0}body.block-editor-page #wpbody-content>div:not(.block-editor):not(#screen-meta),body.block-editor-page #wpfooter{display:none}body.block-editor-page .a11y-speak-region{right:-1px;top:-1px}body.block-editor-page ul#adminmenu>li.current>a.current:after,body.block-editor-page ul#adminmenu a.wp-has-current-submenu:after{border-left-color:#fff}body.block-editor-page .media-frame select.attachment-filters:last-of-type{width:auto;max-width:100%}.block-editor-page #wpwrap{overflow-y:auto}@media (min-width:782px){.block-editor-page #wpwrap{overflow-y:initial}}.components-modal__frame,.components-popover,.edit-post-editor__inserter-panel,.edit-post-header,.edit-post-sidebar,.edit-post-text-editor,.editor-post-publish-panel{box-sizing:border-box}.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before,.components-popover *,.components-popover :after,.components-popover :before,.edit-post-editor__inserter-panel *,.edit-post-editor__inserter-panel :after,.edit-post-editor__inserter-panel :before,.edit-post-header *,.edit-post-header :after,.edit-post-header :before,.edit-post-sidebar *,.edit-post-sidebar :after,.edit-post-sidebar :before,.edit-post-text-editor *,.edit-post-text-editor :after,.edit-post-text-editor :before,.editor-post-publish-panel *,.editor-post-publish-panel :after,.editor-post-publish-panel :before{box-sizing:inherit}@media (min-width:600px){.block-editor__container{position:absolute;top:0;left:0;bottom:0;right:0;min-height:calc(100vh - 46px)}}@media (min-width:782px){.block-editor__container{min-height:calc(100vh - 32px)}body.is-fullscreen-mode .block-editor__container{min-height:100vh}}.block-editor__container img{max-width:100%;height:auto}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/style.css b/static/wp-includes/css/dist/edit-post/style.css
new file mode 100755
index 0000000..a90fcea
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/style.css
@@ -0,0 +1,2055 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.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 {
+ background: #fff;
+ padding-right: 4px;
+}
+.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;
+ }
+}
+
+@media (min-width: 782px) {
+ .components-panel__header + .interface-complementary-area-header {
+ margin-top: 0;
+ }
+}
+
+.interface-complementary-area {
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 600px) {
+ .interface-complementary-area {
+ -webkit-overflow-scrolling: touch;
+ }
+}
+@media (min-width: 782px) {
+ .interface-complementary-area {
+ width: 280px;
+ }
+}
+.interface-complementary-area .components-panel {
+ border: none;
+ position: relative;
+ z-index: 0;
+}
+.interface-complementary-area .components-panel__header {
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 48px;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 0;
+ }
+}
+.interface-complementary-area p {
+ margin-top: 0;
+}
+.interface-complementary-area h2 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area h3 {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area hr {
+ border-top: none;
+ border-bottom: 1px solid #f0f0f0;
+ 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;
+ }
+}
+
+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: row;
+ 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__editor {
+ display: flex;
+ flex-direction: column;
+ flex: 0 1 100%;
+ overflow: hidden;
+}
+
+.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;
+ }
+}
+
+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;
+}
+@media (min-width: 782px) {
+ .has-footer .interface-interface-skeleton__body {
+ padding-bottom: 25px;
+ }
+}
+
+.interface-interface-skeleton__content {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow: auto;
+ z-index: 20;
+}
+
+.interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ display: block;
+ 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__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ position: relative !important;
+ z-index: 90;
+ width: auto;
+ }
+}
+
+.interface-interface-skeleton__sidebar {
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__sidebar {
+ border-left: 1px solid #e0e0e0;
+ }
+}
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar {
+ border-right: 1px solid #e0e0e0;
+ }
+}
+
+.interface-interface-skeleton__header {
+ flex-shrink: 0;
+ height: auto;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 30;
+ color: #1e1e1e;
+}
+
+.interface-interface-skeleton__footer {
+ height: auto;
+ flex-shrink: 0;
+ border-top: 1px solid #e0e0e0;
+ color: #1e1e1e;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ background-color: #fff;
+ z-index: 90;
+ display: none;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__footer {
+ display: flex;
+ }
+}
+.interface-interface-skeleton__footer .block-editor-block-breadcrumb {
+ z-index: 30;
+ display: flex;
+ background: #fff;
+ height: 24px;
+ align-items: center;
+ font-size: 13px;
+ padding: 0 18px;
+}
+
+.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;
+}
+
+.interface-more-menu-dropdown {
+ margin-left: -4px;
+}
+.interface-more-menu-dropdown .components-button {
+ width: auto;
+ padding: 0 2px;
+}
+@media (min-width: 600px) {
+ .interface-more-menu-dropdown {
+ margin-left: 0;
+ }
+ .interface-more-menu-dropdown .components-button {
+ padding: 0 4px;
+ }
+}
+
+.interface-more-menu-dropdown__content .components-popover__content {
+ min-width: 280px;
+}
+@media (min-width: 480px) {
+ .interface-more-menu-dropdown__content .components-popover__content {
+ width: auto;
+ max-width: 480px;
+ }
+}
+.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.components-popover.interface-more-menu-dropdown__content {
+ z-index: 99998;
+}
+
+.interface-pinned-items {
+ display: flex;
+}
+.interface-pinned-items .components-button:not(:first-child) {
+ display: none;
+}
+@media (min-width: 600px) {
+ .interface-pinned-items .components-button:not(:first-child) {
+ display: flex;
+ }
+}
+.interface-pinned-items .components-button {
+ margin-left: 4px;
+}
+.interface-pinned-items .components-button svg {
+ max-width: 24px;
+ max-height: 24px;
+}
+
+@media (min-width: 600px) {
+ .interface-preferences-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .interface-preferences-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .interface-preferences-modal {
+ height: 70%;
+ }
+}
+@media (max-width: 781px) {
+ .interface-preferences-modal .components-modal__content {
+ padding: 0;
+ }
+ .interface-preferences-modal .components-modal__content::before {
+ content: none;
+ }
+}
+
+.interface-preferences__tabs .components-tab-panel__tabs {
+ position: absolute;
+ top: 84px;
+ left: 16px;
+ width: 160px;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
+ border-radius: 2px;
+ font-weight: 400;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active {
+ background: #f0f0f0;
+ box-shadow: none;
+ font-weight: 500;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.interface-preferences__tabs .components-tab-panel__tab-content {
+ padding-left: 24px;
+ margin-left: 160px;
+}
+
+@media (max-width: 781px) {
+ .interface-preferences__provider {
+ height: 100%;
+ }
+}
+.interface-preferences-modal__section {
+ margin: 0 0 2.5rem 0;
+}
+.interface-preferences-modal__section:last-child {
+ margin: 0;
+}
+
+.interface-preferences-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+ margin-top: 0;
+}
+
+.interface-preferences-modal__section-description {
+ margin: -8px 0 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.interface-preferences-modal__option .components-base-control .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin-bottom: 0;
+}
+.interface-preferences-modal__option .components-base-control .components-base-control__field > label {
+ flex-grow: 1;
+ padding: 0.6rem 0 0.6rem 10px;
+}
+.interface-preferences-modal__option .components-base-control__help {
+ margin: -8px 0 8px 58px;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.edit-post-header {
+ height: 60px;
+ background: #fff;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ max-width: 100vw;
+}
+@media (min-width: 280px) {
+ .edit-post-header {
+ flex-wrap: nowrap;
+ }
+}
+.edit-post-header > .edit-post-header__settings {
+ order: 1;
+}
+@supports (position: sticky) {
+ .edit-post-header > .edit-post-header__settings {
+ order: initial;
+ }
+}
+
+.edit-post-header__toolbar {
+ display: flex;
+ flex-grow: 1;
+}
+.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: 4px;
+ /**
+ * Buttons in the Toolbar
+ */
+}
+@media (min-width: 600px) {
+ .edit-post-header__settings {
+ padding-right: 16px;
+ }
+}
+.edit-post-header__settings .editor-post-saved-state,
+.edit-post-header__settings .components-button.components-button {
+ margin-right: 4px;
+}
+@media (min-width: 600px) {
+ .edit-post-header__settings .editor-post-saved-state,
+.edit-post-header__settings .components-button.components-button {
+ margin-right: 12px;
+ }
+}
+.edit-post-header__settings .editor-post-saved-state,
+.edit-post-header__settings .components-button.is-tertiary {
+ padding: 0 6px;
+}
+.edit-post-header__settings .interface-more-menu-dropdown .components-button,
+.edit-post-header__settings .interface-pinned-items .components-button {
+ margin-right: 0;
+}
+
+.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-left: auto;
+}
+
+.edit-post-post-preview-dropdown .components-popover__content > div {
+ padding-bottom: 0;
+}
+
+.show-icon-labels.interface-pinned-items .components-button.has-icon,
+.show-icon-labels .edit-post-header .components-button.has-icon,
+.edit-post-header__dropdown .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels.interface-pinned-items .components-button.has-icon svg,
+.show-icon-labels .edit-post-header .components-button.has-icon svg,
+.edit-post-header__dropdown .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels.interface-pinned-items .components-button.has-icon::after,
+.show-icon-labels .edit-post-header .components-button.has-icon::after,
+.edit-post-header__dropdown .components-button.has-icon::after {
+ content: attr(aria-label);
+}
+.show-icon-labels.interface-pinned-items .components-button.has-icon[aria-disabled=true],
+.show-icon-labels .edit-post-header .components-button.has-icon[aria-disabled=true],
+.edit-post-header__dropdown .components-button.has-icon[aria-disabled=true] {
+ background-color: transparent;
+}
+.show-icon-labels.interface-pinned-items .is-tertiary:active,
+.show-icon-labels .edit-post-header .is-tertiary:active,
+.edit-post-header__dropdown .is-tertiary:active {
+ box-shadow: 0 0 0 1.5px var(--wp-admin-theme-color);
+ background-color: transparent;
+}
+.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon svg,
+.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle svg,
+.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon svg,
+.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle svg,
+.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon svg,
+.edit-post-header__dropdown .components-button.has-icon.button-toggle svg {
+ display: block;
+}
+.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon::after,
+.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle::after,
+.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon::after,
+.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle::after,
+.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon::after,
+.edit-post-header__dropdown .components-button.has-icon.button-toggle::after {
+ content: none;
+}
+.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon,
+.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon,
+.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon {
+ width: 60px;
+}
+.show-icon-labels.interface-pinned-items .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,
+.show-icon-labels .edit-post-header .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,
+.edit-post-header__dropdown .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon {
+ display: block;
+}
+.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button,
+.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels .edit-post-header .interface-pinned-items .components-button,
+.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.edit-post-header__dropdown .interface-pinned-items .components-button {
+ padding-left: 8px;
+ padding-right: 8px;
+}
+@media (min-width: 600px) {
+ .show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button,
+.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.show-icon-labels .edit-post-header .interface-pinned-items .components-button,
+.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
+.edit-post-header__dropdown .interface-pinned-items .components-button {
+ padding-left: 12px;
+ padding-right: 12px;
+ }
+}
+.show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle,
+.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,
+.edit-post-header__dropdown .components-dropdown-menu__toggle {
+ margin-left: 8px;
+ padding-left: 8px;
+ padding-right: 8px;
+}
+@media (min-width: 600px) {
+ .show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle,
+.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,
+.edit-post-header__dropdown .components-dropdown-menu__toggle {
+ margin-left: 12px;
+ padding-left: 12px;
+ padding-right: 12px;
+ }
+}
+.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after,
+.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after,
+.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after {
+ content: none;
+}
+.show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft::after,
+.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft::after,
+.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft::after {
+ content: none;
+}
+@media (min-width: 600px) {
+ .show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft::after,
+.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft::after,
+.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft::after {
+ content: attr(aria-label);
+ }
+}
+
+.edit-post-header__dropdown .components-menu-item__button.components-menu-item__button,
+.edit-post-header__dropdown .components-button.editor-history__undo,
+.edit-post-header__dropdown .components-button.editor-history__redo,
+.edit-post-header__dropdown .table-of-contents .components-button,
+.edit-post-header__dropdown .components-button.block-editor-list-view {
+ margin: 0;
+ padding: 6px 6px 6px 40px;
+ width: 14.625rem;
+ text-align: left;
+ justify-content: flex-start;
+}
+
+.show-icon-labels.interface-pinned-items {
+ padding: 6px 12px 12px;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: -12px;
+ margin-right: -12px;
+ border-bottom: 1px solid #ccc;
+ display: block;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon {
+ margin: 0;
+ padding: 6px 6px 6px 8px;
+ width: 14.625rem;
+ justify-content: flex-start;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon[aria-expanded=true] svg {
+ display: block;
+ max-width: 24px;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon[aria-expanded=false] {
+ padding-left: 40px;
+}
+.show-icon-labels.interface-pinned-items > .components-button.has-icon svg {
+ margin-right: 8px;
+}
+
+.edit-post-fullscreen-mode-close.components-button {
+ display: none;
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button {
+ display: flex;
+ align-items: center;
+ align-self: stretch;
+ border: none;
+ background: #1e1e1e;
+ color: #fff;
+ border-radius: 0;
+ height: 61px;
+ width: 60px;
+ position: relative;
+ margin-bottom: -1px;
+ }
+ .edit-post-fullscreen-mode-close.components-button:active {
+ color: #fff;
+ }
+ .edit-post-fullscreen-mode-close.components-button:focus {
+ box-shadow: none;
+ }
+ .edit-post-fullscreen-mode-close.components-button::before {
+ transition: box-shadow 0.1s ease;
+ content: "";
+ display: block;
+ position: absolute;
+ top: 9px;
+ right: 9px;
+ bottom: 9px;
+ left: 9px;
+ border-radius: 4px;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
+ }
+}
+@media (min-width: 782px) and (prefers-reduced-motion: reduce) {
+ .edit-post-fullscreen-mode-close.components-button::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button:hover::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #757575;
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button.has-icon:hover::before {
+ box-shadow: none;
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-fullscreen-mode-close.components-button:focus::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) rgba(255, 255, 255, 0.1), inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ }
+}
+.edit-post-fullscreen-mode-close.components-button .edit-post-fullscreen-mode-close_site-icon {
+ width: 36px;
+ height: 36px;
+ border-radius: 2px;
+ -o-object-fit: cover;
+ object-fit: cover;
+ margin-top: -1px;
+}
+
+.edit-post-header-toolbar {
+ display: inline-flex;
+ flex-grow: 1;
+ align-items: center;
+ border: none;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button {
+ display: none;
+}
+@media (min-width: 600px) {
+ .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button {
+ display: inline-flex;
+ }
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle {
+ display: inline-flex;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle svg {
+ transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.is-pressed svg {
+ transform: rotate(45deg);
+}
+.edit-post-header-toolbar .block-editor-list-view {
+ display: none;
+}
+@media (min-width: 600px) {
+ .edit-post-header-toolbar .block-editor-list-view {
+ display: flex;
+ }
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon,
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon {
+ height: 36px;
+ min-width: 36px;
+ padding: 6px;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon.is-pressed,
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon.is-pressed {
+ background: #1e1e1e;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon:focus:not(:disabled),
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 1px #fff;
+ outline: 1px solid transparent;
+}
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon::before,
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon::before {
+ display: none;
+}
+
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-button,
+.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
+ transition: opacity 0.1s linear;
+ }
+}
+@media (min-width: 600px) and (prefers-reduced-motion: reduce) {
+ .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-button,
+.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left > * + .components-button, .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
+ opacity: 0;
+ }
+}
+
+.edit-post-header-toolbar__left {
+ display: inline-flex;
+ align-items: center;
+ padding-left: 8px;
+}
+@media (min-width: 600px) {
+ .edit-post-header-toolbar__left {
+ padding-left: 24px;
+ }
+}
+@media (min-width: 1280px) {
+ .edit-post-header-toolbar__left {
+ padding-right: 8px;
+ }
+}
+
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-icon {
+ margin-right: 8px;
+ min-width: 32px;
+ width: 32px;
+ height: 32px;
+ padding: 0;
+}
+.show-icon-labels .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-icon {
+ height: 36px;
+}
+
+.edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-text.has-icon {
+ width: auto;
+ padding: 0 8px;
+}
+
+.show-icon-labels .edit-post-header-toolbar__left > * + * {
+ margin-left: 8px;
+}
+
+.edit-post-template-top-area {
+ display: flex;
+ flex-direction: column;
+ align-content: space-between;
+ width: 100%;
+ align-items: center;
+}
+.edit-post-template-top-area .edit-post-template-title,
+.edit-post-template-top-area .edit-post-template-post-title {
+ padding: 0;
+ text-decoration: none;
+ height: auto;
+}
+.edit-post-template-top-area .edit-post-template-title::before,
+.edit-post-template-top-area .edit-post-template-post-title::before {
+ height: 100%;
+}
+.edit-post-template-top-area .edit-post-template-title.has-icon svg,
+.edit-post-template-top-area .edit-post-template-post-title.has-icon svg {
+ order: 1;
+ margin-right: 0;
+}
+.edit-post-template-top-area .edit-post-template-title {
+ color: #1e1e1e;
+}
+.edit-post-template-top-area .edit-post-template-post-title {
+ margin-top: 4px;
+ max-width: 160px;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ display: block;
+}
+.edit-post-template-top-area .edit-post-template-post-title::before {
+ left: 0;
+ right: 0;
+}
+@media (min-width: 1080px) {
+ .edit-post-template-top-area .edit-post-template-post-title {
+ max-width: 400px;
+ }
+}
+
+.edit-post-template-top-area__popover .components-popover__content {
+ min-width: 280px;
+ padding: 8px;
+}
+.edit-post-template-top-area__popover .edit-post-template-details__description {
+ color: #757575;
+}
+
+.edit-post-template-top-area__second-menu-group {
+ margin-left: -16px;
+ margin-right: -16px;
+ padding: 16px;
+ padding-bottom: 0;
+ border-top: 1px solid #ddd;
+}
+.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button {
+ display: flex;
+ justify-content: center;
+}
+.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button .components-menu-item__item {
+ margin-right: 0;
+ min-width: 0;
+}
+
+.edit-post-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.edit-post-keyboard-shortcut-help-modal__main-shortcuts .edit-post-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.edit-post-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 0 0 1rem;
+ text-align: right;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.edit-post-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0 0 0.2rem;
+}
+
+.edit-post-layout__metaboxes {
+ flex-shrink: 0;
+ clear: both;
+}
+
+.edit-post-layout .components-editor-notices__snackbar {
+ position: fixed;
+ right: 0;
+ 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: 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: 783px) {
+ .auto-fold .edit-post-layout .components-editor-notices__snackbar {
+ left: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .edit-post-layout .components-editor-notices__snackbar {
+ left: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .edit-post-layout .components-editor-notices__snackbar {
+ left: 0;
+}
+@media (min-width: 783px) {
+ .folded .edit-post-layout .components-editor-notices__snackbar {
+ left: 36px;
+ }
+}
+
+body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
+ left: 0 !important;
+}
+
+.edit-post-layout .editor-post-publish-panel {
+ position: fixed;
+ z-index: 100001;
+ top: 46px;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .edit-post-layout .editor-post-publish-panel {
+ z-index: 99998;
+ top: 32px;
+ left: auto;
+ width: 281px;
+ border-left: 1px solid #ddd;
+ transform: translateX(100%);
+ animation: edit-post-post-publish-panel__slide-in-animation 0.1s forwards;
+ }
+}
+@media (min-width: 782px) and (prefers-reduced-motion: reduce) {
+ .edit-post-layout .editor-post-publish-panel {
+ animation-duration: 1ms;
+ animation-delay: 0s;
+ }
+}
+@media (min-width: 782px) {
+ body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel {
+ top: 0;
+ }
+}
+@media (min-width: 782px) {
+ [role=region]:focus .edit-post-layout .editor-post-publish-panel {
+ transform: translateX(0%);
+ }
+}
+
+@keyframes edit-post-post-publish-panel__slide-in-animation {
+ 100% {
+ transform: translateX(0%);
+ }
+}
+.edit-post-layout .editor-post-publish-panel__header-publish-button {
+ justify-content: center;
+}
+
+.edit-post-layout__toggle-publish-panel,
+.edit-post-layout__toggle-sidebar-panel,
+.edit-post-layout__toggle-entities-saved-states-panel {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ left: auto;
+ right: 0;
+ width: 280px;
+ background-color: #fff;
+ border: 1px dotted #ddd;
+ height: auto !important;
+ padding: 24px;
+ display: flex;
+ justify-content: center;
+}
+.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-sidebar-panel,
+.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-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 {
+ top: auto;
+ bottom: 0;
+}
+
+.edit-post-block-manager__no-results {
+ font-style: italic;
+ padding: 24px 0;
+ text-align: center;
+}
+
+.edit-post-block-manager__search {
+ margin: 16px 0;
+}
+
+.edit-post-block-manager__disabled-blocks-count {
+ border: 1px solid #ddd;
+ border-width: 1px 0;
+ box-shadow: -32px 0 0 0 #fff, 32px 0 0 0 #fff;
+ padding: 8px;
+ background-color: #fff;
+ text-align: center;
+ font-style: italic;
+ position: sticky;
+ top: -1px;
+ z-index: 2;
+}
+.edit-post-block-manager__disabled-blocks-count ~ .edit-post-block-manager__results .edit-post-block-manager__category-title {
+ top: 35px;
+}
+
+.edit-post-block-manager__category {
+ margin: 0 0 24px 0;
+}
+
+.edit-post-block-manager__category-title {
+ position: sticky;
+ top: 0;
+ padding: 16px 0;
+ background-color: #fff;
+ z-index: 1;
+}
+.edit-post-block-manager__category-title .components-checkbox-control__label {
+ font-weight: 600;
+}
+
+.edit-post-block-manager__show-all {
+ margin-right: 8px;
+}
+
+.edit-post-block-manager__checklist {
+ margin-top: 0;
+}
+
+.edit-post-block-manager__category-title,
+.edit-post-block-manager__checklist-item {
+ border-bottom: 1px solid #ddd;
+}
+.edit-post-block-manager__category-title .components-base-control__field,
+.edit-post-block-manager__checklist-item .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin: 0;
+}
+
+.edit-post-block-manager__checklist-item {
+ margin-bottom: 0;
+ padding-left: 16px;
+}
+.components-modal__content .edit-post-block-manager__checklist-item.components-checkbox-control__input-container {
+ margin: 0 8px;
+}
+.edit-post-block-manager__checklist-item .components-checkbox-control__label {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ flex-grow: 1;
+ padding: 8px 0;
+}
+.edit-post-block-manager__checklist-item .block-editor-block-icon {
+ margin-right: 10px;
+ fill: #1e1e1e;
+}
+
+.edit-post-block-manager__results {
+ border-top: 1px solid #ddd;
+}
+
+.edit-post-block-manager__disabled-blocks-count + .edit-post-block-manager__results {
+ border-top-width: 0;
+}
+
+.edit-post-meta-boxes-area {
+ position: relative;
+ /**
+ * The wordpress default for most meta-box elements is content-box. Some
+ * elements such as textarea and input are set to border-box in forms.css.
+ * These elements therefore specifically set back to border-box here, while
+ * other elements (such as .button) are unaffected by Gutenberg's style
+ * because of their higher specificity.
+ */
+ /* Match width and positioning of the meta boxes. Override default styles. */
+ /* Override Default meta box stylings */
+}
+.edit-post-meta-boxes-area__container,
+.edit-post-meta-boxes-area .inside {
+ box-sizing: content-box;
+}
+.edit-post-meta-boxes-area textarea,
+.edit-post-meta-boxes-area input {
+ box-sizing: border-box;
+}
+.edit-post-meta-boxes-area .postbox-header {
+ border-top: 1px solid #ddd;
+ border-bottom: 0;
+}
+.edit-post-meta-boxes-area #poststuff {
+ margin: 0 auto;
+ padding-top: 0;
+ min-width: auto;
+}
+.edit-post-meta-boxes-area #poststuff h3.hndle,
+.edit-post-meta-boxes-area #poststuff .stuffbox > h3,
+.edit-post-meta-boxes-area #poststuff h2.hndle {
+ /* WordPress selectors yolo */
+ box-sizing: border-box;
+ color: inherit;
+ font-weight: 600;
+ outline: none;
+ padding: 0 24px;
+ position: relative;
+ width: 100%;
+}
+.edit-post-meta-boxes-area .postbox {
+ border: 0;
+ color: inherit;
+ margin-bottom: 0;
+}
+.edit-post-meta-boxes-area .postbox > .inside {
+ color: inherit;
+ padding: 0 24px 24px;
+ margin: 0;
+}
+.edit-post-meta-boxes-area .postbox .handlediv {
+ height: 44px;
+ width: 44px;
+}
+.edit-post-meta-boxes-area.is-loading::before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ content: "";
+ background: transparent;
+ z-index: 1;
+}
+.edit-post-meta-boxes-area .components-spinner {
+ position: absolute;
+ top: 10px;
+ right: 20px;
+ z-index: 5;
+}
+.edit-post-meta-boxes-area .is-hidden {
+ display: none;
+}
+.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox] {
+ border: 1px solid #757575;
+}
+.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:checked {
+ background: #fff;
+ border-color: #757575;
+}
+.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]::before {
+ margin: -3px -4px;
+}
+
+.edit-post-meta-boxes-area__clear {
+ clear: both;
+}
+
+.edit-post-editor__inserter-panel,
+.edit-post-editor__list-view-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+
+.edit-post-editor__list-view-panel {
+ min-width: 350px;
+}
+
+.edit-post-editor__inserter-panel-header {
+ padding-top: 8px;
+ padding-right: 8px;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.edit-post-editor__inserter-panel-content,
+.edit-post-editor__list-view-panel-content {
+ height: calc(100% - 36px - 8px);
+}
+
+@media (min-width: 782px) {
+ .edit-post-editor__inserter-panel-content {
+ height: 100%;
+ }
+}
+
+.edit-post-editor__list-view-panel-header {
+ align-items: center;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ justify-content: space-between;
+ height: 48px;
+ padding-left: 16px;
+ padding-right: 4px;
+}
+
+.edit-post-editor__list-view-panel-content {
+ overflow-y: auto;
+ padding: 8px 6px;
+}
+
+.components-panel__header.edit-post-sidebar__panel-tabs {
+ justify-content: flex-start;
+ padding-left: 0;
+ padding-right: 16px;
+ border-top: 0;
+ margin-top: 0;
+}
+.components-panel__header.edit-post-sidebar__panel-tabs ul {
+ display: flex;
+}
+.components-panel__header.edit-post-sidebar__panel-tabs li {
+ margin: 0;
+}
+.components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {
+ display: none;
+ margin: 0 0 0 auto;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+}
+@media (min-width: 782px) {
+ .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {
+ display: flex;
+ }
+}
+
+.components-panel__body.is-opened.edit-post-last-revision__panel {
+ padding: 0;
+ height: 48px;
+}
+
+.editor-post-last-revision__title.components-button {
+ padding: 16px;
+}
+
+.editor-post-author__select {
+ margin: -5px 0;
+ width: 100%;
+}
+@supports (position: sticky) {
+ .editor-post-author__select {
+ width: auto;
+ }
+}
+
+.edit-post-post-link__link-post-name {
+ font-weight: 600;
+}
+
+.edit-post-post-link__preview-label {
+ font-weight: 400;
+ margin: 0;
+}
+
+.edit-post-post-link__link {
+ text-align: left;
+ word-wrap: break-word;
+ display: block;
+}
+
+/* rtl:begin:ignore */
+.edit-post-post-link__preview-link-container {
+ direction: ltr;
+}
+
+/* rtl:end:ignore */
+.edit-post-post-schedule {
+ width: 100%;
+ position: relative;
+ justify-content: left;
+}
+.edit-post-post-schedule span {
+ display: block;
+ width: 45%;
+}
+
+.components-button.edit-post-post-schedule__toggle {
+ text-align: right;
+}
+
+.edit-post-post-schedule__dialog .components-popover__content > div {
+ padding: 0;
+}
+
+.editor-post-slug__input {
+ margin: -5px 0;
+ padding: 2px;
+}
+
+.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft {
+ margin-top: 15px;
+ width: 100%;
+ text-align: center;
+}
+
+.edit-post-post-visibility {
+ width: 100%;
+ justify-content: left;
+}
+.edit-post-post-visibility span {
+ display: block;
+ width: 45%;
+}
+
+@media (min-width: 782px) {
+ .edit-post-post-visibility__dialog .components-popover__content {
+ width: 257px;
+ }
+}
+
+.edit-post-post-visibility__dialog-legend {
+ font-weight: 600;
+}
+
+.edit-post-post-visibility__choice {
+ margin: 10px 0;
+}
+
+.edit-post-post-visibility__dialog-radio,
+.edit-post-post-visibility__dialog-label {
+ vertical-align: top;
+}
+
+.edit-post-post-visibility__dialog-password-input {
+ width: calc(100% - 20px);
+ margin-left: 20px;
+}
+
+.edit-post-post-visibility__dialog-info {
+ color: #757575;
+ padding-left: 20px;
+ font-style: italic;
+ margin: 4px 0 0;
+ line-height: 1.4;
+}
+
+.components-button.edit-post-sidebar__panel-tab {
+ border-radius: 0;
+ height: 48px;
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ padding: 3px 15px;
+ margin-left: 0;
+ font-weight: 500;
+}
+.components-button.edit-post-sidebar__panel-tab::after {
+ content: attr(data-label);
+ display: block;
+ font-weight: 600;
+ height: 0;
+ overflow: hidden;
+ speak: none;
+ visibility: hidden;
+}
+.components-button.edit-post-sidebar__panel-tab.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-post-sidebar__panel-tab.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ right: 0;
+ left: 0;
+ border-bottom: 4px solid transparent;
+}
+.components-button.edit-post-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-post-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+@media (min-width: 782px) {
+ .edit-post-template__modal .components-base-control {
+ width: 320px;
+ }
+}
+.edit-post-template__modal .components-modal__header {
+ border-bottom: none;
+}
+.edit-post-template__modal .components-modal__content::before {
+ margin-bottom: 4px;
+}
+
+.edit-post-template__modal-actions {
+ margin-top: 12px;
+}
+
+.edit-post-template-modal__tip {
+ padding: 16px 24px;
+ background: #f0f0f0;
+ border-radius: 2px;
+}
+@media (min-width: 782px) {
+ .edit-post-template-modal__tip {
+ width: 240px;
+ }
+}
+
+.edit-post-template__notice {
+ margin: 0 0 8px 0;
+}
+.edit-post-template__notice .components-notice__content {
+ margin: 0;
+}
+
+.edit-post-template__actions button:not(:last-child) {
+ margin-right: 8px;
+}
+
+h2.edit-post-template-summary__title {
+ line-height: 24px;
+ margin: 0 0 4px;
+ font-weight: 500;
+}
+
+.edit-post-text-editor {
+ position: relative;
+ width: 100%;
+ background-color: #fff;
+ flex-grow: 1;
+}
+.edit-post-text-editor .editor-post-title {
+ max-width: none;
+ line-height: 1.4;
+ font-family: Menlo, Consolas, monaco, monospace;
+ font-size: 2.5em;
+ font-weight: normal;
+ border: 1px solid #949494;
+ padding: 16px;
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor .editor-post-title {
+ padding: 24px;
+ }
+}
+.edit-post-text-editor .editor-post-title:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+
+.edit-post-text-editor__body {
+ width: 100%;
+ padding: 0 12px 12px 12px;
+ max-width: 1080px;
+ margin-left: auto;
+ margin-right: auto;
+}
+@media (min-width: 960px) {
+ .edit-post-text-editor__body {
+ padding: 16px 24px 96px 24px;
+ padding: 0 24px 24px 24px;
+ }
+}
+
+.edit-post-text-editor__toolbar {
+ position: sticky;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ right: 0;
+ display: flex;
+ background: rgba(255, 255, 255, 0.8);
+ padding: 4px 12px;
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor__toolbar {
+ padding: 12px;
+ }
+}
+@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: #1e1e1e;
+}
+.edit-post-text-editor__toolbar .components-button svg {
+ order: 1;
+}
+
+.edit-post-visual-editor {
+ position: relative;
+ display: flex;
+ flex-flow: column;
+ background-color: #2f2f2f;
+ flex: 1 0 auto;
+}
+.edit-post-visual-editor .components-button {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ padding: 6px 12px;
+}
+.edit-post-visual-editor .components-button.is-tertiary, .edit-post-visual-editor .components-button.has-icon {
+ padding: 6px;
+}
+
+.edit-post-visual-editor__post-title-wrapper {
+ margin-top: 4rem;
+ margin-bottom: var(--wp--style--block-gap);
+}
+.edit-post-visual-editor__post-title-wrapper .editor-post-title {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.edit-post-visual-editor__exit-template-mode {
+ position: absolute;
+ top: 8px;
+ left: 8px;
+ color: #fff;
+}
+.edit-post-visual-editor__exit-template-mode:active:not([aria-disabled=true]), .edit-post-visual-editor__exit-template-mode:focus:not([aria-disabled=true]), .edit-post-visual-editor__exit-template-mode:hover {
+ color: #f0f0f0;
+}
+
+.edit-post-visual-editor__content-area {
+ width: 100%;
+ height: 100%;
+ position: relative;
+ box-sizing: border-box;
+ display: flex;
+ flex-grow: 1;
+}
+
+.edit-post-welcome-guide,
+.edit-template-welcome-guide {
+ width: 312px;
+}
+.edit-post-welcome-guide__image,
+.edit-template-welcome-guide__image {
+ background: #00a0d2;
+ margin: 0 0 16px;
+}
+.edit-post-welcome-guide__image > img,
+.edit-template-welcome-guide__image > img {
+ display: block;
+ max-width: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.edit-post-welcome-guide__heading,
+.edit-template-welcome-guide__heading {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 24px;
+ line-height: 1.4;
+ margin: 16px 0 16px 0;
+ padding: 0 32px;
+}
+.edit-post-welcome-guide__text,
+.edit-template-welcome-guide__text {
+ font-size: 13px;
+ line-height: 1.4;
+ margin: 0 0 24px 0;
+ padding: 0 32px;
+}
+.edit-post-welcome-guide__inserter-icon,
+.edit-template-welcome-guide__inserter-icon {
+ margin: 0 4px;
+ vertical-align: text-top;
+}
+
+.edit-template-welcome-guide .components-button svg {
+ fill: #fff;
+}
+
+@media (min-width: 600px) {
+ .edit-post-start-page-options__modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .edit-post-start-page-options__modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .edit-post-start-page-options__modal {
+ height: 70%;
+ }
+}
+.edit-post-start-page-options__modal .components-modal__header {
+ border-bottom: none;
+}
+.edit-post-start-page-options__modal .components-modal__content::before {
+ content: none;
+}
+
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list {
+ column-count: 2;
+ column-gap: 24px;
+}
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
+ break-inside: avoid-column;
+ margin-bottom: 24px;
+}
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container {
+ min-height: 100px;
+}
+.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__content {
+ width: 100%;
+}
+
+/**
+ * Animations
+ */
+@keyframes edit-post__fade-in-animation {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+html.wp-toolbar {
+ background: #fff;
+}
+
+body.block-editor-page {
+ background: #fff;
+ /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
+ Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
+}
+body.block-editor-page #wpcontent {
+ padding-left: 0;
+}
+body.block-editor-page #wpbody-content {
+ padding-bottom: 0;
+}
+body.block-editor-page #wpbody-content > div:not(.block-editor):not(#screen-meta) {
+ display: none;
+}
+body.block-editor-page #wpfooter {
+ display: none;
+}
+body.block-editor-page .a11y-speak-region {
+ left: -1px;
+ top: -1px;
+}
+body.block-editor-page ul#adminmenu a.wp-has-current-submenu::after,
+body.block-editor-page ul#adminmenu > li.current > a.current::after {
+ border-right-color: #fff;
+}
+body.block-editor-page .media-frame select.attachment-filters:last-of-type {
+ width: auto;
+ max-width: 100%;
+}
+
+.block-editor-page #wpwrap {
+ overflow-y: auto;
+}
+@media (min-width: 782px) {
+ .block-editor-page #wpwrap {
+ overflow-y: initial;
+ }
+}
+
+.edit-post-header,
+.edit-post-text-editor,
+.edit-post-sidebar,
+.editor-post-publish-panel,
+.components-popover,
+.components-modal__frame,
+.edit-post-editor__inserter-panel {
+ box-sizing: border-box;
+}
+.edit-post-header *,
+.edit-post-header *::before,
+.edit-post-header *::after,
+.edit-post-text-editor *,
+.edit-post-text-editor *::before,
+.edit-post-text-editor *::after,
+.edit-post-sidebar *,
+.edit-post-sidebar *::before,
+.edit-post-sidebar *::after,
+.editor-post-publish-panel *,
+.editor-post-publish-panel *::before,
+.editor-post-publish-panel *::after,
+.components-popover *,
+.components-popover *::before,
+.components-popover *::after,
+.components-modal__frame *,
+.components-modal__frame *::before,
+.components-modal__frame *::after,
+.edit-post-editor__inserter-panel *,
+.edit-post-editor__inserter-panel *::before,
+.edit-post-editor__inserter-panel *::after {
+ box-sizing: inherit;
+}
+
+@media (min-width: 600px) {
+ .block-editor__container {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ min-height: calc(100vh - 46px);
+ }
+}
+@media (min-width: 782px) {
+ .block-editor__container {
+ min-height: calc(100vh - 32px);
+ }
+ body.is-fullscreen-mode .block-editor__container {
+ min-height: 100vh;
+ }
+}
+.block-editor__container img {
+ max-width: 100%;
+ height: auto;
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-post/style.min.css b/static/wp-includes/css/dist/edit-post/style.min.css
new file mode 100755
index 0000000..e225124
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-post/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.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{background:#fff;padding-right:4px}.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}}@media (min-width:782px){.components-panel__header+.interface-complementary-area-header{margin-top:0}}.interface-complementary-area{background:#fff;color:#1e1e1e}@media (min-width:600px){.interface-complementary-area{-webkit-overflow-scrolling:touch}}@media (min-width:782px){.interface-complementary-area{width:280px}}.interface-complementary-area .components-panel{border:none;position:relative;z-index:0}.interface-complementary-area .components-panel__header{position:sticky;top:0;z-index:1}.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:48px}@media (min-width:782px){.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:0}}.interface-complementary-area p{margin-top:0}.interface-complementary-area h2{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area h3{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area hr{border-top:none;border-bottom:1px solid #f0f0f0;margin:1.5em 0}.interface-complementary-area div.components-toolbar,.interface-complementary-area div.components-toolbar-group{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}}html.interface-interface-skeleton__html-container{position:fixed;width:100%}@media (min-width:782px){html.interface-interface-skeleton__html-container{position:static;width:auto}}.interface-interface-skeleton{display:flex;flex-direction:row;height:auto;max-height:100%;position:fixed;top:46px;right:0;bottom:0}@media (min-width:783px){.interface-interface-skeleton{top:32px}.is-fullscreen-mode .interface-interface-skeleton{top:0}}.interface-interface-skeleton__editor{display:flex;flex-direction:column;flex:0 1 100%;overflow:hidden}.interface-interface-skeleton{left:0}@media (min-width:783px){.interface-interface-skeleton{left:160px}}@media (min-width:783px){.auto-fold .interface-interface-skeleton{left:36px}}@media (min-width:961px){.auto-fold .interface-interface-skeleton{left:160px}}.folded .interface-interface-skeleton{left:0}@media (min-width:783px){.folded .interface-interface-skeleton{left:36px}}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}@media (min-width:782px){.has-footer .interface-interface-skeleton__body{padding-bottom:25px}}.interface-interface-skeleton__content{flex-grow:1;display:flex;flex-direction:column;overflow:auto;z-index:20}.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{display:block;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__secondary-sidebar,.interface-interface-skeleton__sidebar{position:relative!important;z-index:90;width:auto}}.interface-interface-skeleton__sidebar{overflow:auto}@media (min-width:782px){.interface-interface-skeleton__sidebar{border-left:1px solid #e0e0e0}}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar{border-right:1px solid #e0e0e0}}.interface-interface-skeleton__header{flex-shrink:0;height:auto;border-bottom:1px solid #e0e0e0;z-index:30;color:#1e1e1e}.interface-interface-skeleton__footer{height:auto;flex-shrink:0;border-top:1px solid #e0e0e0;color:#1e1e1e;position:absolute;bottom:0;left:0;width:100%;background-color:#fff;z-index:90;display:none}@media (min-width:782px){.interface-interface-skeleton__footer{display:flex}}.interface-interface-skeleton__footer .block-editor-block-breadcrumb{z-index:30;display:flex;background:#fff;height:24px;align-items:center;font-size:13px;padding:0 18px}.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}.interface-more-menu-dropdown{margin-left:-4px}.interface-more-menu-dropdown .components-button{width:auto;padding:0 2px}@media (min-width:600px){.interface-more-menu-dropdown{margin-left:0}.interface-more-menu-dropdown .components-button{padding:0 4px}}.interface-more-menu-dropdown__content .components-popover__content{min-width:280px}@media (min-width:480px){.interface-more-menu-dropdown__content .components-popover__content{width:auto;max-width:480px}}.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu{padding:0}.components-popover.interface-more-menu-dropdown__content{z-index:99998}.interface-pinned-items{display:flex}.interface-pinned-items .components-button:not(:first-child){display:none}@media (min-width:600px){.interface-pinned-items .components-button:not(:first-child){display:flex}}.interface-pinned-items .components-button{margin-left:4px}.interface-pinned-items .components-button svg{max-width:24px;max-height:24px}@media (min-width:600px){.interface-preferences-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.interface-preferences-modal{width:750px}}@media (min-width:960px){.interface-preferences-modal{height:70%}}@media (max-width:781px){.interface-preferences-modal .components-modal__content{padding:0}.interface-preferences-modal .components-modal__content:before{content:none}}.interface-preferences__tabs .components-tab-panel__tabs{position:absolute;top:84px;left:16px;width:160px}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item{border-radius:2px;font-weight:400}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active{background:#f0f0f0;box-shadow:none;font-weight:500}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.interface-preferences__tabs .components-tab-panel__tab-content{padding-left:24px;margin-left:160px}@media (max-width:781px){.interface-preferences__provider{height:100%}}.interface-preferences-modal__section{margin:0 0 2.5rem}.interface-preferences-modal__section:last-child{margin:0}.interface-preferences-modal__section-title{font-size:.9rem;font-weight:600;margin-top:0}.interface-preferences-modal__section-description{margin:-8px 0 8px;font-size:12px;font-style:normal;color:#757575}.interface-preferences-modal__option .components-base-control .components-base-control__field{align-items:center;display:flex;margin-bottom:0}.interface-preferences-modal__option .components-base-control .components-base-control__field>label{flex-grow:1;padding:.6rem 0 .6rem 10px}.interface-preferences-modal__option .components-base-control__help{margin:-8px 0 8px 58px;font-size:12px;font-style:normal;color:#757575}.edit-post-header{height:60px;background:#fff;display:flex;flex-wrap:wrap;align-items:center;max-width:100vw}@media (min-width:280px){.edit-post-header{flex-wrap:nowrap}}.edit-post-header>.edit-post-header__settings{order:1}@supports (position:sticky){.edit-post-header>.edit-post-header__settings{order:0}}.edit-post-header__toolbar{display:flex;flex-grow:1}.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:4px}@media (min-width:600px){.edit-post-header__settings{padding-right:16px}}.edit-post-header__settings .components-button.components-button,.edit-post-header__settings .editor-post-saved-state{margin-right:4px}@media (min-width:600px){.edit-post-header__settings .components-button.components-button,.edit-post-header__settings .editor-post-saved-state{margin-right:12px}}.edit-post-header__settings .components-button.is-tertiary,.edit-post-header__settings .editor-post-saved-state{padding:0 6px}.edit-post-header__settings .interface-more-menu-dropdown .components-button,.edit-post-header__settings .interface-pinned-items .components-button{margin-right:0}.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-left:auto}.edit-post-post-preview-dropdown .components-popover__content>div{padding-bottom:0}.edit-post-header__dropdown .components-button.has-icon,.show-icon-labels .edit-post-header .components-button.has-icon,.show-icon-labels.interface-pinned-items .components-button.has-icon{width:auto}.edit-post-header__dropdown .components-button.has-icon svg,.show-icon-labels .edit-post-header .components-button.has-icon svg,.show-icon-labels.interface-pinned-items .components-button.has-icon svg{display:none}.edit-post-header__dropdown .components-button.has-icon:after,.show-icon-labels .edit-post-header .components-button.has-icon:after,.show-icon-labels.interface-pinned-items .components-button.has-icon:after{content:attr(aria-label)}.edit-post-header__dropdown .components-button.has-icon[aria-disabled=true],.show-icon-labels .edit-post-header .components-button.has-icon[aria-disabled=true],.show-icon-labels.interface-pinned-items .components-button.has-icon[aria-disabled=true]{background-color:transparent}.edit-post-header__dropdown .is-tertiary:active,.show-icon-labels .edit-post-header .is-tertiary:active,.show-icon-labels.interface-pinned-items .is-tertiary:active{box-shadow:0 0 0 1.5px var(--wp-admin-theme-color);background-color:transparent}.edit-post-header__dropdown .components-button.has-icon.button-toggle svg,.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon svg,.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle svg,.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon svg,.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle svg,.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon svg{display:block}.edit-post-header__dropdown .components-button.has-icon.button-toggle:after,.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon:after,.show-icon-labels .edit-post-header .components-button.has-icon.button-toggle:after,.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon:after,.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle:after,.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon:after{content:none}.edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon,.show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon,.show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon{width:60px}.edit-post-header__dropdown .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,.show-icon-labels .edit-post-header .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,.show-icon-labels.interface-pinned-items .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon{display:block}.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.edit-post-header__dropdown .interface-pinned-items .components-button,.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels .edit-post-header .interface-pinned-items .components-button,.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button{padding-left:8px;padding-right:8px}@media (min-width:600px){.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.edit-post-header__dropdown .interface-pinned-items .components-button,.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels .edit-post-header .interface-pinned-items .components-button,.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button{padding-left:12px;padding-right:12px}}.edit-post-header__dropdown .components-dropdown-menu__toggle,.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,.show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle{margin-left:8px;padding-left:8px;padding-right:8px}@media (min-width:600px){.edit-post-header__dropdown .components-dropdown-menu__toggle,.show-icon-labels .edit-post-header .components-dropdown-menu__toggle,.show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle{margin-left:12px;padding-left:12px;padding-right:12px}}.edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle:after,.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle:after,.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle:after,.show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft:after{content:none}@media (min-width:600px){.edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft:after,.show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft:after{content:attr(aria-label)}}.edit-post-header__dropdown .components-button.block-editor-list-view,.edit-post-header__dropdown .components-button.editor-history__redo,.edit-post-header__dropdown .components-button.editor-history__undo,.edit-post-header__dropdown .components-menu-item__button.components-menu-item__button,.edit-post-header__dropdown .table-of-contents .components-button{margin:0;padding:6px 6px 6px 40px;width:14.625rem;text-align:left;justify-content:flex-start}.show-icon-labels.interface-pinned-items{padding:6px 12px 12px;margin:0 -12px;border-bottom:1px solid #ccc;display:block}.show-icon-labels.interface-pinned-items>.components-button.has-icon{margin:0;padding:6px 6px 6px 8px;width:14.625rem;justify-content:flex-start}.show-icon-labels.interface-pinned-items>.components-button.has-icon[aria-expanded=true] svg{display:block;max-width:24px}.show-icon-labels.interface-pinned-items>.components-button.has-icon[aria-expanded=false]{padding-left:40px}.show-icon-labels.interface-pinned-items>.components-button.has-icon svg{margin-right:8px}.edit-post-fullscreen-mode-close.components-button{display:none}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button{display:flex;align-items:center;align-self:stretch;border:none;background:#1e1e1e;color:#fff;border-radius:0;height:61px;width:60px;position:relative;margin-bottom:-1px}.edit-post-fullscreen-mode-close.components-button:active{color:#fff}.edit-post-fullscreen-mode-close.components-button:focus{box-shadow:none}.edit-post-fullscreen-mode-close.components-button:before{transition:box-shadow .1s ease;content:"";display:block;position:absolute;top:9px;right:9px;bottom:9px;left:9px;border-radius:4px;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e}}@media (min-width:782px) and (prefers-reduced-motion:reduce){.edit-post-fullscreen-mode-close.components-button:before{transition-duration:0s;transition-delay:0s}}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button:hover:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #757575}}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button.has-icon:hover:before{box-shadow:none}}@media (min-width:782px){.edit-post-fullscreen-mode-close.components-button:focus:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) hsla(0,0%,100%,.1),inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}}.edit-post-fullscreen-mode-close.components-button .edit-post-fullscreen-mode-close_site-icon{width:36px;height:36px;border-radius:2px;-o-object-fit:cover;object-fit:cover;margin-top:-1px}.edit-post-header-toolbar{display:inline-flex;flex-grow:1;align-items:center;border:none}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button{display:none}@media (min-width:600px){.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button{display:inline-flex}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle{display:inline-flex}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle svg{transition:transform .2s cubic-bezier(.165,.84,.44,1)}@media (prefers-reduced-motion:reduce){.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle svg{transition-duration:0s;transition-delay:0s}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.is-pressed svg{transform:rotate(45deg)}.edit-post-header-toolbar .block-editor-list-view{display:none}@media (min-width:600px){.edit-post-header-toolbar .block-editor-list-view{display:flex}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon,.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon{height:36px;min-width:36px;padding:6px}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon.is-pressed,.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon.is-pressed{background:#1e1e1e}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon:focus:not(:disabled),.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-button.has-icon:before,.edit-post-header-toolbar .edit-post-header-toolbar__left>.components-dropdown>.components-button.has-icon:before{display:none}@media (min-width:600px){.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-button,.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-dropdown>[aria-expanded=false]{transition:opacity .1s linear}}@media (min-width:600px) and (prefers-reduced-motion:reduce){.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-button,.edit-post-header.has-reduced-ui .edit-post-header-toolbar__left>*+.components-dropdown>[aria-expanded=false]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left>*+.components-button,.edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left>*+.components-dropdown>[aria-expanded=false]{opacity:0}}.edit-post-header-toolbar__left{display:inline-flex;align-items:center;padding-left:8px}@media (min-width:600px){.edit-post-header-toolbar__left{padding-left:24px}}@media (min-width:1280px){.edit-post-header-toolbar__left{padding-right:8px}}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.has-icon{margin-right:8px;min-width:32px;width:32px;height:32px;padding:0}.show-icon-labels .edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.has-icon{height:36px}.edit-post-header-toolbar .edit-post-header-toolbar__left>.edit-post-header-toolbar__inserter-toggle.has-text.has-icon{width:auto;padding:0 8px}.show-icon-labels .edit-post-header-toolbar__left>*+*{margin-left:8px}.edit-post-template-top-area{display:flex;flex-direction:column;align-content:space-between;width:100%;align-items:center}.edit-post-template-top-area .edit-post-template-post-title,.edit-post-template-top-area .edit-post-template-title{padding:0;text-decoration:none;height:auto}.edit-post-template-top-area .edit-post-template-post-title:before,.edit-post-template-top-area .edit-post-template-title:before{height:100%}.edit-post-template-top-area .edit-post-template-post-title.has-icon svg,.edit-post-template-top-area .edit-post-template-title.has-icon svg{order:1;margin-right:0}.edit-post-template-top-area .edit-post-template-title{color:#1e1e1e}.edit-post-template-top-area .edit-post-template-post-title{margin-top:4px;max-width:160px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}.edit-post-template-top-area .edit-post-template-post-title:before{left:0;right:0}@media (min-width:1080px){.edit-post-template-top-area .edit-post-template-post-title{max-width:400px}}.edit-post-template-top-area__popover .components-popover__content{min-width:280px;padding:8px}.edit-post-template-top-area__popover .edit-post-template-details__description{color:#757575}.edit-post-template-top-area__second-menu-group{margin-left:-16px;margin-right:-16px;padding:16px 16px 0;border-top:1px solid #ddd}.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button{display:flex;justify-content:center}.edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button .components-menu-item__item{margin-right:0;min-width:0}.edit-post-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.edit-post-keyboard-shortcut-help-modal__main-shortcuts .edit-post-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.edit-post-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.edit-post-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.edit-post-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.edit-post-keyboard-shortcut-help-modal__shortcut:empty{display:none}.edit-post-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 0 0 1rem;text-align:right}.edit-post-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination+.edit-post-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.edit-post-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.edit-post-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 0 0 .2rem}.edit-post-layout__metaboxes{flex-shrink:0;clear:both}.edit-post-layout .components-editor-notices__snackbar{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;left:0}@media (min-width:783px){.edit-post-layout .components-editor-notices__snackbar{left:160px}}@media (min-width:783px){.auto-fold .edit-post-layout .components-editor-notices__snackbar{left:36px}}@media (min-width:961px){.auto-fold .edit-post-layout .components-editor-notices__snackbar{left:160px}}.folded .edit-post-layout .components-editor-notices__snackbar{left:0}@media (min-width:783px){.folded .edit-post-layout .components-editor-notices__snackbar{left:36px}}body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar{left:0!important}.edit-post-layout .editor-post-publish-panel{position:fixed;z-index:100001;top:46px;bottom:0;right:0;left:0;overflow:auto}@media (min-width:782px){.edit-post-layout .editor-post-publish-panel{z-index:99998;top:32px;left:auto;width:281px;border-left:1px solid #ddd;transform:translateX(100%);animation:edit-post-post-publish-panel__slide-in-animation .1s forwards}}@media (min-width:782px) and (prefers-reduced-motion:reduce){.edit-post-layout .editor-post-publish-panel{animation-duration:1ms;animation-delay:0s}}@media (min-width:782px){body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}}@media (min-width:782px){[role=region]:focus .edit-post-layout .editor-post-publish-panel{transform:translateX(0)}}@keyframes edit-post-post-publish-panel__slide-in-animation{to{transform:translateX(0)}}.edit-post-layout .editor-post-publish-panel__header-publish-button{justify-content:center}.edit-post-layout__toggle-entities-saved-states-panel,.edit-post-layout__toggle-publish-panel,.edit-post-layout__toggle-sidebar-panel{z-index:100000;position:fixed!important;top:-9999em;bottom:auto;left:auto;right:0;width:280px;background-color:#fff;border:1px dotted #ddd;height:auto!important;padding:24px;display:flex;justify-content:center}.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-entities-saved-states-panel,.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-publish-panel,.interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-sidebar-panel,.interface-interface-skeleton__actions:focus .edit-post-layout__toggle-entities-saved-states-panel,.interface-interface-skeleton__actions:focus .edit-post-layout__toggle-publish-panel,.interface-interface-skeleton__actions:focus .edit-post-layout__toggle-sidebar-panel{top:auto;bottom:0}.edit-post-block-manager__no-results{font-style:italic;padding:24px 0;text-align:center}.edit-post-block-manager__search{margin:16px 0}.edit-post-block-manager__disabled-blocks-count{border:1px solid #ddd;border-width:1px 0;box-shadow:-32px 0 0 0 #fff,32px 0 0 0 #fff;padding:8px;background-color:#fff;text-align:center;font-style:italic;position:sticky;top:-1px;z-index:2}.edit-post-block-manager__disabled-blocks-count~.edit-post-block-manager__results .edit-post-block-manager__category-title{top:35px}.edit-post-block-manager__category{margin:0 0 24px}.edit-post-block-manager__category-title{position:sticky;top:0;padding:16px 0;background-color:#fff;z-index:1}.edit-post-block-manager__category-title .components-checkbox-control__label{font-weight:600}.edit-post-block-manager__show-all{margin-right:8px}.edit-post-block-manager__checklist{margin-top:0}.edit-post-block-manager__category-title,.edit-post-block-manager__checklist-item{border-bottom:1px solid #ddd}.edit-post-block-manager__category-title .components-base-control__field,.edit-post-block-manager__checklist-item .components-base-control__field{align-items:center;display:flex;margin:0}.edit-post-block-manager__checklist-item{margin-bottom:0;padding-left:16px}.components-modal__content .edit-post-block-manager__checklist-item.components-checkbox-control__input-container{margin:0 8px}.edit-post-block-manager__checklist-item .components-checkbox-control__label{display:flex;align-items:center;justify-content:space-between;flex-grow:1;padding:8px 0}.edit-post-block-manager__checklist-item .block-editor-block-icon{margin-right:10px;fill:#1e1e1e}.edit-post-block-manager__results{border-top:1px solid #ddd}.edit-post-block-manager__disabled-blocks-count+.edit-post-block-manager__results{border-top-width:0}.edit-post-meta-boxes-area{position:relative}.edit-post-meta-boxes-area .inside,.edit-post-meta-boxes-area__container{box-sizing:content-box}.edit-post-meta-boxes-area input,.edit-post-meta-boxes-area textarea{box-sizing:border-box}.edit-post-meta-boxes-area .postbox-header{border-top:1px solid #ddd;border-bottom:0}.edit-post-meta-boxes-area #poststuff{margin:0 auto;padding-top:0;min-width:auto}.edit-post-meta-boxes-area #poststuff .stuffbox>h3,.edit-post-meta-boxes-area #poststuff h2.hndle,.edit-post-meta-boxes-area #poststuff h3.hndle{box-sizing:border-box;color:inherit;font-weight:600;outline:none;padding:0 24px;position:relative;width:100%}.edit-post-meta-boxes-area .postbox{border:0;color:inherit;margin-bottom:0}.edit-post-meta-boxes-area .postbox>.inside{color:inherit;padding:0 24px 24px;margin:0}.edit-post-meta-boxes-area .postbox .handlediv{height:44px;width:44px}.edit-post-meta-boxes-area.is-loading:before{position:absolute;top:0;left:0;right:0;bottom:0;content:"";background:transparent;z-index:1}.edit-post-meta-boxes-area .components-spinner{position:absolute;top:10px;right:20px;z-index:5}.edit-post-meta-boxes-area .is-hidden{display:none}.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]{border:1px solid #757575}.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:checked{background:#fff;border-color:#757575}.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:before{margin:-3px -4px}.edit-post-meta-boxes-area__clear{clear:both}.edit-post-editor__inserter-panel,.edit-post-editor__list-view-panel{height:100%;display:flex;flex-direction:column}.edit-post-editor__list-view-panel{min-width:350px}.edit-post-editor__inserter-panel-header{padding-top:8px;padding-right:8px;display:flex;justify-content:flex-end}.edit-post-editor__inserter-panel-content,.edit-post-editor__list-view-panel-content{height:calc(100% - 44px)}@media (min-width:782px){.edit-post-editor__inserter-panel-content{height:100%}}.edit-post-editor__list-view-panel-header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;height:48px;padding-left:16px;padding-right:4px}.edit-post-editor__list-view-panel-content{overflow-y:auto;padding:8px 6px}.components-panel__header.edit-post-sidebar__panel-tabs{justify-content:flex-start;padding-left:0;padding-right:16px;border-top:0;margin-top:0}.components-panel__header.edit-post-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-post-sidebar__panel-tabs li{margin:0}.components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon{display:none;margin:0 0 0 auto;padding:0;min-width:24px;height:24px}@media (min-width:782px){.components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon{display:flex}}.components-panel__body.is-opened.edit-post-last-revision__panel{padding:0;height:48px}.editor-post-last-revision__title.components-button{padding:16px}.editor-post-author__select{margin:-5px 0;width:100%}@supports (position:sticky){.editor-post-author__select{width:auto}}.edit-post-post-link__link-post-name{font-weight:600}.edit-post-post-link__preview-label{font-weight:400;margin:0}.edit-post-post-link__link{text-align:left;word-wrap:break-word;display:block}.edit-post-post-link__preview-link-container{direction:ltr}.edit-post-post-schedule{width:100%;position:relative;justify-content:left}.edit-post-post-schedule span{display:block;width:45%}.components-button.edit-post-post-schedule__toggle{text-align:right}.edit-post-post-schedule__dialog .components-popover__content>div{padding:0}.editor-post-slug__input{margin:-5px 0;padding:2px}.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft{margin-top:15px;width:100%;text-align:center}.edit-post-post-visibility{width:100%;justify-content:left}.edit-post-post-visibility span{display:block;width:45%}@media (min-width:782px){.edit-post-post-visibility__dialog .components-popover__content{width:257px}}.edit-post-post-visibility__dialog-legend{font-weight:600}.edit-post-post-visibility__choice{margin:10px 0}.edit-post-post-visibility__dialog-label,.edit-post-post-visibility__dialog-radio{vertical-align:top}.edit-post-post-visibility__dialog-password-input{width:calc(100% - 20px);margin-left:20px}.edit-post-post-visibility__dialog-info{color:#757575;padding-left:20px;font-style:italic;margin:4px 0 0;line-height:1.4}.components-button.edit-post-sidebar__panel-tab{border-radius:0;height:48px;background:transparent;border:none;box-shadow:none;cursor:pointer;display:inline-block;padding:3px 15px;margin-left:0;font-weight:500}.components-button.edit-post-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.components-button.edit-post-sidebar__panel-tab.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-post-sidebar__panel-tab.is-active:before{content:"";position:absolute;top:0;bottom:1px;right:0;left:0;border-bottom:4px solid transparent}.components-button.edit-post-sidebar__panel-tab:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-post-sidebar__panel-tab.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}@media (min-width:782px){.edit-post-template__modal .components-base-control{width:320px}}.edit-post-template__modal .components-modal__header{border-bottom:none}.edit-post-template__modal .components-modal__content:before{margin-bottom:4px}.edit-post-template__modal-actions{margin-top:12px}.edit-post-template-modal__tip{padding:16px 24px;background:#f0f0f0;border-radius:2px}@media (min-width:782px){.edit-post-template-modal__tip{width:240px}}.edit-post-template__notice{margin:0 0 8px}.edit-post-template__notice .components-notice__content{margin:0}.edit-post-template__actions button:not(:last-child){margin-right:8px}h2.edit-post-template-summary__title{line-height:24px;margin:0 0 4px;font-weight:500}.edit-post-text-editor{position:relative;width:100%;background-color:#fff;flex-grow:1}.edit-post-text-editor .editor-post-title{max-width:none;line-height:1.4;font-family:Menlo,Consolas,monaco,monospace;font-size:2.5em;font-weight:400;border:1px solid #949494;padding:16px}@media (min-width:600px){.edit-post-text-editor .editor-post-title{padding:24px}}.edit-post-text-editor .editor-post-title:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.edit-post-text-editor__body{width:100%;padding:0 12px 12px;max-width:1080px;margin-left:auto;margin-right:auto}@media (min-width:960px){.edit-post-text-editor__body{padding:0 24px 24px}}.edit-post-text-editor__toolbar{position:sticky;z-index:1;top:0;left:0;right:0;display:flex;background:hsla(0,0%,100%,.8);padding:4px 12px}@media (min-width:600px){.edit-post-text-editor__toolbar{padding:12px}}@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:#1e1e1e}.edit-post-text-editor__toolbar .components-button svg{order:1}.edit-post-visual-editor{position:relative;display:flex;flex-flow:column;background-color:#2f2f2f;flex:1 0 auto}.edit-post-visual-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 12px}.edit-post-visual-editor .components-button.has-icon,.edit-post-visual-editor .components-button.is-tertiary{padding:6px}.edit-post-visual-editor__post-title-wrapper{margin-top:4rem;margin-bottom:var(--wp--style--block-gap)}.edit-post-visual-editor__post-title-wrapper .editor-post-title{margin-left:auto;margin-right:auto}.edit-post-visual-editor__exit-template-mode{position:absolute;top:8px;left:8px;color:#fff}.edit-post-visual-editor__exit-template-mode:active:not([aria-disabled=true]),.edit-post-visual-editor__exit-template-mode:focus:not([aria-disabled=true]),.edit-post-visual-editor__exit-template-mode:hover{color:#f0f0f0}.edit-post-visual-editor__content-area{width:100%;height:100%;position:relative;box-sizing:border-box;display:flex;flex-grow:1}.edit-post-welcome-guide,.edit-template-welcome-guide{width:312px}.edit-post-welcome-guide__image,.edit-template-welcome-guide__image{background:#00a0d2;margin:0 0 16px}.edit-post-welcome-guide__image>img,.edit-template-welcome-guide__image>img{display:block;max-width:100%;-o-object-fit:cover;object-fit:cover}.edit-post-welcome-guide__heading,.edit-template-welcome-guide__heading{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:24px;line-height:1.4;margin:16px 0;padding:0 32px}.edit-post-welcome-guide__text,.edit-template-welcome-guide__text{font-size:13px;line-height:1.4;margin:0 0 24px;padding:0 32px}.edit-post-welcome-guide__inserter-icon,.edit-template-welcome-guide__inserter-icon{margin:0 4px;vertical-align:text-top}.edit-template-welcome-guide .components-button svg{fill:#fff}@media (min-width:600px){.edit-post-start-page-options__modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.edit-post-start-page-options__modal{width:750px}}@media (min-width:960px){.edit-post-start-page-options__modal{height:70%}}.edit-post-start-page-options__modal .components-modal__header{border-bottom:none}.edit-post-start-page-options__modal .components-modal__content:before{content:none}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list{column-count:2;column-gap:24px}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item{break-inside:avoid-column;margin-bottom:24px}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container{min-height:100px}.edit-post-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__content{width:100%}@keyframes edit-post__fade-in-animation{0%{opacity:0}to{opacity:1}}body.block-editor-page,html.wp-toolbar{background:#fff}body.block-editor-page #wpcontent{padding-left:0}body.block-editor-page #wpbody-content{padding-bottom:0}body.block-editor-page #wpbody-content>div:not(.block-editor):not(#screen-meta),body.block-editor-page #wpfooter{display:none}body.block-editor-page .a11y-speak-region{left:-1px;top:-1px}body.block-editor-page ul#adminmenu>li.current>a.current:after,body.block-editor-page ul#adminmenu a.wp-has-current-submenu:after{border-right-color:#fff}body.block-editor-page .media-frame select.attachment-filters:last-of-type{width:auto;max-width:100%}.block-editor-page #wpwrap{overflow-y:auto}@media (min-width:782px){.block-editor-page #wpwrap{overflow-y:initial}}.components-modal__frame,.components-popover,.edit-post-editor__inserter-panel,.edit-post-header,.edit-post-sidebar,.edit-post-text-editor,.editor-post-publish-panel{box-sizing:border-box}.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before,.components-popover *,.components-popover :after,.components-popover :before,.edit-post-editor__inserter-panel *,.edit-post-editor__inserter-panel :after,.edit-post-editor__inserter-panel :before,.edit-post-header *,.edit-post-header :after,.edit-post-header :before,.edit-post-sidebar *,.edit-post-sidebar :after,.edit-post-sidebar :before,.edit-post-text-editor *,.edit-post-text-editor :after,.edit-post-text-editor :before,.editor-post-publish-panel *,.editor-post-publish-panel :after,.editor-post-publish-panel :before{box-sizing:inherit}@media (min-width:600px){.block-editor__container{position:absolute;top:0;right:0;bottom:0;left:0;min-height:calc(100vh - 46px)}}@media (min-width:782px){.block-editor__container{min-height:calc(100vh - 32px)}body.is-fullscreen-mode .block-editor__container{min-height:100vh}}.block-editor__container img{max-width:100%;height:auto}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-site/style-rtl.css b/static/wp-includes/css/dist/edit-site/style-rtl.css
new file mode 100755
index 0000000..f25a987
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-site/style-rtl.css
@@ -0,0 +1,2256 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.components-panel__header.interface-complementary-area-header__small {
+ background: #fff;
+ padding-left: 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 {
+ background: #fff;
+ padding-left: 4px;
+}
+.interface-complementary-area-header .components-button.has-icon {
+ display: none;
+ margin-right: auto;
+}
+.interface-complementary-area-header .components-button.has-icon ~ .components-button {
+ margin-right: 0;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area-header .components-button.has-icon {
+ display: flex;
+ }
+}
+
+@media (min-width: 782px) {
+ .components-panel__header + .interface-complementary-area-header {
+ margin-top: 0;
+ }
+}
+
+.interface-complementary-area {
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 600px) {
+ .interface-complementary-area {
+ -webkit-overflow-scrolling: touch;
+ }
+}
+@media (min-width: 782px) {
+ .interface-complementary-area {
+ width: 280px;
+ }
+}
+.interface-complementary-area .components-panel {
+ border: none;
+ position: relative;
+ z-index: 0;
+}
+.interface-complementary-area .components-panel__header {
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 48px;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 0;
+ }
+}
+.interface-complementary-area p {
+ margin-top: 0;
+}
+.interface-complementary-area h2 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area h3 {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area hr {
+ border-top: none;
+ border-bottom: 1px solid #f0f0f0;
+ 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;
+ left: 10px;
+ bottom: 10px;
+ right: 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-right: 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: row;
+ height: auto;
+ max-height: 100%;
+ position: fixed;
+ top: 46px;
+ right: 0;
+ left: 0;
+ bottom: 0;
+}
+@media (min-width: 783px) {
+ .interface-interface-skeleton {
+ top: 32px;
+ }
+ .is-fullscreen-mode .interface-interface-skeleton {
+ top: 0;
+ }
+}
+
+.interface-interface-skeleton__editor {
+ display: flex;
+ flex-direction: column;
+ flex: 0 1 100%;
+ overflow: hidden;
+}
+
+.interface-interface-skeleton {
+ /* Set left position when auto-fold is not on the body element. */
+ right: 0;
+}
+@media (min-width: 783px) {
+ .interface-interface-skeleton {
+ right: 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 {
+ right: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .interface-interface-skeleton {
+ right: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .interface-interface-skeleton {
+ right: 0;
+}
+@media (min-width: 783px) {
+ .folded .interface-interface-skeleton {
+ right: 36px;
+ }
+}
+
+body.is-fullscreen-mode .interface-interface-skeleton {
+ right: 0 !important;
+}
+
+.interface-interface-skeleton__body {
+ flex-grow: 1;
+ display: flex;
+ overflow: auto;
+ overscroll-behavior-y: none;
+}
+@media (min-width: 782px) {
+ .has-footer .interface-interface-skeleton__body {
+ padding-bottom: 25px;
+ }
+}
+
+.interface-interface-skeleton__content {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow: auto;
+ z-index: 20;
+}
+
+.interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ display: block;
+ flex-shrink: 0;
+ position: absolute;
+ z-index: 100000;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ position: relative !important;
+ z-index: 90;
+ width: auto;
+ }
+}
+
+.interface-interface-skeleton__sidebar {
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__sidebar {
+ border-right: 1px solid #e0e0e0;
+ }
+}
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar {
+ border-left: 1px solid #e0e0e0;
+ }
+}
+
+.interface-interface-skeleton__header {
+ flex-shrink: 0;
+ height: auto;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 30;
+ color: #1e1e1e;
+}
+
+.interface-interface-skeleton__footer {
+ height: auto;
+ flex-shrink: 0;
+ border-top: 1px solid #e0e0e0;
+ color: #1e1e1e;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ width: 100%;
+ background-color: #fff;
+ z-index: 90;
+ display: none;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__footer {
+ display: flex;
+ }
+}
+.interface-interface-skeleton__footer .block-editor-block-breadcrumb {
+ z-index: 30;
+ display: flex;
+ background: #fff;
+ height: 24px;
+ align-items: center;
+ font-size: 13px;
+ padding: 0 18px;
+}
+
+.interface-interface-skeleton__actions {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ right: auto;
+ left: 0;
+ width: 280px;
+ color: #1e1e1e;
+}
+.interface-interface-skeleton__actions:focus {
+ top: auto;
+ bottom: 0;
+}
+
+.interface-more-menu-dropdown {
+ margin-right: -4px;
+}
+.interface-more-menu-dropdown .components-button {
+ width: auto;
+ padding: 0 2px;
+}
+@media (min-width: 600px) {
+ .interface-more-menu-dropdown {
+ margin-right: 0;
+ }
+ .interface-more-menu-dropdown .components-button {
+ padding: 0 4px;
+ }
+}
+
+.interface-more-menu-dropdown__content .components-popover__content {
+ min-width: 280px;
+}
+@media (min-width: 480px) {
+ .interface-more-menu-dropdown__content .components-popover__content {
+ width: auto;
+ max-width: 480px;
+ }
+}
+.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.components-popover.interface-more-menu-dropdown__content {
+ z-index: 99998;
+}
+
+.interface-pinned-items {
+ display: flex;
+}
+.interface-pinned-items .components-button:not(:first-child) {
+ display: none;
+}
+@media (min-width: 600px) {
+ .interface-pinned-items .components-button:not(:first-child) {
+ display: flex;
+ }
+}
+.interface-pinned-items .components-button {
+ margin-right: 4px;
+}
+.interface-pinned-items .components-button svg {
+ max-width: 24px;
+ max-height: 24px;
+}
+
+@media (min-width: 600px) {
+ .interface-preferences-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .interface-preferences-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .interface-preferences-modal {
+ height: 70%;
+ }
+}
+@media (max-width: 781px) {
+ .interface-preferences-modal .components-modal__content {
+ padding: 0;
+ }
+ .interface-preferences-modal .components-modal__content::before {
+ content: none;
+ }
+}
+
+.interface-preferences__tabs .components-tab-panel__tabs {
+ position: absolute;
+ top: 84px;
+ right: 16px;
+ width: 160px;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
+ border-radius: 2px;
+ font-weight: 400;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active {
+ background: #f0f0f0;
+ box-shadow: none;
+ font-weight: 500;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.interface-preferences__tabs .components-tab-panel__tab-content {
+ padding-right: 24px;
+ margin-right: 160px;
+}
+
+@media (max-width: 781px) {
+ .interface-preferences__provider {
+ height: 100%;
+ }
+}
+.interface-preferences-modal__section {
+ margin: 0 0 2.5rem 0;
+}
+.interface-preferences-modal__section:last-child {
+ margin: 0;
+}
+
+.interface-preferences-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+ margin-top: 0;
+}
+
+.interface-preferences-modal__section-description {
+ margin: -8px 0 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.interface-preferences-modal__option .components-base-control .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin-bottom: 0;
+}
+.interface-preferences-modal__option .components-base-control .components-base-control__field > label {
+ flex-grow: 1;
+ padding: 0.6rem 10px 0.6rem 0;
+}
+.interface-preferences-modal__option .components-base-control__help {
+ margin: -8px 58px 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.edit-site-block-editor__editor-styles-wrapper .components-button {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ padding: 6px 12px;
+}
+.edit-site-block-editor__editor-styles-wrapper .components-button.is-tertiary, .edit-site-block-editor__editor-styles-wrapper .components-button.has-icon {
+ padding: 6px;
+}
+
+.edit-site-visual-editor {
+ position: relative;
+ background-color: #2f2f2f;
+ align-items: center;
+}
+.edit-site-visual-editor.is-focus-mode {
+ padding: 48px;
+}
+.edit-site-visual-editor.is-focus-mode .edit-site-visual-editor__editor-canvas {
+ border-radius: 2px;
+}
+.edit-site-visual-editor.is-focus-mode .components-resizable-box__container {
+ overflow: visible;
+}
+.edit-site-visual-editor .components-resizable-box__container {
+ margin: 0 auto;
+ overflow: auto;
+}
+
+.edit-site-visual-editor__back-button {
+ position: absolute;
+ top: 8px;
+ right: 8px;
+ color: #fff;
+}
+.edit-site-visual-editor__back-button:active:not([aria-disabled=true]), .edit-site-visual-editor__back-button:focus:not([aria-disabled=true]), .edit-site-visual-editor__back-button:hover {
+ color: #f0f0f0;
+}
+
+.resizable-editor__drag-handle {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ padding: 0;
+ margin: auto 0;
+ width: 4px;
+ height: 100px;
+ -webkit-appearance: none;
+ appearance: none;
+ cursor: ew-resize;
+ outline: none;
+ background: #949494;
+ border-radius: 2px;
+ border: 0;
+}
+.resizable-editor__drag-handle.is-left {
+ right: -16px;
+}
+.resizable-editor__drag-handle.is-right {
+ left: -16px;
+}
+.resizable-editor__drag-handle:hover, .resizable-editor__drag-handle:active {
+ background: #ccc;
+}
+.resizable-editor__drag-handle:focus {
+ box-shadow: 0 0 0 1px #2f2f2f, 0 0 0 calc(var(--wp-admin-border-width-focus) + 1px) var(--wp-admin-theme-color);
+}
+
+.edit-site-code-editor {
+ position: relative;
+ width: 100%;
+ background-color: #fff;
+ flex-grow: 1;
+}
+.edit-site-code-editor__body {
+ width: 100%;
+ padding: 0 12px 12px 12px;
+ max-width: 1080px;
+ margin-right: auto;
+ margin-left: auto;
+}
+@media (min-width: 960px) {
+ .edit-site-code-editor__body {
+ padding: 16px 24px 96px 24px;
+ padding: 0 24px 24px 24px;
+ }
+}
+.edit-site-code-editor__toolbar {
+ position: sticky;
+ z-index: 1;
+ top: 0;
+ right: 0;
+ left: 0;
+ display: flex;
+ background: rgba(255, 255, 255, 0.8);
+ padding: 4px 12px;
+}
+@media (min-width: 600px) {
+ .edit-site-code-editor__toolbar {
+ padding: 12px;
+ }
+}
+@media (min-width: 960px) {
+ .edit-site-code-editor__toolbar {
+ padding: 12px 24px;
+ }
+}
+.edit-site-code-editor__toolbar h2 {
+ line-height: 36px;
+ margin: 0 0 0 auto;
+ font-size: 13px;
+ color: #1e1e1e;
+}
+.edit-site-code-editor__toolbar .components-button svg {
+ order: 1;
+}
+
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ border: 1px solid #949494;
+ border-radius: 0;
+ display: block;
+ margin: 0;
+ width: 100%;
+ box-shadow: none;
+ resize: none;
+ overflow: hidden;
+ font-family: Menlo, Consolas, monaco, monospace;
+ line-height: 2.4;
+ min-height: 200px;
+ transition: border 0.1s ease-out, box-shadow 0.1s linear;
+ padding: 16px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px !important;
+}
+@media (prefers-reduced-motion: reduce) {
+ textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ padding: 24px;
+ }
+}
+@media (min-width: 600px) {
+ textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ font-size: 15px !important;
+ }
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-moz-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+ opacity: 1;
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.edit-site-global-styles-preview {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ line-height: 1;
+ cursor: pointer;
+}
+
+.edit-site-global-styles-preview__iframe {
+ max-width: 100%;
+ display: block;
+}
+
+.edit-site-typography-panel__preview {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ min-height: 100px;
+ margin-bottom: 16px;
+ background: #f0f0f0;
+ border-radius: 2px;
+}
+
+.edit-site-global-styles-screen-typography {
+ margin: 16px;
+}
+
+.edit-site-global-styles-screen-typography__indicator {
+ height: 24px;
+ width: 24px;
+ font-size: 14px;
+ display: flex !important;
+ align-items: center;
+ justify-content: center;
+ border-radius: 2px;
+}
+
+.edit-site-global-styles-screen-colors {
+ margin: 16px;
+}
+.edit-site-global-styles-screen-colors .component-color-indicator {
+ background: linear-gradient(45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
+}
+
+.edit-site-global-styles-header__description,
+.edit-site-block-types-search {
+ padding: 0 16px;
+}
+
+.edit-site-global-styles-subtitle {
+ margin-bottom: 0 !important;
+ text-transform: uppercase;
+ font-weight: 500 !important;
+ font-size: 11px !important;
+}
+
+.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle {
+ margin-left: 16px;
+ margin-right: 16px;
+ width: unset;
+}
+.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle .components-toggle-group-control {
+ min-height: 32px;
+}
+
+.edit-site-screen-text-color__control,
+.edit-site-screen-link-color__control,
+.edit-site-screen-background-color__control {
+ padding: 16px;
+}
+
+.edit-site-global-styles-variations_item {
+ box-sizing: border-box;
+}
+.edit-site-global-styles-variations_item .edit-site-global-styles-variations_item-preview {
+ padding: 2px;
+ border-radius: 2px;
+ border: #e0e0e0 1px solid;
+}
+.edit-site-global-styles-variations_item.is-active .edit-site-global-styles-variations_item-preview {
+ border: #1e1e1e 1px solid;
+}
+.edit-site-global-styles-variations_item:hover .edit-site-global-styles-variations_item-preview {
+ border: var(--wp-admin-theme-color) 1px solid;
+}
+.edit-site-global-styles-variations_item:focus .edit-site-global-styles-variations_item-preview {
+ border: var(--wp-admin-theme-color) 1px solid;
+}
+
+.edit-site-global-styles-icon-with-current-color {
+ fill: currentColor;
+}
+
+.edit-site-global-styles__color-indicator-wrapper {
+ height: 24px;
+}
+
+.edit-site-header {
+ align-items: center;
+ background-color: #fff;
+ display: flex;
+ height: 60px;
+ box-sizing: border-box;
+ width: 100%;
+ justify-content: space-between;
+}
+body.is-fullscreen-mode .edit-site-header {
+ padding-right: 60px;
+ transition: padding-right 20ms linear;
+ transition-delay: 80ms;
+}
+@media (prefers-reduced-motion: reduce) {
+ body.is-fullscreen-mode .edit-site-header {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-header .edit-site-header_start,
+.edit-site-header .edit-site-header_end {
+ display: flex;
+}
+.edit-site-header .edit-site-header_center {
+ display: flex;
+ align-items: center;
+ height: 100%;
+ flex-grow: 1;
+ justify-content: center;
+ min-width: 0;
+}
+.edit-site-header .edit-site-header_end {
+ justify-content: flex-end;
+}
+
+body.is-navigation-sidebar-open .edit-site-header {
+ padding-right: 0;
+ transition: padding-right 20ms linear;
+ transition-delay: 0ms;
+}
+@media (prefers-reduced-motion: reduce) {
+ body.is-navigation-sidebar-open .edit-site-header {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+@media (max-width: 959px) {
+ body.is-navigation-sidebar-open .edit-site-header .edit-site-header-toolbar__inserter-toggle ~ .components-button,
+body.is-navigation-sidebar-open .edit-site-header .edit-site-header_end .components-button:not(.is-primary) {
+ display: none;
+ }
+ body.is-navigation-sidebar-open .edit-site-header .edit-site-save-button__button {
+ margin-left: 0;
+ }
+}
+.edit-site-header__toolbar {
+ display: flex;
+ align-items: center;
+ padding-right: 8px;
+}
+@media (min-width: 600px) {
+ .edit-site-header__toolbar {
+ padding-right: 24px;
+ }
+}
+@media (min-width: 1280px) {
+ .edit-site-header__toolbar {
+ padding-left: 8px;
+ }
+}
+.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle {
+ margin-left: 8px;
+ min-width: 32px;
+ width: 32px;
+ height: 32px;
+ padding: 0;
+}
+.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg {
+ transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle.is-pressed svg {
+ transform: rotate(-45deg);
+}
+
+.edit-site-header__toolbar-switchers {
+ align-items: center;
+ display: flex;
+}
+
+.edit-site-header__toolbar-switchers-separator {
+ margin: 0 -6px 0;
+}
+
+/**
+ * Buttons in the Toolbar
+ */
+.edit-site-header__actions {
+ display: inline-flex;
+ align-items: center;
+ padding-left: 4px;
+}
+.edit-site-header__actions .interface-pinned-items {
+ display: none;
+}
+@media (min-width: 782px) {
+ .edit-site-header__actions .interface-pinned-items {
+ display: inline-flex;
+ }
+}
+.edit-site-header__actions .editor-post-saved-state,
+.edit-site-header__actions .components-button.components-button {
+ margin-left: 4px;
+}
+@media (min-width: 600px) {
+ .edit-site-header__actions .editor-post-saved-state,
+.edit-site-header__actions .components-button.components-button {
+ margin-left: 12px;
+ }
+}
+.edit-site-header__actions .editor-post-saved-state,
+.edit-site-header__actions .components-button.is-tertiary {
+ padding: 0 6px;
+}
+.edit-site-header__actions .edit-site-more-menu .components-button,
+.edit-site-header__actions .interface-pinned-items .components-button {
+ margin-left: 0;
+}
+@media (min-width: 600px) {
+ .edit-site-header__actions {
+ padding-left: 16px;
+ }
+}
+
+.edit-site-header__actions-more-menu {
+ margin-right: -4px;
+}
+.edit-site-header__actions-more-menu .components-icon-button {
+ padding: 8px 2px;
+ width: auto;
+}
+@media (min-width: 600px) {
+ .edit-site-header__actions-more-menu {
+ margin-right: 4px;
+ }
+ .edit-site-header__actions-more-menu .components-icon-button {
+ padding: 8px 4px;
+ }
+}
+
+.show-icon-labels .edit-site-header .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels .edit-site-header .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels .edit-site-header .components-button.has-icon::after {
+ content: attr(aria-label);
+}
+.show-icon-labels .edit-site-header .components-button.has-icon[aria-disabled=true] {
+ background-color: transparent;
+}
+.show-icon-labels .edit-site-header .is-tertiary:active {
+ box-shadow: 0 0 0 1.5px var(--wp-admin-theme-color);
+ background-color: transparent;
+}
+.show-icon-labels .edit-site-header .edit-site-save-button__button {
+ padding-right: 6px;
+ padding-left: 6px;
+ margin-left: 4px;
+}
+.show-icon-labels .edit-site-header .block-editor-post-preview__button-toggle {
+ margin-left: 4px;
+}
+.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle,
+.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info {
+ height: 36px;
+ padding: 0 6px;
+}
+.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle::after,
+.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info::after {
+ content: none;
+}
+
+.edit-site-document-actions {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding: 0 8px;
+ height: 100%;
+ min-width: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ min-width: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown {
+ display: inline-flex;
+ margin-right: 4px;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown .components-button {
+ min-width: 0;
+ padding: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper > h1 {
+ margin: 0;
+ min-width: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.edit-site-document-actions .edit-site-document-actions__secondary-item {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 0;
+ opacity: 0;
+ padding: 0;
+ transition: all ease 0.2s;
+ background: #e0e0e0;
+ border-radius: 2px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-document-actions .edit-site-document-actions__secondary-item {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-document-actions.has-secondary-label .edit-site-document-actions__secondary-item {
+ opacity: 1;
+ padding: 0 4px;
+ max-width: 180px;
+ margin-right: 6px;
+}
+
+.edit-site-document-actions__info-dropdown > .components-popover__content > div {
+ padding: 0;
+ min-width: 240px;
+}
+
+.edit-site-navigation-toggle {
+ align-items: center;
+ background: #1e1e1e;
+ border-radius: 0;
+ display: flex;
+ position: absolute;
+ z-index: 31;
+ height: 60px;
+ width: 60px;
+}
+
+.edit-site-navigation-toggle__button.components-button {
+ align-items: center;
+ background: #1e1e1e;
+ border-radius: 0;
+ color: #fff;
+ height: 61px;
+ width: 60px;
+ z-index: 1;
+ margin-bottom: -1px;
+ min-width: 60px;
+}
+.edit-site-navigation-toggle__button.components-button:hover, .edit-site-navigation-toggle__button.components-button:active {
+ color: #fff;
+}
+.edit-site-navigation-toggle__button.components-button:focus {
+ box-shadow: none;
+}
+.edit-site-navigation-toggle__button.components-button::before {
+ transition: box-shadow 0.1s ease;
+ content: "";
+ display: block;
+ position: absolute;
+ top: 9px;
+ left: 9px;
+ bottom: 9px;
+ right: 9px;
+ border-radius: 4px;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-navigation-toggle__button.components-button::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-navigation-toggle__button.components-button:hover::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #757575;
+}
+.edit-site-navigation-toggle__button.components-button.has-icon:hover::before {
+ box-shadow: none;
+}
+.edit-site-navigation-toggle__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) rgba(255, 255, 255, 0.1), inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.edit-site-navigation-toggle__button.components-button .edit-site-navigation-toggle__site-icon {
+ width: 36px;
+ height: 36px;
+ border-radius: 2px;
+ -o-object-fit: cover;
+ object-fit: cover;
+ margin-top: -1px;
+}
+
+.edit-site-navigation-panel {
+ height: 100%;
+ position: relative;
+ width: 0;
+ overflow: hidden;
+ background: #1e1e1e;
+ color: #fff;
+ transition: width 100ms linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-navigation-panel {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton.has-footer .edit-site-navigation-panel {
+ height: calc(100% - 25px);
+ }
+}
+
+.edit-site-navigation-panel__inner {
+ position: relative;
+ width: 300px;
+ height: 100%;
+ overflow: hidden;
+ visibility: hidden;
+ transition: visibility 100ms linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-navigation-panel__inner {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.edit-site-navigation-panel.is-open {
+ width: 300px;
+}
+.edit-site-navigation-panel.is-open .edit-site-navigation-panel__inner {
+ visibility: visible;
+}
+
+.edit-site-navigation-panel__site-title-container {
+ height: 60px;
+ padding-right: 60px;
+ margin: 0 8px 0 16px;
+ display: flex;
+ align-items: center;
+}
+
+.edit-site-navigation-panel__site-title {
+ font-style: normal;
+ font-weight: 600;
+ font-size: 14px;
+ /* Matches menu items */
+ line-height: 20px;
+ color: #ddd;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ overflow: hidden;
+}
+
+.edit-site-navigation-panel__scroll-container {
+ overflow-x: hidden;
+ overflow-y: auto;
+ height: calc(100% - 60px);
+}
+
+.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary {
+ height: 36px;
+ margin-top: 24px;
+ padding: 8px 8px 8px 16px;
+}
+.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary:focus:not(:disabled) {
+ border-bottom-color: transparent;
+}
+
+.edit-site-navigation-panel__preview {
+ display: none;
+ border: 1px solid #ccc;
+ width: 300px;
+ padding: 16px;
+ background: #fff;
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
+ border-radius: 2px;
+ position: absolute;
+ top: 73px;
+ right: 312px;
+ color: #1e1e1e;
+ z-index: 32;
+}
+@media (min-width: 782px) {
+ .edit-site-navigation-panel__preview {
+ display: block;
+ }
+}
+
+.edit-site-navigation-panel__template-item {
+ display: block;
+}
+.edit-site-navigation-panel__template-item .components-button {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ justify-content: center;
+ height: auto;
+ min-height: 36px;
+ text-align: right;
+ padding-right: 16px;
+ padding-left: 16px;
+ color: inherit;
+}
+
+.edit-site-navigation-panel__template-item-title {
+ font-size: 14px;
+ line-height: 20px;
+}
+.edit-site-navigation-panel__template-item-title em {
+ margin-left: 1ch;
+}
+
+.edit-site-navigation-panel__template-parts .components-navigation__menu-title-heading {
+ text-transform: capitalize;
+}
+
+.edit-site-navigation-panel__template-part-item .components-navigation__item-title {
+ text-transform: capitalize;
+}
+
+.components-navigation__item + .edit-site-navigation-panel__template-item {
+ margin-top: 16px;
+}
+
+.edit-site-navigation-panel__template-item + .edit-site-navigation-panel__template-item {
+ margin-top: 8px;
+}
+
+.edit-site-navigation-panel__info-wrapper {
+ padding: 4px 0;
+}
+
+.edit-site-navigation-panel__template-item-description {
+ padding-top: 8px;
+ font-size: 12px;
+ line-height: 16px;
+}
+
+.edit-site-navigation-panel__new-template-dropdown {
+ margin: 0 12px 0 0;
+}
+.edit-site-navigation-panel__new-template-dropdown button {
+ margin: 0;
+}
+
+@media (min-width: 600px) {
+ .edit-site-navigation-panel__new-template-popover {
+ min-width: 300px;
+ }
+}
+
+.edit-site-list-header {
+ position: relative;
+ align-items: center;
+ background-color: #fff;
+ display: flex;
+ height: 60px;
+ box-sizing: border-box;
+ width: 100%;
+ justify-content: flex-end;
+ padding-left: 16px;
+}
+body.is-fullscreen-mode .edit-site-list-header {
+ padding-right: 60px;
+ transition: padding-right 20ms linear;
+ transition-delay: 80ms;
+}
+@media (prefers-reduced-motion: reduce) {
+ body.is-fullscreen-mode .edit-site-list-header {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-list-header .edit-site-list-header__title {
+ position: absolute;
+ right: 0;
+ width: 100%;
+ text-align: center;
+ font-size: 20px;
+ padding: 0;
+ margin: 0;
+}
+
+.edit-site-list-header__right {
+ position: relative;
+}
+
+.edit-site .edit-site-list .interface-interface-skeleton__editor {
+ min-width: 100%;
+}
+@media (min-width: 782px) {
+ .edit-site .edit-site-list .interface-interface-skeleton__editor {
+ min-width: 0;
+ }
+}
+.edit-site .edit-site-list .interface-interface-skeleton__content {
+ background: #fff;
+ align-items: center;
+ padding: 16px;
+}
+@media (min-width: 782px) {
+ .edit-site .edit-site-list .interface-interface-skeleton__content {
+ padding: 72px;
+ }
+}
+
+.edit-site-list-table {
+ width: 100%;
+ border: 1px solid #ddd;
+ border-radius: 2px;
+ margin: 0;
+ overflow: hidden;
+ border-spacing: 0;
+ max-width: 960px;
+}
+.edit-site-list-table tr {
+ display: flex;
+ align-items: center;
+ padding: 16px;
+ box-sizing: border-box;
+ border-top: 1px solid #f0f0f0;
+ margin: 0;
+}
+.edit-site-list-table tr:first-child {
+ border-top: 0;
+}
+@media (min-width: 782px) {
+ .edit-site-list-table tr {
+ padding: 24px 32px;
+ }
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(1) {
+ width: calc(60% - 18px);
+ padding-left: 24px;
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(1) a {
+ display: inline-block;
+ text-decoration: none;
+ font-weight: 500;
+ margin-bottom: 4px;
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(2) {
+ width: calc(40% - 18px);
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(3) {
+ min-width: 36px;
+ flex-shrink: 0;
+}
+.edit-site-list-table tr.edit-site-list-table-head {
+ font-size: 16px;
+ font-weight: 600;
+ text-align: right;
+ color: #1e1e1e;
+ border-top: none;
+ border-bottom: 1px solid #ddd;
+}
+.edit-site-list-table tr.edit-site-list-table-head th {
+ font-weight: inherit;
+}
+
+@media (min-width: 782px) {
+ .edit-site-list.is-navigation-open .components-snackbar-list {
+ margin-right: 300px;
+ }
+}
+
+@media (min-width: 782px) {
+ .edit-site-list__rename-modal .components-base-control {
+ width: 320px;
+ }
+}
+.edit-site-list__rename-modal .components-modal__header {
+ border-bottom: none;
+}
+.edit-site-list__rename-modal .components-modal__content::before {
+ margin-bottom: 4px;
+}
+
+.edit-site-list__rename-modal-actions {
+ margin-top: 12px;
+}
+
+.edit-site-template__actions button:not(:last-child) {
+ margin-left: 8px;
+}
+
+.edit-site-list-added-by__icon {
+ display: flex;
+ flex-shrink: 0;
+ position: relative;
+ align-items: center;
+ justify-content: center;
+ width: 32px;
+ height: 32px;
+ background: #2f2f2f;
+ border-radius: 100%;
+}
+.edit-site-list-added-by__icon svg {
+ fill: #fff;
+}
+.edit-site-list-added-by__icon.is-customized::after {
+ position: absolute;
+ content: "";
+ background: var(--wp-admin-theme-color);
+ height: 8px;
+ width: 8px;
+ outline: 2px solid #fff;
+ border-radius: 100%;
+ top: -1px;
+ left: -1px;
+}
+
+.edit-site-list-added-by__avatar {
+ flex-shrink: 0;
+ overflow: hidden;
+ border-radius: 100%;
+ background: #2f2f2f;
+ width: 32px;
+ height: 32px;
+}
+.edit-site-list-added-by__avatar img {
+ width: 32px;
+ height: 32px;
+ -o-object-fit: cover;
+ object-fit: cover;
+ opacity: 0;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-list-added-by__avatar img {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-list-added-by__avatar.is-loaded img {
+ opacity: 1;
+}
+
+.edit-site-new-template-dropdown .components-dropdown-menu__toggle {
+ padding: 6px 12px;
+}
+@media (min-width: 600px) {
+ .edit-site-new-template-dropdown .edit-site-new-template-dropdown__popover {
+ min-width: 300px;
+ }
+}
+
+.edit-site-sidebar {
+ width: 280px;
+}
+.edit-site-sidebar > .components-panel {
+ border-right: 0;
+ border-left: 0;
+ margin-bottom: -1px;
+ margin-top: -1px;
+}
+.edit-site-sidebar > .components-panel > .components-panel__header {
+ background: #f0f0f0;
+}
+.edit-site-sidebar .block-editor-block-inspector__card {
+ margin: 0;
+}
+
+.edit-site-global-styles-sidebar {
+ display: flex;
+ flex-direction: column;
+ min-height: 100%;
+}
+.edit-site-global-styles-sidebar__panel, .edit-site-global-styles-sidebar__navigator-provider {
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+}
+.edit-site-global-styles-sidebar__navigator-screen {
+ flex: 1;
+}
+
+.edit-site-global-styles-sidebar .interface-complementary-area-header .components-button.has-icon {
+ margin-right: 0;
+}
+
+.edit-site-global-styles-sidebar__reset-button.components-button {
+ margin-right: auto;
+}
+
+.edit-site-global-styles-sidebar .components-navigation__menu-title-heading {
+ font-size: 15.6px;
+ font-weight: 500;
+}
+
+.edit-site-global-styles-sidebar .components-navigation__item > button span {
+ font-weight: 500;
+}
+
+.edit-site-typography-panel,
+.edit-site-global-styles-sidebar .block-editor-panel-color-gradient-settings {
+ border: 0;
+}
+
+.edit-site-global-styles-sidebar .components-tools-panel-item.single-column {
+ grid-column: span 1;
+}
+
+.edit-site-global-styles-sidebar__blocks-group {
+ padding-top: 24px;
+ border-top: 1px solid #e0e0e0;
+}
+
+.edit-site-global-styles-sidebar__blocks-group-help {
+ padding: 0 16px;
+}
+
+.edit-site-global-styles-color-palette-panel,
+.edit-site-global-styles-gradient-palette-panel {
+ padding: 16px;
+}
+
+.edit-site-global-styles-sidebar__beta {
+ display: inline-flex;
+ margin-right: 8px;
+ padding: 0 8px;
+ height: 24px;
+ border-radius: 2px;
+ background-color: #1e1e1e;
+ color: #fff;
+ align-items: center;
+ font-size: 12px;
+ line-height: 1;
+}
+
+.components-panel__header.edit-site-sidebar__panel-tabs {
+ justify-content: flex-start;
+ padding-right: 0;
+ padding-left: 16px;
+ border-top: 0;
+ margin-top: 0;
+}
+.components-panel__header.edit-site-sidebar__panel-tabs ul {
+ display: flex;
+}
+.components-panel__header.edit-site-sidebar__panel-tabs li {
+ margin: 0;
+}
+.components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon {
+ display: none;
+ margin: 0 auto 0 0;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+}
+@media (min-width: 782px) {
+ .components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon {
+ display: flex;
+ }
+}
+
+.components-button.edit-site-sidebar__panel-tab {
+ border-radius: 0;
+ height: 48px;
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ padding: 3px 15px;
+ margin-right: 0;
+ font-weight: 500;
+}
+.components-button.edit-site-sidebar__panel-tab::after {
+ content: attr(data-label);
+ display: block;
+ font-weight: 600;
+ height: 0;
+ overflow: hidden;
+ speak: none;
+ visibility: hidden;
+}
+.components-button.edit-site-sidebar__panel-tab.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-site-sidebar__panel-tab.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ left: 0;
+ right: 0;
+ border-bottom: 4px solid transparent;
+}
+.components-button.edit-site-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-site-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+@keyframes loadingpulse {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0.5;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.edit-site-navigation-inspector {
+ padding: 16px;
+}
+.edit-site-navigation-inspector .block-editor-list-view-leaf .block-editor-list-view-block-contents {
+ align-items: flex-start;
+ white-space: normal;
+}
+.edit-site-navigation-inspector .block-editor-list-view-block__title {
+ margin-top: 3px;
+}
+.edit-site-navigation-inspector .block-editor-list-view-block__menu-cell {
+ padding-left: 0;
+}
+
+.edit-site-navigation-inspector__placeholder {
+ padding: 8px;
+ margin: 8px;
+ background-color: #f0f0f0;
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+.edit-site-navigation-inspector__placeholder.is-child {
+ margin-right: 24px;
+ width: 50%;
+}
+
+.edit-site-template-card {
+ display: flex;
+ align-items: flex-start;
+}
+
+.edit-site-template-card__content {
+ flex-grow: 1;
+ margin-bottom: 4px;
+}
+
+.edit-site-template-card__title {
+ font-weight: 500;
+ line-height: 24px;
+}
+.edit-site-template-card__title.edit-site-template-card__title {
+ margin: 0 0 4px;
+}
+
+.edit-site-template-card__description {
+ font-size: 13px;
+ margin: 0 0 16px;
+}
+
+.edit-site-template-card__icon {
+ flex: 0 0 24px;
+ margin-left: 12px;
+ width: 24px;
+ height: 24px;
+}
+
+h3.edit-site-template-card__template-areas-title {
+ font-weight: 500;
+ margin: 0 0 8px;
+}
+
+.edit-site-template-card__template-areas-list {
+ margin: 0;
+}
+.edit-site-template-card__template-areas-list > li {
+ margin: 0;
+}
+
+.edit-site-template-card__template-areas-item {
+ width: 100%;
+}
+.edit-site-template-card__template-areas-item.components-button.has-icon {
+ padding: 0;
+}
+
+html #wpadminbar {
+ display: none;
+}
+
+html.wp-toolbar {
+ padding-top: 0;
+}
+
+.edit-site-editor__toggle-save-panel {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ right: auto;
+ left: 0;
+ width: 280px;
+ background-color: #fff;
+ border: 1px dotted #ddd;
+ height: auto !important;
+ padding: 24px;
+ display: flex;
+ justify-content: center;
+}
+.interface-interface-skeleton__actions:focus .edit-site-editor__toggle-save-panel, .interface-interface-skeleton__actions:focus-within .edit-site-editor__toggle-save-panel {
+ top: auto;
+ bottom: 0;
+}
+
+.edit-site-visual-editor {
+ position: relative;
+ height: 100%;
+ display: block;
+}
+.edit-site-visual-editor iframe {
+ display: block;
+ width: 100%;
+ height: 100%;
+ background-color: #fff;
+}
+
+.edit-site .components-editor-notices__snackbar {
+ position: fixed;
+ left: 0;
+ bottom: 40px;
+ padding-right: 16px;
+ padding-left: 16px;
+}
+
+.edit-site .components-editor-notices__snackbar {
+ /* Set left position when auto-fold is not on the body element. */
+ right: 0;
+}
+@media (min-width: 783px) {
+ .edit-site .components-editor-notices__snackbar {
+ right: 160px;
+ }
+}
+
+.auto-fold .edit-site .components-editor-notices__snackbar {
+ /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
+}
+@media (min-width: 783px) {
+ .auto-fold .edit-site .components-editor-notices__snackbar {
+ right: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .edit-site .components-editor-notices__snackbar {
+ right: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .edit-site .components-editor-notices__snackbar {
+ right: 0;
+}
+@media (min-width: 783px) {
+ .folded .edit-site .components-editor-notices__snackbar {
+ right: 36px;
+ }
+}
+
+body.is-fullscreen-mode .edit-site .components-editor-notices__snackbar {
+ right: 0 !important;
+}
+
+.edit-site-template-details .edit-site-template-details__group {
+ margin: 0;
+ padding: 16px;
+}
+.edit-site-template-details .edit-site-template-details__group + .edit-site-template-details__group {
+ border-top: 1px solid #ccc;
+}
+.edit-site-template-details .edit-site-template-details__title {
+ margin: 0;
+}
+.edit-site-template-details .edit-site-template-details__description {
+ margin: 12px 0 0;
+ color: #757575;
+}
+.edit-site-template-details .edit-site-template-details__group.edit-site-template-details__template-areas {
+ padding: 8px;
+}
+.edit-site-template-details .edit-site-template-details__template-areas-item {
+ position: relative;
+}
+.edit-site-template-details .edit-site-template-details__template-areas-item .edit-site-template-details__template-areas-item-more {
+ position: absolute;
+ left: 0;
+ top: 0;
+ bottom: 0;
+ margin: auto 0;
+}
+.edit-site-template-details .edit-site-template-details__revert {
+ padding: 12px 8px;
+}
+.edit-site-template-details .edit-site-template-details__revert-button {
+ height: auto;
+ padding: 4px 8px;
+ text-align: right;
+}
+.edit-site-template-details .edit-site-template-details__revert-button:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 3px #fff;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button {
+ display: flex;
+ justify-content: center;
+ background: #1e1e1e;
+ color: #fff;
+ width: 100%;
+ height: 44px;
+ border-radius: 0;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button:hover {
+ color: #fff;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button:active {
+ color: #ccc;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 3px #fff;
+}
+
+.edit-site-create-template-part-modal {
+ z-index: 1000001;
+}
+@media (min-width: 600px) {
+ .edit-site-create-template-part-modal .components-modal__frame {
+ max-width: 500px;
+ }
+}
+
+.edit-site-create-template-part-modal__modal-actions {
+ padding-top: 12px;
+}
+
+.edit-site-create-template-part-modal__area-base-control .components-base-control__label {
+ margin: 16px 0 8px;
+ cursor: auto;
+}
+
+.edit-site-create-template-part-modal__area-radio-group {
+ width: 100%;
+ border: 1px solid #757575;
+ border-radius: 2px;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio {
+ display: block;
+ width: 100%;
+ height: 100%;
+ text-align: right;
+ padding: 12px;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover {
+ margin: 0;
+ background-color: inherit;
+ border-bottom: 1px solid #757575;
+ border-radius: 0;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:focus), .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:not(:focus), .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:not(:focus) {
+ box-shadow: none;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:focus, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:focus, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:focus {
+ border-bottom: 1px solid #fff;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:last-of-type, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:last-of-type, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:last-of-type {
+ border-bottom: none;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover), .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true] {
+ color: #1e1e1e;
+ cursor: auto;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover) .edit-site-create-template-part-modal__option-label div, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true] .edit-site-create-template-part-modal__option-label div {
+ color: #949494;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label {
+ padding-top: 4px;
+ white-space: normal;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label div {
+ padding-top: 4px;
+ font-size: 12px;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__checkbox {
+ margin-right: auto;
+ min-width: 24px;
+}
+
+.edit-site-editor__inserter-panel,
+.edit-site-editor__list-view-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+
+.edit-site-editor__list-view-panel {
+ min-width: 350px;
+}
+
+.edit-site-editor__inserter-panel-header {
+ padding-top: 8px;
+ padding-left: 8px;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.edit-site-editor__inserter-panel-content,
+.edit-site-editor__list-view-panel-content {
+ height: calc(100% - 36px - 8px);
+}
+
+@media (min-width: 782px) {
+ .edit-site-editor__inserter-panel-content {
+ height: 100%;
+ }
+}
+
+.edit-site-editor__list-view-panel-header {
+ align-items: center;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ justify-content: space-between;
+ height: 48px;
+ padding-right: 16px;
+ padding-left: 4px;
+}
+
+.edit-site-editor__list-view-panel-content {
+ overflow-y: auto;
+ padding: 8px;
+}
+
+.edit-site-welcome-guide {
+ width: 312px;
+}
+.edit-site-welcome-guide__image {
+ background: #00a0d2;
+ margin: 0 0 16px;
+}
+.edit-site-welcome-guide__image > img {
+ display: block;
+ max-width: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.edit-site-welcome-guide__heading {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 24px;
+ line-height: 1.4;
+ margin: 16px 0 16px 0;
+ padding: 0 32px;
+}
+.edit-site-welcome-guide__text {
+ font-size: 13px;
+ line-height: 1.4;
+ margin: 0 0 16px 0;
+ padding: 0 32px;
+}
+.edit-site-welcome-guide__text img {
+ vertical-align: bottom;
+}
+.edit-site-welcome-guide__inserter-icon {
+ margin: 0 4px;
+ vertical-align: text-top;
+}
+
+.edit-site-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.edit-site-keyboard-shortcut-help-modal__main-shortcuts .edit-site-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.edit-site-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 1rem 0 0;
+ text-align: left;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-site-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0.2rem 0 0;
+}
+
+html.wp-toolbar {
+ background: #fff;
+}
+
+body.appearance_page_gutenberg-edit-site,
+body.site-editor-php {
+ background: #fff;
+ /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
+ Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
+}
+body.appearance_page_gutenberg-edit-site #wpcontent,
+body.site-editor-php #wpcontent {
+ padding-right: 0;
+}
+body.appearance_page_gutenberg-edit-site #wpbody-content,
+body.site-editor-php #wpbody-content {
+ padding-bottom: 0;
+}
+body.appearance_page_gutenberg-edit-site #wpbody-content > div:not(.edit-site):not(#screen-meta),
+body.site-editor-php #wpbody-content > div:not(.edit-site):not(#screen-meta) {
+ display: none;
+}
+body.appearance_page_gutenberg-edit-site #wpfooter,
+body.site-editor-php #wpfooter {
+ display: none;
+}
+body.appearance_page_gutenberg-edit-site .a11y-speak-region,
+body.site-editor-php .a11y-speak-region {
+ right: -1px;
+ top: -1px;
+}
+body.appearance_page_gutenberg-edit-site ul#adminmenu a.wp-has-current-submenu::after,
+body.appearance_page_gutenberg-edit-site ul#adminmenu > li.current > a.current::after,
+body.site-editor-php ul#adminmenu a.wp-has-current-submenu::after,
+body.site-editor-php ul#adminmenu > li.current > a.current::after {
+ border-left-color: #fff;
+}
+body.appearance_page_gutenberg-edit-site .media-frame select.attachment-filters:last-of-type,
+body.site-editor-php .media-frame select.attachment-filters:last-of-type {
+ width: auto;
+ max-width: 100%;
+}
+
+.edit-site,
+.components-modal__frame {
+ box-sizing: border-box;
+}
+.edit-site *,
+.edit-site *::before,
+.edit-site *::after,
+.components-modal__frame *,
+.components-modal__frame *::before,
+.components-modal__frame *::after {
+ box-sizing: inherit;
+}
+
+@media (min-width: 600px) {
+ .edit-site {
+ bottom: 0;
+ right: 0;
+ min-height: 100vh;
+ position: absolute;
+ left: 0;
+ top: 0;
+ }
+}
+.edit-site .interface-interface-skeleton {
+ top: 0;
+}
+.edit-site .interface-complementary-area__pin-unpin-item.components-button {
+ display: none;
+}
+.edit-site .interface-interface-skeleton__content {
+ background-color: #2f2f2f;
+}
+
+/**
+ * Animations
+ */
+@keyframes edit-post__fade-in-animation {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-site/style-rtl.min.css b/static/wp-includes/css/dist/edit-site/style-rtl.min.css
new file mode 100755
index 0000000..88cb655
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-site/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.components-panel__header.interface-complementary-area-header__small{background:#fff;padding-left: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{background:#fff;padding-left:4px}.interface-complementary-area-header .components-button.has-icon{display:none;margin-right:auto}.interface-complementary-area-header .components-button.has-icon~.components-button{margin-right:0}@media (min-width:782px){.interface-complementary-area-header .components-button.has-icon{display:flex}}@media (min-width:782px){.components-panel__header+.interface-complementary-area-header{margin-top:0}}.interface-complementary-area{background:#fff;color:#1e1e1e}@media (min-width:600px){.interface-complementary-area{-webkit-overflow-scrolling:touch}}@media (min-width:782px){.interface-complementary-area{width:280px}}.interface-complementary-area .components-panel{border:none;position:relative;z-index:0}.interface-complementary-area .components-panel__header{position:sticky;top:0;z-index:1}.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:48px}@media (min-width:782px){.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:0}}.interface-complementary-area p{margin-top:0}.interface-complementary-area h2{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area h3{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area hr{border-top:none;border-bottom:1px solid #f0f0f0;margin:1.5em 0}.interface-complementary-area div.components-toolbar,.interface-complementary-area div.components-toolbar-group{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;left:10px;bottom:10px;right: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-right:0}}html.interface-interface-skeleton__html-container{position:fixed;width:100%}@media (min-width:782px){html.interface-interface-skeleton__html-container{position:static;width:auto}}.interface-interface-skeleton{display:flex;flex-direction:row;height:auto;max-height:100%;position:fixed;top:46px;left:0;bottom:0}@media (min-width:783px){.interface-interface-skeleton{top:32px}.is-fullscreen-mode .interface-interface-skeleton{top:0}}.interface-interface-skeleton__editor{display:flex;flex-direction:column;flex:0 1 100%;overflow:hidden}.interface-interface-skeleton{right:0}@media (min-width:783px){.interface-interface-skeleton{right:160px}}@media (min-width:783px){.auto-fold .interface-interface-skeleton{right:36px}}@media (min-width:961px){.auto-fold .interface-interface-skeleton{right:160px}}.folded .interface-interface-skeleton{right:0}@media (min-width:783px){.folded .interface-interface-skeleton{right:36px}}body.is-fullscreen-mode .interface-interface-skeleton{right:0!important}.interface-interface-skeleton__body{flex-grow:1;display:flex;overflow:auto;overscroll-behavior-y:none}@media (min-width:782px){.has-footer .interface-interface-skeleton__body{padding-bottom:25px}}.interface-interface-skeleton__content{flex-grow:1;display:flex;flex-direction:column;overflow:auto;z-index:20}.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{display:block;flex-shrink:0;position:absolute;z-index:100000;top:0;left:0;bottom:0;right:0;background:#fff;color:#1e1e1e}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{position:relative!important;z-index:90;width:auto}}.interface-interface-skeleton__sidebar{overflow:auto}@media (min-width:782px){.interface-interface-skeleton__sidebar{border-right:1px solid #e0e0e0}}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar{border-left:1px solid #e0e0e0}}.interface-interface-skeleton__header{flex-shrink:0;height:auto;border-bottom:1px solid #e0e0e0;z-index:30;color:#1e1e1e}.interface-interface-skeleton__footer{height:auto;flex-shrink:0;border-top:1px solid #e0e0e0;color:#1e1e1e;position:absolute;bottom:0;right:0;width:100%;background-color:#fff;z-index:90;display:none}@media (min-width:782px){.interface-interface-skeleton__footer{display:flex}}.interface-interface-skeleton__footer .block-editor-block-breadcrumb{z-index:30;display:flex;background:#fff;height:24px;align-items:center;font-size:13px;padding:0 18px}.interface-interface-skeleton__actions{z-index:100000;position:fixed!important;top:-9999em;bottom:auto;right:auto;left:0;width:280px;color:#1e1e1e}.interface-interface-skeleton__actions:focus{top:auto;bottom:0}.interface-more-menu-dropdown{margin-right:-4px}.interface-more-menu-dropdown .components-button{width:auto;padding:0 2px}@media (min-width:600px){.interface-more-menu-dropdown{margin-right:0}.interface-more-menu-dropdown .components-button{padding:0 4px}}.interface-more-menu-dropdown__content .components-popover__content{min-width:280px}@media (min-width:480px){.interface-more-menu-dropdown__content .components-popover__content{width:auto;max-width:480px}}.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu{padding:0}.components-popover.interface-more-menu-dropdown__content{z-index:99998}.interface-pinned-items{display:flex}.interface-pinned-items .components-button:not(:first-child){display:none}@media (min-width:600px){.interface-pinned-items .components-button:not(:first-child){display:flex}}.interface-pinned-items .components-button{margin-right:4px}.interface-pinned-items .components-button svg{max-width:24px;max-height:24px}@media (min-width:600px){.interface-preferences-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.interface-preferences-modal{width:750px}}@media (min-width:960px){.interface-preferences-modal{height:70%}}@media (max-width:781px){.interface-preferences-modal .components-modal__content{padding:0}.interface-preferences-modal .components-modal__content:before{content:none}}.interface-preferences__tabs .components-tab-panel__tabs{position:absolute;top:84px;right:16px;width:160px}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item{border-radius:2px;font-weight:400}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active{background:#f0f0f0;box-shadow:none;font-weight:500}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.interface-preferences__tabs .components-tab-panel__tab-content{padding-right:24px;margin-right:160px}@media (max-width:781px){.interface-preferences__provider{height:100%}}.interface-preferences-modal__section{margin:0 0 2.5rem}.interface-preferences-modal__section:last-child{margin:0}.interface-preferences-modal__section-title{font-size:.9rem;font-weight:600;margin-top:0}.interface-preferences-modal__section-description{margin:-8px 0 8px;font-size:12px;font-style:normal;color:#757575}.interface-preferences-modal__option .components-base-control .components-base-control__field{align-items:center;display:flex;margin-bottom:0}.interface-preferences-modal__option .components-base-control .components-base-control__field>label{flex-grow:1;padding:.6rem 10px .6rem 0}.interface-preferences-modal__option .components-base-control__help{margin:-8px 58px 8px 0;font-size:12px;font-style:normal;color:#757575}.edit-site-block-editor__editor-styles-wrapper .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 12px}.edit-site-block-editor__editor-styles-wrapper .components-button.has-icon,.edit-site-block-editor__editor-styles-wrapper .components-button.is-tertiary{padding:6px}.edit-site-visual-editor{background-color:#2f2f2f;align-items:center}.edit-site-visual-editor.is-focus-mode{padding:48px}.edit-site-visual-editor.is-focus-mode .edit-site-visual-editor__editor-canvas{border-radius:2px}.edit-site-visual-editor.is-focus-mode .components-resizable-box__container{overflow:visible}.edit-site-visual-editor .components-resizable-box__container{margin:0 auto;overflow:auto}.edit-site-visual-editor__back-button{position:absolute;top:8px;right:8px;color:#fff}.edit-site-visual-editor__back-button:active:not([aria-disabled=true]),.edit-site-visual-editor__back-button:focus:not([aria-disabled=true]),.edit-site-visual-editor__back-button:hover{color:#f0f0f0}.resizable-editor__drag-handle{position:absolute;top:0;bottom:0;padding:0;margin:auto 0;width:4px;height:100px;-webkit-appearance:none;appearance:none;cursor:ew-resize;outline:none;background:#949494;border-radius:2px;border:0}.resizable-editor__drag-handle.is-left{right:-16px}.resizable-editor__drag-handle.is-right{left:-16px}.resizable-editor__drag-handle:active,.resizable-editor__drag-handle:hover{background:#ccc}.resizable-editor__drag-handle:focus{box-shadow:0 0 0 1px #2f2f2f,0 0 0 calc(var(--wp-admin-border-width-focus) + 1px) var(--wp-admin-theme-color)}.edit-site-code-editor{position:relative;width:100%;background-color:#fff;flex-grow:1}.edit-site-code-editor__body{width:100%;padding:0 12px 12px;max-width:1080px;margin-right:auto;margin-left:auto}@media (min-width:960px){.edit-site-code-editor__body{padding:0 24px 24px}}.edit-site-code-editor__toolbar{position:sticky;z-index:1;top:0;right:0;left:0;display:flex;background:hsla(0,0%,100%,.8);padding:4px 12px}@media (min-width:600px){.edit-site-code-editor__toolbar{padding:12px}}@media (min-width:960px){.edit-site-code-editor__toolbar{padding:12px 24px}}.edit-site-code-editor__toolbar h2{line-height:36px;margin:0 0 0 auto;font-size:13px;color:#1e1e1e}.edit-site-code-editor__toolbar .components-button svg{order:1}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area{border:1px solid #949494;border-radius:0;display:block;margin:0;width:100%;box-shadow:none;resize:none;overflow:hidden;font-family:Menlo,Consolas,monaco,monospace;line-height:2.4;min-height:200px;transition:border .1s ease-out,box-shadow .1s linear;padding:16px;font-size:16px!important}@media (prefers-reduced-motion:reduce){textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area{padding:24px;font-size:15px!important}}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-webkit-input-placeholder{color:rgba(30,30,30,.62)}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-moz-placeholder{color:rgba(30,30,30,.62);opacity:1}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:-ms-input-placeholder{color:rgba(30,30,30,.62)}.edit-site-global-styles-preview{display:flex;align-items:center;justify-content:center;line-height:1;cursor:pointer}.edit-site-global-styles-preview__iframe{max-width:100%;display:block}.edit-site-typography-panel__preview{display:flex;align-items:center;justify-content:center;min-height:100px;margin-bottom:16px;background:#f0f0f0;border-radius:2px}.edit-site-global-styles-screen-typography{margin:16px}.edit-site-global-styles-screen-typography__indicator{height:24px;width:24px;font-size:14px;display:flex!important;align-items:center;justify-content:center;border-radius:2px}.edit-site-global-styles-screen-colors{margin:16px}.edit-site-global-styles-screen-colors .component-color-indicator{background:linear-gradient(45deg,transparent 48%,#ddd 0,#ddd 52%,transparent 0)}.edit-site-block-types-search,.edit-site-global-styles-header__description{padding:0 16px}.edit-site-global-styles-subtitle{margin-bottom:0!important;text-transform:uppercase;font-weight:500!important;font-size:11px!important}.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle{margin-left:16px;margin-right:16px;width:unset}.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle .components-toggle-group-control{min-height:32px}.edit-site-screen-background-color__control,.edit-site-screen-link-color__control,.edit-site-screen-text-color__control{padding:16px}.edit-site-global-styles-variations_item{box-sizing:border-box}.edit-site-global-styles-variations_item .edit-site-global-styles-variations_item-preview{padding:2px;border-radius:2px;border:1px solid #e0e0e0}.edit-site-global-styles-variations_item.is-active .edit-site-global-styles-variations_item-preview{border:1px solid #1e1e1e}.edit-site-global-styles-variations_item:focus .edit-site-global-styles-variations_item-preview,.edit-site-global-styles-variations_item:hover .edit-site-global-styles-variations_item-preview{border:1px solid var(--wp-admin-theme-color)}.edit-site-global-styles-icon-with-current-color{fill:currentColor}.edit-site-global-styles__color-indicator-wrapper{height:24px}.edit-site-header{align-items:center;background-color:#fff;display:flex;height:60px;box-sizing:border-box;width:100%;justify-content:space-between}body.is-fullscreen-mode .edit-site-header{padding-right:60px;transition:padding-right 20ms linear;transition-delay:80ms}@media (prefers-reduced-motion:reduce){body.is-fullscreen-mode .edit-site-header{transition-duration:0s;transition-delay:0s}}.edit-site-header .edit-site-header_end,.edit-site-header .edit-site-header_start{display:flex}.edit-site-header .edit-site-header_center{display:flex;align-items:center;height:100%;flex-grow:1;justify-content:center;min-width:0}.edit-site-header .edit-site-header_end{justify-content:flex-end}body.is-navigation-sidebar-open .edit-site-header{padding-right:0;transition:padding-right 20ms linear;transition-delay:0ms}@media (prefers-reduced-motion:reduce){body.is-navigation-sidebar-open .edit-site-header{transition-duration:0s;transition-delay:0s}}@media (max-width:959px){body.is-navigation-sidebar-open .edit-site-header .edit-site-header-toolbar__inserter-toggle~.components-button,body.is-navigation-sidebar-open .edit-site-header .edit-site-header_end .components-button:not(.is-primary){display:none}body.is-navigation-sidebar-open .edit-site-header .edit-site-save-button__button{margin-left:0}}.edit-site-header__toolbar{display:flex;align-items:center;padding-right:8px}@media (min-width:600px){.edit-site-header__toolbar{padding-right:24px}}@media (min-width:1280px){.edit-site-header__toolbar{padding-left:8px}}.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle{margin-left:8px;min-width:32px;width:32px;height:32px;padding:0}.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg{transition:transform .2s cubic-bezier(.165,.84,.44,1)}@media (prefers-reduced-motion:reduce){.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg{transition-duration:0s;transition-delay:0s}}.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle.is-pressed svg{transform:rotate(-45deg)}.edit-site-header__toolbar-switchers{align-items:center;display:flex}.edit-site-header__toolbar-switchers-separator{margin:0 -6px}.edit-site-header__actions{display:inline-flex;align-items:center;padding-left:4px}.edit-site-header__actions .interface-pinned-items{display:none}@media (min-width:782px){.edit-site-header__actions .interface-pinned-items{display:inline-flex}}.edit-site-header__actions .components-button.components-button,.edit-site-header__actions .editor-post-saved-state{margin-left:4px}@media (min-width:600px){.edit-site-header__actions .components-button.components-button,.edit-site-header__actions .editor-post-saved-state{margin-left:12px}}.edit-site-header__actions .components-button.is-tertiary,.edit-site-header__actions .editor-post-saved-state{padding:0 6px}.edit-site-header__actions .edit-site-more-menu .components-button,.edit-site-header__actions .interface-pinned-items .components-button{margin-left:0}@media (min-width:600px){.edit-site-header__actions{padding-left:16px}}.edit-site-header__actions-more-menu{margin-right:-4px}.edit-site-header__actions-more-menu .components-icon-button{padding:8px 2px;width:auto}@media (min-width:600px){.edit-site-header__actions-more-menu{margin-right:4px}.edit-site-header__actions-more-menu .components-icon-button{padding:8px 4px}}.show-icon-labels .edit-site-header .components-button.has-icon{width:auto}.show-icon-labels .edit-site-header .components-button.has-icon svg{display:none}.show-icon-labels .edit-site-header .components-button.has-icon:after{content:attr(aria-label)}.show-icon-labels .edit-site-header .components-button.has-icon[aria-disabled=true]{background-color:transparent}.show-icon-labels .edit-site-header .is-tertiary:active{box-shadow:0 0 0 1.5px var(--wp-admin-theme-color);background-color:transparent}.show-icon-labels .edit-site-header .edit-site-save-button__button{padding-right:6px;padding-left:6px;margin-left:4px}.show-icon-labels .edit-site-header .block-editor-post-preview__button-toggle{margin-left:4px}.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info,.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle{height:36px;padding:0 6px}.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info:after,.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle:after{content:none}.edit-site-document-actions{display:flex;flex-direction:column;justify-content:center;padding:0 8px;height:100%;min-width:0}.edit-site-document-actions .edit-site-document-actions__title-wrapper{display:flex;flex-direction:row;justify-content:center;align-items:center;min-width:0}.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown{display:inline-flex;margin-right:4px}.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown .components-button{min-width:0;padding:0}.edit-site-document-actions .edit-site-document-actions__title-wrapper>h1{margin:0;min-width:0}.edit-site-document-actions .edit-site-document-actions__title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.edit-site-document-actions .edit-site-document-actions__secondary-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:0;opacity:0;padding:0;transition:all .2s ease;background:#e0e0e0;border-radius:2px}@media (prefers-reduced-motion:reduce){.edit-site-document-actions .edit-site-document-actions__secondary-item{transition-duration:0s;transition-delay:0s}}.edit-site-document-actions.has-secondary-label .edit-site-document-actions__secondary-item{opacity:1;padding:0 4px;max-width:180px;margin-right:6px}.edit-site-document-actions__info-dropdown>.components-popover__content>div{padding:0;min-width:240px}.edit-site-navigation-toggle{align-items:center;background:#1e1e1e;border-radius:0;display:flex;position:absolute;z-index:31;height:60px;width:60px}.edit-site-navigation-toggle__button.components-button{align-items:center;background:#1e1e1e;border-radius:0;color:#fff;height:61px;width:60px;z-index:1;margin-bottom:-1px;min-width:60px}.edit-site-navigation-toggle__button.components-button:active,.edit-site-navigation-toggle__button.components-button:hover{color:#fff}.edit-site-navigation-toggle__button.components-button:focus{box-shadow:none}.edit-site-navigation-toggle__button.components-button:before{transition:box-shadow .1s ease;content:"";display:block;position:absolute;top:9px;left:9px;bottom:9px;right:9px;border-radius:4px;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e}@media (prefers-reduced-motion:reduce){.edit-site-navigation-toggle__button.components-button:before{transition-duration:0s;transition-delay:0s}}.edit-site-navigation-toggle__button.components-button:hover:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #757575}.edit-site-navigation-toggle__button.components-button.has-icon:hover:before{box-shadow:none}.edit-site-navigation-toggle__button.components-button:focus:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) hsla(0,0%,100%,.1),inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.edit-site-navigation-toggle__button.components-button .edit-site-navigation-toggle__site-icon{width:36px;height:36px;border-radius:2px;-o-object-fit:cover;object-fit:cover;margin-top:-1px}.edit-site-navigation-panel{height:100%;position:relative;width:0;overflow:hidden;background:#1e1e1e;color:#fff;transition:width .1s linear}@media (prefers-reduced-motion:reduce){.edit-site-navigation-panel{transition-duration:0s;transition-delay:0s}}@media (min-width:782px){.interface-interface-skeleton.has-footer .edit-site-navigation-panel{height:calc(100% - 25px)}}.edit-site-navigation-panel__inner{position:relative;width:300px;height:100%;overflow:hidden;visibility:hidden;transition:visibility .1s linear}@media (prefers-reduced-motion:reduce){.edit-site-navigation-panel__inner{transition-duration:0s;transition-delay:0s}}.edit-site-navigation-panel.is-open{width:300px}.edit-site-navigation-panel.is-open .edit-site-navigation-panel__inner{visibility:visible}.edit-site-navigation-panel__site-title-container{height:60px;padding-right:60px;margin:0 8px 0 16px;display:flex;align-items:center}.edit-site-navigation-panel__site-title{font-style:normal;font-weight:600;font-size:14px;line-height:20px;color:#ddd;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.edit-site-navigation-panel__scroll-container{overflow-x:hidden;overflow-y:auto;height:calc(100% - 60px)}.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary{height:36px;margin-top:24px;padding:8px 8px 8px 16px}.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary:focus:not(:disabled){border-bottom-color:transparent}.edit-site-navigation-panel__preview{display:none;border:1px solid #ccc;width:300px;padding:16px;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.05);border-radius:2px;position:absolute;top:73px;right:312px;color:#1e1e1e;z-index:32}@media (min-width:782px){.edit-site-navigation-panel__preview{display:block}}.edit-site-navigation-panel__template-item{display:block}.edit-site-navigation-panel__template-item .components-button{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;height:auto;min-height:36px;text-align:right;padding-right:16px;padding-left:16px;color:inherit}.edit-site-navigation-panel__template-item-title{font-size:14px;line-height:20px}.edit-site-navigation-panel__template-item-title em{margin-left:1ch}.edit-site-navigation-panel__template-part-item .components-navigation__item-title,.edit-site-navigation-panel__template-parts .components-navigation__menu-title-heading{text-transform:capitalize}.components-navigation__item+.edit-site-navigation-panel__template-item{margin-top:16px}.edit-site-navigation-panel__template-item+.edit-site-navigation-panel__template-item{margin-top:8px}.edit-site-navigation-panel__info-wrapper{padding:4px 0}.edit-site-navigation-panel__template-item-description{padding-top:8px;font-size:12px;line-height:16px}.edit-site-navigation-panel__new-template-dropdown{margin:0 12px 0 0}.edit-site-navigation-panel__new-template-dropdown button{margin:0}@media (min-width:600px){.edit-site-navigation-panel__new-template-popover{min-width:300px}}.edit-site-list-header{position:relative;align-items:center;background-color:#fff;display:flex;height:60px;box-sizing:border-box;width:100%;justify-content:flex-end;padding-left:16px}body.is-fullscreen-mode .edit-site-list-header{padding-right:60px;transition:padding-right 20ms linear;transition-delay:80ms}@media (prefers-reduced-motion:reduce){body.is-fullscreen-mode .edit-site-list-header{transition-duration:0s;transition-delay:0s}}.edit-site-list-header .edit-site-list-header__title{position:absolute;right:0;width:100%;text-align:center;font-size:20px;padding:0;margin:0}.edit-site-list-header__right{position:relative}.edit-site .edit-site-list .interface-interface-skeleton__editor{min-width:100%}@media (min-width:782px){.edit-site .edit-site-list .interface-interface-skeleton__editor{min-width:0}}.edit-site .edit-site-list .interface-interface-skeleton__content{background:#fff;align-items:center;padding:16px}@media (min-width:782px){.edit-site .edit-site-list .interface-interface-skeleton__content{padding:72px}}.edit-site-list-table{width:100%;border:1px solid #ddd;border-radius:2px;margin:0;overflow:hidden;border-spacing:0;max-width:960px}.edit-site-list-table tr{display:flex;align-items:center;padding:16px;box-sizing:border-box;border-top:1px solid #f0f0f0;margin:0}.edit-site-list-table tr:first-child{border-top:0}@media (min-width:782px){.edit-site-list-table tr{padding:24px 32px}}.edit-site-list-table tr .edit-site-list-table-column:first-child{width:calc(60% - 18px);padding-left:24px}.edit-site-list-table tr .edit-site-list-table-column:first-child a{display:inline-block;text-decoration:none;font-weight:500;margin-bottom:4px}.edit-site-list-table tr .edit-site-list-table-column:nth-child(2){width:calc(40% - 18px)}.edit-site-list-table tr .edit-site-list-table-column:nth-child(3){min-width:36px;flex-shrink:0}.edit-site-list-table tr.edit-site-list-table-head{font-size:16px;font-weight:600;text-align:right;color:#1e1e1e;border-top:none;border-bottom:1px solid #ddd}.edit-site-list-table tr.edit-site-list-table-head th{font-weight:inherit}@media (min-width:782px){.edit-site-list.is-navigation-open .components-snackbar-list{margin-right:300px}}@media (min-width:782px){.edit-site-list__rename-modal .components-base-control{width:320px}}.edit-site-list__rename-modal .components-modal__header{border-bottom:none}.edit-site-list__rename-modal .components-modal__content:before{margin-bottom:4px}.edit-site-list__rename-modal-actions{margin-top:12px}.edit-site-template__actions button:not(:last-child){margin-left:8px}.edit-site-list-added-by__icon{display:flex;flex-shrink:0;position:relative;align-items:center;justify-content:center;width:32px;height:32px;background:#2f2f2f;border-radius:100%}.edit-site-list-added-by__icon svg{fill:#fff}.edit-site-list-added-by__icon.is-customized:after{position:absolute;content:"";background:var(--wp-admin-theme-color);height:8px;width:8px;outline:2px solid #fff;border-radius:100%;top:-1px;left:-1px}.edit-site-list-added-by__avatar{flex-shrink:0;overflow:hidden;border-radius:100%;background:#2f2f2f;width:32px;height:32px}.edit-site-list-added-by__avatar img{width:32px;height:32px;-o-object-fit:cover;object-fit:cover;opacity:0;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.edit-site-list-added-by__avatar img{transition-duration:0s;transition-delay:0s}}.edit-site-list-added-by__avatar.is-loaded img{opacity:1}.edit-site-new-template-dropdown .components-dropdown-menu__toggle{padding:6px 12px}@media (min-width:600px){.edit-site-new-template-dropdown .edit-site-new-template-dropdown__popover{min-width:300px}}.edit-site-sidebar{width:280px}.edit-site-sidebar>.components-panel{border-right:0;border-left:0;margin-bottom:-1px;margin-top:-1px}.edit-site-sidebar>.components-panel>.components-panel__header{background:#f0f0f0}.edit-site-sidebar .block-editor-block-inspector__card{margin:0}.edit-site-global-styles-sidebar{display:flex;flex-direction:column;min-height:100%}.edit-site-global-styles-sidebar__navigator-provider,.edit-site-global-styles-sidebar__panel{display:flex;flex-direction:column;flex:1}.edit-site-global-styles-sidebar__navigator-screen{flex:1}.edit-site-global-styles-sidebar .interface-complementary-area-header .components-button.has-icon{margin-right:0}.edit-site-global-styles-sidebar__reset-button.components-button{margin-right:auto}.edit-site-global-styles-sidebar .components-navigation__menu-title-heading{font-size:15.6px;font-weight:500}.edit-site-global-styles-sidebar .components-navigation__item>button span{font-weight:500}.edit-site-global-styles-sidebar .block-editor-panel-color-gradient-settings,.edit-site-typography-panel{border:0}.edit-site-global-styles-sidebar .components-tools-panel-item.single-column{grid-column:span 1}.edit-site-global-styles-sidebar__blocks-group{padding-top:24px;border-top:1px solid #e0e0e0}.edit-site-global-styles-sidebar__blocks-group-help{padding:0 16px}.edit-site-global-styles-color-palette-panel,.edit-site-global-styles-gradient-palette-panel{padding:16px}.edit-site-global-styles-sidebar__beta{display:inline-flex;margin-right:8px;padding:0 8px;height:24px;border-radius:2px;background-color:#1e1e1e;color:#fff;align-items:center;font-size:12px;line-height:1}.components-panel__header.edit-site-sidebar__panel-tabs{justify-content:flex-start;padding-right:0;padding-left:16px;border-top:0;margin-top:0}.components-panel__header.edit-site-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-site-sidebar__panel-tabs li{margin:0}.components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon{display:none;margin:0 auto 0 0;padding:0;min-width:24px;height:24px}@media (min-width:782px){.components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon{display:flex}}.components-button.edit-site-sidebar__panel-tab{border-radius:0;height:48px;background:transparent;border:none;box-shadow:none;cursor:pointer;display:inline-block;padding:3px 15px;margin-right:0;font-weight:500}.components-button.edit-site-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.components-button.edit-site-sidebar__panel-tab.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-site-sidebar__panel-tab.is-active:before{content:"";position:absolute;top:0;bottom:1px;left:0;right:0;border-bottom:4px solid transparent}.components-button.edit-site-sidebar__panel-tab:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-site-sidebar__panel-tab.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}@keyframes loadingpulse{0%{opacity:1}50%{opacity:.5}to{opacity:1}}.edit-site-navigation-inspector{padding:16px}.edit-site-navigation-inspector .block-editor-list-view-leaf .block-editor-list-view-block-contents{align-items:flex-start;white-space:normal}.edit-site-navigation-inspector .block-editor-list-view-block__title{margin-top:3px}.edit-site-navigation-inspector .block-editor-list-view-block__menu-cell{padding-left:0}.edit-site-navigation-inspector__placeholder{padding:8px;margin:8px;background-color:#f0f0f0;animation:loadingpulse 1s linear infinite;animation-delay:.5s}.edit-site-navigation-inspector__placeholder.is-child{margin-right:24px;width:50%}.edit-site-template-card{display:flex;align-items:flex-start}.edit-site-template-card__content{flex-grow:1;margin-bottom:4px}.edit-site-template-card__title{font-weight:500;line-height:24px}.edit-site-template-card__title.edit-site-template-card__title{margin:0 0 4px}.edit-site-template-card__description{font-size:13px;margin:0 0 16px}.edit-site-template-card__icon{flex:0 0 24px;margin-left:12px;width:24px;height:24px}h3.edit-site-template-card__template-areas-title{font-weight:500;margin:0 0 8px}.edit-site-template-card__template-areas-list,.edit-site-template-card__template-areas-list>li{margin:0}.edit-site-template-card__template-areas-item{width:100%}.edit-site-template-card__template-areas-item.components-button.has-icon{padding:0}html #wpadminbar{display:none}html.wp-toolbar{padding-top:0}.edit-site-editor__toggle-save-panel{z-index:100000;position:fixed!important;top:-9999em;bottom:auto;right:auto;left:0;width:280px;background-color:#fff;border:1px dotted #ddd;height:auto!important;padding:24px;display:flex;justify-content:center}.interface-interface-skeleton__actions:focus-within .edit-site-editor__toggle-save-panel,.interface-interface-skeleton__actions:focus .edit-site-editor__toggle-save-panel{top:auto;bottom:0}.edit-site-visual-editor{position:relative;height:100%;display:block}.edit-site-visual-editor iframe{display:block;width:100%;height:100%;background-color:#fff}.edit-site .components-editor-notices__snackbar{position:fixed;left:0;bottom:40px;padding-right:16px;padding-left:16px;right:0}@media (min-width:783px){.edit-site .components-editor-notices__snackbar{right:160px}}@media (min-width:783px){.auto-fold .edit-site .components-editor-notices__snackbar{right:36px}}@media (min-width:961px){.auto-fold .edit-site .components-editor-notices__snackbar{right:160px}}.folded .edit-site .components-editor-notices__snackbar{right:0}@media (min-width:783px){.folded .edit-site .components-editor-notices__snackbar{right:36px}}body.is-fullscreen-mode .edit-site .components-editor-notices__snackbar{right:0!important}.edit-site-template-details .edit-site-template-details__group{margin:0;padding:16px}.edit-site-template-details .edit-site-template-details__group+.edit-site-template-details__group{border-top:1px solid #ccc}.edit-site-template-details .edit-site-template-details__title{margin:0}.edit-site-template-details .edit-site-template-details__description{margin:12px 0 0;color:#757575}.edit-site-template-details .edit-site-template-details__group.edit-site-template-details__template-areas{padding:8px}.edit-site-template-details .edit-site-template-details__template-areas-item{position:relative}.edit-site-template-details .edit-site-template-details__template-areas-item .edit-site-template-details__template-areas-item-more{position:absolute;left:0;top:0;bottom:0;margin:auto 0}.edit-site-template-details .edit-site-template-details__revert{padding:12px 8px}.edit-site-template-details .edit-site-template-details__revert-button{height:auto;padding:4px 8px;text-align:right}.edit-site-template-details .edit-site-template-details__revert-button:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 3px #fff}.edit-site-template-details .edit-site-template-details__show-all-button.components-button{display:flex;justify-content:center;background:#1e1e1e;color:#fff;width:100%;height:44px;border-radius:0}.edit-site-template-details .edit-site-template-details__show-all-button.components-button:hover{color:#fff}.edit-site-template-details .edit-site-template-details__show-all-button.components-button:active{color:#ccc}.edit-site-template-details .edit-site-template-details__show-all-button.components-button:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 3px #fff}.edit-site-create-template-part-modal{z-index:1000001}@media (min-width:600px){.edit-site-create-template-part-modal .components-modal__frame{max-width:500px}}.edit-site-create-template-part-modal__modal-actions{padding-top:12px}.edit-site-create-template-part-modal__area-base-control .components-base-control__label{margin:16px 0 8px;cursor:auto}.edit-site-create-template-part-modal__area-radio-group{width:100%;border:1px solid #757575;border-radius:2px}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio{display:block;width:100%;height:100%;text-align:right;padding:12px}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover{margin:0;background-color:inherit;border-bottom:1px solid #757575;border-radius:0}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:not(:focus),.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:not(:focus),.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:focus){box-shadow:none}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:focus,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:focus,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:focus{border-bottom:1px solid #fff}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:last-of-type,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:last-of-type,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:last-of-type{border-bottom:none}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover),.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true]{color:#1e1e1e;cursor:auto}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover) .edit-site-create-template-part-modal__option-label div,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true] .edit-site-create-template-part-modal__option-label div{color:#949494}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label{padding-top:4px;white-space:normal}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label div{padding-top:4px;font-size:12px}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__checkbox{margin-right:auto;min-width:24px}.edit-site-editor__inserter-panel,.edit-site-editor__list-view-panel{height:100%;display:flex;flex-direction:column}.edit-site-editor__list-view-panel{min-width:350px}.edit-site-editor__inserter-panel-header{padding-top:8px;padding-left:8px;display:flex;justify-content:flex-end}.edit-site-editor__inserter-panel-content,.edit-site-editor__list-view-panel-content{height:calc(100% - 44px)}@media (min-width:782px){.edit-site-editor__inserter-panel-content{height:100%}}.edit-site-editor__list-view-panel-header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;height:48px;padding-right:16px;padding-left:4px}.edit-site-editor__list-view-panel-content{overflow-y:auto;padding:8px}.edit-site-welcome-guide{width:312px}.edit-site-welcome-guide__image{background:#00a0d2;margin:0 0 16px}.edit-site-welcome-guide__image>img{display:block;max-width:100%;-o-object-fit:cover;object-fit:cover}.edit-site-welcome-guide__heading{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:24px;line-height:1.4;margin:16px 0;padding:0 32px}.edit-site-welcome-guide__text{font-size:13px;line-height:1.4;margin:0 0 16px;padding:0 32px}.edit-site-welcome-guide__text img{vertical-align:bottom}.edit-site-welcome-guide__inserter-icon{margin:0 4px;vertical-align:text-top}.edit-site-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.edit-site-keyboard-shortcut-help-modal__main-shortcuts .edit-site-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.edit-site-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.edit-site-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.edit-site-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.edit-site-keyboard-shortcut-help-modal__shortcut:empty{display:none}.edit-site-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 1rem 0 0;text-align:left}.edit-site-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination+.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.edit-site-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.edit-site-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 .2rem 0 0}body.appearance_page_gutenberg-edit-site,body.site-editor-php,html.wp-toolbar{background:#fff}body.appearance_page_gutenberg-edit-site #wpcontent,body.site-editor-php #wpcontent{padding-right:0}body.appearance_page_gutenberg-edit-site #wpbody-content,body.site-editor-php #wpbody-content{padding-bottom:0}body.appearance_page_gutenberg-edit-site #wpbody-content>div:not(.edit-site):not(#screen-meta),body.appearance_page_gutenberg-edit-site #wpfooter,body.site-editor-php #wpbody-content>div:not(.edit-site):not(#screen-meta),body.site-editor-php #wpfooter{display:none}body.appearance_page_gutenberg-edit-site .a11y-speak-region,body.site-editor-php .a11y-speak-region{right:-1px;top:-1px}body.appearance_page_gutenberg-edit-site ul#adminmenu>li.current>a.current:after,body.appearance_page_gutenberg-edit-site ul#adminmenu a.wp-has-current-submenu:after,body.site-editor-php ul#adminmenu>li.current>a.current:after,body.site-editor-php ul#adminmenu a.wp-has-current-submenu:after{border-left-color:#fff}body.appearance_page_gutenberg-edit-site .media-frame select.attachment-filters:last-of-type,body.site-editor-php .media-frame select.attachment-filters:last-of-type{width:auto;max-width:100%}.components-modal__frame,.edit-site{box-sizing:border-box}.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before,.edit-site *,.edit-site :after,.edit-site :before{box-sizing:inherit}@media (min-width:600px){.edit-site{bottom:0;right:0;min-height:100vh;position:absolute;left:0;top:0}}.edit-site .interface-interface-skeleton{top:0}.edit-site .interface-complementary-area__pin-unpin-item.components-button{display:none}.edit-site .interface-interface-skeleton__content{background-color:#2f2f2f}@keyframes edit-post__fade-in-animation{0%{opacity:0}to{opacity:1}}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-site/style.css b/static/wp-includes/css/dist/edit-site/style.css
new file mode 100755
index 0000000..1ee1150
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-site/style.css
@@ -0,0 +1,2256 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.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 {
+ background: #fff;
+ padding-right: 4px;
+}
+.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;
+ }
+}
+
+@media (min-width: 782px) {
+ .components-panel__header + .interface-complementary-area-header {
+ margin-top: 0;
+ }
+}
+
+.interface-complementary-area {
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 600px) {
+ .interface-complementary-area {
+ -webkit-overflow-scrolling: touch;
+ }
+}
+@media (min-width: 782px) {
+ .interface-complementary-area {
+ width: 280px;
+ }
+}
+.interface-complementary-area .components-panel {
+ border: none;
+ position: relative;
+ z-index: 0;
+}
+.interface-complementary-area .components-panel__header {
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 48px;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 0;
+ }
+}
+.interface-complementary-area p {
+ margin-top: 0;
+}
+.interface-complementary-area h2 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area h3 {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area hr {
+ border-top: none;
+ border-bottom: 1px solid #f0f0f0;
+ 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;
+ }
+}
+
+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: row;
+ 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__editor {
+ display: flex;
+ flex-direction: column;
+ flex: 0 1 100%;
+ overflow: hidden;
+}
+
+.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;
+ }
+}
+
+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;
+}
+@media (min-width: 782px) {
+ .has-footer .interface-interface-skeleton__body {
+ padding-bottom: 25px;
+ }
+}
+
+.interface-interface-skeleton__content {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow: auto;
+ z-index: 20;
+}
+
+.interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ display: block;
+ 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__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ position: relative !important;
+ z-index: 90;
+ width: auto;
+ }
+}
+
+.interface-interface-skeleton__sidebar {
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__sidebar {
+ border-left: 1px solid #e0e0e0;
+ }
+}
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar {
+ border-right: 1px solid #e0e0e0;
+ }
+}
+
+.interface-interface-skeleton__header {
+ flex-shrink: 0;
+ height: auto;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 30;
+ color: #1e1e1e;
+}
+
+.interface-interface-skeleton__footer {
+ height: auto;
+ flex-shrink: 0;
+ border-top: 1px solid #e0e0e0;
+ color: #1e1e1e;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ background-color: #fff;
+ z-index: 90;
+ display: none;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__footer {
+ display: flex;
+ }
+}
+.interface-interface-skeleton__footer .block-editor-block-breadcrumb {
+ z-index: 30;
+ display: flex;
+ background: #fff;
+ height: 24px;
+ align-items: center;
+ font-size: 13px;
+ padding: 0 18px;
+}
+
+.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;
+}
+
+.interface-more-menu-dropdown {
+ margin-left: -4px;
+}
+.interface-more-menu-dropdown .components-button {
+ width: auto;
+ padding: 0 2px;
+}
+@media (min-width: 600px) {
+ .interface-more-menu-dropdown {
+ margin-left: 0;
+ }
+ .interface-more-menu-dropdown .components-button {
+ padding: 0 4px;
+ }
+}
+
+.interface-more-menu-dropdown__content .components-popover__content {
+ min-width: 280px;
+}
+@media (min-width: 480px) {
+ .interface-more-menu-dropdown__content .components-popover__content {
+ width: auto;
+ max-width: 480px;
+ }
+}
+.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.components-popover.interface-more-menu-dropdown__content {
+ z-index: 99998;
+}
+
+.interface-pinned-items {
+ display: flex;
+}
+.interface-pinned-items .components-button:not(:first-child) {
+ display: none;
+}
+@media (min-width: 600px) {
+ .interface-pinned-items .components-button:not(:first-child) {
+ display: flex;
+ }
+}
+.interface-pinned-items .components-button {
+ margin-left: 4px;
+}
+.interface-pinned-items .components-button svg {
+ max-width: 24px;
+ max-height: 24px;
+}
+
+@media (min-width: 600px) {
+ .interface-preferences-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .interface-preferences-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .interface-preferences-modal {
+ height: 70%;
+ }
+}
+@media (max-width: 781px) {
+ .interface-preferences-modal .components-modal__content {
+ padding: 0;
+ }
+ .interface-preferences-modal .components-modal__content::before {
+ content: none;
+ }
+}
+
+.interface-preferences__tabs .components-tab-panel__tabs {
+ position: absolute;
+ top: 84px;
+ left: 16px;
+ width: 160px;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
+ border-radius: 2px;
+ font-weight: 400;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active {
+ background: #f0f0f0;
+ box-shadow: none;
+ font-weight: 500;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.interface-preferences__tabs .components-tab-panel__tab-content {
+ padding-left: 24px;
+ margin-left: 160px;
+}
+
+@media (max-width: 781px) {
+ .interface-preferences__provider {
+ height: 100%;
+ }
+}
+.interface-preferences-modal__section {
+ margin: 0 0 2.5rem 0;
+}
+.interface-preferences-modal__section:last-child {
+ margin: 0;
+}
+
+.interface-preferences-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+ margin-top: 0;
+}
+
+.interface-preferences-modal__section-description {
+ margin: -8px 0 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.interface-preferences-modal__option .components-base-control .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin-bottom: 0;
+}
+.interface-preferences-modal__option .components-base-control .components-base-control__field > label {
+ flex-grow: 1;
+ padding: 0.6rem 0 0.6rem 10px;
+}
+.interface-preferences-modal__option .components-base-control__help {
+ margin: -8px 0 8px 58px;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.edit-site-block-editor__editor-styles-wrapper .components-button {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ padding: 6px 12px;
+}
+.edit-site-block-editor__editor-styles-wrapper .components-button.is-tertiary, .edit-site-block-editor__editor-styles-wrapper .components-button.has-icon {
+ padding: 6px;
+}
+
+.edit-site-visual-editor {
+ position: relative;
+ background-color: #2f2f2f;
+ align-items: center;
+}
+.edit-site-visual-editor.is-focus-mode {
+ padding: 48px;
+}
+.edit-site-visual-editor.is-focus-mode .edit-site-visual-editor__editor-canvas {
+ border-radius: 2px;
+}
+.edit-site-visual-editor.is-focus-mode .components-resizable-box__container {
+ overflow: visible;
+}
+.edit-site-visual-editor .components-resizable-box__container {
+ margin: 0 auto;
+ overflow: auto;
+}
+
+.edit-site-visual-editor__back-button {
+ position: absolute;
+ top: 8px;
+ left: 8px;
+ color: #fff;
+}
+.edit-site-visual-editor__back-button:active:not([aria-disabled=true]), .edit-site-visual-editor__back-button:focus:not([aria-disabled=true]), .edit-site-visual-editor__back-button:hover {
+ color: #f0f0f0;
+}
+
+.resizable-editor__drag-handle {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ padding: 0;
+ margin: auto 0;
+ width: 4px;
+ height: 100px;
+ -webkit-appearance: none;
+ appearance: none;
+ cursor: ew-resize;
+ outline: none;
+ background: #949494;
+ border-radius: 2px;
+ border: 0;
+}
+.resizable-editor__drag-handle.is-left {
+ left: -16px;
+}
+.resizable-editor__drag-handle.is-right {
+ right: -16px;
+}
+.resizable-editor__drag-handle:hover, .resizable-editor__drag-handle:active {
+ background: #ccc;
+}
+.resizable-editor__drag-handle:focus {
+ box-shadow: 0 0 0 1px #2f2f2f, 0 0 0 calc(var(--wp-admin-border-width-focus) + 1px) var(--wp-admin-theme-color);
+}
+
+.edit-site-code-editor {
+ position: relative;
+ width: 100%;
+ background-color: #fff;
+ flex-grow: 1;
+}
+.edit-site-code-editor__body {
+ width: 100%;
+ padding: 0 12px 12px 12px;
+ max-width: 1080px;
+ margin-left: auto;
+ margin-right: auto;
+}
+@media (min-width: 960px) {
+ .edit-site-code-editor__body {
+ padding: 16px 24px 96px 24px;
+ padding: 0 24px 24px 24px;
+ }
+}
+.edit-site-code-editor__toolbar {
+ position: sticky;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ right: 0;
+ display: flex;
+ background: rgba(255, 255, 255, 0.8);
+ padding: 4px 12px;
+}
+@media (min-width: 600px) {
+ .edit-site-code-editor__toolbar {
+ padding: 12px;
+ }
+}
+@media (min-width: 960px) {
+ .edit-site-code-editor__toolbar {
+ padding: 12px 24px;
+ }
+}
+.edit-site-code-editor__toolbar h2 {
+ line-height: 36px;
+ margin: 0 auto 0 0;
+ font-size: 13px;
+ color: #1e1e1e;
+}
+.edit-site-code-editor__toolbar .components-button svg {
+ order: 1;
+}
+
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ border: 1px solid #949494;
+ border-radius: 0;
+ display: block;
+ margin: 0;
+ width: 100%;
+ box-shadow: none;
+ resize: none;
+ overflow: hidden;
+ font-family: Menlo, Consolas, monaco, monospace;
+ line-height: 2.4;
+ min-height: 200px;
+ transition: border 0.1s ease-out, box-shadow 0.1s linear;
+ padding: 16px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px !important;
+}
+@media (prefers-reduced-motion: reduce) {
+ textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ padding: 24px;
+ }
+}
+@media (min-width: 600px) {
+ textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area {
+ font-size: 15px !important;
+ }
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-moz-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+ opacity: 1;
+}
+textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.edit-site-global-styles-preview {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ line-height: 1;
+ cursor: pointer;
+}
+
+.edit-site-global-styles-preview__iframe {
+ max-width: 100%;
+ display: block;
+}
+
+.edit-site-typography-panel__preview {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ min-height: 100px;
+ margin-bottom: 16px;
+ background: #f0f0f0;
+ border-radius: 2px;
+}
+
+.edit-site-global-styles-screen-typography {
+ margin: 16px;
+}
+
+.edit-site-global-styles-screen-typography__indicator {
+ height: 24px;
+ width: 24px;
+ font-size: 14px;
+ display: flex !important;
+ align-items: center;
+ justify-content: center;
+ border-radius: 2px;
+}
+
+.edit-site-global-styles-screen-colors {
+ margin: 16px;
+}
+.edit-site-global-styles-screen-colors .component-color-indicator {
+ background: linear-gradient(-45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
+}
+
+.edit-site-global-styles-header__description,
+.edit-site-block-types-search {
+ padding: 0 16px;
+}
+
+.edit-site-global-styles-subtitle {
+ margin-bottom: 0 !important;
+ text-transform: uppercase;
+ font-weight: 500 !important;
+ font-size: 11px !important;
+}
+
+.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle {
+ margin-right: 16px;
+ margin-left: 16px;
+ width: unset;
+}
+.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle .components-toggle-group-control {
+ min-height: 32px;
+}
+
+.edit-site-screen-text-color__control,
+.edit-site-screen-link-color__control,
+.edit-site-screen-background-color__control {
+ padding: 16px;
+}
+
+.edit-site-global-styles-variations_item {
+ box-sizing: border-box;
+}
+.edit-site-global-styles-variations_item .edit-site-global-styles-variations_item-preview {
+ padding: 2px;
+ border-radius: 2px;
+ border: #e0e0e0 1px solid;
+}
+.edit-site-global-styles-variations_item.is-active .edit-site-global-styles-variations_item-preview {
+ border: #1e1e1e 1px solid;
+}
+.edit-site-global-styles-variations_item:hover .edit-site-global-styles-variations_item-preview {
+ border: var(--wp-admin-theme-color) 1px solid;
+}
+.edit-site-global-styles-variations_item:focus .edit-site-global-styles-variations_item-preview {
+ border: var(--wp-admin-theme-color) 1px solid;
+}
+
+.edit-site-global-styles-icon-with-current-color {
+ fill: currentColor;
+}
+
+.edit-site-global-styles__color-indicator-wrapper {
+ height: 24px;
+}
+
+.edit-site-header {
+ align-items: center;
+ background-color: #fff;
+ display: flex;
+ height: 60px;
+ box-sizing: border-box;
+ width: 100%;
+ justify-content: space-between;
+}
+body.is-fullscreen-mode .edit-site-header {
+ padding-left: 60px;
+ transition: padding-left 20ms linear;
+ transition-delay: 80ms;
+}
+@media (prefers-reduced-motion: reduce) {
+ body.is-fullscreen-mode .edit-site-header {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-header .edit-site-header_start,
+.edit-site-header .edit-site-header_end {
+ display: flex;
+}
+.edit-site-header .edit-site-header_center {
+ display: flex;
+ align-items: center;
+ height: 100%;
+ flex-grow: 1;
+ justify-content: center;
+ min-width: 0;
+}
+.edit-site-header .edit-site-header_end {
+ justify-content: flex-end;
+}
+
+body.is-navigation-sidebar-open .edit-site-header {
+ padding-left: 0;
+ transition: padding-left 20ms linear;
+ transition-delay: 0ms;
+}
+@media (prefers-reduced-motion: reduce) {
+ body.is-navigation-sidebar-open .edit-site-header {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+@media (max-width: 959px) {
+ body.is-navigation-sidebar-open .edit-site-header .edit-site-header-toolbar__inserter-toggle ~ .components-button,
+body.is-navigation-sidebar-open .edit-site-header .edit-site-header_end .components-button:not(.is-primary) {
+ display: none;
+ }
+ body.is-navigation-sidebar-open .edit-site-header .edit-site-save-button__button {
+ margin-right: 0;
+ }
+}
+.edit-site-header__toolbar {
+ display: flex;
+ align-items: center;
+ padding-left: 8px;
+}
+@media (min-width: 600px) {
+ .edit-site-header__toolbar {
+ padding-left: 24px;
+ }
+}
+@media (min-width: 1280px) {
+ .edit-site-header__toolbar {
+ padding-right: 8px;
+ }
+}
+.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle {
+ margin-right: 8px;
+ min-width: 32px;
+ width: 32px;
+ height: 32px;
+ padding: 0;
+}
+.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg {
+ transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle.is-pressed svg {
+ transform: rotate(45deg);
+}
+
+.edit-site-header__toolbar-switchers {
+ align-items: center;
+ display: flex;
+}
+
+.edit-site-header__toolbar-switchers-separator {
+ margin: 0 -6px 0;
+}
+
+/**
+ * Buttons in the Toolbar
+ */
+.edit-site-header__actions {
+ display: inline-flex;
+ align-items: center;
+ padding-right: 4px;
+}
+.edit-site-header__actions .interface-pinned-items {
+ display: none;
+}
+@media (min-width: 782px) {
+ .edit-site-header__actions .interface-pinned-items {
+ display: inline-flex;
+ }
+}
+.edit-site-header__actions .editor-post-saved-state,
+.edit-site-header__actions .components-button.components-button {
+ margin-right: 4px;
+}
+@media (min-width: 600px) {
+ .edit-site-header__actions .editor-post-saved-state,
+.edit-site-header__actions .components-button.components-button {
+ margin-right: 12px;
+ }
+}
+.edit-site-header__actions .editor-post-saved-state,
+.edit-site-header__actions .components-button.is-tertiary {
+ padding: 0 6px;
+}
+.edit-site-header__actions .edit-site-more-menu .components-button,
+.edit-site-header__actions .interface-pinned-items .components-button {
+ margin-right: 0;
+}
+@media (min-width: 600px) {
+ .edit-site-header__actions {
+ padding-right: 16px;
+ }
+}
+
+.edit-site-header__actions-more-menu {
+ margin-left: -4px;
+}
+.edit-site-header__actions-more-menu .components-icon-button {
+ padding: 8px 2px;
+ width: auto;
+}
+@media (min-width: 600px) {
+ .edit-site-header__actions-more-menu {
+ margin-left: 4px;
+ }
+ .edit-site-header__actions-more-menu .components-icon-button {
+ padding: 8px 4px;
+ }
+}
+
+.show-icon-labels .edit-site-header .components-button.has-icon {
+ width: auto;
+}
+.show-icon-labels .edit-site-header .components-button.has-icon svg {
+ display: none;
+}
+.show-icon-labels .edit-site-header .components-button.has-icon::after {
+ content: attr(aria-label);
+}
+.show-icon-labels .edit-site-header .components-button.has-icon[aria-disabled=true] {
+ background-color: transparent;
+}
+.show-icon-labels .edit-site-header .is-tertiary:active {
+ box-shadow: 0 0 0 1.5px var(--wp-admin-theme-color);
+ background-color: transparent;
+}
+.show-icon-labels .edit-site-header .edit-site-save-button__button {
+ padding-left: 6px;
+ padding-right: 6px;
+ margin-right: 4px;
+}
+.show-icon-labels .edit-site-header .block-editor-post-preview__button-toggle {
+ margin-right: 4px;
+}
+.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle,
+.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info {
+ height: 36px;
+ padding: 0 6px;
+}
+.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle::after,
+.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info::after {
+ content: none;
+}
+
+.edit-site-document-actions {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding: 0 8px;
+ height: 100%;
+ min-width: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ min-width: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown {
+ display: inline-flex;
+ margin-left: 4px;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown .components-button {
+ min-width: 0;
+ padding: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title-wrapper > h1 {
+ margin: 0;
+ min-width: 0;
+}
+.edit-site-document-actions .edit-site-document-actions__title {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.edit-site-document-actions .edit-site-document-actions__secondary-item {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 0;
+ opacity: 0;
+ padding: 0;
+ transition: all ease 0.2s;
+ background: #e0e0e0;
+ border-radius: 2px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-document-actions .edit-site-document-actions__secondary-item {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-document-actions.has-secondary-label .edit-site-document-actions__secondary-item {
+ opacity: 1;
+ padding: 0 4px;
+ max-width: 180px;
+ margin-left: 6px;
+}
+
+.edit-site-document-actions__info-dropdown > .components-popover__content > div {
+ padding: 0;
+ min-width: 240px;
+}
+
+.edit-site-navigation-toggle {
+ align-items: center;
+ background: #1e1e1e;
+ border-radius: 0;
+ display: flex;
+ position: absolute;
+ z-index: 31;
+ height: 60px;
+ width: 60px;
+}
+
+.edit-site-navigation-toggle__button.components-button {
+ align-items: center;
+ background: #1e1e1e;
+ border-radius: 0;
+ color: #fff;
+ height: 61px;
+ width: 60px;
+ z-index: 1;
+ margin-bottom: -1px;
+ min-width: 60px;
+}
+.edit-site-navigation-toggle__button.components-button:hover, .edit-site-navigation-toggle__button.components-button:active {
+ color: #fff;
+}
+.edit-site-navigation-toggle__button.components-button:focus {
+ box-shadow: none;
+}
+.edit-site-navigation-toggle__button.components-button::before {
+ transition: box-shadow 0.1s ease;
+ content: "";
+ display: block;
+ position: absolute;
+ top: 9px;
+ right: 9px;
+ bottom: 9px;
+ left: 9px;
+ border-radius: 4px;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-navigation-toggle__button.components-button::before {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-navigation-toggle__button.components-button:hover::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #757575;
+}
+.edit-site-navigation-toggle__button.components-button.has-icon:hover::before {
+ box-shadow: none;
+}
+.edit-site-navigation-toggle__button.components-button:focus::before {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) rgba(255, 255, 255, 0.1), inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.edit-site-navigation-toggle__button.components-button .edit-site-navigation-toggle__site-icon {
+ width: 36px;
+ height: 36px;
+ border-radius: 2px;
+ -o-object-fit: cover;
+ object-fit: cover;
+ margin-top: -1px;
+}
+
+.edit-site-navigation-panel {
+ height: 100%;
+ position: relative;
+ width: 0;
+ overflow: hidden;
+ background: #1e1e1e;
+ color: #fff;
+ transition: width 100ms linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-navigation-panel {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton.has-footer .edit-site-navigation-panel {
+ height: calc(100% - 25px);
+ }
+}
+
+.edit-site-navigation-panel__inner {
+ position: relative;
+ width: 300px;
+ height: 100%;
+ overflow: hidden;
+ visibility: hidden;
+ transition: visibility 100ms linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-navigation-panel__inner {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.edit-site-navigation-panel.is-open {
+ width: 300px;
+}
+.edit-site-navigation-panel.is-open .edit-site-navigation-panel__inner {
+ visibility: visible;
+}
+
+.edit-site-navigation-panel__site-title-container {
+ height: 60px;
+ padding-left: 60px;
+ margin: 0 16px 0 8px;
+ display: flex;
+ align-items: center;
+}
+
+.edit-site-navigation-panel__site-title {
+ font-style: normal;
+ font-weight: 600;
+ font-size: 14px;
+ /* Matches menu items */
+ line-height: 20px;
+ color: #ddd;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ overflow: hidden;
+}
+
+.edit-site-navigation-panel__scroll-container {
+ overflow-x: hidden;
+ overflow-y: auto;
+ height: calc(100% - 60px);
+}
+
+.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary {
+ height: 36px;
+ margin-top: 24px;
+ padding: 8px 16px 8px 8px;
+}
+.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary:focus:not(:disabled) {
+ border-bottom-color: transparent;
+}
+
+.edit-site-navigation-panel__preview {
+ display: none;
+ border: 1px solid #ccc;
+ width: 300px;
+ padding: 16px;
+ background: #fff;
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
+ border-radius: 2px;
+ position: absolute;
+ top: 73px;
+ left: 312px;
+ color: #1e1e1e;
+ z-index: 32;
+}
+@media (min-width: 782px) {
+ .edit-site-navigation-panel__preview {
+ display: block;
+ }
+}
+
+.edit-site-navigation-panel__template-item {
+ display: block;
+}
+.edit-site-navigation-panel__template-item .components-button {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ justify-content: center;
+ height: auto;
+ min-height: 36px;
+ text-align: left;
+ padding-left: 16px;
+ padding-right: 16px;
+ color: inherit;
+}
+
+.edit-site-navigation-panel__template-item-title {
+ font-size: 14px;
+ line-height: 20px;
+}
+.edit-site-navigation-panel__template-item-title em {
+ margin-right: 1ch;
+}
+
+.edit-site-navigation-panel__template-parts .components-navigation__menu-title-heading {
+ text-transform: capitalize;
+}
+
+.edit-site-navigation-panel__template-part-item .components-navigation__item-title {
+ text-transform: capitalize;
+}
+
+.components-navigation__item + .edit-site-navigation-panel__template-item {
+ margin-top: 16px;
+}
+
+.edit-site-navigation-panel__template-item + .edit-site-navigation-panel__template-item {
+ margin-top: 8px;
+}
+
+.edit-site-navigation-panel__info-wrapper {
+ padding: 4px 0;
+}
+
+.edit-site-navigation-panel__template-item-description {
+ padding-top: 8px;
+ font-size: 12px;
+ line-height: 16px;
+}
+
+.edit-site-navigation-panel__new-template-dropdown {
+ margin: 0 0 0 12px;
+}
+.edit-site-navigation-panel__new-template-dropdown button {
+ margin: 0;
+}
+
+@media (min-width: 600px) {
+ .edit-site-navigation-panel__new-template-popover {
+ min-width: 300px;
+ }
+}
+
+.edit-site-list-header {
+ position: relative;
+ align-items: center;
+ background-color: #fff;
+ display: flex;
+ height: 60px;
+ box-sizing: border-box;
+ width: 100%;
+ justify-content: flex-end;
+ padding-right: 16px;
+}
+body.is-fullscreen-mode .edit-site-list-header {
+ padding-left: 60px;
+ transition: padding-left 20ms linear;
+ transition-delay: 80ms;
+}
+@media (prefers-reduced-motion: reduce) {
+ body.is-fullscreen-mode .edit-site-list-header {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-list-header .edit-site-list-header__title {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ text-align: center;
+ font-size: 20px;
+ padding: 0;
+ margin: 0;
+}
+
+.edit-site-list-header__right {
+ position: relative;
+}
+
+.edit-site .edit-site-list .interface-interface-skeleton__editor {
+ min-width: 100%;
+}
+@media (min-width: 782px) {
+ .edit-site .edit-site-list .interface-interface-skeleton__editor {
+ min-width: 0;
+ }
+}
+.edit-site .edit-site-list .interface-interface-skeleton__content {
+ background: #fff;
+ align-items: center;
+ padding: 16px;
+}
+@media (min-width: 782px) {
+ .edit-site .edit-site-list .interface-interface-skeleton__content {
+ padding: 72px;
+ }
+}
+
+.edit-site-list-table {
+ width: 100%;
+ border: 1px solid #ddd;
+ border-radius: 2px;
+ margin: 0;
+ overflow: hidden;
+ border-spacing: 0;
+ max-width: 960px;
+}
+.edit-site-list-table tr {
+ display: flex;
+ align-items: center;
+ padding: 16px;
+ box-sizing: border-box;
+ border-top: 1px solid #f0f0f0;
+ margin: 0;
+}
+.edit-site-list-table tr:first-child {
+ border-top: 0;
+}
+@media (min-width: 782px) {
+ .edit-site-list-table tr {
+ padding: 24px 32px;
+ }
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(1) {
+ width: calc(60% - 18px);
+ padding-right: 24px;
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(1) a {
+ display: inline-block;
+ text-decoration: none;
+ font-weight: 500;
+ margin-bottom: 4px;
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(2) {
+ width: calc(40% - 18px);
+}
+.edit-site-list-table tr .edit-site-list-table-column:nth-child(3) {
+ min-width: 36px;
+ flex-shrink: 0;
+}
+.edit-site-list-table tr.edit-site-list-table-head {
+ font-size: 16px;
+ font-weight: 600;
+ text-align: left;
+ color: #1e1e1e;
+ border-top: none;
+ border-bottom: 1px solid #ddd;
+}
+.edit-site-list-table tr.edit-site-list-table-head th {
+ font-weight: inherit;
+}
+
+@media (min-width: 782px) {
+ .edit-site-list.is-navigation-open .components-snackbar-list {
+ margin-left: 300px;
+ }
+}
+
+@media (min-width: 782px) {
+ .edit-site-list__rename-modal .components-base-control {
+ width: 320px;
+ }
+}
+.edit-site-list__rename-modal .components-modal__header {
+ border-bottom: none;
+}
+.edit-site-list__rename-modal .components-modal__content::before {
+ margin-bottom: 4px;
+}
+
+.edit-site-list__rename-modal-actions {
+ margin-top: 12px;
+}
+
+.edit-site-template__actions button:not(:last-child) {
+ margin-right: 8px;
+}
+
+.edit-site-list-added-by__icon {
+ display: flex;
+ flex-shrink: 0;
+ position: relative;
+ align-items: center;
+ justify-content: center;
+ width: 32px;
+ height: 32px;
+ background: #2f2f2f;
+ border-radius: 100%;
+}
+.edit-site-list-added-by__icon svg {
+ fill: #fff;
+}
+.edit-site-list-added-by__icon.is-customized::after {
+ position: absolute;
+ content: "";
+ background: var(--wp-admin-theme-color);
+ height: 8px;
+ width: 8px;
+ outline: 2px solid #fff;
+ border-radius: 100%;
+ top: -1px;
+ right: -1px;
+}
+
+.edit-site-list-added-by__avatar {
+ flex-shrink: 0;
+ overflow: hidden;
+ border-radius: 100%;
+ background: #2f2f2f;
+ width: 32px;
+ height: 32px;
+}
+.edit-site-list-added-by__avatar img {
+ width: 32px;
+ height: 32px;
+ -o-object-fit: cover;
+ object-fit: cover;
+ opacity: 0;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-site-list-added-by__avatar img {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-site-list-added-by__avatar.is-loaded img {
+ opacity: 1;
+}
+
+.edit-site-new-template-dropdown .components-dropdown-menu__toggle {
+ padding: 6px 12px;
+}
+@media (min-width: 600px) {
+ .edit-site-new-template-dropdown .edit-site-new-template-dropdown__popover {
+ min-width: 300px;
+ }
+}
+
+.edit-site-sidebar {
+ width: 280px;
+}
+.edit-site-sidebar > .components-panel {
+ border-left: 0;
+ border-right: 0;
+ margin-bottom: -1px;
+ margin-top: -1px;
+}
+.edit-site-sidebar > .components-panel > .components-panel__header {
+ background: #f0f0f0;
+}
+.edit-site-sidebar .block-editor-block-inspector__card {
+ margin: 0;
+}
+
+.edit-site-global-styles-sidebar {
+ display: flex;
+ flex-direction: column;
+ min-height: 100%;
+}
+.edit-site-global-styles-sidebar__panel, .edit-site-global-styles-sidebar__navigator-provider {
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+}
+.edit-site-global-styles-sidebar__navigator-screen {
+ flex: 1;
+}
+
+.edit-site-global-styles-sidebar .interface-complementary-area-header .components-button.has-icon {
+ margin-left: 0;
+}
+
+.edit-site-global-styles-sidebar__reset-button.components-button {
+ margin-left: auto;
+}
+
+.edit-site-global-styles-sidebar .components-navigation__menu-title-heading {
+ font-size: 15.6px;
+ font-weight: 500;
+}
+
+.edit-site-global-styles-sidebar .components-navigation__item > button span {
+ font-weight: 500;
+}
+
+.edit-site-typography-panel,
+.edit-site-global-styles-sidebar .block-editor-panel-color-gradient-settings {
+ border: 0;
+}
+
+.edit-site-global-styles-sidebar .components-tools-panel-item.single-column {
+ grid-column: span 1;
+}
+
+.edit-site-global-styles-sidebar__blocks-group {
+ padding-top: 24px;
+ border-top: 1px solid #e0e0e0;
+}
+
+.edit-site-global-styles-sidebar__blocks-group-help {
+ padding: 0 16px;
+}
+
+.edit-site-global-styles-color-palette-panel,
+.edit-site-global-styles-gradient-palette-panel {
+ padding: 16px;
+}
+
+.edit-site-global-styles-sidebar__beta {
+ display: inline-flex;
+ margin-left: 8px;
+ padding: 0 8px;
+ height: 24px;
+ border-radius: 2px;
+ background-color: #1e1e1e;
+ color: #fff;
+ align-items: center;
+ font-size: 12px;
+ line-height: 1;
+}
+
+.components-panel__header.edit-site-sidebar__panel-tabs {
+ justify-content: flex-start;
+ padding-left: 0;
+ padding-right: 16px;
+ border-top: 0;
+ margin-top: 0;
+}
+.components-panel__header.edit-site-sidebar__panel-tabs ul {
+ display: flex;
+}
+.components-panel__header.edit-site-sidebar__panel-tabs li {
+ margin: 0;
+}
+.components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon {
+ display: none;
+ margin: 0 0 0 auto;
+ padding: 0;
+ min-width: 24px;
+ height: 24px;
+}
+@media (min-width: 782px) {
+ .components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon {
+ display: flex;
+ }
+}
+
+.components-button.edit-site-sidebar__panel-tab {
+ border-radius: 0;
+ height: 48px;
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ padding: 3px 15px;
+ margin-left: 0;
+ font-weight: 500;
+}
+.components-button.edit-site-sidebar__panel-tab::after {
+ content: attr(data-label);
+ display: block;
+ font-weight: 600;
+ height: 0;
+ overflow: hidden;
+ speak: none;
+ visibility: hidden;
+}
+.components-button.edit-site-sidebar__panel-tab.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-site-sidebar__panel-tab.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ right: 0;
+ left: 0;
+ border-bottom: 4px solid transparent;
+}
+.components-button.edit-site-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+ z-index: 1;
+}
+.components-button.edit-site-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+@keyframes loadingpulse {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0.5;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.edit-site-navigation-inspector {
+ padding: 16px;
+}
+.edit-site-navigation-inspector .block-editor-list-view-leaf .block-editor-list-view-block-contents {
+ align-items: flex-start;
+ white-space: normal;
+}
+.edit-site-navigation-inspector .block-editor-list-view-block__title {
+ margin-top: 3px;
+}
+.edit-site-navigation-inspector .block-editor-list-view-block__menu-cell {
+ padding-right: 0;
+}
+
+.edit-site-navigation-inspector__placeholder {
+ padding: 8px;
+ margin: 8px;
+ background-color: #f0f0f0;
+ animation: loadingpulse 1s linear infinite;
+ animation-delay: 0.5s;
+}
+.edit-site-navigation-inspector__placeholder.is-child {
+ margin-left: 24px;
+ width: 50%;
+}
+
+.edit-site-template-card {
+ display: flex;
+ align-items: flex-start;
+}
+
+.edit-site-template-card__content {
+ flex-grow: 1;
+ margin-bottom: 4px;
+}
+
+.edit-site-template-card__title {
+ font-weight: 500;
+ line-height: 24px;
+}
+.edit-site-template-card__title.edit-site-template-card__title {
+ margin: 0 0 4px;
+}
+
+.edit-site-template-card__description {
+ font-size: 13px;
+ margin: 0 0 16px;
+}
+
+.edit-site-template-card__icon {
+ flex: 0 0 24px;
+ margin-right: 12px;
+ width: 24px;
+ height: 24px;
+}
+
+h3.edit-site-template-card__template-areas-title {
+ font-weight: 500;
+ margin: 0 0 8px;
+}
+
+.edit-site-template-card__template-areas-list {
+ margin: 0;
+}
+.edit-site-template-card__template-areas-list > li {
+ margin: 0;
+}
+
+.edit-site-template-card__template-areas-item {
+ width: 100%;
+}
+.edit-site-template-card__template-areas-item.components-button.has-icon {
+ padding: 0;
+}
+
+html #wpadminbar {
+ display: none;
+}
+
+html.wp-toolbar {
+ padding-top: 0;
+}
+
+.edit-site-editor__toggle-save-panel {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ left: auto;
+ right: 0;
+ width: 280px;
+ background-color: #fff;
+ border: 1px dotted #ddd;
+ height: auto !important;
+ padding: 24px;
+ display: flex;
+ justify-content: center;
+}
+.interface-interface-skeleton__actions:focus .edit-site-editor__toggle-save-panel, .interface-interface-skeleton__actions:focus-within .edit-site-editor__toggle-save-panel {
+ top: auto;
+ bottom: 0;
+}
+
+.edit-site-visual-editor {
+ position: relative;
+ height: 100%;
+ display: block;
+}
+.edit-site-visual-editor iframe {
+ display: block;
+ width: 100%;
+ height: 100%;
+ background-color: #fff;
+}
+
+.edit-site .components-editor-notices__snackbar {
+ position: fixed;
+ right: 0;
+ bottom: 40px;
+ padding-left: 16px;
+ padding-right: 16px;
+}
+
+.edit-site .components-editor-notices__snackbar {
+ /* Set left position when auto-fold is not on the body element. */
+ left: 0;
+}
+@media (min-width: 783px) {
+ .edit-site .components-editor-notices__snackbar {
+ left: 160px;
+ }
+}
+
+.auto-fold .edit-site .components-editor-notices__snackbar {
+ /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
+}
+@media (min-width: 783px) {
+ .auto-fold .edit-site .components-editor-notices__snackbar {
+ left: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .edit-site .components-editor-notices__snackbar {
+ left: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .edit-site .components-editor-notices__snackbar {
+ left: 0;
+}
+@media (min-width: 783px) {
+ .folded .edit-site .components-editor-notices__snackbar {
+ left: 36px;
+ }
+}
+
+body.is-fullscreen-mode .edit-site .components-editor-notices__snackbar {
+ left: 0 !important;
+}
+
+.edit-site-template-details .edit-site-template-details__group {
+ margin: 0;
+ padding: 16px;
+}
+.edit-site-template-details .edit-site-template-details__group + .edit-site-template-details__group {
+ border-top: 1px solid #ccc;
+}
+.edit-site-template-details .edit-site-template-details__title {
+ margin: 0;
+}
+.edit-site-template-details .edit-site-template-details__description {
+ margin: 12px 0 0;
+ color: #757575;
+}
+.edit-site-template-details .edit-site-template-details__group.edit-site-template-details__template-areas {
+ padding: 8px;
+}
+.edit-site-template-details .edit-site-template-details__template-areas-item {
+ position: relative;
+}
+.edit-site-template-details .edit-site-template-details__template-areas-item .edit-site-template-details__template-areas-item-more {
+ position: absolute;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ margin: auto 0;
+}
+.edit-site-template-details .edit-site-template-details__revert {
+ padding: 12px 8px;
+}
+.edit-site-template-details .edit-site-template-details__revert-button {
+ height: auto;
+ padding: 4px 8px;
+ text-align: left;
+}
+.edit-site-template-details .edit-site-template-details__revert-button:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 3px #fff;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button {
+ display: flex;
+ justify-content: center;
+ background: #1e1e1e;
+ color: #fff;
+ width: 100%;
+ height: 44px;
+ border-radius: 0;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button:hover {
+ color: #fff;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button:active {
+ color: #ccc;
+}
+.edit-site-template-details .edit-site-template-details__show-all-button.components-button:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 3px #fff;
+}
+
+.edit-site-create-template-part-modal {
+ z-index: 1000001;
+}
+@media (min-width: 600px) {
+ .edit-site-create-template-part-modal .components-modal__frame {
+ max-width: 500px;
+ }
+}
+
+.edit-site-create-template-part-modal__modal-actions {
+ padding-top: 12px;
+}
+
+.edit-site-create-template-part-modal__area-base-control .components-base-control__label {
+ margin: 16px 0 8px;
+ cursor: auto;
+}
+
+.edit-site-create-template-part-modal__area-radio-group {
+ width: 100%;
+ border: 1px solid #757575;
+ border-radius: 2px;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio {
+ display: block;
+ width: 100%;
+ height: 100%;
+ text-align: left;
+ padding: 12px;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover {
+ margin: 0;
+ background-color: inherit;
+ border-bottom: 1px solid #757575;
+ border-radius: 0;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:focus), .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:not(:focus), .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:not(:focus) {
+ box-shadow: none;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:focus, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:focus, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:focus {
+ border-bottom: 1px solid #fff;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:last-of-type, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:last-of-type, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:last-of-type {
+ border-bottom: none;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover), .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true] {
+ color: #1e1e1e;
+ cursor: auto;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover) .edit-site-create-template-part-modal__option-label div, .edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true] .edit-site-create-template-part-modal__option-label div {
+ color: #949494;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label {
+ padding-top: 4px;
+ white-space: normal;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label div {
+ padding-top: 4px;
+ font-size: 12px;
+}
+.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__checkbox {
+ margin-left: auto;
+ min-width: 24px;
+}
+
+.edit-site-editor__inserter-panel,
+.edit-site-editor__list-view-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+
+.edit-site-editor__list-view-panel {
+ min-width: 350px;
+}
+
+.edit-site-editor__inserter-panel-header {
+ padding-top: 8px;
+ padding-right: 8px;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.edit-site-editor__inserter-panel-content,
+.edit-site-editor__list-view-panel-content {
+ height: calc(100% - 36px - 8px);
+}
+
+@media (min-width: 782px) {
+ .edit-site-editor__inserter-panel-content {
+ height: 100%;
+ }
+}
+
+.edit-site-editor__list-view-panel-header {
+ align-items: center;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ justify-content: space-between;
+ height: 48px;
+ padding-left: 16px;
+ padding-right: 4px;
+}
+
+.edit-site-editor__list-view-panel-content {
+ overflow-y: auto;
+ padding: 8px;
+}
+
+.edit-site-welcome-guide {
+ width: 312px;
+}
+.edit-site-welcome-guide__image {
+ background: #00a0d2;
+ margin: 0 0 16px;
+}
+.edit-site-welcome-guide__image > img {
+ display: block;
+ max-width: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.edit-site-welcome-guide__heading {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 24px;
+ line-height: 1.4;
+ margin: 16px 0 16px 0;
+ padding: 0 32px;
+}
+.edit-site-welcome-guide__text {
+ font-size: 13px;
+ line-height: 1.4;
+ margin: 0 0 16px 0;
+ padding: 0 32px;
+}
+.edit-site-welcome-guide__text img {
+ vertical-align: bottom;
+}
+.edit-site-welcome-guide__inserter-icon {
+ margin: 0 4px;
+ vertical-align: text-top;
+}
+
+.edit-site-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.edit-site-keyboard-shortcut-help-modal__main-shortcuts .edit-site-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.edit-site-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 0 0 1rem;
+ text-align: right;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-site-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.edit-site-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0 0 0.2rem;
+}
+
+html.wp-toolbar {
+ background: #fff;
+}
+
+body.appearance_page_gutenberg-edit-site,
+body.site-editor-php {
+ background: #fff;
+ /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
+ Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
+}
+body.appearance_page_gutenberg-edit-site #wpcontent,
+body.site-editor-php #wpcontent {
+ padding-left: 0;
+}
+body.appearance_page_gutenberg-edit-site #wpbody-content,
+body.site-editor-php #wpbody-content {
+ padding-bottom: 0;
+}
+body.appearance_page_gutenberg-edit-site #wpbody-content > div:not(.edit-site):not(#screen-meta),
+body.site-editor-php #wpbody-content > div:not(.edit-site):not(#screen-meta) {
+ display: none;
+}
+body.appearance_page_gutenberg-edit-site #wpfooter,
+body.site-editor-php #wpfooter {
+ display: none;
+}
+body.appearance_page_gutenberg-edit-site .a11y-speak-region,
+body.site-editor-php .a11y-speak-region {
+ left: -1px;
+ top: -1px;
+}
+body.appearance_page_gutenberg-edit-site ul#adminmenu a.wp-has-current-submenu::after,
+body.appearance_page_gutenberg-edit-site ul#adminmenu > li.current > a.current::after,
+body.site-editor-php ul#adminmenu a.wp-has-current-submenu::after,
+body.site-editor-php ul#adminmenu > li.current > a.current::after {
+ border-right-color: #fff;
+}
+body.appearance_page_gutenberg-edit-site .media-frame select.attachment-filters:last-of-type,
+body.site-editor-php .media-frame select.attachment-filters:last-of-type {
+ width: auto;
+ max-width: 100%;
+}
+
+.edit-site,
+.components-modal__frame {
+ box-sizing: border-box;
+}
+.edit-site *,
+.edit-site *::before,
+.edit-site *::after,
+.components-modal__frame *,
+.components-modal__frame *::before,
+.components-modal__frame *::after {
+ box-sizing: inherit;
+}
+
+@media (min-width: 600px) {
+ .edit-site {
+ bottom: 0;
+ left: 0;
+ min-height: 100vh;
+ position: absolute;
+ right: 0;
+ top: 0;
+ }
+}
+.edit-site .interface-interface-skeleton {
+ top: 0;
+}
+.edit-site .interface-complementary-area__pin-unpin-item.components-button {
+ display: none;
+}
+.edit-site .interface-interface-skeleton__content {
+ background-color: #2f2f2f;
+}
+
+/**
+ * Animations
+ */
+@keyframes edit-post__fade-in-animation {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-site/style.min.css b/static/wp-includes/css/dist/edit-site/style.min.css
new file mode 100755
index 0000000..844d370
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-site/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.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{background:#fff;padding-right:4px}.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}}@media (min-width:782px){.components-panel__header+.interface-complementary-area-header{margin-top:0}}.interface-complementary-area{background:#fff;color:#1e1e1e}@media (min-width:600px){.interface-complementary-area{-webkit-overflow-scrolling:touch}}@media (min-width:782px){.interface-complementary-area{width:280px}}.interface-complementary-area .components-panel{border:none;position:relative;z-index:0}.interface-complementary-area .components-panel__header{position:sticky;top:0;z-index:1}.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:48px}@media (min-width:782px){.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:0}}.interface-complementary-area p{margin-top:0}.interface-complementary-area h2{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area h3{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area hr{border-top:none;border-bottom:1px solid #f0f0f0;margin:1.5em 0}.interface-complementary-area div.components-toolbar,.interface-complementary-area div.components-toolbar-group{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}}html.interface-interface-skeleton__html-container{position:fixed;width:100%}@media (min-width:782px){html.interface-interface-skeleton__html-container{position:static;width:auto}}.interface-interface-skeleton{display:flex;flex-direction:row;height:auto;max-height:100%;position:fixed;top:46px;right:0;bottom:0}@media (min-width:783px){.interface-interface-skeleton{top:32px}.is-fullscreen-mode .interface-interface-skeleton{top:0}}.interface-interface-skeleton__editor{display:flex;flex-direction:column;flex:0 1 100%;overflow:hidden}.interface-interface-skeleton{left:0}@media (min-width:783px){.interface-interface-skeleton{left:160px}}@media (min-width:783px){.auto-fold .interface-interface-skeleton{left:36px}}@media (min-width:961px){.auto-fold .interface-interface-skeleton{left:160px}}.folded .interface-interface-skeleton{left:0}@media (min-width:783px){.folded .interface-interface-skeleton{left:36px}}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}@media (min-width:782px){.has-footer .interface-interface-skeleton__body{padding-bottom:25px}}.interface-interface-skeleton__content{flex-grow:1;display:flex;flex-direction:column;overflow:auto;z-index:20}.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{display:block;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__secondary-sidebar,.interface-interface-skeleton__sidebar{position:relative!important;z-index:90;width:auto}}.interface-interface-skeleton__sidebar{overflow:auto}@media (min-width:782px){.interface-interface-skeleton__sidebar{border-left:1px solid #e0e0e0}}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar{border-right:1px solid #e0e0e0}}.interface-interface-skeleton__header{flex-shrink:0;height:auto;border-bottom:1px solid #e0e0e0;z-index:30;color:#1e1e1e}.interface-interface-skeleton__footer{height:auto;flex-shrink:0;border-top:1px solid #e0e0e0;color:#1e1e1e;position:absolute;bottom:0;left:0;width:100%;background-color:#fff;z-index:90;display:none}@media (min-width:782px){.interface-interface-skeleton__footer{display:flex}}.interface-interface-skeleton__footer .block-editor-block-breadcrumb{z-index:30;display:flex;background:#fff;height:24px;align-items:center;font-size:13px;padding:0 18px}.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}.interface-more-menu-dropdown{margin-left:-4px}.interface-more-menu-dropdown .components-button{width:auto;padding:0 2px}@media (min-width:600px){.interface-more-menu-dropdown{margin-left:0}.interface-more-menu-dropdown .components-button{padding:0 4px}}.interface-more-menu-dropdown__content .components-popover__content{min-width:280px}@media (min-width:480px){.interface-more-menu-dropdown__content .components-popover__content{width:auto;max-width:480px}}.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu{padding:0}.components-popover.interface-more-menu-dropdown__content{z-index:99998}.interface-pinned-items{display:flex}.interface-pinned-items .components-button:not(:first-child){display:none}@media (min-width:600px){.interface-pinned-items .components-button:not(:first-child){display:flex}}.interface-pinned-items .components-button{margin-left:4px}.interface-pinned-items .components-button svg{max-width:24px;max-height:24px}@media (min-width:600px){.interface-preferences-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.interface-preferences-modal{width:750px}}@media (min-width:960px){.interface-preferences-modal{height:70%}}@media (max-width:781px){.interface-preferences-modal .components-modal__content{padding:0}.interface-preferences-modal .components-modal__content:before{content:none}}.interface-preferences__tabs .components-tab-panel__tabs{position:absolute;top:84px;left:16px;width:160px}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item{border-radius:2px;font-weight:400}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active{background:#f0f0f0;box-shadow:none;font-weight:500}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.interface-preferences__tabs .components-tab-panel__tab-content{padding-left:24px;margin-left:160px}@media (max-width:781px){.interface-preferences__provider{height:100%}}.interface-preferences-modal__section{margin:0 0 2.5rem}.interface-preferences-modal__section:last-child{margin:0}.interface-preferences-modal__section-title{font-size:.9rem;font-weight:600;margin-top:0}.interface-preferences-modal__section-description{margin:-8px 0 8px;font-size:12px;font-style:normal;color:#757575}.interface-preferences-modal__option .components-base-control .components-base-control__field{align-items:center;display:flex;margin-bottom:0}.interface-preferences-modal__option .components-base-control .components-base-control__field>label{flex-grow:1;padding:.6rem 0 .6rem 10px}.interface-preferences-modal__option .components-base-control__help{margin:-8px 0 8px 58px;font-size:12px;font-style:normal;color:#757575}.edit-site-block-editor__editor-styles-wrapper .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 12px}.edit-site-block-editor__editor-styles-wrapper .components-button.has-icon,.edit-site-block-editor__editor-styles-wrapper .components-button.is-tertiary{padding:6px}.edit-site-visual-editor{background-color:#2f2f2f;align-items:center}.edit-site-visual-editor.is-focus-mode{padding:48px}.edit-site-visual-editor.is-focus-mode .edit-site-visual-editor__editor-canvas{border-radius:2px}.edit-site-visual-editor.is-focus-mode .components-resizable-box__container{overflow:visible}.edit-site-visual-editor .components-resizable-box__container{margin:0 auto;overflow:auto}.edit-site-visual-editor__back-button{position:absolute;top:8px;left:8px;color:#fff}.edit-site-visual-editor__back-button:active:not([aria-disabled=true]),.edit-site-visual-editor__back-button:focus:not([aria-disabled=true]),.edit-site-visual-editor__back-button:hover{color:#f0f0f0}.resizable-editor__drag-handle{position:absolute;top:0;bottom:0;padding:0;margin:auto 0;width:4px;height:100px;-webkit-appearance:none;appearance:none;cursor:ew-resize;outline:none;background:#949494;border-radius:2px;border:0}.resizable-editor__drag-handle.is-left{left:-16px}.resizable-editor__drag-handle.is-right{right:-16px}.resizable-editor__drag-handle:active,.resizable-editor__drag-handle:hover{background:#ccc}.resizable-editor__drag-handle:focus{box-shadow:0 0 0 1px #2f2f2f,0 0 0 calc(var(--wp-admin-border-width-focus) + 1px) var(--wp-admin-theme-color)}.edit-site-code-editor{position:relative;width:100%;background-color:#fff;flex-grow:1}.edit-site-code-editor__body{width:100%;padding:0 12px 12px;max-width:1080px;margin-left:auto;margin-right:auto}@media (min-width:960px){.edit-site-code-editor__body{padding:0 24px 24px}}.edit-site-code-editor__toolbar{position:sticky;z-index:1;top:0;left:0;right:0;display:flex;background:hsla(0,0%,100%,.8);padding:4px 12px}@media (min-width:600px){.edit-site-code-editor__toolbar{padding:12px}}@media (min-width:960px){.edit-site-code-editor__toolbar{padding:12px 24px}}.edit-site-code-editor__toolbar h2{line-height:36px;margin:0 auto 0 0;font-size:13px;color:#1e1e1e}.edit-site-code-editor__toolbar .components-button svg{order:1}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area{border:1px solid #949494;border-radius:0;display:block;margin:0;width:100%;box-shadow:none;resize:none;overflow:hidden;font-family:Menlo,Consolas,monaco,monospace;line-height:2.4;min-height:200px;transition:border .1s ease-out,box-shadow .1s linear;padding:16px;font-size:16px!important}@media (prefers-reduced-motion:reduce){textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area{padding:24px;font-size:15px!important}}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-webkit-input-placeholder{color:rgba(30,30,30,.62)}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area::-moz-placeholder{color:rgba(30,30,30,.62);opacity:1}textarea.edit-site-code-editor-text-area.edit-site-code-editor-text-area:-ms-input-placeholder{color:rgba(30,30,30,.62)}.edit-site-global-styles-preview{display:flex;align-items:center;justify-content:center;line-height:1;cursor:pointer}.edit-site-global-styles-preview__iframe{max-width:100%;display:block}.edit-site-typography-panel__preview{display:flex;align-items:center;justify-content:center;min-height:100px;margin-bottom:16px;background:#f0f0f0;border-radius:2px}.edit-site-global-styles-screen-typography{margin:16px}.edit-site-global-styles-screen-typography__indicator{height:24px;width:24px;font-size:14px;display:flex!important;align-items:center;justify-content:center;border-radius:2px}.edit-site-global-styles-screen-colors{margin:16px}.edit-site-global-styles-screen-colors .component-color-indicator{background:linear-gradient(-45deg,transparent 48%,#ddd 0,#ddd 52%,transparent 0)}.edit-site-block-types-search,.edit-site-global-styles-header__description{padding:0 16px}.edit-site-global-styles-subtitle{margin-bottom:0!important;text-transform:uppercase;font-weight:500!important;font-size:11px!important}.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle{margin-right:16px;margin-left:16px;width:unset}.edit-site-screen-color-palette-toggle.edit-site-screen-color-palette-toggle .components-toggle-group-control{min-height:32px}.edit-site-screen-background-color__control,.edit-site-screen-link-color__control,.edit-site-screen-text-color__control{padding:16px}.edit-site-global-styles-variations_item{box-sizing:border-box}.edit-site-global-styles-variations_item .edit-site-global-styles-variations_item-preview{padding:2px;border-radius:2px;border:1px solid #e0e0e0}.edit-site-global-styles-variations_item.is-active .edit-site-global-styles-variations_item-preview{border:1px solid #1e1e1e}.edit-site-global-styles-variations_item:focus .edit-site-global-styles-variations_item-preview,.edit-site-global-styles-variations_item:hover .edit-site-global-styles-variations_item-preview{border:1px solid var(--wp-admin-theme-color)}.edit-site-global-styles-icon-with-current-color{fill:currentColor}.edit-site-global-styles__color-indicator-wrapper{height:24px}.edit-site-header{align-items:center;background-color:#fff;display:flex;height:60px;box-sizing:border-box;width:100%;justify-content:space-between}body.is-fullscreen-mode .edit-site-header{padding-left:60px;transition:padding-left 20ms linear;transition-delay:80ms}@media (prefers-reduced-motion:reduce){body.is-fullscreen-mode .edit-site-header{transition-duration:0s;transition-delay:0s}}.edit-site-header .edit-site-header_end,.edit-site-header .edit-site-header_start{display:flex}.edit-site-header .edit-site-header_center{display:flex;align-items:center;height:100%;flex-grow:1;justify-content:center;min-width:0}.edit-site-header .edit-site-header_end{justify-content:flex-end}body.is-navigation-sidebar-open .edit-site-header{padding-left:0;transition:padding-left 20ms linear;transition-delay:0ms}@media (prefers-reduced-motion:reduce){body.is-navigation-sidebar-open .edit-site-header{transition-duration:0s;transition-delay:0s}}@media (max-width:959px){body.is-navigation-sidebar-open .edit-site-header .edit-site-header-toolbar__inserter-toggle~.components-button,body.is-navigation-sidebar-open .edit-site-header .edit-site-header_end .components-button:not(.is-primary){display:none}body.is-navigation-sidebar-open .edit-site-header .edit-site-save-button__button{margin-right:0}}.edit-site-header__toolbar{display:flex;align-items:center;padding-left:8px}@media (min-width:600px){.edit-site-header__toolbar{padding-left:24px}}@media (min-width:1280px){.edit-site-header__toolbar{padding-right:8px}}.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle{margin-right:8px;min-width:32px;width:32px;height:32px;padding:0}.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg{transition:transform .2s cubic-bezier(.165,.84,.44,1)}@media (prefers-reduced-motion:reduce){.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle svg{transition-duration:0s;transition-delay:0s}}.edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle.is-pressed svg{transform:rotate(45deg)}.edit-site-header__toolbar-switchers{align-items:center;display:flex}.edit-site-header__toolbar-switchers-separator{margin:0 -6px}.edit-site-header__actions{display:inline-flex;align-items:center;padding-right:4px}.edit-site-header__actions .interface-pinned-items{display:none}@media (min-width:782px){.edit-site-header__actions .interface-pinned-items{display:inline-flex}}.edit-site-header__actions .components-button.components-button,.edit-site-header__actions .editor-post-saved-state{margin-right:4px}@media (min-width:600px){.edit-site-header__actions .components-button.components-button,.edit-site-header__actions .editor-post-saved-state{margin-right:12px}}.edit-site-header__actions .components-button.is-tertiary,.edit-site-header__actions .editor-post-saved-state{padding:0 6px}.edit-site-header__actions .edit-site-more-menu .components-button,.edit-site-header__actions .interface-pinned-items .components-button{margin-right:0}@media (min-width:600px){.edit-site-header__actions{padding-right:16px}}.edit-site-header__actions-more-menu{margin-left:-4px}.edit-site-header__actions-more-menu .components-icon-button{padding:8px 2px;width:auto}@media (min-width:600px){.edit-site-header__actions-more-menu{margin-left:4px}.edit-site-header__actions-more-menu .components-icon-button{padding:8px 4px}}.show-icon-labels .edit-site-header .components-button.has-icon{width:auto}.show-icon-labels .edit-site-header .components-button.has-icon svg{display:none}.show-icon-labels .edit-site-header .components-button.has-icon:after{content:attr(aria-label)}.show-icon-labels .edit-site-header .components-button.has-icon[aria-disabled=true]{background-color:transparent}.show-icon-labels .edit-site-header .is-tertiary:active{box-shadow:0 0 0 1.5px var(--wp-admin-theme-color);background-color:transparent}.show-icon-labels .edit-site-header .edit-site-save-button__button{padding-left:6px;padding-right:6px;margin-right:4px}.show-icon-labels .edit-site-header .block-editor-post-preview__button-toggle{margin-right:4px}.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info,.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle{height:36px;padding:0 6px}.show-icon-labels .edit-site-header .edit-site-document-actions__get-info.edit-site-document-actions__get-info.edit-site-document-actions__get-info:after,.show-icon-labels .edit-site-header .edit-site-header-toolbar__inserter-toggle.edit-site-header-toolbar__inserter-toggle:after{content:none}.edit-site-document-actions{display:flex;flex-direction:column;justify-content:center;padding:0 8px;height:100%;min-width:0}.edit-site-document-actions .edit-site-document-actions__title-wrapper{display:flex;flex-direction:row;justify-content:center;align-items:center;min-width:0}.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown{display:inline-flex;margin-left:4px}.edit-site-document-actions .edit-site-document-actions__title-wrapper .components-dropdown .components-button{min-width:0;padding:0}.edit-site-document-actions .edit-site-document-actions__title-wrapper>h1{margin:0;min-width:0}.edit-site-document-actions .edit-site-document-actions__title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.edit-site-document-actions .edit-site-document-actions__secondary-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:0;opacity:0;padding:0;transition:all .2s ease;background:#e0e0e0;border-radius:2px}@media (prefers-reduced-motion:reduce){.edit-site-document-actions .edit-site-document-actions__secondary-item{transition-duration:0s;transition-delay:0s}}.edit-site-document-actions.has-secondary-label .edit-site-document-actions__secondary-item{opacity:1;padding:0 4px;max-width:180px;margin-left:6px}.edit-site-document-actions__info-dropdown>.components-popover__content>div{padding:0;min-width:240px}.edit-site-navigation-toggle{align-items:center;background:#1e1e1e;border-radius:0;display:flex;position:absolute;z-index:31;height:60px;width:60px}.edit-site-navigation-toggle__button.components-button{align-items:center;background:#1e1e1e;border-radius:0;color:#fff;height:61px;width:60px;z-index:1;margin-bottom:-1px;min-width:60px}.edit-site-navigation-toggle__button.components-button:active,.edit-site-navigation-toggle__button.components-button:hover{color:#fff}.edit-site-navigation-toggle__button.components-button:focus{box-shadow:none}.edit-site-navigation-toggle__button.components-button:before{transition:box-shadow .1s ease;content:"";display:block;position:absolute;top:9px;right:9px;bottom:9px;left:9px;border-radius:4px;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e}@media (prefers-reduced-motion:reduce){.edit-site-navigation-toggle__button.components-button:before{transition-duration:0s;transition-delay:0s}}.edit-site-navigation-toggle__button.components-button:hover:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #757575}.edit-site-navigation-toggle__button.components-button.has-icon:hover:before{box-shadow:none}.edit-site-navigation-toggle__button.components-button:focus:before{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) hsla(0,0%,100%,.1),inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.edit-site-navigation-toggle__button.components-button .edit-site-navigation-toggle__site-icon{width:36px;height:36px;border-radius:2px;-o-object-fit:cover;object-fit:cover;margin-top:-1px}.edit-site-navigation-panel{height:100%;position:relative;width:0;overflow:hidden;background:#1e1e1e;color:#fff;transition:width .1s linear}@media (prefers-reduced-motion:reduce){.edit-site-navigation-panel{transition-duration:0s;transition-delay:0s}}@media (min-width:782px){.interface-interface-skeleton.has-footer .edit-site-navigation-panel{height:calc(100% - 25px)}}.edit-site-navigation-panel__inner{position:relative;width:300px;height:100%;overflow:hidden;visibility:hidden;transition:visibility .1s linear}@media (prefers-reduced-motion:reduce){.edit-site-navigation-panel__inner{transition-duration:0s;transition-delay:0s}}.edit-site-navigation-panel.is-open{width:300px}.edit-site-navigation-panel.is-open .edit-site-navigation-panel__inner{visibility:visible}.edit-site-navigation-panel__site-title-container{height:60px;padding-left:60px;margin:0 16px 0 8px;display:flex;align-items:center}.edit-site-navigation-panel__site-title{font-style:normal;font-weight:600;font-size:14px;line-height:20px;color:#ddd;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.edit-site-navigation-panel__scroll-container{overflow-x:hidden;overflow-y:auto;height:calc(100% - 60px)}.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary{height:36px;margin-top:24px;padding:8px 16px 8px 8px}.edit-site-navigation-panel__back-to-dashboard.components-button.is-tertiary:focus:not(:disabled){border-bottom-color:transparent}.edit-site-navigation-panel__preview{display:none;border:1px solid #ccc;width:300px;padding:16px;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.05);border-radius:2px;position:absolute;top:73px;left:312px;color:#1e1e1e;z-index:32}@media (min-width:782px){.edit-site-navigation-panel__preview{display:block}}.edit-site-navigation-panel__template-item{display:block}.edit-site-navigation-panel__template-item .components-button{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;height:auto;min-height:36px;text-align:left;padding-left:16px;padding-right:16px;color:inherit}.edit-site-navigation-panel__template-item-title{font-size:14px;line-height:20px}.edit-site-navigation-panel__template-item-title em{margin-right:1ch}.edit-site-navigation-panel__template-part-item .components-navigation__item-title,.edit-site-navigation-panel__template-parts .components-navigation__menu-title-heading{text-transform:capitalize}.components-navigation__item+.edit-site-navigation-panel__template-item{margin-top:16px}.edit-site-navigation-panel__template-item+.edit-site-navigation-panel__template-item{margin-top:8px}.edit-site-navigation-panel__info-wrapper{padding:4px 0}.edit-site-navigation-panel__template-item-description{padding-top:8px;font-size:12px;line-height:16px}.edit-site-navigation-panel__new-template-dropdown{margin:0 0 0 12px}.edit-site-navigation-panel__new-template-dropdown button{margin:0}@media (min-width:600px){.edit-site-navigation-panel__new-template-popover{min-width:300px}}.edit-site-list-header{position:relative;align-items:center;background-color:#fff;display:flex;height:60px;box-sizing:border-box;width:100%;justify-content:flex-end;padding-right:16px}body.is-fullscreen-mode .edit-site-list-header{padding-left:60px;transition:padding-left 20ms linear;transition-delay:80ms}@media (prefers-reduced-motion:reduce){body.is-fullscreen-mode .edit-site-list-header{transition-duration:0s;transition-delay:0s}}.edit-site-list-header .edit-site-list-header__title{position:absolute;left:0;width:100%;text-align:center;font-size:20px;padding:0;margin:0}.edit-site-list-header__right{position:relative}.edit-site .edit-site-list .interface-interface-skeleton__editor{min-width:100%}@media (min-width:782px){.edit-site .edit-site-list .interface-interface-skeleton__editor{min-width:0}}.edit-site .edit-site-list .interface-interface-skeleton__content{background:#fff;align-items:center;padding:16px}@media (min-width:782px){.edit-site .edit-site-list .interface-interface-skeleton__content{padding:72px}}.edit-site-list-table{width:100%;border:1px solid #ddd;border-radius:2px;margin:0;overflow:hidden;border-spacing:0;max-width:960px}.edit-site-list-table tr{display:flex;align-items:center;padding:16px;box-sizing:border-box;border-top:1px solid #f0f0f0;margin:0}.edit-site-list-table tr:first-child{border-top:0}@media (min-width:782px){.edit-site-list-table tr{padding:24px 32px}}.edit-site-list-table tr .edit-site-list-table-column:first-child{width:calc(60% - 18px);padding-right:24px}.edit-site-list-table tr .edit-site-list-table-column:first-child a{display:inline-block;text-decoration:none;font-weight:500;margin-bottom:4px}.edit-site-list-table tr .edit-site-list-table-column:nth-child(2){width:calc(40% - 18px)}.edit-site-list-table tr .edit-site-list-table-column:nth-child(3){min-width:36px;flex-shrink:0}.edit-site-list-table tr.edit-site-list-table-head{font-size:16px;font-weight:600;text-align:left;color:#1e1e1e;border-top:none;border-bottom:1px solid #ddd}.edit-site-list-table tr.edit-site-list-table-head th{font-weight:inherit}@media (min-width:782px){.edit-site-list.is-navigation-open .components-snackbar-list{margin-left:300px}}@media (min-width:782px){.edit-site-list__rename-modal .components-base-control{width:320px}}.edit-site-list__rename-modal .components-modal__header{border-bottom:none}.edit-site-list__rename-modal .components-modal__content:before{margin-bottom:4px}.edit-site-list__rename-modal-actions{margin-top:12px}.edit-site-template__actions button:not(:last-child){margin-right:8px}.edit-site-list-added-by__icon{display:flex;flex-shrink:0;position:relative;align-items:center;justify-content:center;width:32px;height:32px;background:#2f2f2f;border-radius:100%}.edit-site-list-added-by__icon svg{fill:#fff}.edit-site-list-added-by__icon.is-customized:after{position:absolute;content:"";background:var(--wp-admin-theme-color);height:8px;width:8px;outline:2px solid #fff;border-radius:100%;top:-1px;right:-1px}.edit-site-list-added-by__avatar{flex-shrink:0;overflow:hidden;border-radius:100%;background:#2f2f2f;width:32px;height:32px}.edit-site-list-added-by__avatar img{width:32px;height:32px;-o-object-fit:cover;object-fit:cover;opacity:0;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.edit-site-list-added-by__avatar img{transition-duration:0s;transition-delay:0s}}.edit-site-list-added-by__avatar.is-loaded img{opacity:1}.edit-site-new-template-dropdown .components-dropdown-menu__toggle{padding:6px 12px}@media (min-width:600px){.edit-site-new-template-dropdown .edit-site-new-template-dropdown__popover{min-width:300px}}.edit-site-sidebar{width:280px}.edit-site-sidebar>.components-panel{border-left:0;border-right:0;margin-bottom:-1px;margin-top:-1px}.edit-site-sidebar>.components-panel>.components-panel__header{background:#f0f0f0}.edit-site-sidebar .block-editor-block-inspector__card{margin:0}.edit-site-global-styles-sidebar{display:flex;flex-direction:column;min-height:100%}.edit-site-global-styles-sidebar__navigator-provider,.edit-site-global-styles-sidebar__panel{display:flex;flex-direction:column;flex:1}.edit-site-global-styles-sidebar__navigator-screen{flex:1}.edit-site-global-styles-sidebar .interface-complementary-area-header .components-button.has-icon{margin-left:0}.edit-site-global-styles-sidebar__reset-button.components-button{margin-left:auto}.edit-site-global-styles-sidebar .components-navigation__menu-title-heading{font-size:15.6px;font-weight:500}.edit-site-global-styles-sidebar .components-navigation__item>button span{font-weight:500}.edit-site-global-styles-sidebar .block-editor-panel-color-gradient-settings,.edit-site-typography-panel{border:0}.edit-site-global-styles-sidebar .components-tools-panel-item.single-column{grid-column:span 1}.edit-site-global-styles-sidebar__blocks-group{padding-top:24px;border-top:1px solid #e0e0e0}.edit-site-global-styles-sidebar__blocks-group-help{padding:0 16px}.edit-site-global-styles-color-palette-panel,.edit-site-global-styles-gradient-palette-panel{padding:16px}.edit-site-global-styles-sidebar__beta{display:inline-flex;margin-left:8px;padding:0 8px;height:24px;border-radius:2px;background-color:#1e1e1e;color:#fff;align-items:center;font-size:12px;line-height:1}.components-panel__header.edit-site-sidebar__panel-tabs{justify-content:flex-start;padding-left:0;padding-right:16px;border-top:0;margin-top:0}.components-panel__header.edit-site-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-site-sidebar__panel-tabs li{margin:0}.components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon{display:none;margin:0 0 0 auto;padding:0;min-width:24px;height:24px}@media (min-width:782px){.components-panel__header.edit-site-sidebar__panel-tabs .components-button.has-icon{display:flex}}.components-button.edit-site-sidebar__panel-tab{border-radius:0;height:48px;background:transparent;border:none;box-shadow:none;cursor:pointer;display:inline-block;padding:3px 15px;margin-left:0;font-weight:500}.components-button.edit-site-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.components-button.edit-site-sidebar__panel-tab.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-site-sidebar__panel-tab.is-active:before{content:"";position:absolute;top:0;bottom:1px;right:0;left:0;border-bottom:4px solid transparent}.components-button.edit-site-sidebar__panel-tab:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative;z-index:1}.components-button.edit-site-sidebar__panel-tab.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}@keyframes loadingpulse{0%{opacity:1}50%{opacity:.5}to{opacity:1}}.edit-site-navigation-inspector{padding:16px}.edit-site-navigation-inspector .block-editor-list-view-leaf .block-editor-list-view-block-contents{align-items:flex-start;white-space:normal}.edit-site-navigation-inspector .block-editor-list-view-block__title{margin-top:3px}.edit-site-navigation-inspector .block-editor-list-view-block__menu-cell{padding-right:0}.edit-site-navigation-inspector__placeholder{padding:8px;margin:8px;background-color:#f0f0f0;animation:loadingpulse 1s linear infinite;animation-delay:.5s}.edit-site-navigation-inspector__placeholder.is-child{margin-left:24px;width:50%}.edit-site-template-card{display:flex;align-items:flex-start}.edit-site-template-card__content{flex-grow:1;margin-bottom:4px}.edit-site-template-card__title{font-weight:500;line-height:24px}.edit-site-template-card__title.edit-site-template-card__title{margin:0 0 4px}.edit-site-template-card__description{font-size:13px;margin:0 0 16px}.edit-site-template-card__icon{flex:0 0 24px;margin-right:12px;width:24px;height:24px}h3.edit-site-template-card__template-areas-title{font-weight:500;margin:0 0 8px}.edit-site-template-card__template-areas-list,.edit-site-template-card__template-areas-list>li{margin:0}.edit-site-template-card__template-areas-item{width:100%}.edit-site-template-card__template-areas-item.components-button.has-icon{padding:0}html #wpadminbar{display:none}html.wp-toolbar{padding-top:0}.edit-site-editor__toggle-save-panel{z-index:100000;position:fixed!important;top:-9999em;bottom:auto;left:auto;right:0;width:280px;background-color:#fff;border:1px dotted #ddd;height:auto!important;padding:24px;display:flex;justify-content:center}.interface-interface-skeleton__actions:focus-within .edit-site-editor__toggle-save-panel,.interface-interface-skeleton__actions:focus .edit-site-editor__toggle-save-panel{top:auto;bottom:0}.edit-site-visual-editor{position:relative;height:100%;display:block}.edit-site-visual-editor iframe{display:block;width:100%;height:100%;background-color:#fff}.edit-site .components-editor-notices__snackbar{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;left:0}@media (min-width:783px){.edit-site .components-editor-notices__snackbar{left:160px}}@media (min-width:783px){.auto-fold .edit-site .components-editor-notices__snackbar{left:36px}}@media (min-width:961px){.auto-fold .edit-site .components-editor-notices__snackbar{left:160px}}.folded .edit-site .components-editor-notices__snackbar{left:0}@media (min-width:783px){.folded .edit-site .components-editor-notices__snackbar{left:36px}}body.is-fullscreen-mode .edit-site .components-editor-notices__snackbar{left:0!important}.edit-site-template-details .edit-site-template-details__group{margin:0;padding:16px}.edit-site-template-details .edit-site-template-details__group+.edit-site-template-details__group{border-top:1px solid #ccc}.edit-site-template-details .edit-site-template-details__title{margin:0}.edit-site-template-details .edit-site-template-details__description{margin:12px 0 0;color:#757575}.edit-site-template-details .edit-site-template-details__group.edit-site-template-details__template-areas{padding:8px}.edit-site-template-details .edit-site-template-details__template-areas-item{position:relative}.edit-site-template-details .edit-site-template-details__template-areas-item .edit-site-template-details__template-areas-item-more{position:absolute;right:0;top:0;bottom:0;margin:auto 0}.edit-site-template-details .edit-site-template-details__revert{padding:12px 8px}.edit-site-template-details .edit-site-template-details__revert-button{height:auto;padding:4px 8px;text-align:left}.edit-site-template-details .edit-site-template-details__revert-button:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 3px #fff}.edit-site-template-details .edit-site-template-details__show-all-button.components-button{display:flex;justify-content:center;background:#1e1e1e;color:#fff;width:100%;height:44px;border-radius:0}.edit-site-template-details .edit-site-template-details__show-all-button.components-button:hover{color:#fff}.edit-site-template-details .edit-site-template-details__show-all-button.components-button:active{color:#ccc}.edit-site-template-details .edit-site-template-details__show-all-button.components-button:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 3px #fff}.edit-site-create-template-part-modal{z-index:1000001}@media (min-width:600px){.edit-site-create-template-part-modal .components-modal__frame{max-width:500px}}.edit-site-create-template-part-modal__modal-actions{padding-top:12px}.edit-site-create-template-part-modal__area-base-control .components-base-control__label{margin:16px 0 8px;cursor:auto}.edit-site-create-template-part-modal__area-radio-group{width:100%;border:1px solid #757575;border-radius:2px}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio{display:block;width:100%;height:100%;text-align:left;padding:12px}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover{margin:0;background-color:inherit;border-bottom:1px solid #757575;border-radius:0}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:not(:focus),.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:not(:focus),.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:focus){box-shadow:none}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:focus,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:focus,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:focus{border-bottom:1px solid #fff}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-primary:hover:last-of-type,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio.is-secondary:hover:last-of-type,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:last-of-type{border-bottom:none}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover),.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true]{color:#1e1e1e;cursor:auto}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio:not(:hover) .edit-site-create-template-part-modal__option-label div,.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio[aria-checked=true] .edit-site-create-template-part-modal__option-label div{color:#949494}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label{padding-top:4px;white-space:normal}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__option-label div{padding-top:4px;font-size:12px}.edit-site-create-template-part-modal__area-radio-group .components-button.edit-site-create-template-part-modal__area-radio .edit-site-create-template-part-modal__checkbox{margin-left:auto;min-width:24px}.edit-site-editor__inserter-panel,.edit-site-editor__list-view-panel{height:100%;display:flex;flex-direction:column}.edit-site-editor__list-view-panel{min-width:350px}.edit-site-editor__inserter-panel-header{padding-top:8px;padding-right:8px;display:flex;justify-content:flex-end}.edit-site-editor__inserter-panel-content,.edit-site-editor__list-view-panel-content{height:calc(100% - 44px)}@media (min-width:782px){.edit-site-editor__inserter-panel-content{height:100%}}.edit-site-editor__list-view-panel-header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;height:48px;padding-left:16px;padding-right:4px}.edit-site-editor__list-view-panel-content{overflow-y:auto;padding:8px}.edit-site-welcome-guide{width:312px}.edit-site-welcome-guide__image{background:#00a0d2;margin:0 0 16px}.edit-site-welcome-guide__image>img{display:block;max-width:100%;-o-object-fit:cover;object-fit:cover}.edit-site-welcome-guide__heading{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:24px;line-height:1.4;margin:16px 0;padding:0 32px}.edit-site-welcome-guide__text{font-size:13px;line-height:1.4;margin:0 0 16px;padding:0 32px}.edit-site-welcome-guide__text img{vertical-align:bottom}.edit-site-welcome-guide__inserter-icon{margin:0 4px;vertical-align:text-top}.edit-site-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.edit-site-keyboard-shortcut-help-modal__main-shortcuts .edit-site-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.edit-site-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.edit-site-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.edit-site-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.edit-site-keyboard-shortcut-help-modal__shortcut:empty{display:none}.edit-site-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 0 0 1rem;text-align:right}.edit-site-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination+.edit-site-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.edit-site-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.edit-site-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 0 0 .2rem}body.appearance_page_gutenberg-edit-site,body.site-editor-php,html.wp-toolbar{background:#fff}body.appearance_page_gutenberg-edit-site #wpcontent,body.site-editor-php #wpcontent{padding-left:0}body.appearance_page_gutenberg-edit-site #wpbody-content,body.site-editor-php #wpbody-content{padding-bottom:0}body.appearance_page_gutenberg-edit-site #wpbody-content>div:not(.edit-site):not(#screen-meta),body.appearance_page_gutenberg-edit-site #wpfooter,body.site-editor-php #wpbody-content>div:not(.edit-site):not(#screen-meta),body.site-editor-php #wpfooter{display:none}body.appearance_page_gutenberg-edit-site .a11y-speak-region,body.site-editor-php .a11y-speak-region{left:-1px;top:-1px}body.appearance_page_gutenberg-edit-site ul#adminmenu>li.current>a.current:after,body.appearance_page_gutenberg-edit-site ul#adminmenu a.wp-has-current-submenu:after,body.site-editor-php ul#adminmenu>li.current>a.current:after,body.site-editor-php ul#adminmenu a.wp-has-current-submenu:after{border-right-color:#fff}body.appearance_page_gutenberg-edit-site .media-frame select.attachment-filters:last-of-type,body.site-editor-php .media-frame select.attachment-filters:last-of-type{width:auto;max-width:100%}.components-modal__frame,.edit-site{box-sizing:border-box}.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before,.edit-site *,.edit-site :after,.edit-site :before{box-sizing:inherit}@media (min-width:600px){.edit-site{bottom:0;left:0;min-height:100vh;position:absolute;right:0;top:0}}.edit-site .interface-interface-skeleton{top:0}.edit-site .interface-complementary-area__pin-unpin-item.components-button{display:none}.edit-site .interface-interface-skeleton__content{background-color:#2f2f2f}@keyframes edit-post__fade-in-animation{0%{opacity:0}to{opacity:1}}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-widgets/style-rtl.css b/static/wp-includes/css/dist/edit-widgets/style-rtl.css
new file mode 100755
index 0000000..1cd0e79
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-widgets/style-rtl.css
@@ -0,0 +1,1179 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.components-panel__header.interface-complementary-area-header__small {
+ background: #fff;
+ padding-left: 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 {
+ background: #fff;
+ padding-left: 4px;
+}
+.interface-complementary-area-header .components-button.has-icon {
+ display: none;
+ margin-right: auto;
+}
+.interface-complementary-area-header .components-button.has-icon ~ .components-button {
+ margin-right: 0;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area-header .components-button.has-icon {
+ display: flex;
+ }
+}
+
+@media (min-width: 782px) {
+ .components-panel__header + .interface-complementary-area-header {
+ margin-top: 0;
+ }
+}
+
+.interface-complementary-area {
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 600px) {
+ .interface-complementary-area {
+ -webkit-overflow-scrolling: touch;
+ }
+}
+@media (min-width: 782px) {
+ .interface-complementary-area {
+ width: 280px;
+ }
+}
+.interface-complementary-area .components-panel {
+ border: none;
+ position: relative;
+ z-index: 0;
+}
+.interface-complementary-area .components-panel__header {
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 48px;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 0;
+ }
+}
+.interface-complementary-area p {
+ margin-top: 0;
+}
+.interface-complementary-area h2 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area h3 {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area hr {
+ border-top: none;
+ border-bottom: 1px solid #f0f0f0;
+ 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;
+ left: 10px;
+ bottom: 10px;
+ right: 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-right: 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: row;
+ height: auto;
+ max-height: 100%;
+ position: fixed;
+ top: 46px;
+ right: 0;
+ left: 0;
+ bottom: 0;
+}
+@media (min-width: 783px) {
+ .interface-interface-skeleton {
+ top: 32px;
+ }
+ .is-fullscreen-mode .interface-interface-skeleton {
+ top: 0;
+ }
+}
+
+.interface-interface-skeleton__editor {
+ display: flex;
+ flex-direction: column;
+ flex: 0 1 100%;
+ overflow: hidden;
+}
+
+.interface-interface-skeleton {
+ /* Set left position when auto-fold is not on the body element. */
+ right: 0;
+}
+@media (min-width: 783px) {
+ .interface-interface-skeleton {
+ right: 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 {
+ right: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .interface-interface-skeleton {
+ right: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .interface-interface-skeleton {
+ right: 0;
+}
+@media (min-width: 783px) {
+ .folded .interface-interface-skeleton {
+ right: 36px;
+ }
+}
+
+body.is-fullscreen-mode .interface-interface-skeleton {
+ right: 0 !important;
+}
+
+.interface-interface-skeleton__body {
+ flex-grow: 1;
+ display: flex;
+ overflow: auto;
+ overscroll-behavior-y: none;
+}
+@media (min-width: 782px) {
+ .has-footer .interface-interface-skeleton__body {
+ padding-bottom: 25px;
+ }
+}
+
+.interface-interface-skeleton__content {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow: auto;
+ z-index: 20;
+}
+
+.interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ display: block;
+ flex-shrink: 0;
+ position: absolute;
+ z-index: 100000;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ position: relative !important;
+ z-index: 90;
+ width: auto;
+ }
+}
+
+.interface-interface-skeleton__sidebar {
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__sidebar {
+ border-right: 1px solid #e0e0e0;
+ }
+}
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar {
+ border-left: 1px solid #e0e0e0;
+ }
+}
+
+.interface-interface-skeleton__header {
+ flex-shrink: 0;
+ height: auto;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 30;
+ color: #1e1e1e;
+}
+
+.interface-interface-skeleton__footer {
+ height: auto;
+ flex-shrink: 0;
+ border-top: 1px solid #e0e0e0;
+ color: #1e1e1e;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ width: 100%;
+ background-color: #fff;
+ z-index: 90;
+ display: none;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__footer {
+ display: flex;
+ }
+}
+.interface-interface-skeleton__footer .block-editor-block-breadcrumb {
+ z-index: 30;
+ display: flex;
+ background: #fff;
+ height: 24px;
+ align-items: center;
+ font-size: 13px;
+ padding: 0 18px;
+}
+
+.interface-interface-skeleton__actions {
+ z-index: 100000;
+ position: fixed !important;
+ top: -9999em;
+ bottom: auto;
+ right: auto;
+ left: 0;
+ width: 280px;
+ color: #1e1e1e;
+}
+.interface-interface-skeleton__actions:focus {
+ top: auto;
+ bottom: 0;
+}
+
+.interface-more-menu-dropdown {
+ margin-right: -4px;
+}
+.interface-more-menu-dropdown .components-button {
+ width: auto;
+ padding: 0 2px;
+}
+@media (min-width: 600px) {
+ .interface-more-menu-dropdown {
+ margin-right: 0;
+ }
+ .interface-more-menu-dropdown .components-button {
+ padding: 0 4px;
+ }
+}
+
+.interface-more-menu-dropdown__content .components-popover__content {
+ min-width: 280px;
+}
+@media (min-width: 480px) {
+ .interface-more-menu-dropdown__content .components-popover__content {
+ width: auto;
+ max-width: 480px;
+ }
+}
+.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.components-popover.interface-more-menu-dropdown__content {
+ z-index: 99998;
+}
+
+.interface-pinned-items {
+ display: flex;
+}
+.interface-pinned-items .components-button:not(:first-child) {
+ display: none;
+}
+@media (min-width: 600px) {
+ .interface-pinned-items .components-button:not(:first-child) {
+ display: flex;
+ }
+}
+.interface-pinned-items .components-button {
+ margin-right: 4px;
+}
+.interface-pinned-items .components-button svg {
+ max-width: 24px;
+ max-height: 24px;
+}
+
+@media (min-width: 600px) {
+ .interface-preferences-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .interface-preferences-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .interface-preferences-modal {
+ height: 70%;
+ }
+}
+@media (max-width: 781px) {
+ .interface-preferences-modal .components-modal__content {
+ padding: 0;
+ }
+ .interface-preferences-modal .components-modal__content::before {
+ content: none;
+ }
+}
+
+.interface-preferences__tabs .components-tab-panel__tabs {
+ position: absolute;
+ top: 84px;
+ right: 16px;
+ width: 160px;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
+ border-radius: 2px;
+ font-weight: 400;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active {
+ background: #f0f0f0;
+ box-shadow: none;
+ font-weight: 500;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.interface-preferences__tabs .components-tab-panel__tab-content {
+ padding-right: 24px;
+ margin-right: 160px;
+}
+
+@media (max-width: 781px) {
+ .interface-preferences__provider {
+ height: 100%;
+ }
+}
+.interface-preferences-modal__section {
+ margin: 0 0 2.5rem 0;
+}
+.interface-preferences-modal__section:last-child {
+ margin: 0;
+}
+
+.interface-preferences-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+ margin-top: 0;
+}
+
+.interface-preferences-modal__section-description {
+ margin: -8px 0 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.interface-preferences-modal__option .components-base-control .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin-bottom: 0;
+}
+.interface-preferences-modal__option .components-base-control .components-base-control__field > label {
+ flex-grow: 1;
+ padding: 0.6rem 10px 0.6rem 0;
+}
+.interface-preferences-modal__option .components-base-control__help {
+ margin: -8px 58px 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.wp-block[data-type="core/widget-area"] {
+ max-width: 700px;
+ margin-right: auto;
+ margin-left: auto;
+}
+.wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ margin: 0;
+ height: 48px;
+ position: relative;
+ z-index: 1;
+ background: #fff;
+ transform: translateZ(0);
+}
+.wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title:hover {
+ background: #fff;
+}
+.wp-block[data-type="core/widget-area"] .block-list-appender.wp-block {
+ width: initial;
+ position: relative;
+}
+.wp-block[data-type="core/widget-area"] .editor-styles-wrapper .wp-block.wp-block.wp-block.wp-block.wp-block {
+ max-width: 100%;
+}
+.wp-block[data-type="core/widget-area"] .components-panel__body.is-opened {
+ padding: 0;
+}
+
+.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper {
+ margin: 0;
+ padding: 0;
+}
+.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper > .block-editor-block-list__layout {
+ margin-top: -48px;
+ padding: 72px 16px 16px;
+ min-height: 32px;
+}
+
+.wp-block-widget-area__highlight-drop-zone {
+ outline: var(--wp-admin-border-width-focus) solid var(--wp-admin-theme-color);
+}
+
+body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title,
+body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title * {
+ pointer-events: none;
+}
+
+.edit-widgets-error-boundary {
+ margin: auto;
+ max-width: 780px;
+ padding: 20px;
+ margin-top: 60px;
+ box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
+}
+
+.edit-widgets-header {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ height: 60px;
+ padding: 0 16px;
+ overflow: auto;
+}
+@media (min-width: 600px) {
+ .edit-widgets-header {
+ overflow: visible;
+ }
+}
+
+.edit-widgets-header__navigable-toolbar-wrapper {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.edit-widgets-header__title {
+ font-size: 20px;
+ padding: 0;
+ margin: 0 0 0 20px;
+}
+
+.edit-widgets-header__actions {
+ display: flex;
+}
+.edit-widgets-header__actions .components-button {
+ margin-left: 4px;
+}
+@media (min-width: 600px) {
+ .edit-widgets-header__actions .components-button {
+ margin-left: 12px;
+ }
+}
+.edit-widgets-header__actions .edit-widgets-more-menu .components-button,
+.edit-widgets-header__actions .interface-pinned-items .components-button {
+ margin-left: 0;
+}
+
+.edit-widgets-header-toolbar {
+ border: none;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon,
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon {
+ height: 36px;
+ min-width: 36px;
+ padding: 6px;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon.is-pressed,
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon.is-pressed {
+ background: #1e1e1e;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon:focus:not(:disabled),
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 1px #fff;
+ outline: 1px solid transparent;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon::before,
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon::before {
+ display: none;
+}
+
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle {
+ padding-right: 8px;
+ padding-left: 8px;
+}
+@media (min-width: 600px) {
+ .edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle {
+ padding-right: 12px;
+ padding-left: 12px;
+ }
+}
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle::after {
+ content: none;
+}
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg {
+ transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle.is-pressed svg {
+ transform: rotate(-45deg);
+}
+
+.edit-widgets-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.edit-widgets-keyboard-shortcut-help-modal__main-shortcuts .edit-widgets-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.edit-widgets-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 1rem 0 0;
+ text-align: left;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0.2rem 0 0;
+}
+
+.components-panel__header.edit-widgets-sidebar__panel-tabs {
+ justify-content: flex-start;
+ padding-right: 0;
+ padding-left: 4px;
+ border-top: 0;
+ margin-top: 0;
+}
+.components-panel__header.edit-widgets-sidebar__panel-tabs ul {
+ display: flex;
+}
+.components-panel__header.edit-widgets-sidebar__panel-tabs li {
+ margin: 0;
+}
+.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon {
+ display: none;
+ margin-right: auto;
+}
+@media (min-width: 782px) {
+ .components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon {
+ display: flex;
+ }
+}
+
+.components-button.edit-widgets-sidebar__panel-tab {
+ border-radius: 0;
+ height: 49px;
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ padding: 3px 15px;
+ margin-right: 0;
+ font-weight: 400;
+ color: #1e1e1e;
+}
+.components-button.edit-widgets-sidebar__panel-tab::after {
+ content: attr(data-label);
+ display: block;
+ font-weight: 600;
+ height: 0;
+ overflow: hidden;
+ speak: none;
+ visibility: hidden;
+}
+.components-button.edit-widgets-sidebar__panel-tab.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ font-weight: 600;
+ position: relative;
+}
+.components-button.edit-widgets-sidebar__panel-tab.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ left: 0;
+ right: 0;
+ border-bottom: 4px solid transparent;
+}
+.components-button.edit-widgets-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-button.edit-widgets-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+.edit-widgets-widget-areas__top-container {
+ display: flex;
+ padding: 16px;
+}
+.edit-widgets-widget-areas__top-container .block-editor-block-icon {
+ margin-left: 16px;
+}
+
+.edit-widgets-notices__snackbar {
+ position: fixed;
+ left: 0;
+ bottom: 20px;
+ padding-right: 16px;
+ padding-left: 16px;
+}
+
+.edit-widgets-notices__snackbar {
+ /* Set left position when auto-fold is not on the body element. */
+ right: 0;
+}
+@media (min-width: 783px) {
+ .edit-widgets-notices__snackbar {
+ right: 160px;
+ }
+}
+
+.auto-fold .edit-widgets-notices__snackbar {
+ /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
+}
+@media (min-width: 783px) {
+ .auto-fold .edit-widgets-notices__snackbar {
+ right: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .edit-widgets-notices__snackbar {
+ right: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .edit-widgets-notices__snackbar {
+ right: 0;
+}
+@media (min-width: 783px) {
+ .folded .edit-widgets-notices__snackbar {
+ right: 36px;
+ }
+}
+
+body.is-fullscreen-mode .edit-widgets-notices__snackbar {
+ right: 0 !important;
+}
+
+.edit-widgets-notices__dismissible .components-notice,
+.edit-widgets-notices__pinned .components-notice {
+ box-sizing: border-box;
+ margin: 0;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.2);
+ padding: 0 12px;
+ min-height: 60px;
+}
+.edit-widgets-notices__dismissible .components-notice .components-notice__dismiss,
+.edit-widgets-notices__pinned .components-notice .components-notice__dismiss {
+ margin-top: 12px;
+}
+
+.edit-widgets-layout__inserter-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+.edit-widgets-layout__inserter-panel .block-editor-inserter__menu {
+ overflow: hidden;
+}
+
+.edit-widgets-layout__inserter-panel-header {
+ padding-top: 8px;
+ padding-left: 8px;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.edit-widgets-layout__inserter-panel-content {
+ height: calc(100% - 36px - 8px);
+}
+@media (min-width: 782px) {
+ .edit-widgets-layout__inserter-panel-content {
+ height: 100%;
+ }
+}
+
+.edit-widgets-welcome-guide {
+ width: 312px;
+}
+.edit-widgets-welcome-guide__image {
+ background: #00a0d2;
+ margin: 0 0 16px;
+}
+.edit-widgets-welcome-guide__image > img {
+ display: block;
+ max-width: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.edit-widgets-welcome-guide__heading {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 24px;
+ line-height: 1.4;
+ margin: 16px 0 16px 0;
+ padding: 0 32px;
+}
+.edit-widgets-welcome-guide__text {
+ font-size: 13px;
+ line-height: 1.4;
+ margin: 0 0 24px 0;
+ padding: 0 32px;
+}
+.edit-widgets-welcome-guide__inserter-icon {
+ margin: 0 4px;
+ vertical-align: text-top;
+}
+
+.edit-widgets-block-editor {
+ position: relative;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ display: flex;
+ flex-direction: column;
+ flex-grow: 1;
+}
+.edit-widgets-block-editor > div:last-of-type,
+.edit-widgets-block-editor .block-editor-writing-flow,
+.edit-widgets-block-editor .block-editor-writing-flow > div {
+ display: flex;
+ flex-direction: column;
+ flex-grow: 1;
+}
+.edit-widgets-block-editor .edit-widgets-main-block-list {
+ height: 100%;
+}
+.edit-widgets-block-editor .components-button {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+.edit-widgets-block-editor .components-button.is-tertiary, .edit-widgets-block-editor .components-button.has-icon {
+ padding: 6px;
+}
+
+.edit-widgets-editor__list-view-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ min-width: 350px;
+}
+
+.edit-widgets-editor__list-view-panel-content {
+ height: calc(100% - 36px - 8px);
+ overflow-y: auto;
+ padding: 8px;
+}
+
+.edit-widgets-editor__list-view-panel-header {
+ align-items: center;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ justify-content: space-between;
+ height: 48px;
+ padding-right: 16px;
+ padding-left: 4px;
+}
+
+html.wp-toolbar {
+ background: #fff;
+}
+
+body.appearance_page_gutenberg-widgets,
+body.widgets-php {
+ background: #fff;
+ /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
+ Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
+}
+body.appearance_page_gutenberg-widgets #wpcontent,
+body.widgets-php #wpcontent {
+ padding-right: 0;
+}
+body.appearance_page_gutenberg-widgets #wpbody-content,
+body.widgets-php #wpbody-content {
+ padding-bottom: 0;
+}
+body.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta),
+body.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
+ display: none;
+}
+body.appearance_page_gutenberg-widgets #wpfooter,
+body.widgets-php #wpfooter {
+ display: none;
+}
+body.appearance_page_gutenberg-widgets .a11y-speak-region,
+body.widgets-php .a11y-speak-region {
+ right: -1px;
+ top: -1px;
+}
+body.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu::after,
+body.appearance_page_gutenberg-widgets ul#adminmenu > li.current > a.current::after,
+body.widgets-php ul#adminmenu a.wp-has-current-submenu::after,
+body.widgets-php ul#adminmenu > li.current > a.current::after {
+ border-left-color: #fff;
+}
+body.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,
+body.widgets-php .media-frame select.attachment-filters:last-of-type {
+ width: auto;
+ max-width: 100%;
+}
+
+.blocks-widgets-container,
+.components-modal__frame {
+ box-sizing: border-box;
+}
+.blocks-widgets-container *,
+.blocks-widgets-container *::before,
+.blocks-widgets-container *::after,
+.components-modal__frame *,
+.components-modal__frame *::before,
+.components-modal__frame *::after {
+ box-sizing: inherit;
+}
+
+@media (min-width: 600px) {
+ .blocks-widgets-container {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ min-height: calc(100vh - 46px);
+ }
+}
+@media (min-width: 782px) {
+ .blocks-widgets-container {
+ min-height: calc(100vh - 32px);
+ }
+}
+.blocks-widgets-container .interface-interface-skeleton__content {
+ background-color: #f0f0f0;
+}
+
+.blocks-widgets-container .editor-styles-wrapper {
+ max-width: 700px;
+ margin: auto;
+}
+
+.edit-widgets-sidebar .components-button.interface-complementary-area__pin-unpin-item {
+ display: none;
+}
+
+.widgets-php .notice {
+ display: none !important;
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-widgets/style-rtl.min.css b/static/wp-includes/css/dist/edit-widgets/style-rtl.min.css
new file mode 100755
index 0000000..c510bdc
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-widgets/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.components-panel__header.interface-complementary-area-header__small{background:#fff;padding-left: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{background:#fff;padding-left:4px}.interface-complementary-area-header .components-button.has-icon{display:none;margin-right:auto}.interface-complementary-area-header .components-button.has-icon~.components-button{margin-right:0}@media (min-width:782px){.interface-complementary-area-header .components-button.has-icon{display:flex}}@media (min-width:782px){.components-panel__header+.interface-complementary-area-header{margin-top:0}}.interface-complementary-area{background:#fff;color:#1e1e1e}@media (min-width:600px){.interface-complementary-area{-webkit-overflow-scrolling:touch}}@media (min-width:782px){.interface-complementary-area{width:280px}}.interface-complementary-area .components-panel{border:none;position:relative;z-index:0}.interface-complementary-area .components-panel__header{position:sticky;top:0;z-index:1}.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:48px}@media (min-width:782px){.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:0}}.interface-complementary-area p{margin-top:0}.interface-complementary-area h2{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area h3{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area hr{border-top:none;border-bottom:1px solid #f0f0f0;margin:1.5em 0}.interface-complementary-area div.components-toolbar,.interface-complementary-area div.components-toolbar-group{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;left:10px;bottom:10px;right: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-right:0}}html.interface-interface-skeleton__html-container{position:fixed;width:100%}@media (min-width:782px){html.interface-interface-skeleton__html-container{position:static;width:auto}}.interface-interface-skeleton{display:flex;flex-direction:row;height:auto;max-height:100%;position:fixed;top:46px;left:0;bottom:0}@media (min-width:783px){.interface-interface-skeleton{top:32px}.is-fullscreen-mode .interface-interface-skeleton{top:0}}.interface-interface-skeleton__editor{display:flex;flex-direction:column;flex:0 1 100%;overflow:hidden}.interface-interface-skeleton{right:0}@media (min-width:783px){.interface-interface-skeleton{right:160px}}@media (min-width:783px){.auto-fold .interface-interface-skeleton{right:36px}}@media (min-width:961px){.auto-fold .interface-interface-skeleton{right:160px}}.folded .interface-interface-skeleton{right:0}@media (min-width:783px){.folded .interface-interface-skeleton{right:36px}}body.is-fullscreen-mode .interface-interface-skeleton{right:0!important}.interface-interface-skeleton__body{flex-grow:1;display:flex;overflow:auto;overscroll-behavior-y:none}@media (min-width:782px){.has-footer .interface-interface-skeleton__body{padding-bottom:25px}}.interface-interface-skeleton__content{flex-grow:1;display:flex;flex-direction:column;overflow:auto;z-index:20}.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{display:block;flex-shrink:0;position:absolute;z-index:100000;top:0;left:0;bottom:0;right:0;background:#fff;color:#1e1e1e}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{position:relative!important;z-index:90;width:auto}}.interface-interface-skeleton__sidebar{overflow:auto}@media (min-width:782px){.interface-interface-skeleton__sidebar{border-right:1px solid #e0e0e0}}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar{border-left:1px solid #e0e0e0}}.interface-interface-skeleton__header{flex-shrink:0;height:auto;border-bottom:1px solid #e0e0e0;z-index:30;color:#1e1e1e}.interface-interface-skeleton__footer{height:auto;flex-shrink:0;border-top:1px solid #e0e0e0;color:#1e1e1e;position:absolute;bottom:0;right:0;width:100%;background-color:#fff;z-index:90;display:none}@media (min-width:782px){.interface-interface-skeleton__footer{display:flex}}.interface-interface-skeleton__footer .block-editor-block-breadcrumb{z-index:30;display:flex;background:#fff;height:24px;align-items:center;font-size:13px;padding:0 18px}.interface-interface-skeleton__actions{z-index:100000;position:fixed!important;top:-9999em;bottom:auto;right:auto;left:0;width:280px;color:#1e1e1e}.interface-interface-skeleton__actions:focus{top:auto;bottom:0}.interface-more-menu-dropdown{margin-right:-4px}.interface-more-menu-dropdown .components-button{width:auto;padding:0 2px}@media (min-width:600px){.interface-more-menu-dropdown{margin-right:0}.interface-more-menu-dropdown .components-button{padding:0 4px}}.interface-more-menu-dropdown__content .components-popover__content{min-width:280px}@media (min-width:480px){.interface-more-menu-dropdown__content .components-popover__content{width:auto;max-width:480px}}.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu{padding:0}.components-popover.interface-more-menu-dropdown__content{z-index:99998}.interface-pinned-items{display:flex}.interface-pinned-items .components-button:not(:first-child){display:none}@media (min-width:600px){.interface-pinned-items .components-button:not(:first-child){display:flex}}.interface-pinned-items .components-button{margin-right:4px}.interface-pinned-items .components-button svg{max-width:24px;max-height:24px}@media (min-width:600px){.interface-preferences-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.interface-preferences-modal{width:750px}}@media (min-width:960px){.interface-preferences-modal{height:70%}}@media (max-width:781px){.interface-preferences-modal .components-modal__content{padding:0}.interface-preferences-modal .components-modal__content:before{content:none}}.interface-preferences__tabs .components-tab-panel__tabs{position:absolute;top:84px;right:16px;width:160px}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item{border-radius:2px;font-weight:400}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active{background:#f0f0f0;box-shadow:none;font-weight:500}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.interface-preferences__tabs .components-tab-panel__tab-content{padding-right:24px;margin-right:160px}@media (max-width:781px){.interface-preferences__provider{height:100%}}.interface-preferences-modal__section{margin:0 0 2.5rem}.interface-preferences-modal__section:last-child{margin:0}.interface-preferences-modal__section-title{font-size:.9rem;font-weight:600;margin-top:0}.interface-preferences-modal__section-description{margin:-8px 0 8px;font-size:12px;font-style:normal;color:#757575}.interface-preferences-modal__option .components-base-control .components-base-control__field{align-items:center;display:flex;margin-bottom:0}.interface-preferences-modal__option .components-base-control .components-base-control__field>label{flex-grow:1;padding:.6rem 10px .6rem 0}.interface-preferences-modal__option .components-base-control__help{margin:-8px 58px 8px 0;font-size:12px;font-style:normal;color:#757575}.wp-block[data-type="core/widget-area"]{max-width:700px;margin-right:auto;margin-left:auto}.wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;margin:0;height:48px;position:relative;z-index:1;background:#fff;transform:translateZ(0)}.wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title:hover{background:#fff}.wp-block[data-type="core/widget-area"] .block-list-appender.wp-block{width:auto;position:relative}.wp-block[data-type="core/widget-area"] .editor-styles-wrapper .wp-block.wp-block.wp-block.wp-block.wp-block{max-width:100%}.wp-block[data-type="core/widget-area"] .components-panel__body.is-opened{padding:0}.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper{margin:0;padding:0}.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper>.block-editor-block-list__layout{margin-top:-48px;padding:72px 16px 16px;min-height:32px}.wp-block-widget-area__highlight-drop-zone{outline:var(--wp-admin-border-width-focus) solid var(--wp-admin-theme-color)}body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title,body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title *{pointer-events:none}.edit-widgets-error-boundary{max-width:780px;padding:20px;margin:60px auto auto;box-shadow:0 10px 10px rgba(0,0,0,.25)}.edit-widgets-header{display:flex;align-items:center;justify-content:space-between;height:60px;padding:0 16px;overflow:auto}@media (min-width:600px){.edit-widgets-header{overflow:visible}}.edit-widgets-header__navigable-toolbar-wrapper{display:flex;align-items:center;justify-content:center}.edit-widgets-header__title{font-size:20px;padding:0;margin:0 0 0 20px}.edit-widgets-header__actions{display:flex}.edit-widgets-header__actions .components-button{margin-left:4px}@media (min-width:600px){.edit-widgets-header__actions .components-button{margin-left:12px}}.edit-widgets-header__actions .edit-widgets-more-menu .components-button,.edit-widgets-header__actions .interface-pinned-items .components-button{margin-left:0}.edit-widgets-header-toolbar{border:none}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon,.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon{height:36px;min-width:36px;padding:6px}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon.is-pressed,.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon.is-pressed{background:#1e1e1e}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon:focus:not(:disabled),.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon:before,.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon:before{display:none}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle{padding-right:8px;padding-left:8px}@media (min-width:600px){.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle{padding-right:12px;padding-left:12px}}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle:after{content:none}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg{transition:transform .2s cubic-bezier(.165,.84,.44,1)}@media (prefers-reduced-motion:reduce){.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg{transition-duration:0s;transition-delay:0s}}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle.is-pressed svg{transform:rotate(-45deg)}.edit-widgets-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.edit-widgets-keyboard-shortcut-help-modal__main-shortcuts .edit-widgets-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.edit-widgets-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.edit-widgets-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.edit-widgets-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.edit-widgets-keyboard-shortcut-help-modal__shortcut:empty{display:none}.edit-widgets-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 1rem 0 0;text-align:left}.edit-widgets-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 .2rem 0 0}.components-panel__header.edit-widgets-sidebar__panel-tabs{justify-content:flex-start;padding-right:0;padding-left:4px;border-top:0;margin-top:0}.components-panel__header.edit-widgets-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-widgets-sidebar__panel-tabs li{margin:0}.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon{display:none;margin-right:auto}@media (min-width:782px){.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon{display:flex}}.components-button.edit-widgets-sidebar__panel-tab{border-radius:0;height:49px;background:transparent;border:none;box-shadow:none;cursor:pointer;display:inline-block;padding:3px 15px;margin-right:0;font-weight:400;color:#1e1e1e}.components-button.edit-widgets-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.components-button.edit-widgets-sidebar__panel-tab.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);font-weight:600;position:relative}.components-button.edit-widgets-sidebar__panel-tab.is-active:before{content:"";position:absolute;top:0;bottom:1px;left:0;right:0;border-bottom:4px solid transparent}.components-button.edit-widgets-sidebar__panel-tab:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-button.edit-widgets-sidebar__panel-tab.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}.edit-widgets-widget-areas__top-container{display:flex;padding:16px}.edit-widgets-widget-areas__top-container .block-editor-block-icon{margin-left:16px}.edit-widgets-notices__snackbar{position:fixed;left:0;bottom:20px;padding-right:16px;padding-left:16px;right:0}@media (min-width:783px){.edit-widgets-notices__snackbar{right:160px}}@media (min-width:783px){.auto-fold .edit-widgets-notices__snackbar{right:36px}}@media (min-width:961px){.auto-fold .edit-widgets-notices__snackbar{right:160px}}.folded .edit-widgets-notices__snackbar{right:0}@media (min-width:783px){.folded .edit-widgets-notices__snackbar{right:36px}}body.is-fullscreen-mode .edit-widgets-notices__snackbar{right:0!important}.edit-widgets-notices__dismissible .components-notice,.edit-widgets-notices__pinned .components-notice{box-sizing:border-box;margin:0;border-bottom:1px solid rgba(0,0,0,.2);padding:0 12px;min-height:60px}.edit-widgets-notices__dismissible .components-notice .components-notice__dismiss,.edit-widgets-notices__pinned .components-notice .components-notice__dismiss{margin-top:12px}.edit-widgets-layout__inserter-panel{height:100%;display:flex;flex-direction:column}.edit-widgets-layout__inserter-panel .block-editor-inserter__menu{overflow:hidden}.edit-widgets-layout__inserter-panel-header{padding-top:8px;padding-left:8px;display:flex;justify-content:flex-end}.edit-widgets-layout__inserter-panel-content{height:calc(100% - 44px)}@media (min-width:782px){.edit-widgets-layout__inserter-panel-content{height:100%}}.edit-widgets-welcome-guide{width:312px}.edit-widgets-welcome-guide__image{background:#00a0d2;margin:0 0 16px}.edit-widgets-welcome-guide__image>img{display:block;max-width:100%;-o-object-fit:cover;object-fit:cover}.edit-widgets-welcome-guide__heading{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:24px;line-height:1.4;margin:16px 0;padding:0 32px}.edit-widgets-welcome-guide__text{font-size:13px;line-height:1.4;margin:0 0 24px;padding:0 32px}.edit-widgets-welcome-guide__inserter-icon{margin:0 4px;vertical-align:text-top}.edit-widgets-block-editor{position:relative;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.edit-widgets-block-editor,.edit-widgets-block-editor .block-editor-writing-flow,.edit-widgets-block-editor .block-editor-writing-flow>div,.edit-widgets-block-editor>div:last-of-type{display:flex;flex-direction:column;flex-grow:1}.edit-widgets-block-editor .edit-widgets-main-block-list{height:100%}.edit-widgets-block-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.edit-widgets-block-editor .components-button.has-icon,.edit-widgets-block-editor .components-button.is-tertiary{padding:6px}.edit-widgets-editor__list-view-panel{height:100%;display:flex;flex-direction:column;min-width:350px}.edit-widgets-editor__list-view-panel-content{height:calc(100% - 44px);overflow-y:auto;padding:8px}.edit-widgets-editor__list-view-panel-header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;height:48px;padding-right:16px;padding-left:4px}body.appearance_page_gutenberg-widgets,body.widgets-php,html.wp-toolbar{background:#fff}body.appearance_page_gutenberg-widgets #wpcontent,body.widgets-php #wpcontent{padding-right:0}body.appearance_page_gutenberg-widgets #wpbody-content,body.widgets-php #wpbody-content{padding-bottom:0}body.appearance_page_gutenberg-widgets #wpbody-content>div:not(.blocks-widgets-container):not(#screen-meta),body.appearance_page_gutenberg-widgets #wpfooter,body.widgets-php #wpbody-content>div:not(.blocks-widgets-container):not(#screen-meta),body.widgets-php #wpfooter{display:none}body.appearance_page_gutenberg-widgets .a11y-speak-region,body.widgets-php .a11y-speak-region{right:-1px;top:-1px}body.appearance_page_gutenberg-widgets ul#adminmenu>li.current>a.current:after,body.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu:after,body.widgets-php ul#adminmenu>li.current>a.current:after,body.widgets-php ul#adminmenu a.wp-has-current-submenu:after{border-left-color:#fff}body.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,body.widgets-php .media-frame select.attachment-filters:last-of-type{width:auto;max-width:100%}.blocks-widgets-container,.components-modal__frame{box-sizing:border-box}.blocks-widgets-container *,.blocks-widgets-container :after,.blocks-widgets-container :before,.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}@media (min-width:600px){.blocks-widgets-container{position:absolute;top:0;left:0;bottom:0;right:0;min-height:calc(100vh - 46px)}}@media (min-width:782px){.blocks-widgets-container{min-height:calc(100vh - 32px)}}.blocks-widgets-container .interface-interface-skeleton__content{background-color:#f0f0f0}.blocks-widgets-container .editor-styles-wrapper{max-width:700px;margin:auto}.edit-widgets-sidebar .components-button.interface-complementary-area__pin-unpin-item{display:none}.widgets-php .notice{display:none!important}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-widgets/style.css b/static/wp-includes/css/dist/edit-widgets/style.css
new file mode 100755
index 0000000..b091b49
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-widgets/style.css
@@ -0,0 +1,1179 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.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 {
+ background: #fff;
+ padding-right: 4px;
+}
+.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;
+ }
+}
+
+@media (min-width: 782px) {
+ .components-panel__header + .interface-complementary-area-header {
+ margin-top: 0;
+ }
+}
+
+.interface-complementary-area {
+ background: #fff;
+ color: #1e1e1e;
+}
+@media (min-width: 600px) {
+ .interface-complementary-area {
+ -webkit-overflow-scrolling: touch;
+ }
+}
+@media (min-width: 782px) {
+ .interface-complementary-area {
+ width: 280px;
+ }
+}
+.interface-complementary-area .components-panel {
+ border: none;
+ position: relative;
+ z-index: 0;
+}
+.interface-complementary-area .components-panel__header {
+ position: sticky;
+ top: 0;
+ z-index: 1;
+}
+.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 48px;
+}
+@media (min-width: 782px) {
+ .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
+ top: 0;
+ }
+}
+.interface-complementary-area p {
+ margin-top: 0;
+}
+.interface-complementary-area h2 {
+ font-size: 13px;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area h3 {
+ font-size: 11px;
+ text-transform: uppercase;
+ font-weight: 500;
+ color: #1e1e1e;
+ margin-bottom: 1.5em;
+}
+.interface-complementary-area hr {
+ border-top: none;
+ border-bottom: 1px solid #f0f0f0;
+ 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;
+ }
+}
+
+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: row;
+ 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__editor {
+ display: flex;
+ flex-direction: column;
+ flex: 0 1 100%;
+ overflow: hidden;
+}
+
+.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;
+ }
+}
+
+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;
+}
+@media (min-width: 782px) {
+ .has-footer .interface-interface-skeleton__body {
+ padding-bottom: 25px;
+ }
+}
+
+.interface-interface-skeleton__content {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow: auto;
+ z-index: 20;
+}
+
+.interface-interface-skeleton__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ display: block;
+ 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__secondary-sidebar,
+.interface-interface-skeleton__sidebar {
+ position: relative !important;
+ z-index: 90;
+ width: auto;
+ }
+}
+
+.interface-interface-skeleton__sidebar {
+ overflow: auto;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__sidebar {
+ border-left: 1px solid #e0e0e0;
+ }
+}
+
+@media (min-width: 782px) {
+ .interface-interface-skeleton__secondary-sidebar {
+ border-right: 1px solid #e0e0e0;
+ }
+}
+
+.interface-interface-skeleton__header {
+ flex-shrink: 0;
+ height: auto;
+ border-bottom: 1px solid #e0e0e0;
+ z-index: 30;
+ color: #1e1e1e;
+}
+
+.interface-interface-skeleton__footer {
+ height: auto;
+ flex-shrink: 0;
+ border-top: 1px solid #e0e0e0;
+ color: #1e1e1e;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ background-color: #fff;
+ z-index: 90;
+ display: none;
+}
+@media (min-width: 782px) {
+ .interface-interface-skeleton__footer {
+ display: flex;
+ }
+}
+.interface-interface-skeleton__footer .block-editor-block-breadcrumb {
+ z-index: 30;
+ display: flex;
+ background: #fff;
+ height: 24px;
+ align-items: center;
+ font-size: 13px;
+ padding: 0 18px;
+}
+
+.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;
+}
+
+.interface-more-menu-dropdown {
+ margin-left: -4px;
+}
+.interface-more-menu-dropdown .components-button {
+ width: auto;
+ padding: 0 2px;
+}
+@media (min-width: 600px) {
+ .interface-more-menu-dropdown {
+ margin-left: 0;
+ }
+ .interface-more-menu-dropdown .components-button {
+ padding: 0 4px;
+ }
+}
+
+.interface-more-menu-dropdown__content .components-popover__content {
+ min-width: 280px;
+}
+@media (min-width: 480px) {
+ .interface-more-menu-dropdown__content .components-popover__content {
+ width: auto;
+ max-width: 480px;
+ }
+}
+.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu {
+ padding: 0;
+}
+
+.components-popover.interface-more-menu-dropdown__content {
+ z-index: 99998;
+}
+
+.interface-pinned-items {
+ display: flex;
+}
+.interface-pinned-items .components-button:not(:first-child) {
+ display: none;
+}
+@media (min-width: 600px) {
+ .interface-pinned-items .components-button:not(:first-child) {
+ display: flex;
+ }
+}
+.interface-pinned-items .components-button {
+ margin-left: 4px;
+}
+.interface-pinned-items .components-button svg {
+ max-width: 24px;
+ max-height: 24px;
+}
+
+@media (min-width: 600px) {
+ .interface-preferences-modal {
+ width: calc(100% - 32px);
+ height: calc(100% - 120px);
+ }
+}
+@media (min-width: 782px) {
+ .interface-preferences-modal {
+ width: 750px;
+ }
+}
+@media (min-width: 960px) {
+ .interface-preferences-modal {
+ height: 70%;
+ }
+}
+@media (max-width: 781px) {
+ .interface-preferences-modal .components-modal__content {
+ padding: 0;
+ }
+ .interface-preferences-modal .components-modal__content::before {
+ content: none;
+ }
+}
+
+.interface-preferences__tabs .components-tab-panel__tabs {
+ position: absolute;
+ top: 84px;
+ left: 16px;
+ width: 160px;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
+ border-radius: 2px;
+ font-weight: 400;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active {
+ background: #f0f0f0;
+ box-shadow: none;
+ font-weight: 500;
+}
+.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.interface-preferences__tabs .components-tab-panel__tab-content {
+ padding-left: 24px;
+ margin-left: 160px;
+}
+
+@media (max-width: 781px) {
+ .interface-preferences__provider {
+ height: 100%;
+ }
+}
+.interface-preferences-modal__section {
+ margin: 0 0 2.5rem 0;
+}
+.interface-preferences-modal__section:last-child {
+ margin: 0;
+}
+
+.interface-preferences-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+ margin-top: 0;
+}
+
+.interface-preferences-modal__section-description {
+ margin: -8px 0 8px 0;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.interface-preferences-modal__option .components-base-control .components-base-control__field {
+ align-items: center;
+ display: flex;
+ margin-bottom: 0;
+}
+.interface-preferences-modal__option .components-base-control .components-base-control__field > label {
+ flex-grow: 1;
+ padding: 0.6rem 0 0.6rem 10px;
+}
+.interface-preferences-modal__option .components-base-control__help {
+ margin: -8px 0 8px 58px;
+ font-size: 12px;
+ font-style: normal;
+ color: #757575;
+}
+
+.wp-block[data-type="core/widget-area"] {
+ max-width: 700px;
+ margin-left: auto;
+ margin-right: auto;
+}
+.wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ margin: 0;
+ height: 48px;
+ position: relative;
+ z-index: 1;
+ background: #fff;
+ transform: translateZ(0);
+}
+.wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title:hover {
+ background: #fff;
+}
+.wp-block[data-type="core/widget-area"] .block-list-appender.wp-block {
+ width: initial;
+ position: relative;
+}
+.wp-block[data-type="core/widget-area"] .editor-styles-wrapper .wp-block.wp-block.wp-block.wp-block.wp-block {
+ max-width: 100%;
+}
+.wp-block[data-type="core/widget-area"] .components-panel__body.is-opened {
+ padding: 0;
+}
+
+.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper {
+ margin: 0;
+ padding: 0;
+}
+.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper > .block-editor-block-list__layout {
+ margin-top: -48px;
+ padding: 72px 16px 16px;
+ min-height: 32px;
+}
+
+.wp-block-widget-area__highlight-drop-zone {
+ outline: var(--wp-admin-border-width-focus) solid var(--wp-admin-theme-color);
+}
+
+body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title,
+body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title * {
+ pointer-events: none;
+}
+
+.edit-widgets-error-boundary {
+ margin: auto;
+ max-width: 780px;
+ padding: 20px;
+ margin-top: 60px;
+ box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
+}
+
+.edit-widgets-header {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ height: 60px;
+ padding: 0 16px;
+ overflow: auto;
+}
+@media (min-width: 600px) {
+ .edit-widgets-header {
+ overflow: visible;
+ }
+}
+
+.edit-widgets-header__navigable-toolbar-wrapper {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.edit-widgets-header__title {
+ font-size: 20px;
+ padding: 0;
+ margin: 0 20px 0 0;
+}
+
+.edit-widgets-header__actions {
+ display: flex;
+}
+.edit-widgets-header__actions .components-button {
+ margin-right: 4px;
+}
+@media (min-width: 600px) {
+ .edit-widgets-header__actions .components-button {
+ margin-right: 12px;
+ }
+}
+.edit-widgets-header__actions .edit-widgets-more-menu .components-button,
+.edit-widgets-header__actions .interface-pinned-items .components-button {
+ margin-right: 0;
+}
+
+.edit-widgets-header-toolbar {
+ border: none;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon,
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon {
+ height: 36px;
+ min-width: 36px;
+ padding: 6px;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon.is-pressed,
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon.is-pressed {
+ background: #1e1e1e;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon:focus:not(:disabled),
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon:focus:not(:disabled) {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 1px #fff;
+ outline: 1px solid transparent;
+}
+.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon::before,
+.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon::before {
+ display: none;
+}
+
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle {
+ padding-left: 8px;
+ padding-right: 8px;
+}
+@media (min-width: 600px) {
+ .edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle {
+ padding-left: 12px;
+ padding-right: 12px;
+ }
+}
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle::after {
+ content: none;
+}
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg {
+ transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle.is-pressed svg {
+ transform: rotate(45deg);
+}
+
+.edit-widgets-keyboard-shortcut-help-modal__section {
+ margin: 0 0 2rem 0;
+}
+.edit-widgets-keyboard-shortcut-help-modal__main-shortcuts .edit-widgets-keyboard-shortcut-help-modal__shortcut-list {
+ margin-top: -25px;
+}
+.edit-widgets-keyboard-shortcut-help-modal__section-title {
+ font-size: 0.9rem;
+ font-weight: 600;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut {
+ display: flex;
+ align-items: baseline;
+ padding: 0.6rem 0;
+ border-top: 1px solid #ddd;
+ margin-bottom: 0;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut:last-child {
+ border-bottom: 1px solid #ddd;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut:empty {
+ display: none;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-term {
+ font-weight: 600;
+ margin: 0 0 0 1rem;
+ text-align: right;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-description {
+ flex: 1;
+ margin: 0;
+ flex-basis: auto;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ display: block;
+ background: none;
+ margin: 0;
+ padding: 0;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination {
+ margin-top: 10px;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key {
+ padding: 0.25rem 0.5rem;
+ border-radius: 8%;
+ margin: 0 0.2rem 0 0.2rem;
+}
+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child {
+ margin: 0 0 0 0.2rem;
+}
+
+.components-panel__header.edit-widgets-sidebar__panel-tabs {
+ justify-content: flex-start;
+ padding-left: 0;
+ padding-right: 4px;
+ border-top: 0;
+ margin-top: 0;
+}
+.components-panel__header.edit-widgets-sidebar__panel-tabs ul {
+ display: flex;
+}
+.components-panel__header.edit-widgets-sidebar__panel-tabs li {
+ margin: 0;
+}
+.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon {
+ display: none;
+ margin-left: auto;
+}
+@media (min-width: 782px) {
+ .components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon {
+ display: flex;
+ }
+}
+
+.components-button.edit-widgets-sidebar__panel-tab {
+ border-radius: 0;
+ height: 49px;
+ background: transparent;
+ border: none;
+ box-shadow: none;
+ cursor: pointer;
+ display: inline-block;
+ padding: 3px 15px;
+ margin-left: 0;
+ font-weight: 400;
+ color: #1e1e1e;
+}
+.components-button.edit-widgets-sidebar__panel-tab::after {
+ content: attr(data-label);
+ display: block;
+ font-weight: 600;
+ height: 0;
+ overflow: hidden;
+ speak: none;
+ visibility: hidden;
+}
+.components-button.edit-widgets-sidebar__panel-tab.is-active {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
+ font-weight: 600;
+ position: relative;
+}
+.components-button.edit-widgets-sidebar__panel-tab.is-active::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ bottom: 1px;
+ right: 0;
+ left: 0;
+ border-bottom: 4px solid transparent;
+}
+.components-button.edit-widgets-sidebar__panel-tab:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+}
+.components-button.edit-widgets-sidebar__panel-tab.is-active:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
+}
+
+.edit-widgets-widget-areas__top-container {
+ display: flex;
+ padding: 16px;
+}
+.edit-widgets-widget-areas__top-container .block-editor-block-icon {
+ margin-right: 16px;
+}
+
+.edit-widgets-notices__snackbar {
+ position: fixed;
+ right: 0;
+ bottom: 20px;
+ padding-left: 16px;
+ padding-right: 16px;
+}
+
+.edit-widgets-notices__snackbar {
+ /* Set left position when auto-fold is not on the body element. */
+ left: 0;
+}
+@media (min-width: 783px) {
+ .edit-widgets-notices__snackbar {
+ left: 160px;
+ }
+}
+
+.auto-fold .edit-widgets-notices__snackbar {
+ /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
+}
+@media (min-width: 783px) {
+ .auto-fold .edit-widgets-notices__snackbar {
+ left: 36px;
+ }
+}
+@media (min-width: 961px) {
+ .auto-fold .edit-widgets-notices__snackbar {
+ left: 160px;
+ }
+}
+
+/* Sidebar manually collapsed. */
+.folded .edit-widgets-notices__snackbar {
+ left: 0;
+}
+@media (min-width: 783px) {
+ .folded .edit-widgets-notices__snackbar {
+ left: 36px;
+ }
+}
+
+body.is-fullscreen-mode .edit-widgets-notices__snackbar {
+ left: 0 !important;
+}
+
+.edit-widgets-notices__dismissible .components-notice,
+.edit-widgets-notices__pinned .components-notice {
+ box-sizing: border-box;
+ margin: 0;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.2);
+ padding: 0 12px;
+ min-height: 60px;
+}
+.edit-widgets-notices__dismissible .components-notice .components-notice__dismiss,
+.edit-widgets-notices__pinned .components-notice .components-notice__dismiss {
+ margin-top: 12px;
+}
+
+.edit-widgets-layout__inserter-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+.edit-widgets-layout__inserter-panel .block-editor-inserter__menu {
+ overflow: hidden;
+}
+
+.edit-widgets-layout__inserter-panel-header {
+ padding-top: 8px;
+ padding-right: 8px;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.edit-widgets-layout__inserter-panel-content {
+ height: calc(100% - 36px - 8px);
+}
+@media (min-width: 782px) {
+ .edit-widgets-layout__inserter-panel-content {
+ height: 100%;
+ }
+}
+
+.edit-widgets-welcome-guide {
+ width: 312px;
+}
+.edit-widgets-welcome-guide__image {
+ background: #00a0d2;
+ margin: 0 0 16px;
+}
+.edit-widgets-welcome-guide__image > img {
+ display: block;
+ max-width: 100%;
+ -o-object-fit: cover;
+ object-fit: cover;
+}
+.edit-widgets-welcome-guide__heading {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 24px;
+ line-height: 1.4;
+ margin: 16px 0 16px 0;
+ padding: 0 32px;
+}
+.edit-widgets-welcome-guide__text {
+ font-size: 13px;
+ line-height: 1.4;
+ margin: 0 0 24px 0;
+ padding: 0 32px;
+}
+.edit-widgets-welcome-guide__inserter-icon {
+ margin: 0 4px;
+ vertical-align: text-top;
+}
+
+.edit-widgets-block-editor {
+ position: relative;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ display: flex;
+ flex-direction: column;
+ flex-grow: 1;
+}
+.edit-widgets-block-editor > div:last-of-type,
+.edit-widgets-block-editor .block-editor-writing-flow,
+.edit-widgets-block-editor .block-editor-writing-flow > div {
+ display: flex;
+ flex-direction: column;
+ flex-grow: 1;
+}
+.edit-widgets-block-editor .edit-widgets-main-block-list {
+ height: 100%;
+}
+.edit-widgets-block-editor .components-button {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+.edit-widgets-block-editor .components-button.is-tertiary, .edit-widgets-block-editor .components-button.has-icon {
+ padding: 6px;
+}
+
+.edit-widgets-editor__list-view-panel {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ min-width: 350px;
+}
+
+.edit-widgets-editor__list-view-panel-content {
+ height: calc(100% - 36px - 8px);
+ overflow-y: auto;
+ padding: 8px;
+}
+
+.edit-widgets-editor__list-view-panel-header {
+ align-items: center;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ justify-content: space-between;
+ height: 48px;
+ padding-left: 16px;
+ padding-right: 4px;
+}
+
+html.wp-toolbar {
+ background: #fff;
+}
+
+body.appearance_page_gutenberg-widgets,
+body.widgets-php {
+ background: #fff;
+ /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
+ Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
+}
+body.appearance_page_gutenberg-widgets #wpcontent,
+body.widgets-php #wpcontent {
+ padding-left: 0;
+}
+body.appearance_page_gutenberg-widgets #wpbody-content,
+body.widgets-php #wpbody-content {
+ padding-bottom: 0;
+}
+body.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta),
+body.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
+ display: none;
+}
+body.appearance_page_gutenberg-widgets #wpfooter,
+body.widgets-php #wpfooter {
+ display: none;
+}
+body.appearance_page_gutenberg-widgets .a11y-speak-region,
+body.widgets-php .a11y-speak-region {
+ left: -1px;
+ top: -1px;
+}
+body.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu::after,
+body.appearance_page_gutenberg-widgets ul#adminmenu > li.current > a.current::after,
+body.widgets-php ul#adminmenu a.wp-has-current-submenu::after,
+body.widgets-php ul#adminmenu > li.current > a.current::after {
+ border-right-color: #fff;
+}
+body.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,
+body.widgets-php .media-frame select.attachment-filters:last-of-type {
+ width: auto;
+ max-width: 100%;
+}
+
+.blocks-widgets-container,
+.components-modal__frame {
+ box-sizing: border-box;
+}
+.blocks-widgets-container *,
+.blocks-widgets-container *::before,
+.blocks-widgets-container *::after,
+.components-modal__frame *,
+.components-modal__frame *::before,
+.components-modal__frame *::after {
+ box-sizing: inherit;
+}
+
+@media (min-width: 600px) {
+ .blocks-widgets-container {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ min-height: calc(100vh - 46px);
+ }
+}
+@media (min-width: 782px) {
+ .blocks-widgets-container {
+ min-height: calc(100vh - 32px);
+ }
+}
+.blocks-widgets-container .interface-interface-skeleton__content {
+ background-color: #f0f0f0;
+}
+
+.blocks-widgets-container .editor-styles-wrapper {
+ max-width: 700px;
+ margin: auto;
+}
+
+.edit-widgets-sidebar .components-button.interface-complementary-area__pin-unpin-item {
+ display: none;
+}
+
+.widgets-php .notice {
+ display: none !important;
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/edit-widgets/style.min.css b/static/wp-includes/css/dist/edit-widgets/style.min.css
new file mode 100755
index 0000000..49d3a0b
--- /dev/null
+++ b/static/wp-includes/css/dist/edit-widgets/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.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{background:#fff;padding-right:4px}.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}}@media (min-width:782px){.components-panel__header+.interface-complementary-area-header{margin-top:0}}.interface-complementary-area{background:#fff;color:#1e1e1e}@media (min-width:600px){.interface-complementary-area{-webkit-overflow-scrolling:touch}}@media (min-width:782px){.interface-complementary-area{width:280px}}.interface-complementary-area .components-panel{border:none;position:relative;z-index:0}.interface-complementary-area .components-panel__header{position:sticky;top:0;z-index:1}.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:48px}@media (min-width:782px){.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs{top:0}}.interface-complementary-area p{margin-top:0}.interface-complementary-area h2{font-size:13px;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area h3{font-size:11px;text-transform:uppercase;font-weight:500;color:#1e1e1e;margin-bottom:1.5em}.interface-complementary-area hr{border-top:none;border-bottom:1px solid #f0f0f0;margin:1.5em 0}.interface-complementary-area div.components-toolbar,.interface-complementary-area div.components-toolbar-group{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}}html.interface-interface-skeleton__html-container{position:fixed;width:100%}@media (min-width:782px){html.interface-interface-skeleton__html-container{position:static;width:auto}}.interface-interface-skeleton{display:flex;flex-direction:row;height:auto;max-height:100%;position:fixed;top:46px;right:0;bottom:0}@media (min-width:783px){.interface-interface-skeleton{top:32px}.is-fullscreen-mode .interface-interface-skeleton{top:0}}.interface-interface-skeleton__editor{display:flex;flex-direction:column;flex:0 1 100%;overflow:hidden}.interface-interface-skeleton{left:0}@media (min-width:783px){.interface-interface-skeleton{left:160px}}@media (min-width:783px){.auto-fold .interface-interface-skeleton{left:36px}}@media (min-width:961px){.auto-fold .interface-interface-skeleton{left:160px}}.folded .interface-interface-skeleton{left:0}@media (min-width:783px){.folded .interface-interface-skeleton{left:36px}}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}@media (min-width:782px){.has-footer .interface-interface-skeleton__body{padding-bottom:25px}}.interface-interface-skeleton__content{flex-grow:1;display:flex;flex-direction:column;overflow:auto;z-index:20}.interface-interface-skeleton__secondary-sidebar,.interface-interface-skeleton__sidebar{display:block;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__secondary-sidebar,.interface-interface-skeleton__sidebar{position:relative!important;z-index:90;width:auto}}.interface-interface-skeleton__sidebar{overflow:auto}@media (min-width:782px){.interface-interface-skeleton__sidebar{border-left:1px solid #e0e0e0}}@media (min-width:782px){.interface-interface-skeleton__secondary-sidebar{border-right:1px solid #e0e0e0}}.interface-interface-skeleton__header{flex-shrink:0;height:auto;border-bottom:1px solid #e0e0e0;z-index:30;color:#1e1e1e}.interface-interface-skeleton__footer{height:auto;flex-shrink:0;border-top:1px solid #e0e0e0;color:#1e1e1e;position:absolute;bottom:0;left:0;width:100%;background-color:#fff;z-index:90;display:none}@media (min-width:782px){.interface-interface-skeleton__footer{display:flex}}.interface-interface-skeleton__footer .block-editor-block-breadcrumb{z-index:30;display:flex;background:#fff;height:24px;align-items:center;font-size:13px;padding:0 18px}.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}.interface-more-menu-dropdown{margin-left:-4px}.interface-more-menu-dropdown .components-button{width:auto;padding:0 2px}@media (min-width:600px){.interface-more-menu-dropdown{margin-left:0}.interface-more-menu-dropdown .components-button{padding:0 4px}}.interface-more-menu-dropdown__content .components-popover__content{min-width:280px}@media (min-width:480px){.interface-more-menu-dropdown__content .components-popover__content{width:auto;max-width:480px}}.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu{padding:0}.components-popover.interface-more-menu-dropdown__content{z-index:99998}.interface-pinned-items{display:flex}.interface-pinned-items .components-button:not(:first-child){display:none}@media (min-width:600px){.interface-pinned-items .components-button:not(:first-child){display:flex}}.interface-pinned-items .components-button{margin-left:4px}.interface-pinned-items .components-button svg{max-width:24px;max-height:24px}@media (min-width:600px){.interface-preferences-modal{width:calc(100% - 32px);height:calc(100% - 120px)}}@media (min-width:782px){.interface-preferences-modal{width:750px}}@media (min-width:960px){.interface-preferences-modal{height:70%}}@media (max-width:781px){.interface-preferences-modal .components-modal__content{padding:0}.interface-preferences-modal .components-modal__content:before{content:none}}.interface-preferences__tabs .components-tab-panel__tabs{position:absolute;top:84px;left:16px;width:160px}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item{border-radius:2px;font-weight:400}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active{background:#f0f0f0;box-shadow:none;font-weight:500}.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.interface-preferences__tabs .components-tab-panel__tab-content{padding-left:24px;margin-left:160px}@media (max-width:781px){.interface-preferences__provider{height:100%}}.interface-preferences-modal__section{margin:0 0 2.5rem}.interface-preferences-modal__section:last-child{margin:0}.interface-preferences-modal__section-title{font-size:.9rem;font-weight:600;margin-top:0}.interface-preferences-modal__section-description{margin:-8px 0 8px;font-size:12px;font-style:normal;color:#757575}.interface-preferences-modal__option .components-base-control .components-base-control__field{align-items:center;display:flex;margin-bottom:0}.interface-preferences-modal__option .components-base-control .components-base-control__field>label{flex-grow:1;padding:.6rem 0 .6rem 10px}.interface-preferences-modal__option .components-base-control__help{margin:-8px 0 8px 58px;font-size:12px;font-style:normal;color:#757575}.wp-block[data-type="core/widget-area"]{max-width:700px;margin-left:auto;margin-right:auto}.wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;margin:0;height:48px;position:relative;z-index:1;background:#fff;transform:translateZ(0)}.wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title:hover{background:#fff}.wp-block[data-type="core/widget-area"] .block-list-appender.wp-block{width:auto;position:relative}.wp-block[data-type="core/widget-area"] .editor-styles-wrapper .wp-block.wp-block.wp-block.wp-block.wp-block{max-width:100%}.wp-block[data-type="core/widget-area"] .components-panel__body.is-opened{padding:0}.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper{margin:0;padding:0}.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper>.block-editor-block-list__layout{margin-top:-48px;padding:72px 16px 16px;min-height:32px}.wp-block-widget-area__highlight-drop-zone{outline:var(--wp-admin-border-width-focus) solid var(--wp-admin-theme-color)}body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title,body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body>.components-panel__body-title *{pointer-events:none}.edit-widgets-error-boundary{max-width:780px;padding:20px;margin:60px auto auto;box-shadow:0 10px 10px rgba(0,0,0,.25)}.edit-widgets-header{display:flex;align-items:center;justify-content:space-between;height:60px;padding:0 16px;overflow:auto}@media (min-width:600px){.edit-widgets-header{overflow:visible}}.edit-widgets-header__navigable-toolbar-wrapper{display:flex;align-items:center;justify-content:center}.edit-widgets-header__title{font-size:20px;padding:0;margin:0 20px 0 0}.edit-widgets-header__actions{display:flex}.edit-widgets-header__actions .components-button{margin-right:4px}@media (min-width:600px){.edit-widgets-header__actions .components-button{margin-right:12px}}.edit-widgets-header__actions .edit-widgets-more-menu .components-button,.edit-widgets-header__actions .interface-pinned-items .components-button{margin-right:0}.edit-widgets-header-toolbar{border:none}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon,.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon{height:36px;min-width:36px;padding:6px}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon.is-pressed,.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon.is-pressed{background:#1e1e1e}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon:focus:not(:disabled),.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.edit-widgets-header-toolbar>.components-button.has-icon.has-icon.has-icon:before,.edit-widgets-header-toolbar>.components-dropdown>.components-button.has-icon.has-icon:before{display:none}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle{padding-left:8px;padding-right:8px}@media (min-width:600px){.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle{padding-left:12px;padding-right:12px}}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle:after{content:none}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg{transition:transform .2s cubic-bezier(.165,.84,.44,1)}@media (prefers-reduced-motion:reduce){.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg{transition-duration:0s;transition-delay:0s}}.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle.is-pressed svg{transform:rotate(45deg)}.edit-widgets-keyboard-shortcut-help-modal__section{margin:0 0 2rem}.edit-widgets-keyboard-shortcut-help-modal__main-shortcuts .edit-widgets-keyboard-shortcut-help-modal__shortcut-list{margin-top:-25px}.edit-widgets-keyboard-shortcut-help-modal__section-title{font-size:.9rem;font-weight:600}.edit-widgets-keyboard-shortcut-help-modal__shortcut{display:flex;align-items:baseline;padding:.6rem 0;border-top:1px solid #ddd;margin-bottom:0}.edit-widgets-keyboard-shortcut-help-modal__shortcut:last-child{border-bottom:1px solid #ddd}.edit-widgets-keyboard-shortcut-help-modal__shortcut:empty{display:none}.edit-widgets-keyboard-shortcut-help-modal__shortcut-term{font-weight:600;margin:0 0 0 1rem;text-align:right}.edit-widgets-keyboard-shortcut-help-modal__shortcut-description{flex:1;margin:0;flex-basis:auto}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{display:block;background:none;margin:0;padding:0}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination+.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{margin-top:10px}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key{padding:.25rem .5rem;border-radius:8%;margin:0 .2rem}.edit-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child{margin:0 0 0 .2rem}.components-panel__header.edit-widgets-sidebar__panel-tabs{justify-content:flex-start;padding-left:0;padding-right:4px;border-top:0;margin-top:0}.components-panel__header.edit-widgets-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-widgets-sidebar__panel-tabs li{margin:0}.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon{display:none;margin-left:auto}@media (min-width:782px){.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon{display:flex}}.components-button.edit-widgets-sidebar__panel-tab{border-radius:0;height:49px;background:transparent;border:none;box-shadow:none;cursor:pointer;display:inline-block;padding:3px 15px;margin-left:0;font-weight:400;color:#1e1e1e}.components-button.edit-widgets-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.components-button.edit-widgets-sidebar__panel-tab.is-active{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);font-weight:600;position:relative}.components-button.edit-widgets-sidebar__panel-tab.is-active:before{content:"";position:absolute;top:0;bottom:1px;right:0;left:0;border-bottom:4px solid transparent}.components-button.edit-widgets-sidebar__panel-tab:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)}.components-button.edit-widgets-sidebar__panel-tab.is-active:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}.edit-widgets-widget-areas__top-container{display:flex;padding:16px}.edit-widgets-widget-areas__top-container .block-editor-block-icon{margin-right:16px}.edit-widgets-notices__snackbar{position:fixed;right:0;bottom:20px;padding-left:16px;padding-right:16px;left:0}@media (min-width:783px){.edit-widgets-notices__snackbar{left:160px}}@media (min-width:783px){.auto-fold .edit-widgets-notices__snackbar{left:36px}}@media (min-width:961px){.auto-fold .edit-widgets-notices__snackbar{left:160px}}.folded .edit-widgets-notices__snackbar{left:0}@media (min-width:783px){.folded .edit-widgets-notices__snackbar{left:36px}}body.is-fullscreen-mode .edit-widgets-notices__snackbar{left:0!important}.edit-widgets-notices__dismissible .components-notice,.edit-widgets-notices__pinned .components-notice{box-sizing:border-box;margin:0;border-bottom:1px solid rgba(0,0,0,.2);padding:0 12px;min-height:60px}.edit-widgets-notices__dismissible .components-notice .components-notice__dismiss,.edit-widgets-notices__pinned .components-notice .components-notice__dismiss{margin-top:12px}.edit-widgets-layout__inserter-panel{height:100%;display:flex;flex-direction:column}.edit-widgets-layout__inserter-panel .block-editor-inserter__menu{overflow:hidden}.edit-widgets-layout__inserter-panel-header{padding-top:8px;padding-right:8px;display:flex;justify-content:flex-end}.edit-widgets-layout__inserter-panel-content{height:calc(100% - 44px)}@media (min-width:782px){.edit-widgets-layout__inserter-panel-content{height:100%}}.edit-widgets-welcome-guide{width:312px}.edit-widgets-welcome-guide__image{background:#00a0d2;margin:0 0 16px}.edit-widgets-welcome-guide__image>img{display:block;max-width:100%;-o-object-fit:cover;object-fit:cover}.edit-widgets-welcome-guide__heading{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:24px;line-height:1.4;margin:16px 0;padding:0 32px}.edit-widgets-welcome-guide__text{font-size:13px;line-height:1.4;margin:0 0 24px;padding:0 32px}.edit-widgets-welcome-guide__inserter-icon{margin:0 4px;vertical-align:text-top}.edit-widgets-block-editor{position:relative;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.edit-widgets-block-editor,.edit-widgets-block-editor .block-editor-writing-flow,.edit-widgets-block-editor .block-editor-writing-flow>div,.edit-widgets-block-editor>div:last-of-type{display:flex;flex-direction:column;flex-grow:1}.edit-widgets-block-editor .edit-widgets-main-block-list{height:100%}.edit-widgets-block-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.edit-widgets-block-editor .components-button.has-icon,.edit-widgets-block-editor .components-button.is-tertiary{padding:6px}.edit-widgets-editor__list-view-panel{height:100%;display:flex;flex-direction:column;min-width:350px}.edit-widgets-editor__list-view-panel-content{height:calc(100% - 44px);overflow-y:auto;padding:8px}.edit-widgets-editor__list-view-panel-header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;height:48px;padding-left:16px;padding-right:4px}body.appearance_page_gutenberg-widgets,body.widgets-php,html.wp-toolbar{background:#fff}body.appearance_page_gutenberg-widgets #wpcontent,body.widgets-php #wpcontent{padding-left:0}body.appearance_page_gutenberg-widgets #wpbody-content,body.widgets-php #wpbody-content{padding-bottom:0}body.appearance_page_gutenberg-widgets #wpbody-content>div:not(.blocks-widgets-container):not(#screen-meta),body.appearance_page_gutenberg-widgets #wpfooter,body.widgets-php #wpbody-content>div:not(.blocks-widgets-container):not(#screen-meta),body.widgets-php #wpfooter{display:none}body.appearance_page_gutenberg-widgets .a11y-speak-region,body.widgets-php .a11y-speak-region{left:-1px;top:-1px}body.appearance_page_gutenberg-widgets ul#adminmenu>li.current>a.current:after,body.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu:after,body.widgets-php ul#adminmenu>li.current>a.current:after,body.widgets-php ul#adminmenu a.wp-has-current-submenu:after{border-right-color:#fff}body.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,body.widgets-php .media-frame select.attachment-filters:last-of-type{width:auto;max-width:100%}.blocks-widgets-container,.components-modal__frame{box-sizing:border-box}.blocks-widgets-container *,.blocks-widgets-container :after,.blocks-widgets-container :before,.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}@media (min-width:600px){.blocks-widgets-container{position:absolute;top:0;right:0;bottom:0;left:0;min-height:calc(100vh - 46px)}}@media (min-width:782px){.blocks-widgets-container{min-height:calc(100vh - 32px)}}.blocks-widgets-container .interface-interface-skeleton__content{background-color:#f0f0f0}.blocks-widgets-container .editor-styles-wrapper{max-width:700px;margin:auto}.edit-widgets-sidebar .components-button.interface-complementary-area__pin-unpin-item{display:none}.widgets-php .notice{display:none!important}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/editor/style-rtl.css b/static/wp-includes/css/dist/editor/style-rtl.css
new file mode 100755
index 0000000..af3ad2d
--- /dev/null
+++ b/static/wp-includes/css/dist/editor/style-rtl.css
@@ -0,0 +1,996 @@
+@charset "UTF-8";
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.editor-autocompleters__user .editor-autocompleters__no-avatar::before {
+ /* stylelint-disable */
+ font: normal 20px/1 dashicons;
+ /* stylelint-enable */
+ content: "ï„";
+ margin-left: 5px;
+ vertical-align: middle;
+}
+.editor-autocompleters__user .editor-autocompleters__user-avatar {
+ margin-left: 8px;
+ flex-grow: 0;
+ flex-shrink: 0;
+ max-width: none;
+ width: 24px;
+ height: 24px;
+}
+.editor-autocompleters__user .editor-autocompleters__user-name {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ max-width: 200px;
+ flex-shrink: 0;
+ flex-grow: 1;
+}
+.editor-autocompleters__user .editor-autocompleters__user-slug {
+ margin-right: 8px;
+ color: #757575;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: none;
+ max-width: 100px;
+ flex-grow: 0;
+ flex-shrink: 0;
+}
+.editor-autocompleters__user:hover .editor-autocompleters__user-slug {
+ color: var(--wp-admin-theme-color);
+}
+
+.document-outline {
+ margin: 20px 0;
+}
+.document-outline ul {
+ margin: 0;
+ padding: 0;
+}
+
+.document-outline__item {
+ display: flex;
+ margin: 4px 0;
+}
+.document-outline__item a {
+ text-decoration: none;
+}
+.document-outline__item .document-outline__emdash::before {
+ color: #ddd;
+ margin-left: 4px;
+}
+.document-outline__item.is-h2 .document-outline__emdash::before {
+ content: "—";
+}
+.document-outline__item.is-h3 .document-outline__emdash::before {
+ content: "——";
+}
+.document-outline__item.is-h4 .document-outline__emdash::before {
+ content: "———";
+}
+.document-outline__item.is-h5 .document-outline__emdash::before {
+ content: "————";
+}
+.document-outline__item.is-h6 .document-outline__emdash::before {
+ content: "—————";
+}
+
+.document-outline__button {
+ cursor: pointer;
+ background: none;
+ border: none;
+ display: flex;
+ align-items: flex-start;
+ margin: 0 -1px 0 0;
+ padding: 2px 1px 2px 5px;
+ color: #1e1e1e;
+ text-align: right;
+ border-radius: 2px;
+}
+.document-outline__button:disabled {
+ cursor: default;
+}
+.document-outline__button:focus {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+
+.document-outline__level {
+ background: #ddd;
+ color: #1e1e1e;
+ border-radius: 3px;
+ font-size: 13px;
+ padding: 1px 6px;
+ margin-left: 4px;
+}
+.is-invalid .document-outline__level {
+ background: #f0b849;
+}
+
+.document-outline__item-content {
+ padding: 1px 0;
+}
+
+.components-editor-notices__dismissible,
+.components-editor-notices__pinned {
+ position: relative;
+ right: 0;
+ top: 0;
+ left: 0;
+ color: #1e1e1e;
+}
+.components-editor-notices__dismissible .components-notice,
+.components-editor-notices__pinned .components-notice {
+ box-sizing: border-box;
+ margin: 0;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.2);
+ padding: 0 12px;
+ min-height: 60px;
+}
+.components-editor-notices__dismissible .components-notice .components-notice__dismiss,
+.components-editor-notices__pinned .components-notice .components-notice__dismiss {
+ margin-top: 12px;
+}
+
+.entities-saved-states__panel {
+ box-sizing: border-box;
+ background: #fff;
+ position: fixed;
+ z-index: 100001;
+ top: 46px;
+ bottom: 0;
+ left: 0;
+ right: 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 .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 {
+ top: 32px;
+ right: auto;
+ width: 280px;
+ border-right: 1px solid #ddd;
+ }
+ 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-right: 8px;
+ padding-left: 8px;
+ height: 61px;
+ border-bottom: 1px solid #ddd;
+}
+.entities-saved-states__panel .entities-saved-states__text-prompt {
+ padding: 16px;
+ padding-bottom: 4px;
+}
+
+.editor-error-boundary {
+ margin: auto;
+ max-width: 780px;
+ padding: 20px;
+ margin-top: 60px;
+ box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
+}
+
+.editor-page-attributes__order {
+ width: 100%;
+}
+.editor-page-attributes__order .components-base-control__field {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+.editor-page-attributes__order input {
+ width: 66px;
+}
+
+.editor-post-excerpt__textarea {
+ width: 100%;
+ margin-bottom: 10px;
+}
+
+.editor-post-featured-image {
+ padding: 0;
+}
+.editor-post-featured-image__container {
+ margin-bottom: 1em;
+ position: relative;
+}
+.editor-post-featured-image .components-spinner {
+ position: absolute;
+ top: 50%;
+ right: 50%;
+ margin-top: -9px;
+ margin-right: -9px;
+}
+.editor-post-featured-image .components-button + .components-button {
+ display: block;
+ margin-top: 1em;
+}
+.editor-post-featured-image .components-responsive-wrapper__content {
+ max-width: 100%;
+ width: auto;
+}
+
+.editor-post-featured-image__toggle,
+.editor-post-featured-image__preview {
+ display: block;
+ width: 100%;
+ padding: 0;
+ transition: all 0.1s ease-out;
+ box-shadow: 0 0 0 0 var(--wp-admin-theme-color);
+}
+@media (prefers-reduced-motion: reduce) {
+ .editor-post-featured-image__toggle,
+.editor-post-featured-image__preview {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.editor-post-featured-image__preview {
+ height: auto;
+}
+
+.editor-post-featured-image__preview:not(:disabled):not([aria-disabled=true]):focus {
+ box-shadow: 0 0 0 4px var(--wp-admin-theme-color);
+}
+
+.editor-post-featured-image__toggle {
+ border-radius: 2px;
+ background-color: #f0f0f0;
+ min-height: 90px;
+ line-height: 20px;
+ padding: 8px 0;
+ text-align: center;
+}
+.editor-post-featured-image__toggle:hover {
+ background: #ddd;
+ color: #1e1e1e;
+}
+
+.editor-post-format {
+ flex-direction: column;
+ align-items: stretch;
+ width: 100%;
+}
+
+.editor-post-format__content {
+ display: inline-flex;
+ justify-content: space-between;
+ align-items: center;
+ width: 100%;
+}
+
+.editor-post-format__suggestion {
+ padding: 6px;
+ text-align: left;
+ font-size: 13px;
+}
+
+.editor-post-last-revision__title {
+ width: 100%;
+ font-weight: 600;
+}
+.editor-post-last-revision__title .dashicon {
+ margin-left: 5px;
+}
+
+.components-button.editor-post-last-revision__title {
+ height: 100%;
+}
+.components-button.editor-post-last-revision__title:hover, .components-button.editor-post-last-revision__title:active {
+ background: #f0f0f0;
+}
+.components-button.editor-post-last-revision__title:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 0;
+}
+
+@media (min-width: 600px) {
+ .editor-post-locked-modal {
+ max-width: 480px;
+ }
+}
+.editor-post-locked-modal .components-modal__content {
+ display: flex;
+}
+
+.editor-post-locked-modal__buttons {
+ margin-top: 24px;
+}
+
+.editor-post-locked-modal__avatar {
+ border-radius: 2px;
+ margin-top: 16px;
+ margin-left: 24px;
+}
+
+.editor-post-publish-button__button.has-changes-dot::before {
+ background: currentcolor;
+ border-radius: 4px;
+ content: "";
+ height: 8px;
+ margin: auto -3px auto 5px;
+ width: 8px;
+}
+
+.editor-post-publish-panel {
+ background: #fff;
+}
+
+.editor-post-publish-panel__content {
+ min-height: calc(100% - 144px);
+}
+.editor-post-publish-panel__content .components-spinner {
+ display: block;
+ margin: 100px auto 0;
+}
+
+.editor-post-publish-panel__header {
+ background: #fff;
+ padding-right: 16px;
+ padding-left: 16px;
+ height: 61px;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ align-items: center;
+ align-content: space-between;
+}
+.editor-post-publish-panel__header .components-button {
+ width: 100%;
+ justify-content: center;
+}
+.editor-post-publish-panel__header .has-icon {
+ margin-right: auto;
+ width: auto;
+}
+
+.components-site-card {
+ display: flex;
+ align-items: center;
+ margin: 16px 0;
+}
+
+.components-site-icon {
+ border: none;
+ border-radius: 2px;
+ margin-left: 12px;
+ height: 36px;
+ width: 36px;
+}
+
+.components-site-name {
+ display: block;
+ font-size: 14px;
+}
+
+.components-site-home {
+ display: block;
+ color: #757575;
+ font-size: 12px;
+}
+
+.editor-post-publish-panel__header-publish-button,
+.editor-post-publish-panel__header-cancel-button {
+ flex-grow: 1;
+}
+@media (min-width: 480px) {
+ .editor-post-publish-panel__header-publish-button,
+.editor-post-publish-panel__header-cancel-button {
+ max-width: 160px;
+ }
+}
+
+.editor-post-publish-panel__header-publish-button {
+ padding-left: 4px;
+}
+
+.editor-post-publish-panel__header-cancel-button {
+ padding-right: 4px;
+}
+
+.editor-post-publish-panel__header-published {
+ flex-grow: 1;
+}
+
+.editor-post-publish-panel__footer {
+ padding: 16px;
+}
+
+.components-button.editor-post-publish-panel__toggle.is-primary {
+ display: inline-flex;
+ align-items: center;
+}
+.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon {
+ display: none;
+}
+.components-button.editor-post-publish-panel__toggle.is-primary .dashicon {
+ margin-left: -4px;
+}
+
+.editor-post-publish-panel__link {
+ font-weight: 400;
+ padding-right: 4px;
+}
+
+.editor-post-publish-panel__prepublish {
+ padding: 16px;
+}
+.editor-post-publish-panel__prepublish strong {
+ color: #1e1e1e;
+}
+.editor-post-publish-panel__prepublish .components-panel__body {
+ background: #fff;
+ margin-right: -16px;
+ margin-left: -16px;
+}
+.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend {
+ display: none;
+}
+
+.post-publish-panel__postpublish .components-panel__body {
+ border-bottom: 1px solid #e0e0e0;
+ border-top: none;
+}
+
+.post-publish-panel__postpublish-buttons {
+ display: flex;
+ align-content: space-between;
+ flex-wrap: wrap;
+ margin: -5px;
+}
+.post-publish-panel__postpublish-buttons > * {
+ flex-grow: 1;
+ margin: 5px;
+}
+.post-publish-panel__postpublish-buttons .components-button {
+ height: auto;
+ justify-content: center;
+ padding: 3px 10px 4px;
+ flex: 1;
+ line-height: 1.6;
+ text-align: center;
+ white-space: normal;
+}
+.post-publish-panel__postpublish-buttons .components-clipboard-button {
+ width: 100%;
+}
+
+.post-publish-panel__postpublish-post-address-container {
+ display: flex;
+ align-items: flex-end;
+ margin-bottom: 16px;
+}
+.post-publish-panel__postpublish-post-address-container .components-base-control__field {
+ margin-bottom: 0;
+}
+.post-publish-panel__postpublish-post-address-container .post-publish-panel__postpublish-post-address {
+ flex: 1;
+}
+.post-publish-panel__postpublish-post-address-container input[readonly] {
+ padding: 10px;
+ background: #ddd;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.post-publish-panel__postpublish-post-address__copy-button-wrap {
+ flex-shrink: 0;
+ margin-right: 8px;
+}
+.post-publish-panel__postpublish-post-address__copy-button-wrap .components-button {
+ height: 38px;
+}
+
+.post-publish-panel__postpublish-header {
+ font-weight: 500;
+}
+
+.post-publish-panel__postpublish-subheader {
+ margin: 0 0 8px;
+}
+
+.post-publish-panel__tip {
+ color: #f0b849;
+}
+
+@media screen and (max-width: 782px) {
+ .post-publish-panel__postpublish-post-address__button-wrap .components-button {
+ height: 40px;
+ }
+}
+.editor-post-saved-state {
+ display: flex;
+ align-items: center;
+ width: 28px;
+ padding: 12px 4px;
+ color: #757575;
+ overflow: hidden;
+ white-space: nowrap;
+}
+.editor-post-saved-state.is-saving[aria-disabled=true], .editor-post-saved-state.is-saving[aria-disabled=true]:hover, .editor-post-saved-state.is-saved[aria-disabled=true], .editor-post-saved-state.is-saved[aria-disabled=true]:hover {
+ background: transparent;
+ color: #757575;
+}
+.editor-post-saved-state svg {
+ display: inline-block;
+ flex: 0 0 auto;
+ fill: currentColor;
+ margin-left: 8px;
+}
+@media (min-width: 600px) {
+ .editor-post-saved-state {
+ width: auto;
+ padding: 8px 12px;
+ text-indent: inherit;
+ }
+ .editor-post-saved-state svg {
+ margin-left: 0;
+ }
+}
+
+.editor-post-taxonomies__hierarchical-terms-list {
+ max-height: 14em;
+ overflow: auto;
+ margin-right: -6px;
+ padding-right: 6px;
+ margin-top: -6px;
+ padding-top: 6px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-choice {
+ margin-bottom: 8px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-subchoices {
+ margin-top: 8px;
+ margin-right: 16px;
+}
+
+.components-button.editor-post-taxonomies__hierarchical-terms-submit,
+.components-button.editor-post-taxonomies__hierarchical-terms-add {
+ margin-top: 12px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-label {
+ display: inline-block;
+ margin-top: 12px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-input {
+ margin-top: 8px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-filter {
+ margin-bottom: 8px;
+ width: 100%;
+}
+
+.editor-post-taxonomies__flat-term-most-used .editor-post-taxonomies__flat-term-most-used-label {
+ font-weight: 400;
+ margin-bottom: 12px;
+}
+
+.editor-post-taxonomies__flat-term-most-used-list {
+ margin: 0;
+}
+.editor-post-taxonomies__flat-term-most-used-list li {
+ display: inline-block;
+ margin-left: 8px;
+}
+.editor-post-taxonomies__flat-term-most-used-list .components-button {
+ font-size: 12px;
+}
+
+.edit-post-text-editor__body textarea.editor-post-text-editor {
+ border: 1px solid #949494;
+ border-radius: 0;
+ display: block;
+ margin: 0;
+ width: 100%;
+ box-shadow: none;
+ resize: none;
+ overflow: hidden;
+ font-family: Menlo, Consolas, monaco, monospace;
+ line-height: 2.4;
+ min-height: 200px;
+ transition: border 0.1s ease-out, box-shadow 0.1s linear;
+ padding: 16px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px !important;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-post-text-editor__body textarea.editor-post-text-editor {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor__body textarea.editor-post-text-editor {
+ padding: 24px;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor__body textarea.editor-post-text-editor {
+ font-size: 15px !important;
+ }
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor::-moz-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+ opacity: 1;
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.edit-post-post-visibility__dialog,
+.editor-post-visibility__dialog-fieldset {
+ padding: 4px;
+ padding-top: 0;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-legend {
+ font-weight: 600;
+ margin-bottom: 1em;
+ margin-top: 0.5em;
+ padding: 0;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ 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;
+ border: 1px solid #1e1e1e;
+ margin-left: 12px;
+ transition: none;
+ border-radius: 50%;
+ width: 24px;
+ height: 24px;
+ margin-top: 2px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+@media (min-width: 600px) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ height: 20px;
+ width: 20px;
+ }
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked::before,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked::before {
+ box-sizing: inherit;
+ width: 8px;
+ height: 8px;
+ transform: translate(-7px, 7px);
+ margin: 0;
+ background-color: #fff;
+ border: 4px solid #fff;
+}
+@media (min-width: 600px) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked::before,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked::before {
+ transform: translate(-5px, 5px);
+ }
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-label,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-label {
+ font-weight: 600;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-info,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-info {
+ margin-top: 0;
+ margin-right: 32px;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info {
+ margin-bottom: 0;
+}
+
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text] {
+ 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;
+ margin-right: 36px;
+ margin-top: 8px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.editor-post-title {
+ position: relative;
+}
+.editor-post-title.is-focus-mode {
+ opacity: 0.5;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .editor-post-title.is-focus-mode {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.editor-post-title.is-focus-mode:focus {
+ opacity: 1;
+}
+
+.editor-post-trash.components-button {
+ margin-top: 4px;
+}
+
+.table-of-contents__popover.components-popover .components-popover__content {
+ min-width: 380px;
+}
+
+.components-popover.table-of-contents__popover {
+ z-index: 99998;
+}
+
+.table-of-contents__popover .components-popover__content > div {
+ padding: 16px;
+}
+@media (min-width: 600px) {
+ .table-of-contents__popover .components-popover__content {
+ max-height: calc(100vh - 120px);
+ overflow-y: auto;
+ }
+}
+.table-of-contents__popover hr {
+ margin: 10px -16px 0;
+}
+
+.table-of-contents__wrapper:focus::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ pointer-events: none;
+}
+
+.table-of-contents__counts {
+ display: flex;
+ flex-wrap: wrap;
+ margin: 0;
+ margin-top: -8px;
+}
+
+.table-of-contents__count {
+ flex-basis: 33%;
+ display: flex;
+ flex-direction: column;
+ font-size: 13px;
+ color: #1e1e1e;
+ padding-left: 8px;
+ margin-bottom: 0;
+ margin-top: 8px;
+}
+.table-of-contents__count:nth-child(4n) {
+ padding-left: 0;
+}
+
+.table-of-contents__number,
+.table-of-contents__popover .word-count {
+ font-size: 21px;
+ font-weight: 400;
+ line-height: 30px;
+ color: #1e1e1e;
+}
+
+.table-of-contents__title {
+ display: block;
+ margin-top: 20px;
+ font-size: 15px;
+ font-weight: 600;
+}
+
+.editor-template-validation-notice {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+.editor-template-validation-notice .components-button {
+ margin-right: 5px;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/editor/style-rtl.min.css b/static/wp-includes/css/dist/editor/style-rtl.min.css
new file mode 100755
index 0000000..de39d57
--- /dev/null
+++ b/static/wp-includes/css/dist/editor/style-rtl.min.css
@@ -0,0 +1 @@
+@charset "UTF-8";:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.editor-autocompleters__user .editor-autocompleters__no-avatar:before{font:normal 20px/1 dashicons;content:"ï„";margin-left:5px;vertical-align:middle}.editor-autocompleters__user .editor-autocompleters__user-avatar{margin-left:8px;flex-grow:0;flex-shrink:0;max-width:none;width:24px;height:24px}.editor-autocompleters__user .editor-autocompleters__user-name{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;max-width:200px;flex-shrink:0;flex-grow:1}.editor-autocompleters__user .editor-autocompleters__user-slug{margin-right:8px;color:#757575;white-space:nowrap;text-overflow:ellipsis;overflow:none;max-width:100px;flex-grow:0;flex-shrink:0}.editor-autocompleters__user:hover .editor-autocompleters__user-slug{color:var(--wp-admin-theme-color)}.document-outline{margin:20px 0}.document-outline ul{margin:0;padding:0}.document-outline__item{display:flex;margin:4px 0}.document-outline__item a{text-decoration:none}.document-outline__item .document-outline__emdash:before{color:#ddd;margin-left:4px}.document-outline__item.is-h2 .document-outline__emdash:before{content:"—"}.document-outline__item.is-h3 .document-outline__emdash:before{content:"——"}.document-outline__item.is-h4 .document-outline__emdash:before{content:"———"}.document-outline__item.is-h5 .document-outline__emdash:before{content:"————"}.document-outline__item.is-h6 .document-outline__emdash:before{content:"—————"}.document-outline__button{cursor:pointer;background:none;border:none;display:flex;align-items:flex-start;margin:0 -1px 0 0;padding:2px 1px 2px 5px;color:#1e1e1e;text-align:right;border-radius:2px}.document-outline__button:disabled{cursor:default}.document-outline__button:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.document-outline__level{background:#ddd;color:#1e1e1e;border-radius:3px;font-size:13px;padding:1px 6px;margin-left:4px}.is-invalid .document-outline__level{background:#f0b849}.document-outline__item-content{padding:1px 0}.components-editor-notices__dismissible,.components-editor-notices__pinned{position:relative;right:0;top:0;left:0;color:#1e1e1e}.components-editor-notices__dismissible .components-notice,.components-editor-notices__pinned .components-notice{box-sizing:border-box;margin:0;border-bottom:1px solid rgba(0,0,0,.2);padding:0 12px;min-height:60px}.components-editor-notices__dismissible .components-notice .components-notice__dismiss,.components-editor-notices__pinned .components-notice .components-notice__dismiss{margin-top:12px}.entities-saved-states__panel{background:#fff;position:fixed;z-index:100001;top:46px;bottom:0;left:0;right:0;overflow:auto;box-sizing:border-box}.entities-saved-states__panel *,.entities-saved-states__panel :after,.entities-saved-states__panel :before{box-sizing:inherit}.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{top:32px;right:auto;width:280px;border-right:1px solid #ddd}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-right:8px;padding-left:8px;height:61px;border-bottom:1px solid #ddd}.entities-saved-states__panel .entities-saved-states__text-prompt{padding:16px 16px 4px}.editor-error-boundary{max-width:780px;padding:20px;margin:60px auto auto;box-shadow:0 10px 10px rgba(0,0,0,.25)}.editor-page-attributes__order{width:100%}.editor-page-attributes__order .components-base-control__field{display:flex;justify-content:space-between;align-items:center}.editor-page-attributes__order input{width:66px}.editor-post-excerpt__textarea{width:100%;margin-bottom:10px}.editor-post-featured-image{padding:0}.editor-post-featured-image__container{margin-bottom:1em;position:relative}.editor-post-featured-image .components-spinner{position:absolute;top:50%;right:50%;margin-top:-9px;margin-right:-9px}.editor-post-featured-image .components-button+.components-button{display:block;margin-top:1em}.editor-post-featured-image .components-responsive-wrapper__content{max-width:100%;width:auto}.editor-post-featured-image__preview,.editor-post-featured-image__toggle{display:block;width:100%;padding:0;transition:all .1s ease-out;box-shadow:0 0 0 0 var(--wp-admin-theme-color)}@media (prefers-reduced-motion:reduce){.editor-post-featured-image__preview,.editor-post-featured-image__toggle{transition-duration:0s;transition-delay:0s}}.editor-post-featured-image__preview{height:auto}.editor-post-featured-image__preview:not(:disabled):not([aria-disabled=true]):focus{box-shadow:0 0 0 4px var(--wp-admin-theme-color)}.editor-post-featured-image__toggle{border-radius:2px;background-color:#f0f0f0;min-height:90px;line-height:20px;padding:8px 0;text-align:center}.editor-post-featured-image__toggle:hover{background:#ddd;color:#1e1e1e}.editor-post-format{flex-direction:column;align-items:stretch;width:100%}.editor-post-format__content{display:inline-flex;justify-content:space-between;align-items:center;width:100%}.editor-post-format__suggestion{padding:6px;text-align:left;font-size:13px}.editor-post-last-revision__title{width:100%;font-weight:600}.editor-post-last-revision__title .dashicon{margin-left:5px}.components-button.editor-post-last-revision__title{height:100%}.components-button.editor-post-last-revision__title:active,.components-button.editor-post-last-revision__title:hover{background:#f0f0f0}.components-button.editor-post-last-revision__title:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:0}@media (min-width:600px){.editor-post-locked-modal{max-width:480px}}.editor-post-locked-modal .components-modal__content{display:flex}.editor-post-locked-modal__buttons{margin-top:24px}.editor-post-locked-modal__avatar{border-radius:2px;margin-top:16px;margin-left:24px}.editor-post-publish-button__button.has-changes-dot:before{background:currentcolor;border-radius:4px;content:"";height:8px;margin:auto -3px auto 5px;width:8px}.editor-post-publish-panel{background:#fff}.editor-post-publish-panel__content{min-height:calc(100% - 144px)}.editor-post-publish-panel__content .components-spinner{display:block;margin:100px auto 0}.editor-post-publish-panel__header{background:#fff;padding-right:16px;padding-left:16px;height:61px;border-bottom:1px solid #ddd;display:flex;align-items:center;align-content:space-between}.editor-post-publish-panel__header .components-button{width:100%;justify-content:center}.editor-post-publish-panel__header .has-icon{margin-right:auto;width:auto}.components-site-card{display:flex;align-items:center;margin:16px 0}.components-site-icon{border:none;border-radius:2px;margin-left:12px;height:36px;width:36px}.components-site-name{display:block;font-size:14px}.components-site-home{display:block;color:#757575;font-size:12px}.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{flex-grow:1}@media (min-width:480px){.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{max-width:160px}}.editor-post-publish-panel__header-publish-button{padding-left:4px}.editor-post-publish-panel__header-cancel-button{padding-right:4px}.editor-post-publish-panel__header-published{flex-grow:1}.editor-post-publish-panel__footer{padding:16px}.components-button.editor-post-publish-panel__toggle.is-primary{display:inline-flex;align-items:center}.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon{display:none}.components-button.editor-post-publish-panel__toggle.is-primary .dashicon{margin-left:-4px}.editor-post-publish-panel__link{font-weight:400;padding-right:4px}.editor-post-publish-panel__prepublish{padding:16px}.editor-post-publish-panel__prepublish strong{color:#1e1e1e}.editor-post-publish-panel__prepublish .components-panel__body{background:#fff;margin-right:-16px;margin-left:-16px}.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend{display:none}.post-publish-panel__postpublish .components-panel__body{border-bottom:1px solid #e0e0e0;border-top:none}.post-publish-panel__postpublish-buttons{display:flex;align-content:space-between;flex-wrap:wrap;margin:-5px}.post-publish-panel__postpublish-buttons>*{flex-grow:1;margin:5px}.post-publish-panel__postpublish-buttons .components-button{height:auto;justify-content:center;padding:3px 10px 4px;flex:1;line-height:1.6;text-align:center;white-space:normal}.post-publish-panel__postpublish-buttons .components-clipboard-button{width:100%}.post-publish-panel__postpublish-post-address-container{display:flex;align-items:flex-end;margin-bottom:16px}.post-publish-panel__postpublish-post-address-container .components-base-control__field{margin-bottom:0}.post-publish-panel__postpublish-post-address-container .post-publish-panel__postpublish-post-address{flex:1}.post-publish-panel__postpublish-post-address-container input[readonly]{padding:10px;background:#ddd;overflow:hidden;text-overflow:ellipsis}.post-publish-panel__postpublish-post-address__copy-button-wrap{flex-shrink:0;margin-right:8px}.post-publish-panel__postpublish-post-address__copy-button-wrap .components-button{height:38px}.post-publish-panel__postpublish-header{font-weight:500}.post-publish-panel__postpublish-subheader{margin:0 0 8px}.post-publish-panel__tip{color:#f0b849}@media screen and (max-width:782px){.post-publish-panel__postpublish-post-address__button-wrap .components-button{height:40px}}.editor-post-saved-state{display:flex;align-items:center;width:28px;padding:12px 4px;color:#757575;overflow:hidden;white-space:nowrap}.editor-post-saved-state.is-saved[aria-disabled=true],.editor-post-saved-state.is-saved[aria-disabled=true]:hover,.editor-post-saved-state.is-saving[aria-disabled=true],.editor-post-saved-state.is-saving[aria-disabled=true]:hover{background:transparent;color:#757575}.editor-post-saved-state svg{display:inline-block;flex:0 0 auto;fill:currentColor;margin-left:8px}@media (min-width:600px){.editor-post-saved-state{width:auto;padding:8px 12px;text-indent:inherit}.editor-post-saved-state svg{margin-left:0}}.editor-post-taxonomies__hierarchical-terms-list{max-height:14em;overflow:auto;margin-right:-6px;padding-right:6px;margin-top:-6px;padding-top:6px}.editor-post-taxonomies__hierarchical-terms-choice{margin-bottom:8px}.editor-post-taxonomies__hierarchical-terms-subchoices{margin-top:8px;margin-right:16px}.components-button.editor-post-taxonomies__hierarchical-terms-add,.components-button.editor-post-taxonomies__hierarchical-terms-submit{margin-top:12px}.editor-post-taxonomies__hierarchical-terms-label{display:inline-block;margin-top:12px}.editor-post-taxonomies__hierarchical-terms-input{margin-top:8px}.editor-post-taxonomies__hierarchical-terms-filter{margin-bottom:8px;width:100%}.editor-post-taxonomies__flat-term-most-used .editor-post-taxonomies__flat-term-most-used-label{font-weight:400;margin-bottom:12px}.editor-post-taxonomies__flat-term-most-used-list{margin:0}.editor-post-taxonomies__flat-term-most-used-list li{display:inline-block;margin-left:8px}.editor-post-taxonomies__flat-term-most-used-list .components-button{font-size:12px}.edit-post-text-editor__body textarea.editor-post-text-editor{border:1px solid #949494;border-radius:0;display:block;margin:0;width:100%;box-shadow:none;resize:none;overflow:hidden;font-family:Menlo,Consolas,monaco,monospace;line-height:2.4;min-height:200px;transition:border .1s ease-out,box-shadow .1s linear;padding:16px;font-size:16px!important}@media (prefers-reduced-motion:reduce){.edit-post-text-editor__body textarea.editor-post-text-editor{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-text-editor__body textarea.editor-post-text-editor{padding:24px;font-size:15px!important}}.edit-post-text-editor__body textarea.editor-post-text-editor:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative}.edit-post-text-editor__body textarea.editor-post-text-editor::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.edit-post-text-editor__body textarea.editor-post-text-editor::-moz-placeholder{color:rgba(30,30,30,.62);opacity:1}.edit-post-text-editor__body textarea.editor-post-text-editor:-ms-input-placeholder{color:rgba(30,30,30,.62)}.edit-post-post-visibility__dialog,.editor-post-visibility__dialog-fieldset{padding:0 4px 4px}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-legend{font-weight:600;margin-bottom:1em;margin-top:.5em;padding:0}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{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 .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;margin-left:12px;transition:none;border-radius:50%;width:24px;height:24px;margin-top:2px}@media (prefers-reduced-motion:reduce){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{font-size:13px;line-height:normal}}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder{color:rgba(30,30,30,.62)}@media (min-width:600px){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{height:20px;width:20px}}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked:before,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked:before{box-sizing:inherit;width:8px;height:8px;transform:translate(-7px,7px);margin:0;background-color:#fff;border:4px solid #fff}@media (min-width:600px){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked:before,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked:before{transform:translate(-5px,5px)}}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-label,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-label{font-weight:600}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-info,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-info{margin-top:0;margin-right:32px}.edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info,.editor-post-visibility__dialog-fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info{margin-bottom:0}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;margin-right:36px;margin-top:8px}@media (prefers-reduced-motion:reduce){.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]{font-size:13px;line-height:normal}}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.editor-post-title{position:relative}.editor-post-title.is-focus-mode{opacity:.5;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.editor-post-title.is-focus-mode{transition-duration:0s;transition-delay:0s}}.editor-post-title.is-focus-mode:focus{opacity:1}.editor-post-trash.components-button{margin-top:4px}.table-of-contents__popover.components-popover .components-popover__content{min-width:380px}.components-popover.table-of-contents__popover{z-index:99998}.table-of-contents__popover .components-popover__content>div{padding:16px}@media (min-width:600px){.table-of-contents__popover .components-popover__content{max-height:calc(100vh - 120px);overflow-y:auto}}.table-of-contents__popover hr{margin:10px -16px 0}.table-of-contents__wrapper:focus:before{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);pointer-events:none}.table-of-contents__counts{display:flex;flex-wrap:wrap;margin:-8px 0 0}.table-of-contents__count{flex-basis:33%;display:flex;flex-direction:column;font-size:13px;color:#1e1e1e;padding-left:8px;margin-bottom:0;margin-top:8px}.table-of-contents__count:nth-child(4n){padding-left:0}.table-of-contents__number,.table-of-contents__popover .word-count{font-size:21px;font-weight:400;line-height:30px;color:#1e1e1e}.table-of-contents__title{display:block;margin-top:20px;font-size:15px;font-weight:600}.editor-template-validation-notice{display:flex;justify-content:space-between;align-items:center}.editor-template-validation-notice .components-button{margin-right:5px}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/editor/style.css b/static/wp-includes/css/dist/editor/style.css
new file mode 100755
index 0000000..555fc75
--- /dev/null
+++ b/static/wp-includes/css/dist/editor/style.css
@@ -0,0 +1,996 @@
+@charset "UTF-8";
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.editor-autocompleters__user .editor-autocompleters__no-avatar::before {
+ /* stylelint-disable */
+ font: normal 20px/1 dashicons;
+ /* stylelint-enable */
+ content: "ï„";
+ margin-right: 5px;
+ vertical-align: middle;
+}
+.editor-autocompleters__user .editor-autocompleters__user-avatar {
+ margin-right: 8px;
+ flex-grow: 0;
+ flex-shrink: 0;
+ max-width: none;
+ width: 24px;
+ height: 24px;
+}
+.editor-autocompleters__user .editor-autocompleters__user-name {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ max-width: 200px;
+ flex-shrink: 0;
+ flex-grow: 1;
+}
+.editor-autocompleters__user .editor-autocompleters__user-slug {
+ margin-left: 8px;
+ color: #757575;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: none;
+ max-width: 100px;
+ flex-grow: 0;
+ flex-shrink: 0;
+}
+.editor-autocompleters__user:hover .editor-autocompleters__user-slug {
+ color: var(--wp-admin-theme-color);
+}
+
+.document-outline {
+ margin: 20px 0;
+}
+.document-outline ul {
+ margin: 0;
+ padding: 0;
+}
+
+.document-outline__item {
+ display: flex;
+ margin: 4px 0;
+}
+.document-outline__item a {
+ text-decoration: none;
+}
+.document-outline__item .document-outline__emdash::before {
+ color: #ddd;
+ margin-right: 4px;
+}
+.document-outline__item.is-h2 .document-outline__emdash::before {
+ content: "—";
+}
+.document-outline__item.is-h3 .document-outline__emdash::before {
+ content: "——";
+}
+.document-outline__item.is-h4 .document-outline__emdash::before {
+ content: "———";
+}
+.document-outline__item.is-h5 .document-outline__emdash::before {
+ content: "————";
+}
+.document-outline__item.is-h6 .document-outline__emdash::before {
+ content: "—————";
+}
+
+.document-outline__button {
+ cursor: pointer;
+ background: none;
+ border: none;
+ display: flex;
+ align-items: flex-start;
+ margin: 0 0 0 -1px;
+ padding: 2px 5px 2px 1px;
+ color: #1e1e1e;
+ text-align: left;
+ border-radius: 2px;
+}
+.document-outline__button:disabled {
+ cursor: default;
+}
+.document-outline__button:focus {
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+
+.document-outline__level {
+ background: #ddd;
+ color: #1e1e1e;
+ border-radius: 3px;
+ font-size: 13px;
+ padding: 1px 6px;
+ margin-right: 4px;
+}
+.is-invalid .document-outline__level {
+ background: #f0b849;
+}
+
+.document-outline__item-content {
+ padding: 1px 0;
+}
+
+.components-editor-notices__dismissible,
+.components-editor-notices__pinned {
+ position: relative;
+ left: 0;
+ top: 0;
+ right: 0;
+ color: #1e1e1e;
+}
+.components-editor-notices__dismissible .components-notice,
+.components-editor-notices__pinned .components-notice {
+ box-sizing: border-box;
+ margin: 0;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.2);
+ padding: 0 12px;
+ min-height: 60px;
+}
+.components-editor-notices__dismissible .components-notice .components-notice__dismiss,
+.components-editor-notices__pinned .components-notice .components-notice__dismiss {
+ margin-top: 12px;
+}
+
+.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 .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 {
+ top: 32px;
+ left: auto;
+ width: 280px;
+ border-left: 1px solid #ddd;
+ }
+ 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 #ddd;
+}
+.entities-saved-states__panel .entities-saved-states__text-prompt {
+ padding: 16px;
+ padding-bottom: 4px;
+}
+
+.editor-error-boundary {
+ margin: auto;
+ max-width: 780px;
+ padding: 20px;
+ margin-top: 60px;
+ box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
+}
+
+.editor-page-attributes__order {
+ width: 100%;
+}
+.editor-page-attributes__order .components-base-control__field {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+.editor-page-attributes__order input {
+ width: 66px;
+}
+
+.editor-post-excerpt__textarea {
+ width: 100%;
+ margin-bottom: 10px;
+}
+
+.editor-post-featured-image {
+ padding: 0;
+}
+.editor-post-featured-image__container {
+ margin-bottom: 1em;
+ position: relative;
+}
+.editor-post-featured-image .components-spinner {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-top: -9px;
+ margin-left: -9px;
+}
+.editor-post-featured-image .components-button + .components-button {
+ display: block;
+ margin-top: 1em;
+}
+.editor-post-featured-image .components-responsive-wrapper__content {
+ max-width: 100%;
+ width: auto;
+}
+
+.editor-post-featured-image__toggle,
+.editor-post-featured-image__preview {
+ display: block;
+ width: 100%;
+ padding: 0;
+ transition: all 0.1s ease-out;
+ box-shadow: 0 0 0 0 var(--wp-admin-theme-color);
+}
+@media (prefers-reduced-motion: reduce) {
+ .editor-post-featured-image__toggle,
+.editor-post-featured-image__preview {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+
+.editor-post-featured-image__preview {
+ height: auto;
+}
+
+.editor-post-featured-image__preview:not(:disabled):not([aria-disabled=true]):focus {
+ box-shadow: 0 0 0 4px var(--wp-admin-theme-color);
+}
+
+.editor-post-featured-image__toggle {
+ border-radius: 2px;
+ background-color: #f0f0f0;
+ min-height: 90px;
+ line-height: 20px;
+ padding: 8px 0;
+ text-align: center;
+}
+.editor-post-featured-image__toggle:hover {
+ background: #ddd;
+ color: #1e1e1e;
+}
+
+.editor-post-format {
+ flex-direction: column;
+ align-items: stretch;
+ width: 100%;
+}
+
+.editor-post-format__content {
+ display: inline-flex;
+ justify-content: space-between;
+ align-items: center;
+ width: 100%;
+}
+
+.editor-post-format__suggestion {
+ padding: 6px;
+ text-align: right;
+ font-size: 13px;
+}
+
+.editor-post-last-revision__title {
+ width: 100%;
+ font-weight: 600;
+}
+.editor-post-last-revision__title .dashicon {
+ margin-right: 5px;
+}
+
+.components-button.editor-post-last-revision__title {
+ height: 100%;
+}
+.components-button.editor-post-last-revision__title:hover, .components-button.editor-post-last-revision__title:active {
+ background: #f0f0f0;
+}
+.components-button.editor-post-last-revision__title:focus {
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ border-radius: 0;
+}
+
+@media (min-width: 600px) {
+ .editor-post-locked-modal {
+ max-width: 480px;
+ }
+}
+.editor-post-locked-modal .components-modal__content {
+ display: flex;
+}
+
+.editor-post-locked-modal__buttons {
+ margin-top: 24px;
+}
+
+.editor-post-locked-modal__avatar {
+ border-radius: 2px;
+ margin-top: 16px;
+ margin-right: 24px;
+}
+
+.editor-post-publish-button__button.has-changes-dot::before {
+ background: currentcolor;
+ border-radius: 4px;
+ content: "";
+ height: 8px;
+ margin: auto 5px auto -3px;
+ width: 8px;
+}
+
+.editor-post-publish-panel {
+ background: #fff;
+}
+
+.editor-post-publish-panel__content {
+ min-height: calc(100% - 144px);
+}
+.editor-post-publish-panel__content .components-spinner {
+ display: block;
+ margin: 100px auto 0;
+}
+
+.editor-post-publish-panel__header {
+ background: #fff;
+ padding-left: 16px;
+ padding-right: 16px;
+ height: 61px;
+ border-bottom: 1px solid #ddd;
+ display: flex;
+ align-items: center;
+ align-content: space-between;
+}
+.editor-post-publish-panel__header .components-button {
+ width: 100%;
+ justify-content: center;
+}
+.editor-post-publish-panel__header .has-icon {
+ margin-left: auto;
+ width: auto;
+}
+
+.components-site-card {
+ display: flex;
+ align-items: center;
+ margin: 16px 0;
+}
+
+.components-site-icon {
+ border: none;
+ border-radius: 2px;
+ margin-right: 12px;
+ height: 36px;
+ width: 36px;
+}
+
+.components-site-name {
+ display: block;
+ font-size: 14px;
+}
+
+.components-site-home {
+ display: block;
+ color: #757575;
+ font-size: 12px;
+}
+
+.editor-post-publish-panel__header-publish-button,
+.editor-post-publish-panel__header-cancel-button {
+ flex-grow: 1;
+}
+@media (min-width: 480px) {
+ .editor-post-publish-panel__header-publish-button,
+.editor-post-publish-panel__header-cancel-button {
+ max-width: 160px;
+ }
+}
+
+.editor-post-publish-panel__header-publish-button {
+ padding-right: 4px;
+}
+
+.editor-post-publish-panel__header-cancel-button {
+ padding-left: 4px;
+}
+
+.editor-post-publish-panel__header-published {
+ flex-grow: 1;
+}
+
+.editor-post-publish-panel__footer {
+ padding: 16px;
+}
+
+.components-button.editor-post-publish-panel__toggle.is-primary {
+ display: inline-flex;
+ align-items: center;
+}
+.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon {
+ display: none;
+}
+.components-button.editor-post-publish-panel__toggle.is-primary .dashicon {
+ margin-right: -4px;
+}
+
+.editor-post-publish-panel__link {
+ font-weight: 400;
+ padding-left: 4px;
+}
+
+.editor-post-publish-panel__prepublish {
+ padding: 16px;
+}
+.editor-post-publish-panel__prepublish strong {
+ color: #1e1e1e;
+}
+.editor-post-publish-panel__prepublish .components-panel__body {
+ background: #fff;
+ margin-left: -16px;
+ margin-right: -16px;
+}
+.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend {
+ display: none;
+}
+
+.post-publish-panel__postpublish .components-panel__body {
+ border-bottom: 1px solid #e0e0e0;
+ border-top: none;
+}
+
+.post-publish-panel__postpublish-buttons {
+ display: flex;
+ align-content: space-between;
+ flex-wrap: wrap;
+ margin: -5px;
+}
+.post-publish-panel__postpublish-buttons > * {
+ flex-grow: 1;
+ margin: 5px;
+}
+.post-publish-panel__postpublish-buttons .components-button {
+ height: auto;
+ justify-content: center;
+ padding: 3px 10px 4px;
+ flex: 1;
+ line-height: 1.6;
+ text-align: center;
+ white-space: normal;
+}
+.post-publish-panel__postpublish-buttons .components-clipboard-button {
+ width: 100%;
+}
+
+.post-publish-panel__postpublish-post-address-container {
+ display: flex;
+ align-items: flex-end;
+ margin-bottom: 16px;
+}
+.post-publish-panel__postpublish-post-address-container .components-base-control__field {
+ margin-bottom: 0;
+}
+.post-publish-panel__postpublish-post-address-container .post-publish-panel__postpublish-post-address {
+ flex: 1;
+}
+.post-publish-panel__postpublish-post-address-container input[readonly] {
+ padding: 10px;
+ background: #ddd;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.post-publish-panel__postpublish-post-address__copy-button-wrap {
+ flex-shrink: 0;
+ margin-left: 8px;
+}
+.post-publish-panel__postpublish-post-address__copy-button-wrap .components-button {
+ height: 38px;
+}
+
+.post-publish-panel__postpublish-header {
+ font-weight: 500;
+}
+
+.post-publish-panel__postpublish-subheader {
+ margin: 0 0 8px;
+}
+
+.post-publish-panel__tip {
+ color: #f0b849;
+}
+
+@media screen and (max-width: 782px) {
+ .post-publish-panel__postpublish-post-address__button-wrap .components-button {
+ height: 40px;
+ }
+}
+.editor-post-saved-state {
+ display: flex;
+ align-items: center;
+ width: 28px;
+ padding: 12px 4px;
+ color: #757575;
+ overflow: hidden;
+ white-space: nowrap;
+}
+.editor-post-saved-state.is-saving[aria-disabled=true], .editor-post-saved-state.is-saving[aria-disabled=true]:hover, .editor-post-saved-state.is-saved[aria-disabled=true], .editor-post-saved-state.is-saved[aria-disabled=true]:hover {
+ background: transparent;
+ color: #757575;
+}
+.editor-post-saved-state svg {
+ display: inline-block;
+ flex: 0 0 auto;
+ fill: currentColor;
+ margin-right: 8px;
+}
+@media (min-width: 600px) {
+ .editor-post-saved-state {
+ width: auto;
+ padding: 8px 12px;
+ text-indent: inherit;
+ }
+ .editor-post-saved-state svg {
+ margin-right: 0;
+ }
+}
+
+.editor-post-taxonomies__hierarchical-terms-list {
+ max-height: 14em;
+ overflow: auto;
+ margin-left: -6px;
+ padding-left: 6px;
+ margin-top: -6px;
+ padding-top: 6px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-choice {
+ margin-bottom: 8px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-subchoices {
+ margin-top: 8px;
+ margin-left: 16px;
+}
+
+.components-button.editor-post-taxonomies__hierarchical-terms-submit,
+.components-button.editor-post-taxonomies__hierarchical-terms-add {
+ margin-top: 12px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-label {
+ display: inline-block;
+ margin-top: 12px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-input {
+ margin-top: 8px;
+}
+
+.editor-post-taxonomies__hierarchical-terms-filter {
+ margin-bottom: 8px;
+ width: 100%;
+}
+
+.editor-post-taxonomies__flat-term-most-used .editor-post-taxonomies__flat-term-most-used-label {
+ font-weight: 400;
+ margin-bottom: 12px;
+}
+
+.editor-post-taxonomies__flat-term-most-used-list {
+ margin: 0;
+}
+.editor-post-taxonomies__flat-term-most-used-list li {
+ display: inline-block;
+ margin-right: 8px;
+}
+.editor-post-taxonomies__flat-term-most-used-list .components-button {
+ font-size: 12px;
+}
+
+.edit-post-text-editor__body textarea.editor-post-text-editor {
+ border: 1px solid #949494;
+ border-radius: 0;
+ display: block;
+ margin: 0;
+ width: 100%;
+ box-shadow: none;
+ resize: none;
+ overflow: hidden;
+ font-family: Menlo, Consolas, monaco, monospace;
+ line-height: 2.4;
+ min-height: 200px;
+ transition: border 0.1s ease-out, box-shadow 0.1s linear;
+ padding: 16px;
+ /* Fonts smaller than 16px causes mobile safari to zoom. */
+ font-size: 16px !important;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-post-text-editor__body textarea.editor-post-text-editor {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor__body textarea.editor-post-text-editor {
+ padding: 24px;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-text-editor__body textarea.editor-post-text-editor {
+ font-size: 15px !important;
+ }
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ position: relative;
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor::-moz-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+ opacity: 1;
+}
+.edit-post-text-editor__body textarea.editor-post-text-editor:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.edit-post-post-visibility__dialog,
+.editor-post-visibility__dialog-fieldset {
+ padding: 4px;
+ padding-top: 0;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-legend {
+ font-weight: 600;
+ margin-bottom: 1em;
+ margin-top: 0.5em;
+ padding: 0;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ 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;
+ border: 1px solid #1e1e1e;
+ margin-right: 12px;
+ transition: none;
+ border-radius: 50%;
+ width: 24px;
+ height: 24px;
+ margin-top: 2px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+@media (min-width: 600px) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio] {
+ height: 20px;
+ width: 20px;
+ }
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked::before,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked::before {
+ box-sizing: inherit;
+ width: 8px;
+ height: 8px;
+ transform: translate(7px, 7px);
+ margin: 0;
+ background-color: #fff;
+ border: 4px solid #fff;
+}
+@media (min-width: 600px) {
+ .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked::before,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked::before {
+ transform: translate(5px, 5px);
+ }
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus {
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked {
+ background: var(--wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color);
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-label,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-label {
+ font-weight: 600;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__dialog-info,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-info {
+ margin-top: 0;
+ margin-left: 32px;
+}
+.edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info,
+.editor-post-visibility__dialog-fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info {
+ margin-bottom: 0;
+}
+
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text] {
+ 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;
+ margin-left: 36px;
+ margin-top: 8px;
+}
+@media (prefers-reduced-motion: reduce) {
+ .editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text] {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+@media (min-width: 600px) {
+ .editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text] {
+ font-size: 13px;
+ /* Override core line-height. To be reviewed. */
+ line-height: normal;
+ }
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:focus {
+ border-color: var(--wp-admin-theme-color);
+ box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
+ outline: 2px solid transparent;
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-webkit-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-moz-placeholder {
+ opacity: 1;
+ color: rgba(30, 30, 30, 0.62);
+}
+.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:-ms-input-placeholder {
+ color: rgba(30, 30, 30, 0.62);
+}
+
+.editor-post-title {
+ position: relative;
+}
+.editor-post-title.is-focus-mode {
+ opacity: 0.5;
+ transition: opacity 0.1s linear;
+}
+@media (prefers-reduced-motion: reduce) {
+ .editor-post-title.is-focus-mode {
+ transition-duration: 0s;
+ transition-delay: 0s;
+ }
+}
+.editor-post-title.is-focus-mode:focus {
+ opacity: 1;
+}
+
+.editor-post-trash.components-button {
+ margin-top: 4px;
+}
+
+.table-of-contents__popover.components-popover .components-popover__content {
+ min-width: 380px;
+}
+
+.components-popover.table-of-contents__popover {
+ z-index: 99998;
+}
+
+.table-of-contents__popover .components-popover__content > div {
+ padding: 16px;
+}
+@media (min-width: 600px) {
+ .table-of-contents__popover .components-popover__content {
+ max-height: calc(100vh - 120px);
+ overflow-y: auto;
+ }
+}
+.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
+ pointer-events: none;
+}
+
+.table-of-contents__counts {
+ display: flex;
+ flex-wrap: wrap;
+ margin: 0;
+ margin-top: -8px;
+}
+
+.table-of-contents__count {
+ flex-basis: 33%;
+ display: flex;
+ flex-direction: column;
+ font-size: 13px;
+ color: #1e1e1e;
+ padding-right: 8px;
+ margin-bottom: 0;
+ margin-top: 8px;
+}
+.table-of-contents__count:nth-child(4n) {
+ padding-right: 0;
+}
+
+.table-of-contents__number,
+.table-of-contents__popover .word-count {
+ font-size: 21px;
+ font-weight: 400;
+ line-height: 30px;
+ color: #1e1e1e;
+}
+
+.table-of-contents__title {
+ display: block;
+ margin-top: 20px;
+ font-size: 15px;
+ font-weight: 600;
+}
+
+.editor-template-validation-notice {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+.editor-template-validation-notice .components-button {
+ margin-left: 5px;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/editor/style.min.css b/static/wp-includes/css/dist/editor/style.min.css
new file mode 100755
index 0000000..da2818d
--- /dev/null
+++ b/static/wp-includes/css/dist/editor/style.min.css
@@ -0,0 +1 @@
+@charset "UTF-8";:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.editor-autocompleters__user .editor-autocompleters__no-avatar:before{font:normal 20px/1 dashicons;content:"ï„";margin-right:5px;vertical-align:middle}.editor-autocompleters__user .editor-autocompleters__user-avatar{margin-right:8px;flex-grow:0;flex-shrink:0;max-width:none;width:24px;height:24px}.editor-autocompleters__user .editor-autocompleters__user-name{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;max-width:200px;flex-shrink:0;flex-grow:1}.editor-autocompleters__user .editor-autocompleters__user-slug{margin-left:8px;color:#757575;white-space:nowrap;text-overflow:ellipsis;overflow:none;max-width:100px;flex-grow:0;flex-shrink:0}.editor-autocompleters__user:hover .editor-autocompleters__user-slug{color:var(--wp-admin-theme-color)}.document-outline{margin:20px 0}.document-outline ul{margin:0;padding:0}.document-outline__item{display:flex;margin:4px 0}.document-outline__item a{text-decoration:none}.document-outline__item .document-outline__emdash:before{color:#ddd;margin-right:4px}.document-outline__item.is-h2 .document-outline__emdash:before{content:"—"}.document-outline__item.is-h3 .document-outline__emdash:before{content:"——"}.document-outline__item.is-h4 .document-outline__emdash:before{content:"———"}.document-outline__item.is-h5 .document-outline__emdash:before{content:"————"}.document-outline__item.is-h6 .document-outline__emdash:before{content:"—————"}.document-outline__button{cursor:pointer;background:none;border:none;display:flex;align-items:flex-start;margin:0 0 0 -1px;padding:2px 5px 2px 1px;color:#1e1e1e;text-align:left;border-radius:2px}.document-outline__button:disabled{cursor:default}.document-outline__button:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.document-outline__level{background:#ddd;color:#1e1e1e;border-radius:3px;font-size:13px;padding:1px 6px;margin-right:4px}.is-invalid .document-outline__level{background:#f0b849}.document-outline__item-content{padding:1px 0}.components-editor-notices__dismissible,.components-editor-notices__pinned{position:relative;left:0;top:0;right:0;color:#1e1e1e}.components-editor-notices__dismissible .components-notice,.components-editor-notices__pinned .components-notice{box-sizing:border-box;margin:0;border-bottom:1px solid rgba(0,0,0,.2);padding:0 12px;min-height:60px}.components-editor-notices__dismissible .components-notice .components-notice__dismiss,.components-editor-notices__pinned .components-notice .components-notice__dismiss{margin-top:12px}.entities-saved-states__panel{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 :after,.entities-saved-states__panel :before{box-sizing:inherit}.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{top:32px;left:auto;width:280px;border-left:1px solid #ddd}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 #ddd}.entities-saved-states__panel .entities-saved-states__text-prompt{padding:16px 16px 4px}.editor-error-boundary{max-width:780px;padding:20px;margin:60px auto auto;box-shadow:0 10px 10px rgba(0,0,0,.25)}.editor-page-attributes__order{width:100%}.editor-page-attributes__order .components-base-control__field{display:flex;justify-content:space-between;align-items:center}.editor-page-attributes__order input{width:66px}.editor-post-excerpt__textarea{width:100%;margin-bottom:10px}.editor-post-featured-image{padding:0}.editor-post-featured-image__container{margin-bottom:1em;position:relative}.editor-post-featured-image .components-spinner{position:absolute;top:50%;left:50%;margin-top:-9px;margin-left:-9px}.editor-post-featured-image .components-button+.components-button{display:block;margin-top:1em}.editor-post-featured-image .components-responsive-wrapper__content{max-width:100%;width:auto}.editor-post-featured-image__preview,.editor-post-featured-image__toggle{display:block;width:100%;padding:0;transition:all .1s ease-out;box-shadow:0 0 0 0 var(--wp-admin-theme-color)}@media (prefers-reduced-motion:reduce){.editor-post-featured-image__preview,.editor-post-featured-image__toggle{transition-duration:0s;transition-delay:0s}}.editor-post-featured-image__preview{height:auto}.editor-post-featured-image__preview:not(:disabled):not([aria-disabled=true]):focus{box-shadow:0 0 0 4px var(--wp-admin-theme-color)}.editor-post-featured-image__toggle{border-radius:2px;background-color:#f0f0f0;min-height:90px;line-height:20px;padding:8px 0;text-align:center}.editor-post-featured-image__toggle:hover{background:#ddd;color:#1e1e1e}.editor-post-format{flex-direction:column;align-items:stretch;width:100%}.editor-post-format__content{display:inline-flex;justify-content:space-between;align-items:center;width:100%}.editor-post-format__suggestion{padding:6px;text-align:right;font-size:13px}.editor-post-last-revision__title{width:100%;font-weight:600}.editor-post-last-revision__title .dashicon{margin-right:5px}.components-button.editor-post-last-revision__title{height:100%}.components-button.editor-post-last-revision__title:active,.components-button.editor-post-last-revision__title:hover{background:#f0f0f0}.components-button.editor-post-last-revision__title:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);border-radius:0}@media (min-width:600px){.editor-post-locked-modal{max-width:480px}}.editor-post-locked-modal .components-modal__content{display:flex}.editor-post-locked-modal__buttons{margin-top:24px}.editor-post-locked-modal__avatar{border-radius:2px;margin-top:16px;margin-right:24px}.editor-post-publish-button__button.has-changes-dot:before{background:currentcolor;border-radius:4px;content:"";height:8px;margin:auto 5px auto -3px;width:8px}.editor-post-publish-panel{background:#fff}.editor-post-publish-panel__content{min-height:calc(100% - 144px)}.editor-post-publish-panel__content .components-spinner{display:block;margin:100px auto 0}.editor-post-publish-panel__header{background:#fff;padding-left:16px;padding-right:16px;height:61px;border-bottom:1px solid #ddd;display:flex;align-items:center;align-content:space-between}.editor-post-publish-panel__header .components-button{width:100%;justify-content:center}.editor-post-publish-panel__header .has-icon{margin-left:auto;width:auto}.components-site-card{display:flex;align-items:center;margin:16px 0}.components-site-icon{border:none;border-radius:2px;margin-right:12px;height:36px;width:36px}.components-site-name{display:block;font-size:14px}.components-site-home{display:block;color:#757575;font-size:12px}.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{flex-grow:1}@media (min-width:480px){.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{max-width:160px}}.editor-post-publish-panel__header-publish-button{padding-right:4px}.editor-post-publish-panel__header-cancel-button{padding-left:4px}.editor-post-publish-panel__header-published{flex-grow:1}.editor-post-publish-panel__footer{padding:16px}.components-button.editor-post-publish-panel__toggle.is-primary{display:inline-flex;align-items:center}.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon{display:none}.components-button.editor-post-publish-panel__toggle.is-primary .dashicon{margin-right:-4px}.editor-post-publish-panel__link{font-weight:400;padding-left:4px}.editor-post-publish-panel__prepublish{padding:16px}.editor-post-publish-panel__prepublish strong{color:#1e1e1e}.editor-post-publish-panel__prepublish .components-panel__body{background:#fff;margin-left:-16px;margin-right:-16px}.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend{display:none}.post-publish-panel__postpublish .components-panel__body{border-bottom:1px solid #e0e0e0;border-top:none}.post-publish-panel__postpublish-buttons{display:flex;align-content:space-between;flex-wrap:wrap;margin:-5px}.post-publish-panel__postpublish-buttons>*{flex-grow:1;margin:5px}.post-publish-panel__postpublish-buttons .components-button{height:auto;justify-content:center;padding:3px 10px 4px;flex:1;line-height:1.6;text-align:center;white-space:normal}.post-publish-panel__postpublish-buttons .components-clipboard-button{width:100%}.post-publish-panel__postpublish-post-address-container{display:flex;align-items:flex-end;margin-bottom:16px}.post-publish-panel__postpublish-post-address-container .components-base-control__field{margin-bottom:0}.post-publish-panel__postpublish-post-address-container .post-publish-panel__postpublish-post-address{flex:1}.post-publish-panel__postpublish-post-address-container input[readonly]{padding:10px;background:#ddd;overflow:hidden;text-overflow:ellipsis}.post-publish-panel__postpublish-post-address__copy-button-wrap{flex-shrink:0;margin-left:8px}.post-publish-panel__postpublish-post-address__copy-button-wrap .components-button{height:38px}.post-publish-panel__postpublish-header{font-weight:500}.post-publish-panel__postpublish-subheader{margin:0 0 8px}.post-publish-panel__tip{color:#f0b849}@media screen and (max-width:782px){.post-publish-panel__postpublish-post-address__button-wrap .components-button{height:40px}}.editor-post-saved-state{display:flex;align-items:center;width:28px;padding:12px 4px;color:#757575;overflow:hidden;white-space:nowrap}.editor-post-saved-state.is-saved[aria-disabled=true],.editor-post-saved-state.is-saved[aria-disabled=true]:hover,.editor-post-saved-state.is-saving[aria-disabled=true],.editor-post-saved-state.is-saving[aria-disabled=true]:hover{background:transparent;color:#757575}.editor-post-saved-state svg{display:inline-block;flex:0 0 auto;fill:currentColor;margin-right:8px}@media (min-width:600px){.editor-post-saved-state{width:auto;padding:8px 12px;text-indent:inherit}.editor-post-saved-state svg{margin-right:0}}.editor-post-taxonomies__hierarchical-terms-list{max-height:14em;overflow:auto;margin-left:-6px;padding-left:6px;margin-top:-6px;padding-top:6px}.editor-post-taxonomies__hierarchical-terms-choice{margin-bottom:8px}.editor-post-taxonomies__hierarchical-terms-subchoices{margin-top:8px;margin-left:16px}.components-button.editor-post-taxonomies__hierarchical-terms-add,.components-button.editor-post-taxonomies__hierarchical-terms-submit{margin-top:12px}.editor-post-taxonomies__hierarchical-terms-label{display:inline-block;margin-top:12px}.editor-post-taxonomies__hierarchical-terms-input{margin-top:8px}.editor-post-taxonomies__hierarchical-terms-filter{margin-bottom:8px;width:100%}.editor-post-taxonomies__flat-term-most-used .editor-post-taxonomies__flat-term-most-used-label{font-weight:400;margin-bottom:12px}.editor-post-taxonomies__flat-term-most-used-list{margin:0}.editor-post-taxonomies__flat-term-most-used-list li{display:inline-block;margin-right:8px}.editor-post-taxonomies__flat-term-most-used-list .components-button{font-size:12px}.edit-post-text-editor__body textarea.editor-post-text-editor{border:1px solid #949494;border-radius:0;display:block;margin:0;width:100%;box-shadow:none;resize:none;overflow:hidden;font-family:Menlo,Consolas,monaco,monospace;line-height:2.4;min-height:200px;transition:border .1s ease-out,box-shadow .1s linear;padding:16px;font-size:16px!important}@media (prefers-reduced-motion:reduce){.edit-post-text-editor__body textarea.editor-post-text-editor{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-text-editor__body textarea.editor-post-text-editor{padding:24px;font-size:15px!important}}.edit-post-text-editor__body textarea.editor-post-text-editor:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);position:relative}.edit-post-text-editor__body textarea.editor-post-text-editor::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.edit-post-text-editor__body textarea.editor-post-text-editor::-moz-placeholder{color:rgba(30,30,30,.62);opacity:1}.edit-post-text-editor__body textarea.editor-post-text-editor:-ms-input-placeholder{color:rgba(30,30,30,.62)}.edit-post-post-visibility__dialog,.editor-post-visibility__dialog-fieldset{padding:0 4px 4px}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-legend{font-weight:600;margin-bottom:1em;margin-top:.5em;padding:0}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{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 .1s linear;border-radius:2px;font-size:16px;line-height:normal;border:1px solid #1e1e1e;margin-right:12px;transition:none;border-radius:50%;width:24px;height:24px;margin-top:2px}@media (prefers-reduced-motion:reduce){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{font-size:13px;line-height:normal}}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:-ms-input-placeholder{color:rgba(30,30,30,.62)}@media (min-width:600px){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio],.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]{height:20px;width:20px}}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked:before,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked:before{box-sizing:inherit;width:8px;height:8px;transform:translate(7px,7px);margin:0;background-color:#fff;border:4px solid #fff}@media (min-width:600px){.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked:before,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked:before{transform:translate(5px,5px)}}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:focus,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type=radio]:checked,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-label,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-label{font-weight:600}.edit-post-post-visibility__dialog .editor-post-visibility__dialog-info,.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-info{margin-top:0;margin-left:32px}.edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info,.editor-post-visibility__dialog-fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info{margin-bottom:0}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]{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 .1s linear;border-radius:2px;border:1px solid #757575;font-size:16px;line-height:normal;margin-left:36px;margin-top:8px}@media (prefers-reduced-motion:reduce){.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]{transition-duration:0s;transition-delay:0s}}@media (min-width:600px){.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]{font-size:13px;line-height:normal}}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-webkit-input-placeholder{color:rgba(30,30,30,.62)}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]::-moz-placeholder{opacity:1;color:rgba(30,30,30,.62)}.editor-post-visibility__dialog-password .editor-post-visibility__dialog-password-input[type=text]:-ms-input-placeholder{color:rgba(30,30,30,.62)}.editor-post-title{position:relative}.editor-post-title.is-focus-mode{opacity:.5;transition:opacity .1s linear}@media (prefers-reduced-motion:reduce){.editor-post-title.is-focus-mode{transition-duration:0s;transition-delay:0s}}.editor-post-title.is-focus-mode:focus{opacity:1}.editor-post-trash.components-button{margin-top:4px}.table-of-contents__popover.components-popover .components-popover__content{min-width:380px}.components-popover.table-of-contents__popover{z-index:99998}.table-of-contents__popover .components-popover__content>div{padding:16px}@media (min-width:600px){.table-of-contents__popover .components-popover__content{max-height:calc(100vh - 120px);overflow-y:auto}}.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 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);pointer-events:none}.table-of-contents__counts{display:flex;flex-wrap:wrap;margin:-8px 0 0}.table-of-contents__count{flex-basis:33%;display:flex;flex-direction:column;font-size:13px;color:#1e1e1e;padding-right:8px;margin-bottom:0;margin-top:8px}.table-of-contents__count:nth-child(4n){padding-right:0}.table-of-contents__number,.table-of-contents__popover .word-count{font-size:21px;font-weight:400;line-height:30px;color:#1e1e1e}.table-of-contents__title{display:block;margin-top:20px;font-size:15px;font-weight:600}.editor-template-validation-notice{display:flex;justify-content:space-between;align-items:center}.editor-template-validation-notice .components-button{margin-left:5px}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/format-library/style-rtl.css b/static/wp-includes/css/dist/format-library/style-rtl.css
new file mode 100755
index 0000000..dc6c418
--- /dev/null
+++ b/static/wp-includes/css/dist/format-library/style-rtl.css
@@ -0,0 +1,154 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.block-editor-format-toolbar__image-popover {
+ z-index: 159990;
+}
+
+.block-editor-format-toolbar__image-container-content {
+ display: flex;
+}
+.block-editor-format-toolbar__image-container-content .components-button {
+ align-self: flex-end;
+ height: 30px;
+ margin-bottom: 8px;
+ margin-left: 8px;
+ padding: 0 6px;
+}
+
+.block-editor-format-toolbar__image-container-value {
+ margin: 7px;
+ flex-grow: 1;
+ flex-shrink: 1;
+ white-space: nowrap;
+ min-width: 150px;
+ max-width: 500px;
+}
+.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__field {
+ margin-bottom: 0;
+}
+.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__label {
+ display: block;
+}
+
+.block-editor-format-toolbar__link-container-content {
+ display: flex;
+}
+
+.block-editor-format-toolbar__link-container-value {
+ margin: 7px;
+ flex-grow: 1;
+ flex-shrink: 1;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ min-width: 150px;
+ max-width: 500px;
+}
+.block-editor-format-toolbar__link-container-value.has-invalid-link {
+ color: #cc1818;
+}
+
+.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content {
+ padding: 16px;
+}
+.components-inline-color-popover .components-popover__content .components-color-palette {
+ margin-top: 0.6rem;
+}
+.components-inline-color-popover .components-popover__content .components-base-control__title {
+ display: block;
+ margin-bottom: 16px;
+ font-weight: 600;
+ color: #191e23;
+}
+.components-inline-color-popover .components-popover__content .component-color-indicator {
+ vertical-align: text-bottom;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/format-library/style-rtl.min.css b/static/wp-includes/css/dist/format-library/style-rtl.min.css
new file mode 100755
index 0000000..ae210be
--- /dev/null
+++ b/static/wp-includes/css/dist/format-library/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-editor-format-toolbar__image-popover{z-index:159990}.block-editor-format-toolbar__image-container-content{display:flex}.block-editor-format-toolbar__image-container-content .components-button{align-self:flex-end;height:30px;margin-bottom:8px;margin-left:8px;padding:0 6px}.block-editor-format-toolbar__image-container-value{margin:7px;flex-grow:1;flex-shrink:1;white-space:nowrap;min-width:150px;max-width:500px}.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__field{margin-bottom:0}.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__label{display:block}.block-editor-format-toolbar__link-container-content{display:flex}.block-editor-format-toolbar__link-container-value{margin:7px;flex-grow:1;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:150px;max-width:500px}.block-editor-format-toolbar__link-container-value.has-invalid-link{color:#cc1818}.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content{padding:16px}.components-inline-color-popover .components-popover__content .components-color-palette{margin-top:.6rem}.components-inline-color-popover .components-popover__content .components-base-control__title{display:block;margin-bottom:16px;font-weight:600;color:#191e23}.components-inline-color-popover .components-popover__content .component-color-indicator{vertical-align:text-bottom}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/format-library/style.css b/static/wp-includes/css/dist/format-library/style.css
new file mode 100755
index 0000000..7b5e321
--- /dev/null
+++ b/static/wp-includes/css/dist/format-library/style.css
@@ -0,0 +1,154 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.block-editor-format-toolbar__image-popover {
+ z-index: 159990;
+}
+
+.block-editor-format-toolbar__image-container-content {
+ display: flex;
+}
+.block-editor-format-toolbar__image-container-content .components-button {
+ align-self: flex-end;
+ height: 30px;
+ margin-bottom: 8px;
+ margin-right: 8px;
+ padding: 0 6px;
+}
+
+.block-editor-format-toolbar__image-container-value {
+ margin: 7px;
+ flex-grow: 1;
+ flex-shrink: 1;
+ white-space: nowrap;
+ min-width: 150px;
+ max-width: 500px;
+}
+.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__field {
+ margin-bottom: 0;
+}
+.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__label {
+ display: block;
+}
+
+.block-editor-format-toolbar__link-container-content {
+ display: flex;
+}
+
+.block-editor-format-toolbar__link-container-value {
+ margin: 7px;
+ flex-grow: 1;
+ flex-shrink: 1;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ min-width: 150px;
+ max-width: 500px;
+}
+.block-editor-format-toolbar__link-container-value.has-invalid-link {
+ color: #cc1818;
+}
+
+.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content {
+ padding: 16px;
+}
+.components-inline-color-popover .components-popover__content .components-color-palette {
+ margin-top: 0.6rem;
+}
+.components-inline-color-popover .components-popover__content .components-base-control__title {
+ display: block;
+ margin-bottom: 16px;
+ font-weight: 600;
+ color: #191e23;
+}
+.components-inline-color-popover .components-popover__content .component-color-indicator {
+ vertical-align: text-bottom;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/format-library/style.min.css b/static/wp-includes/css/dist/format-library/style.min.css
new file mode 100755
index 0000000..d5abe9a
--- /dev/null
+++ b/static/wp-includes/css/dist/format-library/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-editor-format-toolbar__image-popover{z-index:159990}.block-editor-format-toolbar__image-container-content{display:flex}.block-editor-format-toolbar__image-container-content .components-button{align-self:flex-end;height:30px;margin-bottom:8px;margin-right:8px;padding:0 6px}.block-editor-format-toolbar__image-container-value{margin:7px;flex-grow:1;flex-shrink:1;white-space:nowrap;min-width:150px;max-width:500px}.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__field{margin-bottom:0}.block-editor-format-toolbar__image-container-value.components-base-control .components-base-control__label{display:block}.block-editor-format-toolbar__link-container-content{display:flex}.block-editor-format-toolbar__link-container-value{margin:7px;flex-grow:1;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:150px;max-width:500px}.block-editor-format-toolbar__link-container-value.has-invalid-link{color:#cc1818}.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content{padding:16px}.components-inline-color-popover .components-popover__content .components-color-palette{margin-top:.6rem}.components-inline-color-popover .components-popover__content .components-base-control__title{display:block;margin-bottom:16px;font-weight:600;color:#191e23}.components-inline-color-popover .components-popover__content .component-color-indicator{vertical-align:text-bottom}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/list-reusable-blocks/style-rtl.css b/static/wp-includes/css/dist/list-reusable-blocks/style-rtl.css
new file mode 100755
index 0000000..323be7b
--- /dev/null
+++ b/static/wp-includes/css/dist/list-reusable-blocks/style-rtl.css
@@ -0,0 +1,243 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.list-reusable-blocks-import-dropdown__content .components-popover__content > div {
+ padding: 10px;
+}
+
+.list-reusable-blocks-import-form__label {
+ display: block;
+ margin-bottom: 10px;
+}
+
+.list-reusable-blocks-import-form__button {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ float: left;
+}
+
+.list-reusable-blocks-import-form .components-notice__content {
+ margin: 0;
+}
+.list-reusable-blocks-import-form .components-notice.is-dismissible {
+ padding-left: 0;
+ margin: 5px 0;
+}
+
+.list-reusable-blocks__container {
+ display: inline-flex;
+ align-items: center;
+ position: relative;
+ top: -3px;
+}
+.list-reusable-blocks__container .components-button {
+ height: 26px;
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css b/static/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css
new file mode 100755
index 0000000..cebe83a
--- /dev/null
+++ b/static/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.list-reusable-blocks-import-dropdown__content .components-popover__content>div{padding:10px}.list-reusable-blocks-import-form__label{display:block;margin-bottom:10px}.list-reusable-blocks-import-form__button{margin-top:10px;margin-bottom:10px;float:left}.list-reusable-blocks-import-form .components-notice__content{margin:0}.list-reusable-blocks-import-form .components-notice.is-dismissible{padding-left:0;margin:5px 0}.list-reusable-blocks__container{display:inline-flex;align-items:center;position:relative;top:-3px}.list-reusable-blocks__container .components-button{height:26px}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/list-reusable-blocks/style.css b/static/wp-includes/css/dist/list-reusable-blocks/style.css
new file mode 100755
index 0000000..72955bc
--- /dev/null
+++ b/static/wp-includes/css/dist/list-reusable-blocks/style.css
@@ -0,0 +1,243 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.list-reusable-blocks-import-dropdown__content .components-popover__content > div {
+ padding: 10px;
+}
+
+.list-reusable-blocks-import-form__label {
+ display: block;
+ margin-bottom: 10px;
+}
+
+.list-reusable-blocks-import-form__button {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ float: right;
+}
+
+.list-reusable-blocks-import-form .components-notice__content {
+ margin: 0;
+}
+.list-reusable-blocks-import-form .components-notice.is-dismissible {
+ padding-right: 0;
+ margin: 5px 0;
+}
+
+.list-reusable-blocks__container {
+ display: inline-flex;
+ align-items: center;
+ position: relative;
+ top: -3px;
+}
+.list-reusable-blocks__container .components-button {
+ height: 26px;
+}
+
+body.admin-color-light {
+ --wp-admin-theme-color: #0085ba;
+ --wp-admin-theme-color--rgb: 0, 133, 186;
+ --wp-admin-theme-color-darker-10: #0073a1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
+ --wp-admin-theme-color-darker-20: #006187;
+ --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-light {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-modern {
+ --wp-admin-theme-color: #3858e9;
+ --wp-admin-theme-color--rgb: 56, 88, 233;
+ --wp-admin-theme-color-darker-10: #2145e6;
+ --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
+ --wp-admin-theme-color-darker-20: #183ad6;
+ --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-modern {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-blue {
+ --wp-admin-theme-color: #096484;
+ --wp-admin-theme-color--rgb: 9, 100, 132;
+ --wp-admin-theme-color-darker-10: #07526c;
+ --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
+ --wp-admin-theme-color-darker-20: #064054;
+ --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-blue {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-coffee {
+ --wp-admin-theme-color: #46403c;
+ --wp-admin-theme-color--rgb: 70, 64, 60;
+ --wp-admin-theme-color-darker-10: #383330;
+ --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
+ --wp-admin-theme-color-darker-20: #2b2724;
+ --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-coffee {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ectoplasm {
+ --wp-admin-theme-color: #523f6d;
+ --wp-admin-theme-color--rgb: 82, 63, 109;
+ --wp-admin-theme-color-darker-10: #46365d;
+ --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
+ --wp-admin-theme-color-darker-20: #3a2c4d;
+ --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ectoplasm {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-midnight {
+ --wp-admin-theme-color: #e14d43;
+ --wp-admin-theme-color--rgb: 225, 77, 67;
+ --wp-admin-theme-color-darker-10: #dd382d;
+ --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
+ --wp-admin-theme-color-darker-20: #d02c21;
+ --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-midnight {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-ocean {
+ --wp-admin-theme-color: #627c83;
+ --wp-admin-theme-color--rgb: 98, 124, 131;
+ --wp-admin-theme-color-darker-10: #576e74;
+ --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
+ --wp-admin-theme-color-darker-20: #4c6066;
+ --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-ocean {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+body.admin-color-sunrise {
+ --wp-admin-theme-color: #dd823b;
+ --wp-admin-theme-color--rgb: 221, 130, 59;
+ --wp-admin-theme-color-darker-10: #d97426;
+ --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
+ --wp-admin-theme-color-darker-20: #c36922;
+ --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ body.admin-color-sunrise {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/list-reusable-blocks/style.min.css b/static/wp-includes/css/dist/list-reusable-blocks/style.min.css
new file mode 100755
index 0000000..0875f9f
--- /dev/null
+++ b/static/wp-includes/css/dist/list-reusable-blocks/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.list-reusable-blocks-import-dropdown__content .components-popover__content>div{padding:10px}.list-reusable-blocks-import-form__label{display:block;margin-bottom:10px}.list-reusable-blocks-import-form__button{margin-top:10px;margin-bottom:10px;float:right}.list-reusable-blocks-import-form .components-notice__content{margin:0}.list-reusable-blocks-import-form .components-notice.is-dismissible{padding-right:0;margin:5px 0}.list-reusable-blocks__container{display:inline-flex;align-items:center;position:relative;top:-3px}.list-reusable-blocks__container .components-button{height:26px}body.admin-color-light{--wp-admin-theme-color:#0085ba;--wp-admin-theme-color--rgb:0,133,186;--wp-admin-theme-color-darker-10:#0073a1;--wp-admin-theme-color-darker-10--rgb:0,115,161;--wp-admin-theme-color-darker-20:#006187;--wp-admin-theme-color-darker-20--rgb:0,97,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-light{--wp-admin-border-width-focus:1.5px}}body.admin-color-modern{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-modern{--wp-admin-border-width-focus:1.5px}}body.admin-color-blue{--wp-admin-theme-color:#096484;--wp-admin-theme-color--rgb:9,100,132;--wp-admin-theme-color-darker-10:#07526c;--wp-admin-theme-color-darker-10--rgb:7,82,108;--wp-admin-theme-color-darker-20:#064054;--wp-admin-theme-color-darker-20--rgb:6,64,84;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-blue{--wp-admin-border-width-focus:1.5px}}body.admin-color-coffee{--wp-admin-theme-color:#46403c;--wp-admin-theme-color--rgb:70,64,60;--wp-admin-theme-color-darker-10:#383330;--wp-admin-theme-color-darker-10--rgb:56,51,48;--wp-admin-theme-color-darker-20:#2b2724;--wp-admin-theme-color-darker-20--rgb:43,39,36;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-coffee{--wp-admin-border-width-focus:1.5px}}body.admin-color-ectoplasm{--wp-admin-theme-color:#523f6d;--wp-admin-theme-color--rgb:82,63,109;--wp-admin-theme-color-darker-10:#46365d;--wp-admin-theme-color-darker-10--rgb:70,54,93;--wp-admin-theme-color-darker-20:#3a2c4d;--wp-admin-theme-color-darker-20--rgb:58,44,77;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ectoplasm{--wp-admin-border-width-focus:1.5px}}body.admin-color-midnight{--wp-admin-theme-color:#e14d43;--wp-admin-theme-color--rgb:225,77,67;--wp-admin-theme-color-darker-10:#dd382d;--wp-admin-theme-color-darker-10--rgb:221,56,45;--wp-admin-theme-color-darker-20:#d02c21;--wp-admin-theme-color-darker-20--rgb:208,44,33;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-midnight{--wp-admin-border-width-focus:1.5px}}body.admin-color-ocean{--wp-admin-theme-color:#627c83;--wp-admin-theme-color--rgb:98,124,131;--wp-admin-theme-color-darker-10:#576e74;--wp-admin-theme-color-darker-10--rgb:87,110,116;--wp-admin-theme-color-darker-20:#4c6066;--wp-admin-theme-color-darker-20--rgb:76,96,102;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-ocean{--wp-admin-border-width-focus:1.5px}}body.admin-color-sunrise{--wp-admin-theme-color:#dd823b;--wp-admin-theme-color--rgb:221,130,59;--wp-admin-theme-color-darker-10:#d97426;--wp-admin-theme-color-darker-10--rgb:217,116,38;--wp-admin-theme-color-darker-20:#c36922;--wp-admin-theme-color-darker-20--rgb:195,105,34;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){body.admin-color-sunrise{--wp-admin-border-width-focus:1.5px}}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/nux/style-rtl.css b/static/wp-includes/css/dist/nux/style-rtl.css
new file mode 100755
index 0000000..88918c6
--- /dev/null
+++ b/static/wp-includes/css/dist/nux/style-rtl.css
@@ -0,0 +1,186 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.nux-dot-tip::before, .nux-dot-tip::after {
+ border-radius: 100%;
+ content: " ";
+ pointer-events: none;
+ position: absolute;
+}
+.nux-dot-tip::before {
+ animation: nux-pulse 1.6s infinite cubic-bezier(0.17, 0.67, 0.92, 0.62);
+ background: rgba(0, 115, 156, 0.9);
+ opacity: 0.9;
+ height: 24px;
+ right: -12px;
+ top: -12px;
+ transform: scale(0.3333333333);
+ width: 24px;
+}
+.nux-dot-tip::after {
+ background: #00739c;
+ height: 8px;
+ right: -4px;
+ top: -4px;
+ width: 8px;
+}
+@keyframes nux-pulse {
+ 100% {
+ background: rgba(0, 115, 156, 0);
+ transform: scale(1);
+ }
+}
+.nux-dot-tip .components-popover__content {
+ width: 350px;
+}
+.nux-dot-tip .components-popover__content > div {
+ padding: 20px 18px;
+}
+@media (min-width: 600px) {
+ .nux-dot-tip .components-popover__content {
+ width: 450px;
+ }
+}
+.nux-dot-tip .components-popover__content .nux-dot-tip__disable {
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+.nux-dot-tip[data-y-axis=top] {
+ margin-top: -4px;
+}
+.nux-dot-tip[data-y-axis=bottom] {
+ margin-top: 4px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=left] {
+ margin-right: -4px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=right] {
+ margin-right: 4px;
+}
+.nux-dot-tip[data-y-axis=top] .components-popover__content {
+ margin-bottom: 20px;
+}
+.nux-dot-tip[data-y-axis=bottom] .components-popover__content {
+ margin-top: 20px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=left] .components-popover__content {
+ margin-left: 20px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=right] .components-popover__content {
+ margin-right: 20px;
+}
+.nux-dot-tip[data-y-axis=left], .nux-dot-tip[data-y-axis=center], .nux-dot-tip[data-y-axis=right] {
+ z-index: 1000001;
+}
+@media (max-width: 600px) {
+ .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 {
+ align-self: end;
+ right: 5px;
+ margin: 20px 0 0 0;
+ max-width: none !important;
+ position: fixed;
+ left: 5px;
+ width: auto;
+ }
+}
+.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content {
+ margin-left: 0;
+}
+.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content {
+ margin-right: 0;
+}
+.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content {
+ margin-left: -12px;
+}
+.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content {
+ margin-right: -12px;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/nux/style-rtl.min.css b/static/wp-includes/css/dist/nux/style-rtl.min.css
new file mode 100755
index 0000000..f51763e
--- /dev/null
+++ b/static/wp-includes/css/dist/nux/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.nux-dot-tip:after,.nux-dot-tip:before{border-radius:100%;content:" ";pointer-events:none;position:absolute}.nux-dot-tip:before{animation:nux-pulse 1.6s cubic-bezier(.17,.67,.92,.62) infinite;background:rgba(0,115,156,.9);opacity:.9;height:24px;right:-12px;top:-12px;transform:scale(.3333333333);width:24px}.nux-dot-tip:after{background:#00739c;height:8px;right:-4px;top:-4px;width:8px}@keyframes nux-pulse{to{background:rgba(0,115,156,0);transform:scale(1)}}.nux-dot-tip .components-popover__content{width:350px}.nux-dot-tip .components-popover__content>div{padding:20px 18px}@media (min-width:600px){.nux-dot-tip .components-popover__content{width:450px}}.nux-dot-tip .components-popover__content .nux-dot-tip__disable{position:absolute;left:0;top:0}.nux-dot-tip[data-y-axis=top]{margin-top:-4px}.nux-dot-tip[data-y-axis=bottom]{margin-top:4px}.nux-dot-tip[data-y-axis=middle][data-y-axis=left]{margin-right:-4px}.nux-dot-tip[data-y-axis=middle][data-y-axis=right]{margin-right:4px}.nux-dot-tip[data-y-axis=top] .components-popover__content{margin-bottom:20px}.nux-dot-tip[data-y-axis=bottom] .components-popover__content{margin-top:20px}.nux-dot-tip[data-y-axis=middle][data-y-axis=left] .components-popover__content{margin-left:20px}.nux-dot-tip[data-y-axis=middle][data-y-axis=right] .components-popover__content{margin-right:20px}.nux-dot-tip[data-y-axis=center],.nux-dot-tip[data-y-axis=left],.nux-dot-tip[data-y-axis=right]{z-index:1000001}@media (max-width:600px){.nux-dot-tip[data-y-axis=center] .components-popover__content,.nux-dot-tip[data-y-axis=left] .components-popover__content,.nux-dot-tip[data-y-axis=right] .components-popover__content{align-self:end;right:5px;margin:20px 0 0;max-width:none!important;position:fixed;left:5px;width:auto}}.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content{margin-left:0}.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content{margin-right:0}.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content{margin-left:-12px}.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content{margin-right:-12px}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/nux/style.css b/static/wp-includes/css/dist/nux/style.css
new file mode 100755
index 0000000..b2418c9
--- /dev/null
+++ b/static/wp-includes/css/dist/nux/style.css
@@ -0,0 +1,190 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.nux-dot-tip::before, .nux-dot-tip::after {
+ border-radius: 100%;
+ content: " ";
+ pointer-events: none;
+ position: absolute;
+}
+.nux-dot-tip::before {
+ animation: nux-pulse 1.6s infinite cubic-bezier(0.17, 0.67, 0.92, 0.62);
+ background: rgba(0, 115, 156, 0.9);
+ opacity: 0.9;
+ height: 24px;
+ left: -12px;
+ top: -12px;
+ transform: scale(0.3333333333);
+ width: 24px;
+}
+.nux-dot-tip::after {
+ background: #00739c;
+ height: 8px;
+ left: -4px;
+ top: -4px;
+ width: 8px;
+}
+@keyframes nux-pulse {
+ 100% {
+ background: rgba(0, 115, 156, 0);
+ transform: scale(1);
+ }
+}
+.nux-dot-tip .components-popover__content {
+ width: 350px;
+}
+.nux-dot-tip .components-popover__content > div {
+ padding: 20px 18px;
+}
+@media (min-width: 600px) {
+ .nux-dot-tip .components-popover__content {
+ width: 450px;
+ }
+}
+.nux-dot-tip .components-popover__content .nux-dot-tip__disable {
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+.nux-dot-tip[data-y-axis=top] {
+ margin-top: -4px;
+}
+.nux-dot-tip[data-y-axis=bottom] {
+ margin-top: 4px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=left] {
+ margin-left: -4px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=right] {
+ margin-left: 4px;
+}
+.nux-dot-tip[data-y-axis=top] .components-popover__content {
+ margin-bottom: 20px;
+}
+.nux-dot-tip[data-y-axis=bottom] .components-popover__content {
+ margin-top: 20px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=left] .components-popover__content {
+ margin-right: 20px;
+}
+.nux-dot-tip[data-y-axis=middle][data-y-axis=right] .components-popover__content {
+ margin-left: 20px;
+}
+.nux-dot-tip[data-y-axis=left], .nux-dot-tip[data-y-axis=center], .nux-dot-tip[data-y-axis=right] {
+ z-index: 1000001;
+}
+@media (max-width: 600px) {
+ .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 {
+ align-self: end;
+ left: 5px;
+ margin: 20px 0 0 0;
+ max-width: none !important;
+ position: fixed;
+ right: 5px;
+ width: auto;
+ }
+}
+.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content {
+ /*!rtl:ignore*/
+ margin-left: 0;
+}
+.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content {
+ /*!rtl:ignore*/
+ margin-right: 0;
+}
+.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content {
+ /*!rtl:ignore*/
+ margin-left: -12px;
+}
+.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content {
+ /*!rtl:ignore*/
+ margin-right: -12px;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/nux/style.min.css b/static/wp-includes/css/dist/nux/style.min.css
new file mode 100755
index 0000000..1f53045
--- /dev/null
+++ b/static/wp-includes/css/dist/nux/style.min.css
@@ -0,0 +1,5 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.nux-dot-tip:after,.nux-dot-tip:before{border-radius:100%;content:" ";pointer-events:none;position:absolute}.nux-dot-tip:before{animation:nux-pulse 1.6s cubic-bezier(.17,.67,.92,.62) infinite;background:rgba(0,115,156,.9);opacity:.9;height:24px;left:-12px;top:-12px;transform:scale(.3333333333);width:24px}.nux-dot-tip:after{background:#00739c;height:8px;left:-4px;top:-4px;width:8px}@keyframes nux-pulse{to{background:rgba(0,115,156,0);transform:scale(1)}}.nux-dot-tip .components-popover__content{width:350px}.nux-dot-tip .components-popover__content>div{padding:20px 18px}@media (min-width:600px){.nux-dot-tip .components-popover__content{width:450px}}.nux-dot-tip .components-popover__content .nux-dot-tip__disable{position:absolute;right:0;top:0}.nux-dot-tip[data-y-axis=top]{margin-top:-4px}.nux-dot-tip[data-y-axis=bottom]{margin-top:4px}.nux-dot-tip[data-y-axis=middle][data-y-axis=left]{margin-left:-4px}.nux-dot-tip[data-y-axis=middle][data-y-axis=right]{margin-left:4px}.nux-dot-tip[data-y-axis=top] .components-popover__content{margin-bottom:20px}.nux-dot-tip[data-y-axis=bottom] .components-popover__content{margin-top:20px}.nux-dot-tip[data-y-axis=middle][data-y-axis=left] .components-popover__content{margin-right:20px}.nux-dot-tip[data-y-axis=middle][data-y-axis=right] .components-popover__content{margin-left:20px}.nux-dot-tip[data-y-axis=center],.nux-dot-tip[data-y-axis=left],.nux-dot-tip[data-y-axis=right]{z-index:1000001}@media (max-width:600px){.nux-dot-tip[data-y-axis=center] .components-popover__content,.nux-dot-tip[data-y-axis=left] .components-popover__content,.nux-dot-tip[data-y-axis=right] .components-popover__content{align-self:end;left:5px;margin:20px 0 0;max-width:none!important;position:fixed;right:5px;width:auto}}.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content{
+ /*!rtl:ignore*/margin-left:0}.nux-dot-tip.components-popover:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content{
+ /*!rtl:ignore*/margin-right:0}.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=right] .components-popover__content{
+ /*!rtl:ignore*/margin-left:-12px}.nux-dot-tip.components-popover.interface-more-menu-dropdown__content:not([data-y-axis=middle])[data-y-axis=left] .components-popover__content{
+ /*!rtl:ignore*/margin-right:-12px}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/reusable-blocks/style-rtl.css b/static/wp-includes/css/dist/reusable-blocks/style-rtl.css
new file mode 100755
index 0000000..d174e12
--- /dev/null
+++ b/static/wp-includes/css/dist/reusable-blocks/style-rtl.css
@@ -0,0 +1,98 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.reusable-blocks-menu-items__convert-modal {
+ z-index: 1000001;
+}
+
+.reusable-blocks-menu-items__convert-modal-actions {
+ padding-top: 12px;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/reusable-blocks/style-rtl.min.css b/static/wp-includes/css/dist/reusable-blocks/style-rtl.min.css
new file mode 100755
index 0000000..75ca4b8
--- /dev/null
+++ b/static/wp-includes/css/dist/reusable-blocks/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.reusable-blocks-menu-items__convert-modal{z-index:1000001}.reusable-blocks-menu-items__convert-modal-actions{padding-top:12px}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/reusable-blocks/style.css b/static/wp-includes/css/dist/reusable-blocks/style.css
new file mode 100755
index 0000000..d174e12
--- /dev/null
+++ b/static/wp-includes/css/dist/reusable-blocks/style.css
@@ -0,0 +1,98 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.reusable-blocks-menu-items__convert-modal {
+ z-index: 1000001;
+}
+
+.reusable-blocks-menu-items__convert-modal-actions {
+ padding-top: 12px;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/reusable-blocks/style.min.css b/static/wp-includes/css/dist/reusable-blocks/style.min.css
new file mode 100755
index 0000000..75ca4b8
--- /dev/null
+++ b/static/wp-includes/css/dist/reusable-blocks/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.reusable-blocks-menu-items__convert-modal{z-index:1000001}.reusable-blocks-menu-items__convert-modal-actions{padding-top:12px}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/widgets/style-rtl.css b/static/wp-includes/css/dist/widgets/style-rtl.css
new file mode 100755
index 0000000..464bda5
--- /dev/null
+++ b/static/wp-includes/css/dist/widgets/style-rtl.css
@@ -0,0 +1,267 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.wp-block-legacy-widget__edit-form {
+ background: #fff;
+ border-radius: 2px;
+ border: 1px solid #1e1e1e;
+ padding: 11px;
+}
+.wp-block-legacy-widget__edit-form:not([hidden]) {
+ display: flow-root;
+}
+.wp-block-legacy-widget__edit-form .wp-block-legacy-widget__edit-form-title {
+ color: #000;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 14px;
+ font-weight: 600;
+ margin: 0 0 12px 0;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside {
+ border: none;
+ box-shadow: none;
+ display: block;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside p {
+ margin: 8px 0;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label {
+ font-size: 13px;
+ line-height: 2.1;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label,
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input,
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside a {
+ font-family: system-ui;
+ font-weight: normal;
+ color: #000;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=text],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=password],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=date],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime-local],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=email],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=month],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=number],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=search],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=tel],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=time],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=url],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=week],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select {
+ font-family: system-ui;
+ background-color: transparent;
+ box-sizing: border-box;
+ border: 1px solid #757575;
+ border-radius: 3px;
+ box-shadow: none;
+ color: #000;
+ display: block;
+ margin: 0;
+ width: 100%;
+ font-size: 13px;
+ font-weight: normal;
+ line-height: 1;
+ min-height: 30px;
+ padding-right: 8px;
+ padding-top: 8px;
+ padding-bottom: 8px;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select {
+ padding-right: 4px;
+}
+.wp-block-legacy-widget__edit-form .widget.open,
+.wp-block-legacy-widget__edit-form .widget.open:focus-within {
+ z-index: 0;
+}
+
+.wp-block-legacy-widget__edit-form.wp-block-legacy-widget__edit-form,
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview {
+ color: #000;
+}
+
+.wp-block-legacy-widget__edit-preview,
+.wp-block-legacy-widget__edit-no-preview {
+ cursor: pointer;
+}
+.wp-block-legacy-widget__edit-preview:hover::after,
+.wp-block-legacy-widget__edit-no-preview:hover::after {
+ border-radius: 2px;
+ border: 1px solid #949494;
+ bottom: 0;
+ content: "";
+ right: 0;
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+
+.wp-block-legacy-widget__edit-preview.is-offscreen {
+ right: -9999px;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+
+.wp-block-legacy-widget__edit-preview-iframe {
+ overflow: hidden;
+ width: 100%;
+}
+
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview {
+ background: #f0f0f0;
+ padding: 8px 12px;
+}
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview, .wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3, .wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3 {
+ font-size: 14px;
+ font-weight: 600;
+ margin: 4px 0;
+}
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p {
+ margin: 4px 0;
+}
+
+.wp-block-legacy-widget-inspector-card {
+ padding: 0 52px 16px 16px;
+}
+
+.interface-complementary-area .wp-block-legacy-widget-inspector-card__name {
+ margin: 0 0 5px;
+ font-weight: 500;
+}
+
+.is-selected .wp-block-legacy-widget__container {
+ padding: 8px 12px;
+ min-height: 50px;
+}
+
+.components-popover__content .wp-block-legacy-widget__edit-form {
+ min-width: 400px;
+}
+
+.wp-block-legacy-widget .components-base-control {
+ width: 100%;
+}
+.wp-block-legacy-widget .components-select-control__input {
+ padding: 0;
+ font-family: system-ui;
+}
+
+.wp-block-widget-group.has-child-selected::after {
+ border-radius: 2px;
+ border: 1px solid var(--wp-admin-theme-color);
+ bottom: 0;
+ content: "";
+ right: 0;
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+.wp-block-widget-group .widget-title {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 18px;
+ font-weight: 600;
+}
+
+.wp-block-widget-group__placeholder .block-editor-inserter {
+ width: 100%;
+}
+
+.is-dark-theme .wp-block-widget-group__placeholder .block-editor-button-block-appender {
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ color: #1e1e1e;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/widgets/style-rtl.min.css b/static/wp-includes/css/dist/widgets/style-rtl.min.css
new file mode 100755
index 0000000..d630d2b
--- /dev/null
+++ b/static/wp-includes/css/dist/widgets/style-rtl.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-block-legacy-widget__edit-form{background:#fff;border-radius:2px;border:1px solid #1e1e1e;padding:11px}.wp-block-legacy-widget__edit-form:not([hidden]){display:flow-root}.wp-block-legacy-widget__edit-form .wp-block-legacy-widget__edit-form-title{color:#000;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;font-weight:600;margin:0 0 12px}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside{border:none;box-shadow:none;display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside p{margin:8px 0}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label{font-size:13px;line-height:2.1}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside a,.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input,.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label{font-family:system-ui;font-weight:400;color:#000}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=date],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime-local],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=email],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=month],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=number],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=password],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=search],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=tel],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=text],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=time],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=url],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=week],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select{font-family:system-ui;background-color:transparent;box-sizing:border-box;border:1px solid #757575;border-radius:3px;box-shadow:none;color:#000;display:block;margin:0;width:100%;font-size:13px;font-weight:400;line-height:1;min-height:30px;padding-right:8px;padding-top:8px;padding-bottom:8px}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select{padding-right:4px}.wp-block-legacy-widget__edit-form .widget.open,.wp-block-legacy-widget__edit-form .widget.open:focus-within{z-index:0}.wp-block-legacy-widget__edit-form.wp-block-legacy-widget__edit-form,.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview{color:#000}.wp-block-legacy-widget__edit-no-preview,.wp-block-legacy-widget__edit-preview{cursor:pointer}.wp-block-legacy-widget__edit-no-preview:hover:after,.wp-block-legacy-widget__edit-preview:hover:after{border-radius:2px;border:1px solid #949494;bottom:0;content:"";right:0;position:absolute;left:0;top:0}.wp-block-legacy-widget__edit-preview.is-offscreen{right:-9999px;position:absolute;top:0;width:100%}.wp-block-legacy-widget__edit-preview-iframe{overflow:hidden;width:100%}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview{background:#f0f0f0;padding:8px 12px}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview,.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3,.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3{font-size:14px;font-weight:600;margin:4px 0}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p{margin:4px 0}.wp-block-legacy-widget-inspector-card{padding:0 52px 16px 16px}.interface-complementary-area .wp-block-legacy-widget-inspector-card__name{margin:0 0 5px;font-weight:500}.is-selected .wp-block-legacy-widget__container{padding:8px 12px;min-height:50px}.components-popover__content .wp-block-legacy-widget__edit-form{min-width:400px}.wp-block-legacy-widget .components-base-control{width:100%}.wp-block-legacy-widget .components-select-control__input{padding:0;font-family:system-ui}.wp-block-widget-group.has-child-selected:after{border-radius:2px;border:1px solid var(--wp-admin-theme-color);bottom:0;content:"";right:0;position:absolute;left:0;top:0}.wp-block-widget-group .widget-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;font-weight:600}.wp-block-widget-group__placeholder .block-editor-inserter{width:100%}.is-dark-theme .wp-block-widget-group__placeholder .block-editor-button-block-appender{box-shadow:inset 0 0 0 1px #1e1e1e;color:#1e1e1e}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/widgets/style.css b/static/wp-includes/css/dist/widgets/style.css
new file mode 100755
index 0000000..54ed7ee
--- /dev/null
+++ b/static/wp-includes/css/dist/widgets/style.css
@@ -0,0 +1,267 @@
+/**
+ * Colors
+ */
+/**
+ * Breakpoints & Media Queries
+ */
+/**
+ * SCSS Variables.
+ *
+ * Please use variables from this sheet to ensure consistency across the UI.
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
+ */
+/**
+ * Colors
+ */
+/**
+ * Fonts & basic variables.
+ */
+/**
+ * Grid System.
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
+ */
+/**
+ * Dimensions.
+ */
+/**
+ * Shadows.
+ */
+/**
+ * Editor widths.
+ */
+/**
+ * Block & Editor UI.
+ */
+/**
+ * Block paddings.
+ */
+/**
+ * React Native specific.
+ * These variables do not appear to be used anywhere else.
+ */
+/**
+* Converts a hex value into the rgb equivalent.
+*
+* @param {string} hex - the hexadecimal value to convert
+* @return {string} comma separated rgb values
+*/
+/**
+ * Breakpoint mixins
+ */
+/**
+ * Long content fade mixin
+ *
+ * Creates a fading overlay to signify that the content is longer
+ * than the space allows.
+ */
+/**
+ * Focus styles.
+ */
+/**
+ * Applies editor left position to the selector passed as argument
+ */
+/**
+ * Styles that are reused verbatim in a few places
+ */
+/**
+ * Allows users to opt-out of animations via OS-level preferences.
+ */
+/**
+ * Reset default styles for JavaScript UI based pages.
+ * This is a WP-admin agnostic reset
+ */
+/**
+ * Reset the WP Admin page styles for Gutenberg-like pages.
+ */
+:root {
+ --wp-admin-theme-color: #007cba;
+ --wp-admin-theme-color--rgb: 0, 124, 186;
+ --wp-admin-theme-color-darker-10: #006ba1;
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
+ --wp-admin-theme-color-darker-20: #005a87;
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
+ --wp-admin-border-width-focus: 2px;
+}
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ :root {
+ --wp-admin-border-width-focus: 1.5px;
+ }
+}
+
+.wp-block-legacy-widget__edit-form {
+ background: #fff;
+ border-radius: 2px;
+ border: 1px solid #1e1e1e;
+ padding: 11px;
+}
+.wp-block-legacy-widget__edit-form:not([hidden]) {
+ display: flow-root;
+}
+.wp-block-legacy-widget__edit-form .wp-block-legacy-widget__edit-form-title {
+ color: #000;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 14px;
+ font-weight: 600;
+ margin: 0 0 12px 0;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside {
+ border: none;
+ box-shadow: none;
+ display: block;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside p {
+ margin: 8px 0;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label {
+ font-size: 13px;
+ line-height: 2.1;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label,
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input,
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside a {
+ font-family: system-ui;
+ font-weight: normal;
+ color: #000;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=text],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=password],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=date],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime-local],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=email],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=month],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=number],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=search],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=tel],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=time],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=url],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=week],
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select {
+ font-family: system-ui;
+ background-color: transparent;
+ box-sizing: border-box;
+ border: 1px solid #757575;
+ border-radius: 3px;
+ box-shadow: none;
+ color: #000;
+ display: block;
+ margin: 0;
+ width: 100%;
+ font-size: 13px;
+ font-weight: normal;
+ line-height: 1;
+ min-height: 30px;
+ padding-left: 8px;
+ padding-top: 8px;
+ padding-bottom: 8px;
+}
+.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select {
+ padding-left: 4px;
+}
+.wp-block-legacy-widget__edit-form .widget.open,
+.wp-block-legacy-widget__edit-form .widget.open:focus-within {
+ z-index: 0;
+}
+
+.wp-block-legacy-widget__edit-form.wp-block-legacy-widget__edit-form,
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview {
+ color: #000;
+}
+
+.wp-block-legacy-widget__edit-preview,
+.wp-block-legacy-widget__edit-no-preview {
+ cursor: pointer;
+}
+.wp-block-legacy-widget__edit-preview:hover::after,
+.wp-block-legacy-widget__edit-no-preview:hover::after {
+ border-radius: 2px;
+ border: 1px solid #949494;
+ bottom: 0;
+ content: "";
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+
+.wp-block-legacy-widget__edit-preview.is-offscreen {
+ left: -9999px;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+
+.wp-block-legacy-widget__edit-preview-iframe {
+ overflow: hidden;
+ width: 100%;
+}
+
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview {
+ background: #f0f0f0;
+ padding: 8px 12px;
+}
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview, .wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3, .wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3 {
+ font-size: 14px;
+ font-weight: 600;
+ margin: 4px 0;
+}
+.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p {
+ margin: 4px 0;
+}
+
+.wp-block-legacy-widget-inspector-card {
+ padding: 0 16px 16px 52px;
+}
+
+.interface-complementary-area .wp-block-legacy-widget-inspector-card__name {
+ margin: 0 0 5px;
+ font-weight: 500;
+}
+
+.is-selected .wp-block-legacy-widget__container {
+ padding: 8px 12px;
+ min-height: 50px;
+}
+
+.components-popover__content .wp-block-legacy-widget__edit-form {
+ min-width: 400px;
+}
+
+.wp-block-legacy-widget .components-base-control {
+ width: 100%;
+}
+.wp-block-legacy-widget .components-select-control__input {
+ padding: 0;
+ font-family: system-ui;
+}
+
+.wp-block-widget-group.has-child-selected::after {
+ border-radius: 2px;
+ border: 1px solid var(--wp-admin-theme-color);
+ bottom: 0;
+ content: "";
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+.wp-block-widget-group .widget-title {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 18px;
+ font-weight: 600;
+}
+
+.wp-block-widget-group__placeholder .block-editor-inserter {
+ width: 100%;
+}
+
+.is-dark-theme .wp-block-widget-group__placeholder .block-editor-button-block-appender {
+ box-shadow: inset 0 0 0 1px #1e1e1e;
+ color: #1e1e1e;
+}
\ No newline at end of file
diff --git a/static/wp-includes/css/dist/widgets/style.min.css b/static/wp-includes/css/dist/widgets/style.min.css
new file mode 100755
index 0000000..dbd1e20
--- /dev/null
+++ b/static/wp-includes/css/dist/widgets/style.min.css
@@ -0,0 +1 @@
+:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-block-legacy-widget__edit-form{background:#fff;border-radius:2px;border:1px solid #1e1e1e;padding:11px}.wp-block-legacy-widget__edit-form:not([hidden]){display:flow-root}.wp-block-legacy-widget__edit-form .wp-block-legacy-widget__edit-form-title{color:#000;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;font-weight:600;margin:0 0 12px}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside{border:none;box-shadow:none;display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside p{margin:8px 0}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label{font-size:13px;line-height:2.1}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside a,.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input,.wp-block-legacy-widget__edit-form .widget-inside.widget-inside label{font-family:system-ui;font-weight:400;color:#000}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=date],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime-local],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=datetime],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=email],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=month],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=number],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=password],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=search],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=tel],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=text],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=time],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=url],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside input[type=week],.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select{font-family:system-ui;background-color:transparent;box-sizing:border-box;border:1px solid #757575;border-radius:3px;box-shadow:none;color:#000;display:block;margin:0;width:100%;font-size:13px;font-weight:400;line-height:1;min-height:30px;padding-left:8px;padding-top:8px;padding-bottom:8px}.wp-block-legacy-widget__edit-form .widget-inside.widget-inside select{padding-left:4px}.wp-block-legacy-widget__edit-form .widget.open,.wp-block-legacy-widget__edit-form .widget.open:focus-within{z-index:0}.wp-block-legacy-widget__edit-form.wp-block-legacy-widget__edit-form,.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview{color:#000}.wp-block-legacy-widget__edit-no-preview,.wp-block-legacy-widget__edit-preview{cursor:pointer}.wp-block-legacy-widget__edit-no-preview:hover:after,.wp-block-legacy-widget__edit-preview:hover:after{border-radius:2px;border:1px solid #949494;bottom:0;content:"";left:0;position:absolute;right:0;top:0}.wp-block-legacy-widget__edit-preview.is-offscreen{left:-9999px;position:absolute;top:0;width:100%}.wp-block-legacy-widget__edit-preview-iframe{overflow:hidden;width:100%}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview{background:#f0f0f0;padding:8px 12px}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview,.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3,.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview h3{font-size:14px;font-weight:600;margin:4px 0}.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview.wp-block-legacy-widget__edit-no-preview p{margin:4px 0}.wp-block-legacy-widget-inspector-card{padding:0 16px 16px 52px}.interface-complementary-area .wp-block-legacy-widget-inspector-card__name{margin:0 0 5px;font-weight:500}.is-selected .wp-block-legacy-widget__container{padding:8px 12px;min-height:50px}.components-popover__content .wp-block-legacy-widget__edit-form{min-width:400px}.wp-block-legacy-widget .components-base-control{width:100%}.wp-block-legacy-widget .components-select-control__input{padding:0;font-family:system-ui}.wp-block-widget-group.has-child-selected:after{border-radius:2px;border:1px solid var(--wp-admin-theme-color);bottom:0;content:"";left:0;position:absolute;right:0;top:0}.wp-block-widget-group .widget-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;font-weight:600}.wp-block-widget-group__placeholder .block-editor-inserter{width:100%}.is-dark-theme .wp-block-widget-group__placeholder .block-editor-button-block-appender{box-shadow:inset 0 0 0 1px #1e1e1e;color:#1e1e1e}
\ No newline at end of file
diff --git a/static/wp-includes/css/editor-rtl.css b/static/wp-includes/css/editor-rtl.css
new file mode 100755
index 0000000..a0a2212
--- /dev/null
+++ b/static/wp-includes/css/editor-rtl.css
@@ -0,0 +1,1879 @@
+/*! This file is auto-generated */
+/*------------------------------------------------------------------------------
+ TinyMCE and Quicklinks toolbars
+------------------------------------------------------------------------------*/
+
+/* TinyMCE widgets/containers */
+
+.mce-tinymce {
+ box-shadow: none;
+}
+
+.mce-container,
+.mce-container *,
+.mce-widget,
+.mce-widget * {
+ color: inherit;
+ font-family: inherit;
+}
+
+.mce-container .mce-monospace,
+.mce-widget .mce-monospace {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ line-height: 150%;
+}
+
+/* TinyMCE windows */
+#mce-modal-block,
+#mce-modal-block.mce-fade {
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ transition: none;
+ background: #000;
+}
+
+.mce-window {
+ border-radius: 0;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+ -webkit-font-smoothing: subpixel-antialiased;
+ transition: none;
+}
+
+.mce-window .mce-container-body.mce-abs-layout {
+ overflow: visible;
+}
+
+.mce-window .mce-window-head {
+ background: #fff;
+ border-bottom: 1px solid #dcdcde;
+ padding: 0;
+ min-height: 36px;
+}
+
+.mce-window .mce-window-head .mce-title {
+ color: #3c434a;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 36px;
+ margin: 0;
+ padding: 0 16px 0 36px;
+}
+
+.mce-window .mce-window-head .mce-close,
+.mce-window-head .mce-close .mce-i-remove {
+ color: transparent;
+ top: 0;
+ left: 0;
+ width: 36px;
+ height: 36px;
+ padding: 0;
+ line-height: 36px;
+ text-align: center;
+}
+
+.mce-window-head .mce-close .mce-i-remove:before {
+ font: normal 20px/36px dashicons;
+ text-align: center;
+ color: #646970;
+ width: 36px;
+ height: 36px;
+ display: block;
+}
+
+.mce-window-head .mce-close:hover .mce-i-remove:before,
+.mce-window-head .mce-close:focus .mce-i-remove:before {
+ color: #135e96;
+}
+
+.mce-window-head .mce-close:focus .mce-i-remove,
+div.mce-tab:focus {
+ box-shadow: 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+}
+
+.mce-window .mce-window-head .mce-dragh {
+ width: calc( 100% - 36px );
+}
+
+.mce-window .mce-foot {
+ border-top: 1px solid #dcdcde;
+}
+
+.mce-textbox,
+.mce-checkbox i.mce-i-checkbox,
+#wp-link .query-results {
+ border: 1px solid #dcdcde;
+ border-radius: 0;
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
+ transition: .05s all ease-in-out;
+}
+
+.mce-textbox:focus,
+.mce-textbox.mce-focus,
+.mce-checkbox:focus i.mce-i-checkbox,
+#wp-link .query-results:focus {
+ border-color: #4f94d4;
+ box-shadow: 0 0 2px rgba(79, 148, 212, 0.8);
+}
+
+.mce-window .mce-wp-help {
+ height: 360px;
+ width: 460px;
+ overflow: auto;
+}
+
+.mce-window .mce-wp-help * {
+ box-sizing: border-box;
+}
+
+.mce-window .mce-wp-help > .mce-container-body {
+ width: auto !important;
+}
+
+.mce-window .wp-editor-help {
+ padding: 10px 20px 0 10px;
+}
+
+.mce-window .wp-editor-help h2,
+.mce-window .wp-editor-help p {
+ margin: 8px 0;
+ white-space: normal;
+ font-size: 14px;
+ font-weight: 400;
+}
+
+.mce-window .wp-editor-help table {
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+.mce-window .wp-editor-help table.wp-help-single {
+ margin: 0 8px 20px;
+}
+
+.mce-window .wp-editor-help table.fixed {
+ table-layout: fixed;
+}
+
+.mce-window .wp-editor-help table.fixed th:nth-child(odd),
+.mce-window .wp-editor-help table.fixed td:nth-child(odd) {
+ width: 12%;
+}
+
+.mce-window .wp-editor-help table.fixed th:nth-child(even),
+.mce-window .wp-editor-help table.fixed td:nth-child(even) {
+ width: 38%;
+}
+
+.mce-window .wp-editor-help table.fixed th:nth-child(odd) {
+ padding: 5px 0 0;
+}
+
+.mce-window .wp-editor-help td,
+.mce-window .wp-editor-help th {
+ font-size: 13px;
+ padding: 5px;
+ vertical-align: middle;
+ word-wrap: break-word;
+ white-space: normal;
+}
+
+.mce-window .wp-editor-help th {
+ font-weight: 600;
+ padding-bottom: 0;
+}
+
+.mce-window .wp-editor-help kbd {
+ font-family: monospace;
+ padding: 2px 7px 3px;
+ font-weight: 600;
+ margin: 0;
+ background: #f0f0f1;
+ background: rgba(0, 0, 0, 0.08);
+}
+
+.mce-window .wp-help-th-center td:nth-child(odd),
+.mce-window .wp-help-th-center th:nth-child(odd) {
+ text-align: center;
+}
+
+/* TinyMCE menus */
+.mce-menu,
+.mce-floatpanel.mce-popover {
+ border-color: rgba(0, 0, 0, 0.15);
+ border-radius: 0;
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
+}
+
+.mce-menu,
+.mce-floatpanel.mce-popover.mce-bottom {
+ margin-top: 2px;
+}
+
+.mce-floatpanel .mce-arrow {
+ display: none;
+}
+
+.mce-menu .mce-container-body {
+ min-width: 160px;
+}
+
+.mce-menu-item {
+ border: none;
+ margin-bottom: 2px;
+ padding: 6px 12px 6px 15px;
+}
+
+.mce-menu-has-icons i.mce-ico {
+ line-height: 20px;
+}
+
+/* TinyMCE panel */
+div.mce-panel {
+ border: 0;
+ background: #fff;
+}
+
+.mce-panel.mce-menu {
+ border: 1px solid #dcdcde;
+}
+
+div.mce-tab {
+ line-height: 13px;
+}
+
+/* TinyMCE toolbars */
+div.mce-toolbar-grp {
+ border-bottom: 1px solid #dcdcde;
+ background: #f6f7f7;
+ padding: 0;
+ position: relative;
+}
+
+div.mce-inline-toolbar-grp {
+ border: 1px solid #a7aaad;
+ border-radius: 2px;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
+ box-sizing: border-box;
+ margin-bottom: 8px;
+ position: absolute;
+ -webkit-user-select: none;
+ user-select: none;
+ max-width: 98%;
+ z-index: 100100; /* Same as the other TinyMCE "panels" */
+}
+
+div.mce-inline-toolbar-grp > div.mce-stack-layout {
+ padding: 1px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-up {
+ margin-bottom: 0;
+ margin-top: 8px;
+}
+
+div.mce-inline-toolbar-grp:before,
+div.mce-inline-toolbar-grp:after {
+ position: absolute;
+ right: 50%;
+ display: block;
+ width: 0;
+ height: 0;
+ border-style: solid;
+ border-color: transparent;
+ content: "";
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-up:before {
+ top: -9px;
+ border-bottom-color: #a7aaad;
+ border-width: 0 9px 9px;
+ margin-right: -9px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-down:before {
+ bottom: -9px;
+ border-top-color: #a7aaad;
+ border-width: 9px 9px 0;
+ margin-right: -9px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-up:after {
+ top: -8px;
+ border-bottom-color: #f6f7f7;
+ border-width: 0 8px 8px;
+ margin-right: -8px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-down:after {
+ bottom: -8px;
+ border-top-color: #f6f7f7;
+ border-width: 8px 8px 0;
+ margin-right: -8px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-left:before,
+div.mce-inline-toolbar-grp.mce-arrow-left:after {
+ margin: 0;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-left:before {
+ right: 20px;
+}
+div.mce-inline-toolbar-grp.mce-arrow-left:after {
+ right: 21px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-right:before,
+div.mce-inline-toolbar-grp.mce-arrow-right:after {
+ right: auto;
+ margin: 0;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-right:before {
+ left: 20px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-right:after {
+ left: 21px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-full {
+ left: 0;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-full > div {
+ width: 100%;
+ overflow-x: auto;
+}
+
+div.mce-toolbar-grp > div {
+ padding: 3px;
+}
+
+.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first {
+ padding-left: 32px;
+}
+
+.mce-toolbar .mce-btn-group {
+ margin: 0;
+}
+
+/* Classic block hide/show toolbars */
+.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) {
+ display: none;
+}
+
+.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar {
+ display: block;
+}
+
+div.mce-statusbar {
+ border-top: 1px solid #dcdcde;
+}
+
+div.mce-path {
+ padding: 2px 10px;
+ margin: 0;
+}
+
+.mce-path,
+.mce-path-item,
+.mce-path .mce-divider {
+ font-size: 12px;
+}
+
+.mce-toolbar .mce-btn,
+.qt-dfw {
+ border-color: transparent;
+ background: transparent;
+ box-shadow: none;
+ text-shadow: none;
+ cursor: pointer;
+}
+
+.mce-btn .mce-txt {
+ direction: inherit;
+ text-align: inherit;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn,
+.qt-dfw {
+ border: 1px solid transparent;
+ margin: 2px;
+ border-radius: 2px;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn:hover,
+.mce-toolbar .mce-btn-group .mce-btn:focus,
+.qt-dfw:hover,
+.qt-dfw:focus {
+ background: #f6f7f7;
+ border-color: #50575e;
+ color: #1d2327;
+ box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
+ outline: none;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-active,
+.mce-toolbar .mce-btn-group .mce-btn:active,
+.qt-dfw.active {
+ background: #f0f0f1;
+ border-color: #50575e;
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.3);
+}
+
+.mce-btn.mce-active,
+.mce-btn.mce-active button,
+.mce-btn.mce-active:hover button,
+.mce-btn.mce-active i,
+.mce-btn.mce-active:hover i {
+ color: inherit;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-active:focus {
+ border-color: #1d2327;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
+ color: #a7aaad;
+ background: none;
+ border-color: #dcdcde;
+ text-shadow: 0 1px 0 #fff;
+ box-shadow: none;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
+ border-color: #50575e;
+}
+
+.mce-toolbar .mce-btn-group .mce-first,
+.mce-toolbar .mce-btn-group .mce-last {
+ border-color: transparent;
+}
+
+.mce-toolbar .mce-btn button,
+.qt-dfw {
+ padding: 2px 3px;
+ line-height: normal;
+}
+
+.mce-toolbar .mce-listbox button {
+ font-size: 13px;
+ line-height: 1.53846153;
+ padding-right: 6px;
+ padding-left: 20px;
+}
+
+.mce-toolbar .mce-btn i {
+ text-shadow: none;
+}
+
+.mce-toolbar .mce-btn-group > div {
+ white-space: normal;
+}
+
+.mce-toolbar .mce-colorbutton .mce-open {
+ border-left: 0;
+}
+
+.mce-toolbar .mce-colorbutton .mce-preview {
+ margin: 0;
+ padding: 0;
+ top: auto;
+ bottom: 2px;
+ right: 3px;
+ height: 3px;
+ width: 20px;
+ background: #50575e;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary {
+ min-width: 0;
+ background: #3582c4;
+ border-color: #2271b1 #135e96 #135e96;
+ box-shadow: 0 1px 0 #135e96;
+ color: #fff;
+ text-decoration: none;
+ text-shadow: none;
+}
+
+/* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
+ padding: 2px 3px 1px;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico {
+ color: #fff;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
+ background: #4f94d4;
+ border-color: #135e96;
+ color: #fff;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
+ box-shadow: 0 0 1px 1px #72aee6;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active {
+ background: #2271b1;
+ border-color: #135e96;
+ box-shadow: inset 0 2px 0 #135e96;
+}
+
+/* mce listbox */
+.mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
+ border-radius: 0;
+ direction: rtl;
+ background: #fff;
+ border: 1px solid #dcdcde;
+ box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, 0.2);
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:focus {
+ border-color: #c3c4c7;
+}
+
+.mce-panel .mce-btn i.mce-caret {
+ border-top: 6px solid #50575e;
+ margin-right: 2px;
+ margin-left: 2px;
+}
+
+.mce-listbox i.mce-caret {
+ left: 4px;
+}
+
+.mce-panel .mce-btn:hover i.mce-caret,
+.mce-panel .mce-btn:focus i.mce-caret {
+ border-top-color: #1d2327;
+}
+
+.mce-panel .mce-active i.mce-caret {
+ border-top: 0;
+ border-bottom: 6px solid #1d2327;
+ margin-top: 7px;
+}
+
+.mce-listbox.mce-active i.mce-caret {
+ margin-top: -3px;
+}
+
+.mce-toolbar .mce-splitbtn:hover .mce-open {
+ border-left-color: transparent;
+}
+
+.mce-toolbar .mce-splitbtn .mce-open.mce-active {
+ background: transparent;
+ outline: none;
+}
+
+.mce-menu .mce-menu-item:hover,
+.mce-menu .mce-menu-item.mce-selected,
+.mce-menu .mce-menu-item:focus,
+.mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,
+.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview {
+ background: #2271b1; /* See color scheme. */
+ color: #fff;
+}
+
+.mce-menu .mce-menu-item:hover .mce-caret,
+.mce-menu .mce-menu-item:focus .mce-caret,
+.mce-menu .mce-menu-item.mce-selected .mce-caret {
+ border-right-color: #fff;
+}
+
+/* rtl:ignore */
+.rtl .mce-menu .mce-menu-item:hover .mce-caret,
+.rtl .mce-menu .mce-menu-item:focus .mce-caret,
+.rtl .mce-menu .mce-menu-item.mce-selected .mce-caret {
+ border-left-color: inherit;
+ border-right-color: #fff;
+}
+
+.mce-menu .mce-menu-item:hover .mce-text,
+.mce-menu .mce-menu-item:focus .mce-text,
+.mce-menu .mce-menu-item:hover .mce-ico,
+.mce-menu .mce-menu-item:focus .mce-ico,
+.mce-menu .mce-menu-item.mce-selected .mce-text,
+.mce-menu .mce-menu-item.mce-selected .mce-ico,
+.mce-menu .mce-menu-item:hover .mce-menu-shortcut,
+.mce-menu .mce-menu-item:focus .mce-menu-shortcut,
+.mce-menu .mce-menu-item.mce-active .mce-menu-shortcut,
+.mce-menu .mce-menu-item.mce-disabled:hover .mce-text,
+.mce-menu .mce-menu-item.mce-disabled:hover .mce-ico {
+ color: inherit;
+}
+
+.mce-menu .mce-menu-item.mce-disabled {
+ cursor: default;
+}
+
+.mce-menu .mce-menu-item.mce-disabled:hover {
+ background: #c3c4c7;
+}
+
+/* Menubar */
+div.mce-menubar {
+ border-color: #dcdcde;
+ background: #fff;
+ border-width: 0 0 1px;
+}
+
+.mce-menubar .mce-menubtn:hover,
+.mce-menubar .mce-menubtn.mce-active,
+.mce-menubar .mce-menubtn:focus {
+ border-color: transparent;
+ background: transparent;
+}
+
+.mce-menubar .mce-menubtn:focus {
+ color: #043959;
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+}
+
+div.mce-menu .mce-menu-item-sep,
+.mce-menu-item-sep:hover {
+ border-bottom: 1px solid #dcdcde;
+ height: 0;
+ margin: 5px 0;
+}
+
+.mce-menubtn span {
+ margin-left: 0;
+ padding-right: 3px;
+}
+
+.mce-menu-has-icons i.mce-ico:before {
+ margin-right: -2px;
+}
+
+/* Keyboard shortcuts position */
+.mce-menu.mce-menu-align .mce-menu-item-normal {
+ position: relative;
+}
+
+.mce-menu.mce-menu-align .mce-menu-shortcut {
+ bottom: 0.6em;
+ font-size: 0.9em;
+}
+
+/* Buttons in modals */
+.mce-primary button,
+.mce-primary button i {
+ text-align: center;
+ color: #fff;
+ text-shadow: none;
+ padding: 0;
+ line-height: 1.85714285;
+}
+
+.mce-window .mce-btn {
+ color: #50575e;
+ background: #f6f7f7;
+ text-decoration: none;
+ font-size: 13px;
+ line-height: 26px;
+ height: 28px;
+ margin: 0;
+ padding: 0;
+ cursor: pointer;
+ border: 1px solid #c3c4c7;
+ -webkit-appearance: none;
+ border-radius: 3px;
+ white-space: nowrap;
+ box-shadow: 0 1px 0 #c3c4c7;
+}
+
+/* Remove the dotted border on :focus and the extra padding in Firefox */
+.mce-window .mce-btn::-moz-focus-inner {
+ border-width: 0;
+ border-style: none;
+ padding: 0;
+}
+
+.mce-window .mce-btn:hover,
+.mce-window .mce-btn:focus {
+ background: #f6f7f7;
+ border-color: #8c8f94;
+ color: #1d2327;
+}
+
+.mce-window .mce-btn:focus {
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+}
+
+.mce-window .mce-btn:active {
+ background: #f0f0f1;
+ border-color: #8c8f94;
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ transform: translateY(1px);
+}
+
+.mce-window .mce-btn.mce-disabled {
+ color: #a7aaad !important;
+ border-color: #dcdcde !important;
+ background: #f6f7f7 !important;
+ box-shadow: none !important;
+ text-shadow: 0 1px 0 #fff !important;
+ cursor: default;
+ transform: none !important;
+}
+
+.mce-window .mce-btn.mce-primary {
+ background: #3582c4;
+ border-color: #2271b1 #135e96 #135e96;
+ box-shadow: 0 1px 0 #135e96;
+ color: #fff;
+ text-decoration: none;
+ text-shadow: 0 -1px 1px #135e96,
+ -1px 0 1px #135e96,
+ 0 1px 1px #135e96,
+ 1px 0 1px #135e96;
+}
+
+.mce-window .mce-btn.mce-primary:hover,
+.mce-window .mce-btn.mce-primary:focus {
+ background: #4f94d4;
+ border-color: #135e96;
+ color: #fff;
+}
+
+.mce-window .mce-btn.mce-primary:focus {
+ box-shadow: 0 1px 0 #2271b1,
+ 0 0 2px 1px #72aee6;
+}
+
+.mce-window .mce-btn.mce-primary:active {
+ background: #2271b1;
+ border-color: #135e96;
+ box-shadow: inset 0 2px 0 #135e96;
+ vertical-align: top;
+}
+
+.mce-window .mce-btn.mce-primary.mce-disabled {
+ color: #9ec2e6 !important;
+ background: #4f94d4 !important;
+ border-color: #3582c4 !important;
+ box-shadow: none !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
+ cursor: default;
+}
+
+.mce-menubtn.mce-fixed-width span {
+ overflow-x: hidden;
+ text-overflow: ellipsis;
+ width: 82px;
+}
+
+/* Charmap modal */
+.mce-charmap {
+ margin: 3px;
+}
+
+.mce-charmap td {
+ padding: 0;
+ border-color: #dcdcde;
+ cursor: pointer;
+}
+
+.mce-charmap td:hover {
+ background: #f6f7f7;
+}
+
+.mce-charmap td div {
+ width: 18px;
+ height: 22px;
+ line-height: 1.57142857;
+}
+
+/* TinyMCE tooltips */
+.mce-tooltip {
+ margin-top: 2px;
+}
+
+.mce-tooltip-inner {
+ border-radius: 3px;
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
+ color: #fff;
+ font-size: 12px;
+}
+
+/* TinyMCE icons */
+.mce-ico {
+ font-family: tinymce, Arial;
+}
+
+.mce-btn-small .mce-ico {
+ font-family: tinymce-small, Arial;
+}
+
+.mce-toolbar .mce-ico {
+ color: #50575e;
+ line-height: 1;
+ width: 20px;
+ height: 20px;
+ text-align: center;
+ text-shadow: none;
+ margin: 0;
+ padding: 0;
+}
+
+.qt-dfw {
+ color: #50575e;
+ line-height: 1;
+ width: 28px;
+ height: 26px;
+ text-align: center;
+ text-shadow: none;
+}
+
+.mce-toolbar .mce-btn .mce-open {
+ line-height: 20px;
+}
+
+.mce-toolbar .mce-btn:hover .mce-open,
+.mce-toolbar .mce-btn:focus .mce-open,
+.mce-toolbar .mce-btn.mce-active .mce-open {
+ border-right-color: #1d2327;
+}
+
+div.mce-notification {
+ right: 10% !important;
+ left: 10%;
+}
+
+.mce-notification button.mce-close {
+ left: 6px;
+ top: 3px;
+ font-weight: 400;
+ color: #50575e;
+}
+
+.mce-notification button.mce-close:hover,
+.mce-notification button.mce-close:focus {
+ color: #000;
+}
+
+i.mce-i-bold,
+i.mce-i-italic,
+i.mce-i-bullist,
+i.mce-i-numlist,
+i.mce-i-blockquote,
+i.mce-i-alignleft,
+i.mce-i-aligncenter,
+i.mce-i-alignright,
+i.mce-i-link,
+i.mce-i-unlink,
+i.mce-i-wp_more,
+i.mce-i-strikethrough,
+i.mce-i-spellchecker,
+i.mce-i-fullscreen,
+i.mce-i-wp_fullscreen,
+i.mce-i-dfw,
+i.mce-i-wp_adv,
+i.mce-i-underline,
+i.mce-i-alignjustify,
+i.mce-i-forecolor,
+i.mce-i-backcolor,
+i.mce-i-pastetext,
+i.mce-i-pasteword,
+i.mce-i-removeformat,
+i.mce-i-charmap,
+i.mce-i-outdent,
+i.mce-i-indent,
+i.mce-i-undo,
+i.mce-i-redo,
+i.mce-i-help,
+i.mce-i-wp_help,
+i.mce-i-wp-media-library,
+i.mce-i-ltr,
+i.mce-i-wp_page,
+i.mce-i-hr,
+i.mce-i-wp_code,
+i.mce-i-dashicon,
+i.mce-i-remove {
+ font: normal 20px/1 dashicons;
+ padding: 0;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ margin-right: -2px;
+ padding-left: 2px;
+}
+
+.qt-dfw {
+ font: normal 20px/1 dashicons;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+i.mce-i-bold:before {
+ content: "\f200";
+}
+
+i.mce-i-italic:before {
+ content: "\f201";
+}
+
+i.mce-i-bullist:before {
+ content: "\f203";
+}
+
+i.mce-i-numlist:before {
+ content: "\f204";
+}
+
+i.mce-i-blockquote:before {
+ content: "\f205";
+}
+
+i.mce-i-alignleft:before {
+ content: "\f206";
+}
+
+i.mce-i-aligncenter:before {
+ content: "\f207";
+}
+
+i.mce-i-alignright:before {
+ content: "\f208";
+}
+
+i.mce-i-link:before {
+ content: "\f103";
+}
+
+i.mce-i-unlink:before {
+ content: "\f225";
+}
+
+i.mce-i-wp_more:before {
+ content: "\f209";
+}
+
+i.mce-i-strikethrough:before {
+ content: "\f224";
+}
+
+i.mce-i-spellchecker:before {
+ content: "\f210";
+}
+
+i.mce-i-fullscreen:before,
+i.mce-i-wp_fullscreen:before,
+i.mce-i-dfw:before,
+.qt-dfw:before {
+ content: "\f211";
+}
+
+i.mce-i-wp_adv:before {
+ content: "\f212";
+}
+
+i.mce-i-underline:before {
+ content: "\f213";
+}
+
+i.mce-i-alignjustify:before {
+ content: "\f214";
+}
+
+i.mce-i-forecolor:before,
+i.mce-i-backcolor:before {
+ content: "\f215";
+}
+
+i.mce-i-pastetext:before {
+ content: "\f217";
+}
+
+i.mce-i-removeformat:before {
+ content: "\f218";
+}
+
+i.mce-i-charmap:before {
+ content: "\f220";
+}
+
+i.mce-i-outdent:before {
+ content: "\f221";
+}
+
+i.mce-i-indent:before {
+ content: "\f222";
+}
+
+i.mce-i-undo:before {
+ content: "\f171";
+}
+
+i.mce-i-redo:before {
+ content: "\f172";
+}
+
+i.mce-i-help:before,
+i.mce-i-wp_help:before {
+ content: "\f223";
+}
+
+i.mce-i-wp-media-library:before {
+ content: "\f104";
+}
+
+i.mce-i-ltr:before {
+ content: "\f320";
+}
+
+i.mce-i-wp_page:before {
+ content: "\f105";
+}
+
+i.mce-i-hr:before {
+ content: "\f460";
+}
+
+i.mce-i-remove:before {
+ content: "\f158";
+}
+
+i.mce-i-wp_code:before {
+ content: "\f475";
+}
+
+/* RTL button icons */
+.rtl i.mce-i-outdent:before {
+ content: "\f222";
+}
+
+.rtl i.mce-i-indent:before {
+ content: "\f221";
+}
+
+/* Editors */
+.wp-editor-wrap {
+ position: relative;
+}
+
+.wp-editor-tools {
+ position: relative;
+ z-index: 1;
+}
+
+.wp-editor-tools:after {
+ clear: both;
+ content: "";
+ display: table;
+}
+
+.wp-editor-container {
+ clear: both;
+ border: 1px solid #dcdcde;
+}
+
+.wp-editor-area {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ padding: 10px;
+ margin: 1px 0 0;
+ line-height: 150%;
+ border: 0;
+ outline: none;
+ display: block;
+ resize: vertical;
+ box-sizing: border-box;
+}
+
+.rtl .wp-editor-area {
+ font-family: Tahoma, Monaco, monospace;
+}
+
+.locale-he-il .wp-editor-area {
+ font-family: Arial, Monaco, monospace;
+}
+
+.wp-editor-container textarea.wp-editor-area {
+ width: 100%;
+ margin: 0;
+ box-shadow: none;
+}
+
+.wp-editor-tabs {
+ float: left;
+}
+
+.wp-switch-editor {
+ float: right;
+ box-sizing: content-box;
+ position: relative;
+ top: 1px;
+ background: #f0f0f1;
+ color: #646970;
+ cursor: pointer;
+ font-size: 13px;
+ line-height: 1.46153846;
+ height: 20px;
+ margin: 5px 5px 0 0;
+ padding: 3px 8px 4px;
+ border: 1px solid #dcdcde;
+}
+
+.wp-switch-editor:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ outline: none;
+ color: #1d2327;
+}
+
+.wp-switch-editor:active,
+.html-active .switch-html:focus,
+.tmce-active .switch-tmce:focus {
+ box-shadow: none;
+}
+
+.wp-switch-editor:active {
+ background-color: #f6f7f7;
+ box-shadow: none;
+}
+
+.js .tmce-active .wp-editor-area {
+ color: #fff;
+}
+
+.tmce-active .quicktags-toolbar {
+ display: none;
+}
+
+.tmce-active .switch-tmce,
+.html-active .switch-html {
+ background: #f6f7f7;
+ color: #50575e;
+ border-bottom-color: #f6f7f7;
+}
+
+.wp-media-buttons {
+ float: right;
+}
+
+.wp-media-buttons .button {
+ margin-left: 5px;
+ margin-bottom: 4px;
+ padding-right: 7px;
+ padding-left: 7px;
+}
+
+.wp-media-buttons .button:active {
+ position: relative;
+ top: 1px;
+ margin-top: -1px;
+ margin-bottom: 1px;
+}
+
+.wp-media-buttons .insert-media {
+ padding-right: 5px;
+}
+
+.wp-media-buttons a {
+ text-decoration: none;
+ color: #3c434a;
+ font-size: 12px;
+}
+
+.wp-media-buttons img {
+ padding: 0 4px;
+ vertical-align: middle;
+}
+
+.wp-media-buttons span.wp-media-buttons-icon {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ line-height: 1;
+ vertical-align: middle;
+ margin: 0 2px;
+}
+
+.wp-media-buttons .add_media span.wp-media-buttons-icon {
+ background: none;
+}
+
+.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
+ font: normal 18px/1 dashicons;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
+ content: "\f104";
+}
+
+.mce-content-body dl.wp-caption {
+ max-width: 100%;
+}
+
+/* Quicktags */
+.quicktags-toolbar {
+ padding: 3px;
+ position: relative;
+ border-bottom: 1px solid #dcdcde;
+ background: #f6f7f7;
+ min-height: 30px;
+}
+
+.has-dfw .quicktags-toolbar {
+ padding-left: 35px;
+}
+
+.wp-core-ui .quicktags-toolbar input.button.button-small {
+ margin: 2px;
+}
+
+.quicktags-toolbar input[value="link"] {
+ text-decoration: underline;
+}
+
+.quicktags-toolbar input[value="del"] {
+ text-decoration: line-through;
+}
+
+.quicktags-toolbar input[value="i"] {
+ font-style: italic;
+}
+
+.quicktags-toolbar input[value="b"] {
+ font-weight: 600;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw,
+.qt-dfw {
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw {
+ margin: 7px 0 0 7px;
+}
+
+.qt-dfw {
+ margin: 5px 0 0 5px;
+}
+
+.qt-fullscreen {
+ position: static;
+ margin: 2px;
+}
+
+@media screen and (max-width: 782px) {
+ .mce-toolbar .mce-btn button,
+ .qt-dfw {
+ padding: 6px 7px;
+ }
+
+ /* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
+ .mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
+ padding: 6px 7px 5px;
+ }
+
+ .mce-toolbar .mce-btn-group .mce-btn {
+ margin: 1px;
+ }
+
+ .qt-dfw {
+ width: 36px;
+ height: 34px;
+ }
+
+ .mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw {
+ margin: 4px 0 0 4px;
+ }
+
+ .mce-toolbar .mce-colorbutton .mce-preview {
+ right: 8px;
+ bottom: 6px;
+ }
+
+ .mce-window .mce-btn {
+ padding: 2px 0;
+ }
+
+ .has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first,
+ .has-dfw .quicktags-toolbar {
+ padding-left: 40px;
+ }
+}
+
+@media screen and (min-width: 782px) {
+ .wp-core-ui .quicktags-toolbar input.button.button-small {
+ /* .button-small is normally 11px, but a bit too small for these buttons. */
+ font-size: 12px;
+ min-height: 26px;
+ line-height: 2;
+ }
+}
+
+#wp_editbtns,
+#wp_gallerybtns {
+ padding: 2px;
+ position: absolute;
+ display: none;
+ z-index: 100020;
+}
+
+#wp_editimgbtn,
+#wp_delimgbtn,
+#wp_editgallery,
+#wp_delgallery {
+ background-color: #f0f0f1;
+ margin: 2px;
+ padding: 2px;
+ border: 1px solid #8c8f94;
+ border-radius: 3px;
+}
+
+#wp_editimgbtn:hover,
+#wp_delimgbtn:hover,
+#wp_editgallery:hover,
+#wp_delgallery:hover {
+ border-color: #50575e;
+ background-color: #c3c4c7;
+}
+
+/*------------------------------------------------------------------------------
+ wp-link
+------------------------------------------------------------------------------*/
+
+#wp-link-wrap {
+ display: none;
+ background-color: #fff;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+ width: 500px;
+ overflow: hidden;
+ margin-right: -250px;
+ margin-top: -125px;
+ position: fixed;
+ top: 50%;
+ right: 50%;
+ z-index: 100105;
+ transition: height 0.2s, margin-top 0.2s;
+}
+
+#wp-link-backdrop {
+ display: none;
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 100100;
+}
+
+#wp-link {
+ position: relative;
+ height: 100%;
+}
+
+#wp-link-wrap {
+ height: 500px;
+ margin-top: -250px;
+}
+
+#wp-link-wrap .wp-link-text-field {
+ display: none;
+}
+
+#wp-link-wrap.has-text-field .wp-link-text-field {
+ display: block;
+}
+
+#link-modal-title {
+ background: #fff;
+ border-bottom: 1px solid #dcdcde;
+ height: 36px;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 2;
+ margin: 0;
+ padding: 0 16px 0 36px;
+}
+
+#wp-link-close {
+ color: #646970;
+ padding: 0;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 36px;
+ height: 36px;
+ text-align: center;
+ background: none;
+ border: none;
+ cursor: pointer;
+}
+
+#wp-link-close:before {
+ font: normal 20px/36px dashicons;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ width: 36px;
+ height: 36px;
+ content: "\f158";
+}
+
+#wp-link-close:hover,
+#wp-link-close:focus {
+ color: #135e96;
+}
+
+#wp-link-close:focus {
+ outline: none;
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+
+#wp-link-wrap #link-selector {
+ -webkit-overflow-scrolling: touch;
+ padding: 0 16px;
+ position: absolute;
+ top: 37px;
+ right: 0;
+ left: 0;
+ bottom: 44px;
+}
+
+#wp-link ol,
+#wp-link ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+#wp-link input[type="text"] {
+ box-sizing: border-box;
+}
+
+#wp-link #link-options {
+ padding: 8px 0 12px;
+}
+
+#wp-link p.howto {
+ margin: 3px 0;
+}
+
+#wp-link p.howto a {
+ text-decoration: none;
+ color: inherit;
+}
+
+#wp-link label input[type="text"] {
+ margin-top: 5px;
+ width: 70%;
+}
+
+#wp-link #link-options label span,
+#wp-link #search-panel label span.search-label {
+ display: inline-block;
+ width: 80px;
+ text-align: left;
+ padding-left: 5px;
+ max-width: 24%;
+ vertical-align: middle;
+ word-wrap: break-word;
+}
+
+#wp-link .link-search-field {
+ width: 250px;
+ max-width: 70%;
+}
+
+#wp-link .link-search-wrapper {
+ margin: 5px 0 9px;
+ display: block;
+ overflow: hidden;
+}
+
+#wp-link .link-search-wrapper .spinner {
+ float: none;
+ margin: -3px 4px 0 0;
+}
+
+#wp-link .link-target {
+ padding: 3px 0 0;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+#wp-link .link-target label {
+ max-width: 70%;
+}
+
+#wp-link .query-results {
+ border: 1px #dcdcde solid;
+ margin: 0 0 12px;
+ background: #fff;
+ overflow: auto;
+ position: absolute;
+ right: 16px;
+ left: 16px;
+ bottom: 0;
+ top: 166px;
+}
+
+.has-text-field #wp-link .query-results {
+ top: 210px;
+}
+
+#wp-link li {
+ clear: both;
+ margin-bottom: 0;
+ border-bottom: 1px solid #f0f0f1;
+ color: #2c3338;
+ padding: 4px 10px 4px 6px;
+ cursor: pointer;
+ position: relative;
+}
+
+#wp-link .query-notice {
+ padding: 0;
+ border-bottom: 1px solid #dcdcde;
+ background-color: #fff;
+ color: #000;
+}
+
+#wp-link .query-notice .query-notice-default,
+#wp-link .query-notice .query-notice-hint {
+ display: block;
+ padding: 6px;
+ border-right: 4px solid #72aee6;
+}
+
+#wp-link .unselectable.no-matches-found {
+ padding: 0;
+ border-bottom: 1px solid #dcdcde;
+ background-color: #f6f7f7;
+}
+
+#wp-link .no-matches-found .item-title {
+ display: block;
+ padding: 6px;
+ border-right: 4px solid #d63638;
+}
+
+#wp-link .query-results em {
+ font-style: normal;
+}
+
+#wp-link li:hover {
+ background: #f0f6fc;
+ color: #101517;
+}
+
+#wp-link li.unselectable {
+ border-bottom: 1px solid #dcdcde;
+}
+
+#wp-link li.unselectable:hover {
+ background: #fff;
+ cursor: auto;
+ color: #2c3338;
+}
+
+#wp-link li.selected {
+ background: #dcdcde;
+ color: #2c3338;
+}
+
+#wp-link li.selected .item-title {
+ font-weight: 600;
+}
+
+#wp-link li:last-child {
+ border: none;
+}
+
+#wp-link .item-title {
+ display: inline-block;
+ width: 80%;
+ width: calc(100% - 68px);
+ word-wrap: break-word;
+}
+
+#wp-link .item-info {
+ text-transform: uppercase;
+ color: #646970;
+ font-size: 11px;
+ position: absolute;
+ left: 5px;
+ top: 5px;
+}
+
+#wp-link .river-waiting {
+ display: none;
+ padding: 10px 0;
+}
+
+#wp-link .submitbox {
+ padding: 8px 16px;
+ background: #fff;
+ border-top: 1px solid #dcdcde;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ left: 0;
+}
+
+#wp-link-cancel {
+ line-height: 1.92307692;
+ float: right;
+}
+
+#wp-link-update {
+ line-height: 1.76923076;
+ float: left;
+}
+
+#wp-link-submit {
+ float: left;
+}
+
+@media screen and (max-width: 782px) {
+ #wp-link-wrap {
+ margin-top: -140px;
+ }
+
+ #wp-link-wrap .query-results {
+ top: 195px;
+ }
+
+ #wp-link-wrap.has-text-field .query-results {
+ top: 235px;
+ }
+
+ #link-selector {
+ padding: 0 16px 60px;
+ }
+
+ #wp-link-wrap #link-selector {
+ bottom: 52px;
+ }
+
+ #wp-link-cancel {
+ line-height: 2.46153846;
+ }
+
+ #wp-link .link-target {
+ padding-top: 10px;
+ }
+
+ #wp-link .submitbox .button {
+ margin-bottom: 0;
+ }
+}
+
+@media screen and (max-width: 520px) {
+ #wp-link-wrap {
+ width: auto;
+ margin-right: 0;
+ right: 10px;
+ left: 10px;
+ max-width: 500px;
+ }
+}
+
+@media screen and (max-height: 520px) {
+ #wp-link-wrap {
+ transition: none;
+ height: auto;
+ margin-top: 0;
+ top: 10px;
+ bottom: 10px;
+ }
+
+ #link-selector {
+ overflow: auto;
+ }
+
+ #search-panel .query-results {
+ position: static;
+ }
+}
+
+@media screen and (max-height: 290px) {
+ #wp-link-wrap {
+ height: auto;
+ margin-top: 0;
+ top: 10px;
+ bottom: 10px;
+ }
+
+ #link-selector {
+ overflow: auto;
+ height: calc(100% - 92px);
+ padding-bottom: 2px;
+ }
+
+ #search-panel .query-results {
+ position: static;
+ }
+}
+
+div.wp-link-preview {
+ float: right;
+ margin: 5px;
+ max-width: 694px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+div.wp-link-preview a {
+ color: #2271b1;
+ text-decoration: underline;
+ transition-property: border, background, color;
+ transition-duration: .05s;
+ transition-timing-function: ease-in-out;
+ cursor: pointer;
+}
+
+div.wp-link-preview a.wplink-url-error {
+ color: #d63638;
+}
+
+div.wp-link-input {
+ float: right;
+ margin: 2px;
+ max-width: 694px;
+}
+
+div.wp-link-input input {
+ width: 300px;
+ padding: 3px;
+ box-sizing: border-box;
+ line-height: 1.28571429; /* 18px */
+ /* Override value inherited from default input fields. */
+ min-height: 26px;
+}
+
+.mce-toolbar div.wp-link-preview ~ .mce-btn,
+.mce-toolbar div.wp-link-input ~ .mce-btn {
+ margin: 2px 1px;
+}
+
+.mce-inline-toolbar-grp .mce-btn-group .mce-btn:last-child {
+ margin-left: 2px;
+}
+
+.ui-autocomplete.wplink-autocomplete {
+ z-index: 100110;
+ max-height: 200px;
+ overflow-y: auto;
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ position: absolute;
+ border: 1px solid #4f94d4;
+ box-shadow: 0 1px 2px rgba(79, 148, 212, 0.8);
+ background-color: #fff;
+}
+
+.ui-autocomplete.wplink-autocomplete li {
+ margin-bottom: 0;
+ padding: 4px 10px;
+ clear: both;
+ white-space: normal;
+ text-align: right;
+}
+
+.ui-autocomplete.wplink-autocomplete li .wp-editor-float-right {
+ float: left;
+}
+
+.ui-autocomplete.wplink-autocomplete li.ui-state-focus {
+ background-color: #dcdcde;
+ cursor: pointer;
+}
+
+@media screen and (max-width: 782px) {
+ div.wp-link-preview,
+ div.wp-link-input {
+ max-width: 70%;
+ max-width: calc(100% - 86px);
+ }
+
+ div.wp-link-preview {
+ margin: 8px 5px 8px 0;
+ }
+
+ div.wp-link-input {
+ width: 300px;
+ }
+
+ div.wp-link-input input {
+ width: 100%;
+ font-size: 16px;
+ padding: 5px;
+ }
+}
+
+/* =Overlay Body
+-------------------------------------------------------------- */
+
+.mce-fullscreen {
+ z-index: 100010;
+}
+
+/* =Localization
+-------------------------------------------------------------- */
+.rtl .wp-switch-editor,
+.rtl .quicktags-toolbar input {
+ font-family: Tahoma, sans-serif;
+}
+
+/* rtl:ignore */
+.mce-rtl .mce-flow-layout .mce-flow-layout-item > div {
+ direction: rtl;
+}
+
+/* rtl:ignore */
+.mce-rtl .mce-listbox i.mce-caret {
+ left: 6px;
+}
+
+html:lang(he-il) .rtl .wp-switch-editor,
+html:lang(he-il) .rtl .quicktags-toolbar input {
+ font-family: Arial, sans-serif;
+}
+
+/* HiDPI */
+@media print,
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ .wp-media-buttons .add_media span.wp-media-buttons-icon {
+ background: none;
+ }
+}
diff --git a/static/wp-includes/css/editor-rtl.min.css b/static/wp-includes/css/editor-rtl.min.css
new file mode 100755
index 0000000..1cb9dcc
--- /dev/null
+++ b/static/wp-includes/css/editor-rtl.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.mce-tinymce{box-shadow:none}.mce-container,.mce-container *,.mce-widget,.mce-widget *{color:inherit;font-family:inherit}.mce-container .mce-monospace,.mce-widget .mce-monospace{font-family:Consolas,Monaco,monospace;font-size:13px;line-height:150%}#mce-modal-block,#mce-modal-block.mce-fade{opacity:.7;transition:none;background:#000}.mce-window{border-radius:0;box-shadow:0 3px 6px rgba(0,0,0,.3);-webkit-font-smoothing:subpixel-antialiased;transition:none}.mce-window .mce-container-body.mce-abs-layout{overflow:visible}.mce-window .mce-window-head{background:#fff;border-bottom:1px solid #dcdcde;padding:0;min-height:36px}.mce-window .mce-window-head .mce-title{color:#3c434a;font-size:18px;font-weight:600;line-height:36px;margin:0;padding:0 16px 0 36px}.mce-window .mce-window-head .mce-close,.mce-window-head .mce-close .mce-i-remove{color:transparent;top:0;left:0;width:36px;height:36px;padding:0;line-height:36px;text-align:center}.mce-window-head .mce-close .mce-i-remove:before{font:normal 20px/36px dashicons;text-align:center;color:#646970;width:36px;height:36px;display:block}.mce-window-head .mce-close:focus .mce-i-remove:before,.mce-window-head .mce-close:hover .mce-i-remove:before{color:#135e96}.mce-window-head .mce-close:focus .mce-i-remove,div.mce-tab:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}.mce-window .mce-window-head .mce-dragh{width:calc(100% - 36px)}.mce-window .mce-foot{border-top:1px solid #dcdcde}#wp-link .query-results,.mce-checkbox i.mce-i-checkbox,.mce-textbox{border:1px solid #dcdcde;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.07);transition:.05s all ease-in-out}#wp-link .query-results:focus,.mce-checkbox:focus i.mce-i-checkbox,.mce-textbox.mce-focus,.mce-textbox:focus{border-color:#4f94d4;box-shadow:0 0 2px rgba(79,148,212,.8)}.mce-window .mce-wp-help{height:360px;width:460px;overflow:auto}.mce-window .mce-wp-help *{box-sizing:border-box}.mce-window .mce-wp-help>.mce-container-body{width:auto!important}.mce-window .wp-editor-help{padding:10px 20px 0 10px}.mce-window .wp-editor-help h2,.mce-window .wp-editor-help p{margin:8px 0;white-space:normal;font-size:14px;font-weight:400}.mce-window .wp-editor-help table{width:100%;margin-bottom:20px}.mce-window .wp-editor-help table.wp-help-single{margin:0 8px 20px}.mce-window .wp-editor-help table.fixed{table-layout:fixed}.mce-window .wp-editor-help table.fixed td:nth-child(odd),.mce-window .wp-editor-help table.fixed th:nth-child(odd){width:12%}.mce-window .wp-editor-help table.fixed td:nth-child(even),.mce-window .wp-editor-help table.fixed th:nth-child(even){width:38%}.mce-window .wp-editor-help table.fixed th:nth-child(odd){padding:5px 0 0}.mce-window .wp-editor-help td,.mce-window .wp-editor-help th{font-size:13px;padding:5px;vertical-align:middle;word-wrap:break-word;white-space:normal}.mce-window .wp-editor-help th{font-weight:600;padding-bottom:0}.mce-window .wp-editor-help kbd{font-family:monospace;padding:2px 7px 3px;font-weight:600;margin:0;background:#f0f0f1;background:rgba(0,0,0,.08)}.mce-window .wp-help-th-center td:nth-child(odd),.mce-window .wp-help-th-center th:nth-child(odd){text-align:center}.mce-floatpanel.mce-popover,.mce-menu{border-color:rgba(0,0,0,.15);border-radius:0;box-shadow:0 3px 5px rgba(0,0,0,.2)}.mce-floatpanel.mce-popover.mce-bottom,.mce-menu{margin-top:2px}.mce-floatpanel .mce-arrow{display:none}.mce-menu .mce-container-body{min-width:160px}.mce-menu-item{border:none;margin-bottom:2px;padding:6px 12px 6px 15px}.mce-menu-has-icons i.mce-ico{line-height:20px}div.mce-panel{border:0;background:#fff}.mce-panel.mce-menu{border:1px solid #dcdcde}div.mce-tab{line-height:13px}div.mce-toolbar-grp{border-bottom:1px solid #dcdcde;background:#f6f7f7;padding:0;position:relative}div.mce-inline-toolbar-grp{border:1px solid #a7aaad;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.15);box-sizing:border-box;margin-bottom:8px;position:absolute;-webkit-user-select:none;user-select:none;max-width:98%;z-index:100100}div.mce-inline-toolbar-grp>div.mce-stack-layout{padding:1px}div.mce-inline-toolbar-grp.mce-arrow-up{margin-bottom:0;margin-top:8px}div.mce-inline-toolbar-grp:after,div.mce-inline-toolbar-grp:before{position:absolute;right:50%;display:block;width:0;height:0;border-style:solid;border-color:transparent;content:""}div.mce-inline-toolbar-grp.mce-arrow-up:before{top:-9px;border-bottom-color:#a7aaad;border-width:0 9px 9px;margin-right:-9px}div.mce-inline-toolbar-grp.mce-arrow-down:before{bottom:-9px;border-top-color:#a7aaad;border-width:9px 9px 0;margin-right:-9px}div.mce-inline-toolbar-grp.mce-arrow-up:after{top:-8px;border-bottom-color:#f6f7f7;border-width:0 8px 8px;margin-right:-8px}div.mce-inline-toolbar-grp.mce-arrow-down:after{bottom:-8px;border-top-color:#f6f7f7;border-width:8px 8px 0;margin-right:-8px}div.mce-inline-toolbar-grp.mce-arrow-left:after,div.mce-inline-toolbar-grp.mce-arrow-left:before{margin:0}div.mce-inline-toolbar-grp.mce-arrow-left:before{right:20px}div.mce-inline-toolbar-grp.mce-arrow-left:after{right:21px}div.mce-inline-toolbar-grp.mce-arrow-right:after,div.mce-inline-toolbar-grp.mce-arrow-right:before{right:auto;margin:0}div.mce-inline-toolbar-grp.mce-arrow-right:before{left:20px}div.mce-inline-toolbar-grp.mce-arrow-right:after{left:21px}div.mce-inline-toolbar-grp.mce-arrow-full{left:0}div.mce-inline-toolbar-grp.mce-arrow-full>div{width:100%;overflow-x:auto}div.mce-toolbar-grp>div{padding:3px}.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first{padding-left:32px}.mce-toolbar .mce-btn-group{margin:0}.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar{display:block}div.mce-statusbar{border-top:1px solid #dcdcde}div.mce-path{padding:2px 10px;margin:0}.mce-path,.mce-path .mce-divider,.mce-path-item{font-size:12px}.mce-toolbar .mce-btn,.qt-dfw{border-color:transparent;background:0 0;box-shadow:none;text-shadow:none;cursor:pointer}.mce-btn .mce-txt{direction:inherit;text-align:inherit}.mce-toolbar .mce-btn-group .mce-btn,.qt-dfw{border:1px solid transparent;margin:2px;border-radius:2px}.mce-toolbar .mce-btn-group .mce-btn:focus,.mce-toolbar .mce-btn-group .mce-btn:hover,.qt-dfw:focus,.qt-dfw:hover{background:#f6f7f7;border-color:#50575e;color:#1d2327;box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);outline:0}.mce-toolbar .mce-btn-group .mce-btn.mce-active,.mce-toolbar .mce-btn-group .mce-btn:active,.qt-dfw.active{background:#f0f0f1;border-color:#50575e;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.3)}.mce-btn.mce-active,.mce-btn.mce-active button,.mce-btn.mce-active i,.mce-btn.mce-active:hover button,.mce-btn.mce-active:hover i{color:inherit}.mce-toolbar .mce-btn-group .mce-btn.mce-active:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover{border-color:#1d2327}.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:hover{color:#a7aaad;background:0 0;border-color:#dcdcde;text-shadow:0 1px 0 #fff;box-shadow:none}.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus{border-color:#50575e}.mce-toolbar .mce-btn-group .mce-first,.mce-toolbar .mce-btn-group .mce-last{border-color:transparent}.mce-toolbar .mce-btn button,.qt-dfw{padding:2px 3px;line-height:normal}.mce-toolbar .mce-listbox button{font-size:13px;line-height:1.53846153;padding-right:6px;padding-left:20px}.mce-toolbar .mce-btn i{text-shadow:none}.mce-toolbar .mce-btn-group>div{white-space:normal}.mce-toolbar .mce-colorbutton .mce-open{border-left:0}.mce-toolbar .mce-colorbutton .mce-preview{margin:0;padding:0;top:auto;bottom:2px;right:3px;height:3px;width:20px;background:#50575e}.mce-toolbar .mce-btn-group .mce-btn.mce-primary{min-width:0;background:#3582c4;border-color:#2271b1 #135e96 #135e96;box-shadow:0 1px 0 #135e96;color:#fff;text-decoration:none;text-shadow:none}.mce-toolbar .mce-btn-group .mce-btn.mce-primary button{padding:2px 3px 1px}.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico{color:#fff}.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-primary:hover{background:#4f94d4;border-color:#135e96;color:#fff}.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus{box-shadow:0 0 1px 1px #72aee6}.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active{background:#2271b1;border-color:#135e96;box-shadow:inset 0 2px 0 #135e96}.mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border-radius:0;direction:rtl;background:#fff;border:1px solid #dcdcde;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,.2)}.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover{border-color:#c3c4c7}.mce-panel .mce-btn i.mce-caret{border-top:6px solid #50575e;margin-right:2px;margin-left:2px}.mce-listbox i.mce-caret{left:4px}.mce-panel .mce-btn:focus i.mce-caret,.mce-panel .mce-btn:hover i.mce-caret{border-top-color:#1d2327}.mce-panel .mce-active i.mce-caret{border-top:0;border-bottom:6px solid #1d2327;margin-top:7px}.mce-listbox.mce-active i.mce-caret{margin-top:-3px}.mce-toolbar .mce-splitbtn:hover .mce-open{border-left-color:transparent}.mce-toolbar .mce-splitbtn .mce-open.mce-active{background:0 0;outline:0}.mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview,.mce-menu .mce-menu-item.mce-selected,.mce-menu .mce-menu-item:focus,.mce-menu .mce-menu-item:hover{background:#2271b1;color:#fff}.mce-menu .mce-menu-item.mce-selected .mce-caret,.mce-menu .mce-menu-item:focus .mce-caret,.mce-menu .mce-menu-item:hover .mce-caret{border-right-color:#fff}.rtl .mce-menu .mce-menu-item.mce-selected .mce-caret,.rtl .mce-menu .mce-menu-item:focus .mce-caret,.rtl .mce-menu .mce-menu-item:hover .mce-caret{border-left-color:inherit;border-right-color:#fff}.mce-menu .mce-menu-item.mce-active .mce-menu-shortcut,.mce-menu .mce-menu-item.mce-disabled:hover .mce-ico,.mce-menu .mce-menu-item.mce-disabled:hover .mce-text,.mce-menu .mce-menu-item.mce-selected .mce-ico,.mce-menu .mce-menu-item.mce-selected .mce-text,.mce-menu .mce-menu-item:focus .mce-ico,.mce-menu .mce-menu-item:focus .mce-menu-shortcut,.mce-menu .mce-menu-item:focus .mce-text,.mce-menu .mce-menu-item:hover .mce-ico,.mce-menu .mce-menu-item:hover .mce-menu-shortcut,.mce-menu .mce-menu-item:hover .mce-text{color:inherit}.mce-menu .mce-menu-item.mce-disabled{cursor:default}.mce-menu .mce-menu-item.mce-disabled:hover{background:#c3c4c7}div.mce-menubar{border-color:#dcdcde;background:#fff;border-width:0 0 1px}.mce-menubar .mce-menubtn.mce-active,.mce-menubar .mce-menubtn:focus,.mce-menubar .mce-menubtn:hover{border-color:transparent;background:0 0}.mce-menubar .mce-menubtn:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}.mce-menu-item-sep:hover,div.mce-menu .mce-menu-item-sep{border-bottom:1px solid #dcdcde;height:0;margin:5px 0}.mce-menubtn span{margin-left:0;padding-right:3px}.mce-menu-has-icons i.mce-ico:before{margin-right:-2px}.mce-menu.mce-menu-align .mce-menu-item-normal{position:relative}.mce-menu.mce-menu-align .mce-menu-shortcut{bottom:.6em;font-size:.9em}.mce-primary button,.mce-primary button i{text-align:center;color:#fff;text-shadow:none;padding:0;line-height:1.85714285}.mce-window .mce-btn{color:#50575e;background:#f6f7f7;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0;cursor:pointer;border:1px solid #c3c4c7;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-shadow:0 1px 0 #c3c4c7}.mce-window .mce-btn::-moz-focus-inner{border-width:0;border-style:none;padding:0}.mce-window .mce-btn:focus,.mce-window .mce-btn:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.mce-window .mce-btn:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.mce-window .mce-btn:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);transform:translateY(1px)}.mce-window .mce-btn.mce-disabled{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}.mce-window .mce-btn.mce-primary{background:#3582c4;border-color:#2271b1 #135e96 #135e96;box-shadow:0 1px 0 #135e96;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #135e96,-1px 0 1px #135e96,0 1px 1px #135e96,1px 0 1px #135e96}.mce-window .mce-btn.mce-primary:focus,.mce-window .mce-btn.mce-primary:hover{background:#4f94d4;border-color:#135e96;color:#fff}.mce-window .mce-btn.mce-primary:focus{box-shadow:0 1px 0 #2271b1,0 0 2px 1px #72aee6}.mce-window .mce-btn.mce-primary:active{background:#2271b1;border-color:#135e96;box-shadow:inset 0 2px 0 #135e96;vertical-align:top}.mce-window .mce-btn.mce-primary.mce-disabled{color:#9ec2e6!important;background:#4f94d4!important;border-color:#3582c4!important;box-shadow:none!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important;cursor:default}.mce-menubtn.mce-fixed-width span{overflow-x:hidden;text-overflow:ellipsis;width:82px}.mce-charmap{margin:3px}.mce-charmap td{padding:0;border-color:#dcdcde;cursor:pointer}.mce-charmap td:hover{background:#f6f7f7}.mce-charmap td div{width:18px;height:22px;line-height:1.57142857}.mce-tooltip{margin-top:2px}.mce-tooltip-inner{border-radius:3px;box-shadow:0 3px 5px rgba(0,0,0,.2);color:#fff;font-size:12px}.mce-ico{font-family:tinymce,Arial}.mce-btn-small .mce-ico{font-family:tinymce-small,Arial}.mce-toolbar .mce-ico{color:#50575e;line-height:1;width:20px;height:20px;text-align:center;text-shadow:none;margin:0;padding:0}.qt-dfw{color:#50575e;line-height:1;width:28px;height:26px;text-align:center;text-shadow:none}.mce-toolbar .mce-btn .mce-open{line-height:20px}.mce-toolbar .mce-btn.mce-active .mce-open,.mce-toolbar .mce-btn:focus .mce-open,.mce-toolbar .mce-btn:hover .mce-open{border-right-color:#1d2327}div.mce-notification{right:10%!important;left:10%}.mce-notification button.mce-close{left:6px;top:3px;font-weight:400;color:#50575e}.mce-notification button.mce-close:focus,.mce-notification button.mce-close:hover{color:#000}i.mce-i-aligncenter,i.mce-i-alignjustify,i.mce-i-alignleft,i.mce-i-alignright,i.mce-i-backcolor,i.mce-i-blockquote,i.mce-i-bold,i.mce-i-bullist,i.mce-i-charmap,i.mce-i-dashicon,i.mce-i-dfw,i.mce-i-forecolor,i.mce-i-fullscreen,i.mce-i-help,i.mce-i-hr,i.mce-i-indent,i.mce-i-italic,i.mce-i-link,i.mce-i-ltr,i.mce-i-numlist,i.mce-i-outdent,i.mce-i-pastetext,i.mce-i-pasteword,i.mce-i-redo,i.mce-i-remove,i.mce-i-removeformat,i.mce-i-spellchecker,i.mce-i-strikethrough,i.mce-i-underline,i.mce-i-undo,i.mce-i-unlink,i.mce-i-wp-media-library,i.mce-i-wp_adv,i.mce-i-wp_code,i.mce-i-wp_fullscreen,i.mce-i-wp_help,i.mce-i-wp_more,i.mce-i-wp_page{font:normal 20px/1 dashicons;padding:0;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:-2px;padding-left:2px}.qt-dfw{font:normal 20px/1 dashicons;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}i.mce-i-bold:before{content:"\f200"}i.mce-i-italic:before{content:"\f201"}i.mce-i-bullist:before{content:"\f203"}i.mce-i-numlist:before{content:"\f204"}i.mce-i-blockquote:before{content:"\f205"}i.mce-i-alignleft:before{content:"\f206"}i.mce-i-aligncenter:before{content:"\f207"}i.mce-i-alignright:before{content:"\f208"}i.mce-i-link:before{content:"\f103"}i.mce-i-unlink:before{content:"\f225"}i.mce-i-wp_more:before{content:"\f209"}i.mce-i-strikethrough:before{content:"\f224"}i.mce-i-spellchecker:before{content:"\f210"}.qt-dfw:before,i.mce-i-dfw:before,i.mce-i-fullscreen:before,i.mce-i-wp_fullscreen:before{content:"\f211"}i.mce-i-wp_adv:before{content:"\f212"}i.mce-i-underline:before{content:"\f213"}i.mce-i-alignjustify:before{content:"\f214"}i.mce-i-backcolor:before,i.mce-i-forecolor:before{content:"\f215"}i.mce-i-pastetext:before{content:"\f217"}i.mce-i-removeformat:before{content:"\f218"}i.mce-i-charmap:before{content:"\f220"}i.mce-i-outdent:before{content:"\f221"}i.mce-i-indent:before{content:"\f222"}i.mce-i-undo:before{content:"\f171"}i.mce-i-redo:before{content:"\f172"}i.mce-i-help:before,i.mce-i-wp_help:before{content:"\f223"}i.mce-i-wp-media-library:before{content:"\f104"}i.mce-i-ltr:before{content:"\f320"}i.mce-i-wp_page:before{content:"\f105"}i.mce-i-hr:before{content:"\f460"}i.mce-i-remove:before{content:"\f158"}i.mce-i-wp_code:before{content:"\f475"}.rtl i.mce-i-outdent:before{content:"\f222"}.rtl i.mce-i-indent:before{content:"\f221"}.wp-editor-wrap{position:relative}.wp-editor-tools{position:relative;z-index:1}.wp-editor-tools:after{clear:both;content:"";display:table}.wp-editor-container{clear:both;border:1px solid #dcdcde}.wp-editor-area{font-family:Consolas,Monaco,monospace;font-size:13px;padding:10px;margin:1px 0 0;line-height:150%;border:0;outline:0;display:block;resize:vertical;box-sizing:border-box}.rtl .wp-editor-area{font-family:Tahoma,Monaco,monospace}.locale-he-il .wp-editor-area{font-family:Arial,Monaco,monospace}.wp-editor-container textarea.wp-editor-area{width:100%;margin:0;box-shadow:none}.wp-editor-tabs{float:left}.wp-switch-editor{float:right;box-sizing:content-box;position:relative;top:1px;background:#f0f0f1;color:#646970;cursor:pointer;font-size:13px;line-height:1.46153846;height:20px;margin:5px 5px 0 0;padding:3px 8px 4px;border:1px solid #dcdcde}.wp-switch-editor:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:0;color:#1d2327}.html-active .switch-html:focus,.tmce-active .switch-tmce:focus,.wp-switch-editor:active{box-shadow:none}.wp-switch-editor:active{background-color:#f6f7f7;box-shadow:none}.js .tmce-active .wp-editor-area{color:#fff}.tmce-active .quicktags-toolbar{display:none}.html-active .switch-html,.tmce-active .switch-tmce{background:#f6f7f7;color:#50575e;border-bottom-color:#f6f7f7}.wp-media-buttons{float:right}.wp-media-buttons .button{margin-left:5px;margin-bottom:4px;padding-right:7px;padding-left:7px}.wp-media-buttons .button:active{position:relative;top:1px;margin-top:-1px;margin-bottom:1px}.wp-media-buttons .insert-media{padding-right:5px}.wp-media-buttons a{text-decoration:none;color:#3c434a;font-size:12px}.wp-media-buttons img{padding:0 4px;vertical-align:middle}.wp-media-buttons span.wp-media-buttons-icon{display:inline-block;width:20px;height:20px;line-height:1;vertical-align:middle;margin:0 2px}.wp-media-buttons .add_media span.wp-media-buttons-icon{background:0 0}.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font:normal 18px/1 dashicons;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-media-buttons .add_media span.wp-media-buttons-icon:before{content:"\f104"}.mce-content-body dl.wp-caption{max-width:100%}.quicktags-toolbar{padding:3px;position:relative;border-bottom:1px solid #dcdcde;background:#f6f7f7;min-height:30px}.has-dfw .quicktags-toolbar{padding-left:35px}.wp-core-ui .quicktags-toolbar input.button.button-small{margin:2px}.quicktags-toolbar input[value=link]{text-decoration:underline}.quicktags-toolbar input[value=del]{text-decoration:line-through}.quicktags-toolbar input[value="i"]{font-style:italic}.quicktags-toolbar input[value="b"]{font-weight:600}.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw,.qt-dfw{position:absolute;top:0;left:0}.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw{margin:7px 0 0 7px}.qt-dfw{margin:5px 0 0 5px}.qt-fullscreen{position:static;margin:2px}@media screen and (max-width:782px){.mce-toolbar .mce-btn button,.qt-dfw{padding:6px 7px}.mce-toolbar .mce-btn-group .mce-btn.mce-primary button{padding:6px 7px 5px}.mce-toolbar .mce-btn-group .mce-btn{margin:1px}.qt-dfw{width:36px;height:34px}.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw{margin:4px 0 0 4px}.mce-toolbar .mce-colorbutton .mce-preview{right:8px;bottom:6px}.mce-window .mce-btn{padding:2px 0}.has-dfw .quicktags-toolbar,.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first{padding-left:40px}}@media screen and (min-width:782px){.wp-core-ui .quicktags-toolbar input.button.button-small{font-size:12px;min-height:26px;line-height:2}}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:100020}#wp_delgallery,#wp_delimgbtn,#wp_editgallery,#wp_editimgbtn{background-color:#f0f0f1;margin:2px;padding:2px;border:1px solid #8c8f94;border-radius:3px}#wp_delgallery:hover,#wp_delimgbtn:hover,#wp_editgallery:hover,#wp_editimgbtn:hover{border-color:#50575e;background-color:#c3c4c7}#wp-link-wrap{display:none;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);width:500px;overflow:hidden;margin-right:-250px;margin-top:-125px;position:fixed;top:50%;right:50%;z-index:100105;transition:height .2s,margin-top .2s}#wp-link-backdrop{display:none;position:fixed;top:0;right:0;left:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:100100}#wp-link{position:relative;height:100%}#wp-link-wrap{height:500px;margin-top:-250px}#wp-link-wrap .wp-link-text-field{display:none}#wp-link-wrap.has-text-field .wp-link-text-field{display:block}#link-modal-title{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;margin:0;padding:0 16px 0 36px}#wp-link-close{color:#646970;padding:0;position:absolute;top:0;left:0;width:36px;height:36px;text-align:center;background:0 0;border:none;cursor:pointer}#wp-link-close:before{font:normal 20px/36px dashicons;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:36px;height:36px;content:"\f158"}#wp-link-close:focus,#wp-link-close:hover{color:#135e96}#wp-link-close:focus{outline:0;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:2px solid transparent;outline-offset:-2px}#wp-link-wrap #link-selector{-webkit-overflow-scrolling:touch;padding:0 16px;position:absolute;top:37px;right:0;left:0;bottom:44px}#wp-link ol,#wp-link ul{list-style:none;margin:0;padding:0}#wp-link input[type=text]{box-sizing:border-box}#wp-link #link-options{padding:8px 0 12px}#wp-link p.howto{margin:3px 0}#wp-link p.howto a{text-decoration:none;color:inherit}#wp-link label input[type=text]{margin-top:5px;width:70%}#wp-link #link-options label span,#wp-link #search-panel label span.search-label{display:inline-block;width:80px;text-align:left;padding-left:5px;max-width:24%;vertical-align:middle;word-wrap:break-word}#wp-link .link-search-field{width:250px;max-width:70%}#wp-link .link-search-wrapper{margin:5px 0 9px;display:block;overflow:hidden}#wp-link .link-search-wrapper .spinner{float:none;margin:-3px 4px 0 0}#wp-link .link-target{padding:3px 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#wp-link .link-target label{max-width:70%}#wp-link .query-results{border:1px #dcdcde solid;margin:0 0 12px;background:#fff;overflow:auto;position:absolute;right:16px;left:16px;bottom:0;top:166px}.has-text-field #wp-link .query-results{top:210px}#wp-link li{clear:both;margin-bottom:0;border-bottom:1px solid #f0f0f1;color:#2c3338;padding:4px 10px 4px 6px;cursor:pointer;position:relative}#wp-link .query-notice{padding:0;border-bottom:1px solid #dcdcde;background-color:#fff;color:#000}#wp-link .query-notice .query-notice-default,#wp-link .query-notice .query-notice-hint{display:block;padding:6px;border-right:4px solid #72aee6}#wp-link .unselectable.no-matches-found{padding:0;border-bottom:1px solid #dcdcde;background-color:#f6f7f7}#wp-link .no-matches-found .item-title{display:block;padding:6px;border-right:4px solid #d63638}#wp-link .query-results em{font-style:normal}#wp-link li:hover{background:#f0f6fc;color:#101517}#wp-link li.unselectable{border-bottom:1px solid #dcdcde}#wp-link li.unselectable:hover{background:#fff;cursor:auto;color:#2c3338}#wp-link li.selected{background:#dcdcde;color:#2c3338}#wp-link li.selected .item-title{font-weight:600}#wp-link li:last-child{border:none}#wp-link .item-title{display:inline-block;width:80%;width:calc(100% - 68px);word-wrap:break-word}#wp-link .item-info{text-transform:uppercase;color:#646970;font-size:11px;position:absolute;left:5px;top:5px}#wp-link .river-waiting{display:none;padding:10px 0}#wp-link .submitbox{padding:8px 16px;background:#fff;border-top:1px solid #dcdcde;position:absolute;bottom:0;right:0;left:0}#wp-link-cancel{line-height:1.92307692;float:right}#wp-link-update{line-height:1.76923076;float:left}#wp-link-submit{float:left}@media screen and (max-width:782px){#wp-link-wrap{margin-top:-140px}#wp-link-wrap .query-results{top:195px}#wp-link-wrap.has-text-field .query-results{top:235px}#link-selector{padding:0 16px 60px}#wp-link-wrap #link-selector{bottom:52px}#wp-link-cancel{line-height:2.46153846}#wp-link .link-target{padding-top:10px}#wp-link .submitbox .button{margin-bottom:0}}@media screen and (max-width:520px){#wp-link-wrap{width:auto;margin-right:0;right:10px;left:10px;max-width:500px}}@media screen and (max-height:520px){#wp-link-wrap{transition:none;height:auto;margin-top:0;top:10px;bottom:10px}#link-selector{overflow:auto}#search-panel .query-results{position:static}}@media screen and (max-height:290px){#wp-link-wrap{height:auto;margin-top:0;top:10px;bottom:10px}#link-selector{overflow:auto;height:calc(100% - 92px);padding-bottom:2px}#search-panel .query-results{position:static}}div.wp-link-preview{float:right;margin:5px;max-width:694px;overflow:hidden;text-overflow:ellipsis}div.wp-link-preview a{color:#2271b1;text-decoration:underline;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out;cursor:pointer}div.wp-link-preview a.wplink-url-error{color:#d63638}div.wp-link-input{float:right;margin:2px;max-width:694px}div.wp-link-input input{width:300px;padding:3px;box-sizing:border-box;line-height:1.28571429;min-height:26px}.mce-toolbar div.wp-link-input~.mce-btn,.mce-toolbar div.wp-link-preview~.mce-btn{margin:2px 1px}.mce-inline-toolbar-grp .mce-btn-group .mce-btn:last-child{margin-left:2px}.ui-autocomplete.wplink-autocomplete{z-index:100110;max-height:200px;overflow-y:auto;padding:0;margin:0;list-style:none;position:absolute;border:1px solid #4f94d4;box-shadow:0 1px 2px rgba(79,148,212,.8);background-color:#fff}.ui-autocomplete.wplink-autocomplete li{margin-bottom:0;padding:4px 10px;clear:both;white-space:normal;text-align:right}.ui-autocomplete.wplink-autocomplete li .wp-editor-float-right{float:left}.ui-autocomplete.wplink-autocomplete li.ui-state-focus{background-color:#dcdcde;cursor:pointer}@media screen and (max-width:782px){div.wp-link-input,div.wp-link-preview{max-width:70%;max-width:calc(100% - 86px)}div.wp-link-preview{margin:8px 5px 8px 0}div.wp-link-input{width:300px}div.wp-link-input input{width:100%;font-size:16px;padding:5px}}.mce-fullscreen{z-index:100010}.rtl .quicktags-toolbar input,.rtl .wp-switch-editor{font-family:Tahoma,sans-serif}.mce-rtl .mce-flow-layout .mce-flow-layout-item>div{direction:rtl}.mce-rtl .mce-listbox i.mce-caret{left:6px}html:lang(he-il) .rtl .quicktags-toolbar input,html:lang(he-il) .rtl .wp-switch-editor{font-family:Arial,sans-serif}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-media-buttons .add_media span.wp-media-buttons-icon{background:0 0}}
\ No newline at end of file
diff --git a/static/wp-includes/css/editor.css b/static/wp-includes/css/editor.css
new file mode 100755
index 0000000..fac059c
--- /dev/null
+++ b/static/wp-includes/css/editor.css
@@ -0,0 +1,1878 @@
+/*------------------------------------------------------------------------------
+ TinyMCE and Quicklinks toolbars
+------------------------------------------------------------------------------*/
+
+/* TinyMCE widgets/containers */
+
+.mce-tinymce {
+ box-shadow: none;
+}
+
+.mce-container,
+.mce-container *,
+.mce-widget,
+.mce-widget * {
+ color: inherit;
+ font-family: inherit;
+}
+
+.mce-container .mce-monospace,
+.mce-widget .mce-monospace {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ line-height: 150%;
+}
+
+/* TinyMCE windows */
+#mce-modal-block,
+#mce-modal-block.mce-fade {
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ transition: none;
+ background: #000;
+}
+
+.mce-window {
+ border-radius: 0;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+ -webkit-font-smoothing: subpixel-antialiased;
+ transition: none;
+}
+
+.mce-window .mce-container-body.mce-abs-layout {
+ overflow: visible;
+}
+
+.mce-window .mce-window-head {
+ background: #fff;
+ border-bottom: 1px solid #dcdcde;
+ padding: 0;
+ min-height: 36px;
+}
+
+.mce-window .mce-window-head .mce-title {
+ color: #3c434a;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 36px;
+ margin: 0;
+ padding: 0 36px 0 16px;
+}
+
+.mce-window .mce-window-head .mce-close,
+.mce-window-head .mce-close .mce-i-remove {
+ color: transparent;
+ top: 0;
+ right: 0;
+ width: 36px;
+ height: 36px;
+ padding: 0;
+ line-height: 36px;
+ text-align: center;
+}
+
+.mce-window-head .mce-close .mce-i-remove:before {
+ font: normal 20px/36px dashicons;
+ text-align: center;
+ color: #646970;
+ width: 36px;
+ height: 36px;
+ display: block;
+}
+
+.mce-window-head .mce-close:hover .mce-i-remove:before,
+.mce-window-head .mce-close:focus .mce-i-remove:before {
+ color: #135e96;
+}
+
+.mce-window-head .mce-close:focus .mce-i-remove,
+div.mce-tab:focus {
+ box-shadow: 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+}
+
+.mce-window .mce-window-head .mce-dragh {
+ width: calc( 100% - 36px );
+}
+
+.mce-window .mce-foot {
+ border-top: 1px solid #dcdcde;
+}
+
+.mce-textbox,
+.mce-checkbox i.mce-i-checkbox,
+#wp-link .query-results {
+ border: 1px solid #dcdcde;
+ border-radius: 0;
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
+ transition: .05s all ease-in-out;
+}
+
+.mce-textbox:focus,
+.mce-textbox.mce-focus,
+.mce-checkbox:focus i.mce-i-checkbox,
+#wp-link .query-results:focus {
+ border-color: #4f94d4;
+ box-shadow: 0 0 2px rgba(79, 148, 212, 0.8);
+}
+
+.mce-window .mce-wp-help {
+ height: 360px;
+ width: 460px;
+ overflow: auto;
+}
+
+.mce-window .mce-wp-help * {
+ box-sizing: border-box;
+}
+
+.mce-window .mce-wp-help > .mce-container-body {
+ width: auto !important;
+}
+
+.mce-window .wp-editor-help {
+ padding: 10px 10px 0 20px;
+}
+
+.mce-window .wp-editor-help h2,
+.mce-window .wp-editor-help p {
+ margin: 8px 0;
+ white-space: normal;
+ font-size: 14px;
+ font-weight: 400;
+}
+
+.mce-window .wp-editor-help table {
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+.mce-window .wp-editor-help table.wp-help-single {
+ margin: 0 8px 20px;
+}
+
+.mce-window .wp-editor-help table.fixed {
+ table-layout: fixed;
+}
+
+.mce-window .wp-editor-help table.fixed th:nth-child(odd),
+.mce-window .wp-editor-help table.fixed td:nth-child(odd) {
+ width: 12%;
+}
+
+.mce-window .wp-editor-help table.fixed th:nth-child(even),
+.mce-window .wp-editor-help table.fixed td:nth-child(even) {
+ width: 38%;
+}
+
+.mce-window .wp-editor-help table.fixed th:nth-child(odd) {
+ padding: 5px 0 0;
+}
+
+.mce-window .wp-editor-help td,
+.mce-window .wp-editor-help th {
+ font-size: 13px;
+ padding: 5px;
+ vertical-align: middle;
+ word-wrap: break-word;
+ white-space: normal;
+}
+
+.mce-window .wp-editor-help th {
+ font-weight: 600;
+ padding-bottom: 0;
+}
+
+.mce-window .wp-editor-help kbd {
+ font-family: monospace;
+ padding: 2px 7px 3px;
+ font-weight: 600;
+ margin: 0;
+ background: #f0f0f1;
+ background: rgba(0, 0, 0, 0.08);
+}
+
+.mce-window .wp-help-th-center td:nth-child(odd),
+.mce-window .wp-help-th-center th:nth-child(odd) {
+ text-align: center;
+}
+
+/* TinyMCE menus */
+.mce-menu,
+.mce-floatpanel.mce-popover {
+ border-color: rgba(0, 0, 0, 0.15);
+ border-radius: 0;
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
+}
+
+.mce-menu,
+.mce-floatpanel.mce-popover.mce-bottom {
+ margin-top: 2px;
+}
+
+.mce-floatpanel .mce-arrow {
+ display: none;
+}
+
+.mce-menu .mce-container-body {
+ min-width: 160px;
+}
+
+.mce-menu-item {
+ border: none;
+ margin-bottom: 2px;
+ padding: 6px 15px 6px 12px;
+}
+
+.mce-menu-has-icons i.mce-ico {
+ line-height: 20px;
+}
+
+/* TinyMCE panel */
+div.mce-panel {
+ border: 0;
+ background: #fff;
+}
+
+.mce-panel.mce-menu {
+ border: 1px solid #dcdcde;
+}
+
+div.mce-tab {
+ line-height: 13px;
+}
+
+/* TinyMCE toolbars */
+div.mce-toolbar-grp {
+ border-bottom: 1px solid #dcdcde;
+ background: #f6f7f7;
+ padding: 0;
+ position: relative;
+}
+
+div.mce-inline-toolbar-grp {
+ border: 1px solid #a7aaad;
+ border-radius: 2px;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
+ box-sizing: border-box;
+ margin-bottom: 8px;
+ position: absolute;
+ -webkit-user-select: none;
+ user-select: none;
+ max-width: 98%;
+ z-index: 100100; /* Same as the other TinyMCE "panels" */
+}
+
+div.mce-inline-toolbar-grp > div.mce-stack-layout {
+ padding: 1px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-up {
+ margin-bottom: 0;
+ margin-top: 8px;
+}
+
+div.mce-inline-toolbar-grp:before,
+div.mce-inline-toolbar-grp:after {
+ position: absolute;
+ left: 50%;
+ display: block;
+ width: 0;
+ height: 0;
+ border-style: solid;
+ border-color: transparent;
+ content: "";
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-up:before {
+ top: -9px;
+ border-bottom-color: #a7aaad;
+ border-width: 0 9px 9px;
+ margin-left: -9px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-down:before {
+ bottom: -9px;
+ border-top-color: #a7aaad;
+ border-width: 9px 9px 0;
+ margin-left: -9px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-up:after {
+ top: -8px;
+ border-bottom-color: #f6f7f7;
+ border-width: 0 8px 8px;
+ margin-left: -8px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-down:after {
+ bottom: -8px;
+ border-top-color: #f6f7f7;
+ border-width: 8px 8px 0;
+ margin-left: -8px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-left:before,
+div.mce-inline-toolbar-grp.mce-arrow-left:after {
+ margin: 0;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-left:before {
+ left: 20px;
+}
+div.mce-inline-toolbar-grp.mce-arrow-left:after {
+ left: 21px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-right:before,
+div.mce-inline-toolbar-grp.mce-arrow-right:after {
+ left: auto;
+ margin: 0;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-right:before {
+ right: 20px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-right:after {
+ right: 21px;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-full {
+ right: 0;
+}
+
+div.mce-inline-toolbar-grp.mce-arrow-full > div {
+ width: 100%;
+ overflow-x: auto;
+}
+
+div.mce-toolbar-grp > div {
+ padding: 3px;
+}
+
+.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first {
+ padding-right: 32px;
+}
+
+.mce-toolbar .mce-btn-group {
+ margin: 0;
+}
+
+/* Classic block hide/show toolbars */
+.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) {
+ display: none;
+}
+
+.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar {
+ display: block;
+}
+
+div.mce-statusbar {
+ border-top: 1px solid #dcdcde;
+}
+
+div.mce-path {
+ padding: 2px 10px;
+ margin: 0;
+}
+
+.mce-path,
+.mce-path-item,
+.mce-path .mce-divider {
+ font-size: 12px;
+}
+
+.mce-toolbar .mce-btn,
+.qt-dfw {
+ border-color: transparent;
+ background: transparent;
+ box-shadow: none;
+ text-shadow: none;
+ cursor: pointer;
+}
+
+.mce-btn .mce-txt {
+ direction: inherit;
+ text-align: inherit;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn,
+.qt-dfw {
+ border: 1px solid transparent;
+ margin: 2px;
+ border-radius: 2px;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn:hover,
+.mce-toolbar .mce-btn-group .mce-btn:focus,
+.qt-dfw:hover,
+.qt-dfw:focus {
+ background: #f6f7f7;
+ border-color: #50575e;
+ color: #1d2327;
+ box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
+ outline: none;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-active,
+.mce-toolbar .mce-btn-group .mce-btn:active,
+.qt-dfw.active {
+ background: #f0f0f1;
+ border-color: #50575e;
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.3);
+}
+
+.mce-btn.mce-active,
+.mce-btn.mce-active button,
+.mce-btn.mce-active:hover button,
+.mce-btn.mce-active i,
+.mce-btn.mce-active:hover i {
+ color: inherit;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-active:focus {
+ border-color: #1d2327;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
+ color: #a7aaad;
+ background: none;
+ border-color: #dcdcde;
+ text-shadow: 0 1px 0 #fff;
+ box-shadow: none;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
+ border-color: #50575e;
+}
+
+.mce-toolbar .mce-btn-group .mce-first,
+.mce-toolbar .mce-btn-group .mce-last {
+ border-color: transparent;
+}
+
+.mce-toolbar .mce-btn button,
+.qt-dfw {
+ padding: 2px 3px;
+ line-height: normal;
+}
+
+.mce-toolbar .mce-listbox button {
+ font-size: 13px;
+ line-height: 1.53846153;
+ padding-left: 6px;
+ padding-right: 20px;
+}
+
+.mce-toolbar .mce-btn i {
+ text-shadow: none;
+}
+
+.mce-toolbar .mce-btn-group > div {
+ white-space: normal;
+}
+
+.mce-toolbar .mce-colorbutton .mce-open {
+ border-right: 0;
+}
+
+.mce-toolbar .mce-colorbutton .mce-preview {
+ margin: 0;
+ padding: 0;
+ top: auto;
+ bottom: 2px;
+ left: 3px;
+ height: 3px;
+ width: 20px;
+ background: #50575e;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary {
+ min-width: 0;
+ background: #3582c4;
+ border-color: #2271b1 #135e96 #135e96;
+ box-shadow: 0 1px 0 #135e96;
+ color: #fff;
+ text-decoration: none;
+ text-shadow: none;
+}
+
+/* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
+ padding: 2px 3px 1px;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico {
+ color: #fff;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
+ background: #4f94d4;
+ border-color: #135e96;
+ color: #fff;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
+ box-shadow: 0 0 1px 1px #72aee6;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active {
+ background: #2271b1;
+ border-color: #135e96;
+ box-shadow: inset 0 2px 0 #135e96;
+}
+
+/* mce listbox */
+.mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
+ border-radius: 0;
+ direction: ltr;
+ background: #fff;
+ border: 1px solid #dcdcde;
+ box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, 0.2);
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover,
+.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:focus {
+ border-color: #c3c4c7;
+}
+
+.mce-panel .mce-btn i.mce-caret {
+ border-top: 6px solid #50575e;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.mce-listbox i.mce-caret {
+ right: 4px;
+}
+
+.mce-panel .mce-btn:hover i.mce-caret,
+.mce-panel .mce-btn:focus i.mce-caret {
+ border-top-color: #1d2327;
+}
+
+.mce-panel .mce-active i.mce-caret {
+ border-top: 0;
+ border-bottom: 6px solid #1d2327;
+ margin-top: 7px;
+}
+
+.mce-listbox.mce-active i.mce-caret {
+ margin-top: -3px;
+}
+
+.mce-toolbar .mce-splitbtn:hover .mce-open {
+ border-right-color: transparent;
+}
+
+.mce-toolbar .mce-splitbtn .mce-open.mce-active {
+ background: transparent;
+ outline: none;
+}
+
+.mce-menu .mce-menu-item:hover,
+.mce-menu .mce-menu-item.mce-selected,
+.mce-menu .mce-menu-item:focus,
+.mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,
+.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview {
+ background: #2271b1; /* See color scheme. */
+ color: #fff;
+}
+
+.mce-menu .mce-menu-item:hover .mce-caret,
+.mce-menu .mce-menu-item:focus .mce-caret,
+.mce-menu .mce-menu-item.mce-selected .mce-caret {
+ border-left-color: #fff;
+}
+
+/* rtl:ignore */
+.rtl .mce-menu .mce-menu-item:hover .mce-caret,
+.rtl .mce-menu .mce-menu-item:focus .mce-caret,
+.rtl .mce-menu .mce-menu-item.mce-selected .mce-caret {
+ border-left-color: inherit;
+ border-right-color: #fff;
+}
+
+.mce-menu .mce-menu-item:hover .mce-text,
+.mce-menu .mce-menu-item:focus .mce-text,
+.mce-menu .mce-menu-item:hover .mce-ico,
+.mce-menu .mce-menu-item:focus .mce-ico,
+.mce-menu .mce-menu-item.mce-selected .mce-text,
+.mce-menu .mce-menu-item.mce-selected .mce-ico,
+.mce-menu .mce-menu-item:hover .mce-menu-shortcut,
+.mce-menu .mce-menu-item:focus .mce-menu-shortcut,
+.mce-menu .mce-menu-item.mce-active .mce-menu-shortcut,
+.mce-menu .mce-menu-item.mce-disabled:hover .mce-text,
+.mce-menu .mce-menu-item.mce-disabled:hover .mce-ico {
+ color: inherit;
+}
+
+.mce-menu .mce-menu-item.mce-disabled {
+ cursor: default;
+}
+
+.mce-menu .mce-menu-item.mce-disabled:hover {
+ background: #c3c4c7;
+}
+
+/* Menubar */
+div.mce-menubar {
+ border-color: #dcdcde;
+ background: #fff;
+ border-width: 0 0 1px;
+}
+
+.mce-menubar .mce-menubtn:hover,
+.mce-menubar .mce-menubtn.mce-active,
+.mce-menubar .mce-menubtn:focus {
+ border-color: transparent;
+ background: transparent;
+}
+
+.mce-menubar .mce-menubtn:focus {
+ color: #043959;
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+}
+
+div.mce-menu .mce-menu-item-sep,
+.mce-menu-item-sep:hover {
+ border-bottom: 1px solid #dcdcde;
+ height: 0;
+ margin: 5px 0;
+}
+
+.mce-menubtn span {
+ margin-right: 0;
+ padding-left: 3px;
+}
+
+.mce-menu-has-icons i.mce-ico:before {
+ margin-left: -2px;
+}
+
+/* Keyboard shortcuts position */
+.mce-menu.mce-menu-align .mce-menu-item-normal {
+ position: relative;
+}
+
+.mce-menu.mce-menu-align .mce-menu-shortcut {
+ bottom: 0.6em;
+ font-size: 0.9em;
+}
+
+/* Buttons in modals */
+.mce-primary button,
+.mce-primary button i {
+ text-align: center;
+ color: #fff;
+ text-shadow: none;
+ padding: 0;
+ line-height: 1.85714285;
+}
+
+.mce-window .mce-btn {
+ color: #50575e;
+ background: #f6f7f7;
+ text-decoration: none;
+ font-size: 13px;
+ line-height: 26px;
+ height: 28px;
+ margin: 0;
+ padding: 0;
+ cursor: pointer;
+ border: 1px solid #c3c4c7;
+ -webkit-appearance: none;
+ border-radius: 3px;
+ white-space: nowrap;
+ box-shadow: 0 1px 0 #c3c4c7;
+}
+
+/* Remove the dotted border on :focus and the extra padding in Firefox */
+.mce-window .mce-btn::-moz-focus-inner {
+ border-width: 0;
+ border-style: none;
+ padding: 0;
+}
+
+.mce-window .mce-btn:hover,
+.mce-window .mce-btn:focus {
+ background: #f6f7f7;
+ border-color: #8c8f94;
+ color: #1d2327;
+}
+
+.mce-window .mce-btn:focus {
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+}
+
+.mce-window .mce-btn:active {
+ background: #f0f0f1;
+ border-color: #8c8f94;
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ transform: translateY(1px);
+}
+
+.mce-window .mce-btn.mce-disabled {
+ color: #a7aaad !important;
+ border-color: #dcdcde !important;
+ background: #f6f7f7 !important;
+ box-shadow: none !important;
+ text-shadow: 0 1px 0 #fff !important;
+ cursor: default;
+ transform: none !important;
+}
+
+.mce-window .mce-btn.mce-primary {
+ background: #3582c4;
+ border-color: #2271b1 #135e96 #135e96;
+ box-shadow: 0 1px 0 #135e96;
+ color: #fff;
+ text-decoration: none;
+ text-shadow: 0 -1px 1px #135e96,
+ 1px 0 1px #135e96,
+ 0 1px 1px #135e96,
+ -1px 0 1px #135e96;
+}
+
+.mce-window .mce-btn.mce-primary:hover,
+.mce-window .mce-btn.mce-primary:focus {
+ background: #4f94d4;
+ border-color: #135e96;
+ color: #fff;
+}
+
+.mce-window .mce-btn.mce-primary:focus {
+ box-shadow: 0 1px 0 #2271b1,
+ 0 0 2px 1px #72aee6;
+}
+
+.mce-window .mce-btn.mce-primary:active {
+ background: #2271b1;
+ border-color: #135e96;
+ box-shadow: inset 0 2px 0 #135e96;
+ vertical-align: top;
+}
+
+.mce-window .mce-btn.mce-primary.mce-disabled {
+ color: #9ec2e6 !important;
+ background: #4f94d4 !important;
+ border-color: #3582c4 !important;
+ box-shadow: none !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
+ cursor: default;
+}
+
+.mce-menubtn.mce-fixed-width span {
+ overflow-x: hidden;
+ text-overflow: ellipsis;
+ width: 82px;
+}
+
+/* Charmap modal */
+.mce-charmap {
+ margin: 3px;
+}
+
+.mce-charmap td {
+ padding: 0;
+ border-color: #dcdcde;
+ cursor: pointer;
+}
+
+.mce-charmap td:hover {
+ background: #f6f7f7;
+}
+
+.mce-charmap td div {
+ width: 18px;
+ height: 22px;
+ line-height: 1.57142857;
+}
+
+/* TinyMCE tooltips */
+.mce-tooltip {
+ margin-top: 2px;
+}
+
+.mce-tooltip-inner {
+ border-radius: 3px;
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
+ color: #fff;
+ font-size: 12px;
+}
+
+/* TinyMCE icons */
+.mce-ico {
+ font-family: tinymce, Arial;
+}
+
+.mce-btn-small .mce-ico {
+ font-family: tinymce-small, Arial;
+}
+
+.mce-toolbar .mce-ico {
+ color: #50575e;
+ line-height: 1;
+ width: 20px;
+ height: 20px;
+ text-align: center;
+ text-shadow: none;
+ margin: 0;
+ padding: 0;
+}
+
+.qt-dfw {
+ color: #50575e;
+ line-height: 1;
+ width: 28px;
+ height: 26px;
+ text-align: center;
+ text-shadow: none;
+}
+
+.mce-toolbar .mce-btn .mce-open {
+ line-height: 20px;
+}
+
+.mce-toolbar .mce-btn:hover .mce-open,
+.mce-toolbar .mce-btn:focus .mce-open,
+.mce-toolbar .mce-btn.mce-active .mce-open {
+ border-left-color: #1d2327;
+}
+
+div.mce-notification {
+ left: 10% !important;
+ right: 10%;
+}
+
+.mce-notification button.mce-close {
+ right: 6px;
+ top: 3px;
+ font-weight: 400;
+ color: #50575e;
+}
+
+.mce-notification button.mce-close:hover,
+.mce-notification button.mce-close:focus {
+ color: #000;
+}
+
+i.mce-i-bold,
+i.mce-i-italic,
+i.mce-i-bullist,
+i.mce-i-numlist,
+i.mce-i-blockquote,
+i.mce-i-alignleft,
+i.mce-i-aligncenter,
+i.mce-i-alignright,
+i.mce-i-link,
+i.mce-i-unlink,
+i.mce-i-wp_more,
+i.mce-i-strikethrough,
+i.mce-i-spellchecker,
+i.mce-i-fullscreen,
+i.mce-i-wp_fullscreen,
+i.mce-i-dfw,
+i.mce-i-wp_adv,
+i.mce-i-underline,
+i.mce-i-alignjustify,
+i.mce-i-forecolor,
+i.mce-i-backcolor,
+i.mce-i-pastetext,
+i.mce-i-pasteword,
+i.mce-i-removeformat,
+i.mce-i-charmap,
+i.mce-i-outdent,
+i.mce-i-indent,
+i.mce-i-undo,
+i.mce-i-redo,
+i.mce-i-help,
+i.mce-i-wp_help,
+i.mce-i-wp-media-library,
+i.mce-i-ltr,
+i.mce-i-wp_page,
+i.mce-i-hr,
+i.mce-i-wp_code,
+i.mce-i-dashicon,
+i.mce-i-remove {
+ font: normal 20px/1 dashicons;
+ padding: 0;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ margin-left: -2px;
+ padding-right: 2px;
+}
+
+.qt-dfw {
+ font: normal 20px/1 dashicons;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+i.mce-i-bold:before {
+ content: "\f200";
+}
+
+i.mce-i-italic:before {
+ content: "\f201";
+}
+
+i.mce-i-bullist:before {
+ content: "\f203";
+}
+
+i.mce-i-numlist:before {
+ content: "\f204";
+}
+
+i.mce-i-blockquote:before {
+ content: "\f205";
+}
+
+i.mce-i-alignleft:before {
+ content: "\f206";
+}
+
+i.mce-i-aligncenter:before {
+ content: "\f207";
+}
+
+i.mce-i-alignright:before {
+ content: "\f208";
+}
+
+i.mce-i-link:before {
+ content: "\f103";
+}
+
+i.mce-i-unlink:before {
+ content: "\f225";
+}
+
+i.mce-i-wp_more:before {
+ content: "\f209";
+}
+
+i.mce-i-strikethrough:before {
+ content: "\f224";
+}
+
+i.mce-i-spellchecker:before {
+ content: "\f210";
+}
+
+i.mce-i-fullscreen:before,
+i.mce-i-wp_fullscreen:before,
+i.mce-i-dfw:before,
+.qt-dfw:before {
+ content: "\f211";
+}
+
+i.mce-i-wp_adv:before {
+ content: "\f212";
+}
+
+i.mce-i-underline:before {
+ content: "\f213";
+}
+
+i.mce-i-alignjustify:before {
+ content: "\f214";
+}
+
+i.mce-i-forecolor:before,
+i.mce-i-backcolor:before {
+ content: "\f215";
+}
+
+i.mce-i-pastetext:before {
+ content: "\f217";
+}
+
+i.mce-i-removeformat:before {
+ content: "\f218";
+}
+
+i.mce-i-charmap:before {
+ content: "\f220";
+}
+
+i.mce-i-outdent:before {
+ content: "\f221";
+}
+
+i.mce-i-indent:before {
+ content: "\f222";
+}
+
+i.mce-i-undo:before {
+ content: "\f171";
+}
+
+i.mce-i-redo:before {
+ content: "\f172";
+}
+
+i.mce-i-help:before,
+i.mce-i-wp_help:before {
+ content: "\f223";
+}
+
+i.mce-i-wp-media-library:before {
+ content: "\f104";
+}
+
+i.mce-i-ltr:before {
+ content: "\f320";
+}
+
+i.mce-i-wp_page:before {
+ content: "\f105";
+}
+
+i.mce-i-hr:before {
+ content: "\f460";
+}
+
+i.mce-i-remove:before {
+ content: "\f158";
+}
+
+i.mce-i-wp_code:before {
+ content: "\f475";
+}
+
+/* RTL button icons */
+.rtl i.mce-i-outdent:before {
+ content: "\f222";
+}
+
+.rtl i.mce-i-indent:before {
+ content: "\f221";
+}
+
+/* Editors */
+.wp-editor-wrap {
+ position: relative;
+}
+
+.wp-editor-tools {
+ position: relative;
+ z-index: 1;
+}
+
+.wp-editor-tools:after {
+ clear: both;
+ content: "";
+ display: table;
+}
+
+.wp-editor-container {
+ clear: both;
+ border: 1px solid #dcdcde;
+}
+
+.wp-editor-area {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ padding: 10px;
+ margin: 1px 0 0;
+ line-height: 150%;
+ border: 0;
+ outline: none;
+ display: block;
+ resize: vertical;
+ box-sizing: border-box;
+}
+
+.rtl .wp-editor-area {
+ font-family: Tahoma, Monaco, monospace;
+}
+
+.locale-he-il .wp-editor-area {
+ font-family: Arial, Monaco, monospace;
+}
+
+.wp-editor-container textarea.wp-editor-area {
+ width: 100%;
+ margin: 0;
+ box-shadow: none;
+}
+
+.wp-editor-tabs {
+ float: right;
+}
+
+.wp-switch-editor {
+ float: left;
+ box-sizing: content-box;
+ position: relative;
+ top: 1px;
+ background: #f0f0f1;
+ color: #646970;
+ cursor: pointer;
+ font-size: 13px;
+ line-height: 1.46153846;
+ height: 20px;
+ margin: 5px 0 0 5px;
+ padding: 3px 8px 4px;
+ border: 1px solid #dcdcde;
+}
+
+.wp-switch-editor:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ outline: none;
+ color: #1d2327;
+}
+
+.wp-switch-editor:active,
+.html-active .switch-html:focus,
+.tmce-active .switch-tmce:focus {
+ box-shadow: none;
+}
+
+.wp-switch-editor:active {
+ background-color: #f6f7f7;
+ box-shadow: none;
+}
+
+.js .tmce-active .wp-editor-area {
+ color: #fff;
+}
+
+.tmce-active .quicktags-toolbar {
+ display: none;
+}
+
+.tmce-active .switch-tmce,
+.html-active .switch-html {
+ background: #f6f7f7;
+ color: #50575e;
+ border-bottom-color: #f6f7f7;
+}
+
+.wp-media-buttons {
+ float: left;
+}
+
+.wp-media-buttons .button {
+ margin-right: 5px;
+ margin-bottom: 4px;
+ padding-left: 7px;
+ padding-right: 7px;
+}
+
+.wp-media-buttons .button:active {
+ position: relative;
+ top: 1px;
+ margin-top: -1px;
+ margin-bottom: 1px;
+}
+
+.wp-media-buttons .insert-media {
+ padding-left: 5px;
+}
+
+.wp-media-buttons a {
+ text-decoration: none;
+ color: #3c434a;
+ font-size: 12px;
+}
+
+.wp-media-buttons img {
+ padding: 0 4px;
+ vertical-align: middle;
+}
+
+.wp-media-buttons span.wp-media-buttons-icon {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ line-height: 1;
+ vertical-align: middle;
+ margin: 0 2px;
+}
+
+.wp-media-buttons .add_media span.wp-media-buttons-icon {
+ background: none;
+}
+
+.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
+ font: normal 18px/1 dashicons;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
+ content: "\f104";
+}
+
+.mce-content-body dl.wp-caption {
+ max-width: 100%;
+}
+
+/* Quicktags */
+.quicktags-toolbar {
+ padding: 3px;
+ position: relative;
+ border-bottom: 1px solid #dcdcde;
+ background: #f6f7f7;
+ min-height: 30px;
+}
+
+.has-dfw .quicktags-toolbar {
+ padding-right: 35px;
+}
+
+.wp-core-ui .quicktags-toolbar input.button.button-small {
+ margin: 2px;
+}
+
+.quicktags-toolbar input[value="link"] {
+ text-decoration: underline;
+}
+
+.quicktags-toolbar input[value="del"] {
+ text-decoration: line-through;
+}
+
+.quicktags-toolbar input[value="i"] {
+ font-style: italic;
+}
+
+.quicktags-toolbar input[value="b"] {
+ font-weight: 600;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw,
+.qt-dfw {
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+
+.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw {
+ margin: 7px 7px 0 0;
+}
+
+.qt-dfw {
+ margin: 5px 5px 0 0;
+}
+
+.qt-fullscreen {
+ position: static;
+ margin: 2px;
+}
+
+@media screen and (max-width: 782px) {
+ .mce-toolbar .mce-btn button,
+ .qt-dfw {
+ padding: 6px 7px;
+ }
+
+ /* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
+ .mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
+ padding: 6px 7px 5px;
+ }
+
+ .mce-toolbar .mce-btn-group .mce-btn {
+ margin: 1px;
+ }
+
+ .qt-dfw {
+ width: 36px;
+ height: 34px;
+ }
+
+ .mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw {
+ margin: 4px 4px 0 0;
+ }
+
+ .mce-toolbar .mce-colorbutton .mce-preview {
+ left: 8px;
+ bottom: 6px;
+ }
+
+ .mce-window .mce-btn {
+ padding: 2px 0;
+ }
+
+ .has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first,
+ .has-dfw .quicktags-toolbar {
+ padding-right: 40px;
+ }
+}
+
+@media screen and (min-width: 782px) {
+ .wp-core-ui .quicktags-toolbar input.button.button-small {
+ /* .button-small is normally 11px, but a bit too small for these buttons. */
+ font-size: 12px;
+ min-height: 26px;
+ line-height: 2;
+ }
+}
+
+#wp_editbtns,
+#wp_gallerybtns {
+ padding: 2px;
+ position: absolute;
+ display: none;
+ z-index: 100020;
+}
+
+#wp_editimgbtn,
+#wp_delimgbtn,
+#wp_editgallery,
+#wp_delgallery {
+ background-color: #f0f0f1;
+ margin: 2px;
+ padding: 2px;
+ border: 1px solid #8c8f94;
+ border-radius: 3px;
+}
+
+#wp_editimgbtn:hover,
+#wp_delimgbtn:hover,
+#wp_editgallery:hover,
+#wp_delgallery:hover {
+ border-color: #50575e;
+ background-color: #c3c4c7;
+}
+
+/*------------------------------------------------------------------------------
+ wp-link
+------------------------------------------------------------------------------*/
+
+#wp-link-wrap {
+ display: none;
+ background-color: #fff;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+ width: 500px;
+ overflow: hidden;
+ margin-left: -250px;
+ margin-top: -125px;
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ z-index: 100105;
+ transition: height 0.2s, margin-top 0.2s;
+}
+
+#wp-link-backdrop {
+ display: none;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 100100;
+}
+
+#wp-link {
+ position: relative;
+ height: 100%;
+}
+
+#wp-link-wrap {
+ height: 500px;
+ margin-top: -250px;
+}
+
+#wp-link-wrap .wp-link-text-field {
+ display: none;
+}
+
+#wp-link-wrap.has-text-field .wp-link-text-field {
+ display: block;
+}
+
+#link-modal-title {
+ background: #fff;
+ border-bottom: 1px solid #dcdcde;
+ height: 36px;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 2;
+ margin: 0;
+ padding: 0 36px 0 16px;
+}
+
+#wp-link-close {
+ color: #646970;
+ padding: 0;
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 36px;
+ height: 36px;
+ text-align: center;
+ background: none;
+ border: none;
+ cursor: pointer;
+}
+
+#wp-link-close:before {
+ font: normal 20px/36px dashicons;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ width: 36px;
+ height: 36px;
+ content: "\f158";
+}
+
+#wp-link-close:hover,
+#wp-link-close:focus {
+ color: #135e96;
+}
+
+#wp-link-close:focus {
+ outline: none;
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+
+#wp-link-wrap #link-selector {
+ -webkit-overflow-scrolling: touch;
+ padding: 0 16px;
+ position: absolute;
+ top: 37px;
+ left: 0;
+ right: 0;
+ bottom: 44px;
+}
+
+#wp-link ol,
+#wp-link ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+#wp-link input[type="text"] {
+ box-sizing: border-box;
+}
+
+#wp-link #link-options {
+ padding: 8px 0 12px;
+}
+
+#wp-link p.howto {
+ margin: 3px 0;
+}
+
+#wp-link p.howto a {
+ text-decoration: none;
+ color: inherit;
+}
+
+#wp-link label input[type="text"] {
+ margin-top: 5px;
+ width: 70%;
+}
+
+#wp-link #link-options label span,
+#wp-link #search-panel label span.search-label {
+ display: inline-block;
+ width: 80px;
+ text-align: right;
+ padding-right: 5px;
+ max-width: 24%;
+ vertical-align: middle;
+ word-wrap: break-word;
+}
+
+#wp-link .link-search-field {
+ width: 250px;
+ max-width: 70%;
+}
+
+#wp-link .link-search-wrapper {
+ margin: 5px 0 9px;
+ display: block;
+ overflow: hidden;
+}
+
+#wp-link .link-search-wrapper .spinner {
+ float: none;
+ margin: -3px 0 0 4px;
+}
+
+#wp-link .link-target {
+ padding: 3px 0 0;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+#wp-link .link-target label {
+ max-width: 70%;
+}
+
+#wp-link .query-results {
+ border: 1px #dcdcde solid;
+ margin: 0 0 12px;
+ background: #fff;
+ overflow: auto;
+ position: absolute;
+ left: 16px;
+ right: 16px;
+ bottom: 0;
+ top: 166px;
+}
+
+.has-text-field #wp-link .query-results {
+ top: 210px;
+}
+
+#wp-link li {
+ clear: both;
+ margin-bottom: 0;
+ border-bottom: 1px solid #f0f0f1;
+ color: #2c3338;
+ padding: 4px 6px 4px 10px;
+ cursor: pointer;
+ position: relative;
+}
+
+#wp-link .query-notice {
+ padding: 0;
+ border-bottom: 1px solid #dcdcde;
+ background-color: #fff;
+ color: #000;
+}
+
+#wp-link .query-notice .query-notice-default,
+#wp-link .query-notice .query-notice-hint {
+ display: block;
+ padding: 6px;
+ border-left: 4px solid #72aee6;
+}
+
+#wp-link .unselectable.no-matches-found {
+ padding: 0;
+ border-bottom: 1px solid #dcdcde;
+ background-color: #f6f7f7;
+}
+
+#wp-link .no-matches-found .item-title {
+ display: block;
+ padding: 6px;
+ border-left: 4px solid #d63638;
+}
+
+#wp-link .query-results em {
+ font-style: normal;
+}
+
+#wp-link li:hover {
+ background: #f0f6fc;
+ color: #101517;
+}
+
+#wp-link li.unselectable {
+ border-bottom: 1px solid #dcdcde;
+}
+
+#wp-link li.unselectable:hover {
+ background: #fff;
+ cursor: auto;
+ color: #2c3338;
+}
+
+#wp-link li.selected {
+ background: #dcdcde;
+ color: #2c3338;
+}
+
+#wp-link li.selected .item-title {
+ font-weight: 600;
+}
+
+#wp-link li:last-child {
+ border: none;
+}
+
+#wp-link .item-title {
+ display: inline-block;
+ width: 80%;
+ width: calc(100% - 68px);
+ word-wrap: break-word;
+}
+
+#wp-link .item-info {
+ text-transform: uppercase;
+ color: #646970;
+ font-size: 11px;
+ position: absolute;
+ right: 5px;
+ top: 5px;
+}
+
+#wp-link .river-waiting {
+ display: none;
+ padding: 10px 0;
+}
+
+#wp-link .submitbox {
+ padding: 8px 16px;
+ background: #fff;
+ border-top: 1px solid #dcdcde;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+}
+
+#wp-link-cancel {
+ line-height: 1.92307692;
+ float: left;
+}
+
+#wp-link-update {
+ line-height: 1.76923076;
+ float: right;
+}
+
+#wp-link-submit {
+ float: right;
+}
+
+@media screen and (max-width: 782px) {
+ #wp-link-wrap {
+ margin-top: -140px;
+ }
+
+ #wp-link-wrap .query-results {
+ top: 195px;
+ }
+
+ #wp-link-wrap.has-text-field .query-results {
+ top: 235px;
+ }
+
+ #link-selector {
+ padding: 0 16px 60px;
+ }
+
+ #wp-link-wrap #link-selector {
+ bottom: 52px;
+ }
+
+ #wp-link-cancel {
+ line-height: 2.46153846;
+ }
+
+ #wp-link .link-target {
+ padding-top: 10px;
+ }
+
+ #wp-link .submitbox .button {
+ margin-bottom: 0;
+ }
+}
+
+@media screen and (max-width: 520px) {
+ #wp-link-wrap {
+ width: auto;
+ margin-left: 0;
+ left: 10px;
+ right: 10px;
+ max-width: 500px;
+ }
+}
+
+@media screen and (max-height: 520px) {
+ #wp-link-wrap {
+ transition: none;
+ height: auto;
+ margin-top: 0;
+ top: 10px;
+ bottom: 10px;
+ }
+
+ #link-selector {
+ overflow: auto;
+ }
+
+ #search-panel .query-results {
+ position: static;
+ }
+}
+
+@media screen and (max-height: 290px) {
+ #wp-link-wrap {
+ height: auto;
+ margin-top: 0;
+ top: 10px;
+ bottom: 10px;
+ }
+
+ #link-selector {
+ overflow: auto;
+ height: calc(100% - 92px);
+ padding-bottom: 2px;
+ }
+
+ #search-panel .query-results {
+ position: static;
+ }
+}
+
+div.wp-link-preview {
+ float: left;
+ margin: 5px;
+ max-width: 694px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+div.wp-link-preview a {
+ color: #2271b1;
+ text-decoration: underline;
+ transition-property: border, background, color;
+ transition-duration: .05s;
+ transition-timing-function: ease-in-out;
+ cursor: pointer;
+}
+
+div.wp-link-preview a.wplink-url-error {
+ color: #d63638;
+}
+
+div.wp-link-input {
+ float: left;
+ margin: 2px;
+ max-width: 694px;
+}
+
+div.wp-link-input input {
+ width: 300px;
+ padding: 3px;
+ box-sizing: border-box;
+ line-height: 1.28571429; /* 18px */
+ /* Override value inherited from default input fields. */
+ min-height: 26px;
+}
+
+.mce-toolbar div.wp-link-preview ~ .mce-btn,
+.mce-toolbar div.wp-link-input ~ .mce-btn {
+ margin: 2px 1px;
+}
+
+.mce-inline-toolbar-grp .mce-btn-group .mce-btn:last-child {
+ margin-right: 2px;
+}
+
+.ui-autocomplete.wplink-autocomplete {
+ z-index: 100110;
+ max-height: 200px;
+ overflow-y: auto;
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ position: absolute;
+ border: 1px solid #4f94d4;
+ box-shadow: 0 1px 2px rgba(79, 148, 212, 0.8);
+ background-color: #fff;
+}
+
+.ui-autocomplete.wplink-autocomplete li {
+ margin-bottom: 0;
+ padding: 4px 10px;
+ clear: both;
+ white-space: normal;
+ text-align: left;
+}
+
+.ui-autocomplete.wplink-autocomplete li .wp-editor-float-right {
+ float: right;
+}
+
+.ui-autocomplete.wplink-autocomplete li.ui-state-focus {
+ background-color: #dcdcde;
+ cursor: pointer;
+}
+
+@media screen and (max-width: 782px) {
+ div.wp-link-preview,
+ div.wp-link-input {
+ max-width: 70%;
+ max-width: calc(100% - 86px);
+ }
+
+ div.wp-link-preview {
+ margin: 8px 0 8px 5px;
+ }
+
+ div.wp-link-input {
+ width: 300px;
+ }
+
+ div.wp-link-input input {
+ width: 100%;
+ font-size: 16px;
+ padding: 5px;
+ }
+}
+
+/* =Overlay Body
+-------------------------------------------------------------- */
+
+.mce-fullscreen {
+ z-index: 100010;
+}
+
+/* =Localization
+-------------------------------------------------------------- */
+.rtl .wp-switch-editor,
+.rtl .quicktags-toolbar input {
+ font-family: Tahoma, sans-serif;
+}
+
+/* rtl:ignore */
+.mce-rtl .mce-flow-layout .mce-flow-layout-item > div {
+ direction: rtl;
+}
+
+/* rtl:ignore */
+.mce-rtl .mce-listbox i.mce-caret {
+ left: 6px;
+}
+
+html:lang(he-il) .rtl .wp-switch-editor,
+html:lang(he-il) .rtl .quicktags-toolbar input {
+ font-family: Arial, sans-serif;
+}
+
+/* HiDPI */
+@media print,
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ .wp-media-buttons .add_media span.wp-media-buttons-icon {
+ background: none;
+ }
+}
diff --git a/static/wp-includes/css/editor.min.css b/static/wp-includes/css/editor.min.css
new file mode 100755
index 0000000..3363502
--- /dev/null
+++ b/static/wp-includes/css/editor.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.mce-tinymce{box-shadow:none}.mce-container,.mce-container *,.mce-widget,.mce-widget *{color:inherit;font-family:inherit}.mce-container .mce-monospace,.mce-widget .mce-monospace{font-family:Consolas,Monaco,monospace;font-size:13px;line-height:150%}#mce-modal-block,#mce-modal-block.mce-fade{opacity:.7;transition:none;background:#000}.mce-window{border-radius:0;box-shadow:0 3px 6px rgba(0,0,0,.3);-webkit-font-smoothing:subpixel-antialiased;transition:none}.mce-window .mce-container-body.mce-abs-layout{overflow:visible}.mce-window .mce-window-head{background:#fff;border-bottom:1px solid #dcdcde;padding:0;min-height:36px}.mce-window .mce-window-head .mce-title{color:#3c434a;font-size:18px;font-weight:600;line-height:36px;margin:0;padding:0 36px 0 16px}.mce-window .mce-window-head .mce-close,.mce-window-head .mce-close .mce-i-remove{color:transparent;top:0;right:0;width:36px;height:36px;padding:0;line-height:36px;text-align:center}.mce-window-head .mce-close .mce-i-remove:before{font:normal 20px/36px dashicons;text-align:center;color:#646970;width:36px;height:36px;display:block}.mce-window-head .mce-close:focus .mce-i-remove:before,.mce-window-head .mce-close:hover .mce-i-remove:before{color:#135e96}.mce-window-head .mce-close:focus .mce-i-remove,div.mce-tab:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}.mce-window .mce-window-head .mce-dragh{width:calc(100% - 36px)}.mce-window .mce-foot{border-top:1px solid #dcdcde}#wp-link .query-results,.mce-checkbox i.mce-i-checkbox,.mce-textbox{border:1px solid #dcdcde;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.07);transition:.05s all ease-in-out}#wp-link .query-results:focus,.mce-checkbox:focus i.mce-i-checkbox,.mce-textbox.mce-focus,.mce-textbox:focus{border-color:#4f94d4;box-shadow:0 0 2px rgba(79,148,212,.8)}.mce-window .mce-wp-help{height:360px;width:460px;overflow:auto}.mce-window .mce-wp-help *{box-sizing:border-box}.mce-window .mce-wp-help>.mce-container-body{width:auto!important}.mce-window .wp-editor-help{padding:10px 10px 0 20px}.mce-window .wp-editor-help h2,.mce-window .wp-editor-help p{margin:8px 0;white-space:normal;font-size:14px;font-weight:400}.mce-window .wp-editor-help table{width:100%;margin-bottom:20px}.mce-window .wp-editor-help table.wp-help-single{margin:0 8px 20px}.mce-window .wp-editor-help table.fixed{table-layout:fixed}.mce-window .wp-editor-help table.fixed td:nth-child(odd),.mce-window .wp-editor-help table.fixed th:nth-child(odd){width:12%}.mce-window .wp-editor-help table.fixed td:nth-child(even),.mce-window .wp-editor-help table.fixed th:nth-child(even){width:38%}.mce-window .wp-editor-help table.fixed th:nth-child(odd){padding:5px 0 0}.mce-window .wp-editor-help td,.mce-window .wp-editor-help th{font-size:13px;padding:5px;vertical-align:middle;word-wrap:break-word;white-space:normal}.mce-window .wp-editor-help th{font-weight:600;padding-bottom:0}.mce-window .wp-editor-help kbd{font-family:monospace;padding:2px 7px 3px;font-weight:600;margin:0;background:#f0f0f1;background:rgba(0,0,0,.08)}.mce-window .wp-help-th-center td:nth-child(odd),.mce-window .wp-help-th-center th:nth-child(odd){text-align:center}.mce-floatpanel.mce-popover,.mce-menu{border-color:rgba(0,0,0,.15);border-radius:0;box-shadow:0 3px 5px rgba(0,0,0,.2)}.mce-floatpanel.mce-popover.mce-bottom,.mce-menu{margin-top:2px}.mce-floatpanel .mce-arrow{display:none}.mce-menu .mce-container-body{min-width:160px}.mce-menu-item{border:none;margin-bottom:2px;padding:6px 15px 6px 12px}.mce-menu-has-icons i.mce-ico{line-height:20px}div.mce-panel{border:0;background:#fff}.mce-panel.mce-menu{border:1px solid #dcdcde}div.mce-tab{line-height:13px}div.mce-toolbar-grp{border-bottom:1px solid #dcdcde;background:#f6f7f7;padding:0;position:relative}div.mce-inline-toolbar-grp{border:1px solid #a7aaad;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.15);box-sizing:border-box;margin-bottom:8px;position:absolute;-webkit-user-select:none;user-select:none;max-width:98%;z-index:100100}div.mce-inline-toolbar-grp>div.mce-stack-layout{padding:1px}div.mce-inline-toolbar-grp.mce-arrow-up{margin-bottom:0;margin-top:8px}div.mce-inline-toolbar-grp:after,div.mce-inline-toolbar-grp:before{position:absolute;left:50%;display:block;width:0;height:0;border-style:solid;border-color:transparent;content:""}div.mce-inline-toolbar-grp.mce-arrow-up:before{top:-9px;border-bottom-color:#a7aaad;border-width:0 9px 9px;margin-left:-9px}div.mce-inline-toolbar-grp.mce-arrow-down:before{bottom:-9px;border-top-color:#a7aaad;border-width:9px 9px 0;margin-left:-9px}div.mce-inline-toolbar-grp.mce-arrow-up:after{top:-8px;border-bottom-color:#f6f7f7;border-width:0 8px 8px;margin-left:-8px}div.mce-inline-toolbar-grp.mce-arrow-down:after{bottom:-8px;border-top-color:#f6f7f7;border-width:8px 8px 0;margin-left:-8px}div.mce-inline-toolbar-grp.mce-arrow-left:after,div.mce-inline-toolbar-grp.mce-arrow-left:before{margin:0}div.mce-inline-toolbar-grp.mce-arrow-left:before{left:20px}div.mce-inline-toolbar-grp.mce-arrow-left:after{left:21px}div.mce-inline-toolbar-grp.mce-arrow-right:after,div.mce-inline-toolbar-grp.mce-arrow-right:before{left:auto;margin:0}div.mce-inline-toolbar-grp.mce-arrow-right:before{right:20px}div.mce-inline-toolbar-grp.mce-arrow-right:after{right:21px}div.mce-inline-toolbar-grp.mce-arrow-full{right:0}div.mce-inline-toolbar-grp.mce-arrow-full>div{width:100%;overflow-x:auto}div.mce-toolbar-grp>div{padding:3px}.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first{padding-right:32px}.mce-toolbar .mce-btn-group{margin:0}.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar{display:block}div.mce-statusbar{border-top:1px solid #dcdcde}div.mce-path{padding:2px 10px;margin:0}.mce-path,.mce-path .mce-divider,.mce-path-item{font-size:12px}.mce-toolbar .mce-btn,.qt-dfw{border-color:transparent;background:0 0;box-shadow:none;text-shadow:none;cursor:pointer}.mce-btn .mce-txt{direction:inherit;text-align:inherit}.mce-toolbar .mce-btn-group .mce-btn,.qt-dfw{border:1px solid transparent;margin:2px;border-radius:2px}.mce-toolbar .mce-btn-group .mce-btn:focus,.mce-toolbar .mce-btn-group .mce-btn:hover,.qt-dfw:focus,.qt-dfw:hover{background:#f6f7f7;border-color:#50575e;color:#1d2327;box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);outline:0}.mce-toolbar .mce-btn-group .mce-btn.mce-active,.mce-toolbar .mce-btn-group .mce-btn:active,.qt-dfw.active{background:#f0f0f1;border-color:#50575e;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.3)}.mce-btn.mce-active,.mce-btn.mce-active button,.mce-btn.mce-active i,.mce-btn.mce-active:hover button,.mce-btn.mce-active:hover i{color:inherit}.mce-toolbar .mce-btn-group .mce-btn.mce-active:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover{border-color:#1d2327}.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:hover{color:#a7aaad;background:0 0;border-color:#dcdcde;text-shadow:0 1px 0 #fff;box-shadow:none}.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus{border-color:#50575e}.mce-toolbar .mce-btn-group .mce-first,.mce-toolbar .mce-btn-group .mce-last{border-color:transparent}.mce-toolbar .mce-btn button,.qt-dfw{padding:2px 3px;line-height:normal}.mce-toolbar .mce-listbox button{font-size:13px;line-height:1.53846153;padding-left:6px;padding-right:20px}.mce-toolbar .mce-btn i{text-shadow:none}.mce-toolbar .mce-btn-group>div{white-space:normal}.mce-toolbar .mce-colorbutton .mce-open{border-right:0}.mce-toolbar .mce-colorbutton .mce-preview{margin:0;padding:0;top:auto;bottom:2px;left:3px;height:3px;width:20px;background:#50575e}.mce-toolbar .mce-btn-group .mce-btn.mce-primary{min-width:0;background:#3582c4;border-color:#2271b1 #135e96 #135e96;box-shadow:0 1px 0 #135e96;color:#fff;text-decoration:none;text-shadow:none}.mce-toolbar .mce-btn-group .mce-btn.mce-primary button{padding:2px 3px 1px}.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico{color:#fff}.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-primary:hover{background:#4f94d4;border-color:#135e96;color:#fff}.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus{box-shadow:0 0 1px 1px #72aee6}.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active{background:#2271b1;border-color:#135e96;box-shadow:inset 0 2px 0 #135e96}.mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border-radius:0;direction:ltr;background:#fff;border:1px solid #dcdcde;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,.2)}.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:focus,.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover{border-color:#c3c4c7}.mce-panel .mce-btn i.mce-caret{border-top:6px solid #50575e;margin-left:2px;margin-right:2px}.mce-listbox i.mce-caret{right:4px}.mce-panel .mce-btn:focus i.mce-caret,.mce-panel .mce-btn:hover i.mce-caret{border-top-color:#1d2327}.mce-panel .mce-active i.mce-caret{border-top:0;border-bottom:6px solid #1d2327;margin-top:7px}.mce-listbox.mce-active i.mce-caret{margin-top:-3px}.mce-toolbar .mce-splitbtn:hover .mce-open{border-right-color:transparent}.mce-toolbar .mce-splitbtn .mce-open.mce-active{background:0 0;outline:0}.mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview,.mce-menu .mce-menu-item.mce-selected,.mce-menu .mce-menu-item:focus,.mce-menu .mce-menu-item:hover{background:#2271b1;color:#fff}.mce-menu .mce-menu-item.mce-selected .mce-caret,.mce-menu .mce-menu-item:focus .mce-caret,.mce-menu .mce-menu-item:hover .mce-caret{border-left-color:#fff}.rtl .mce-menu .mce-menu-item.mce-selected .mce-caret,.rtl .mce-menu .mce-menu-item:focus .mce-caret,.rtl .mce-menu .mce-menu-item:hover .mce-caret{border-left-color:inherit;border-right-color:#fff}.mce-menu .mce-menu-item.mce-active .mce-menu-shortcut,.mce-menu .mce-menu-item.mce-disabled:hover .mce-ico,.mce-menu .mce-menu-item.mce-disabled:hover .mce-text,.mce-menu .mce-menu-item.mce-selected .mce-ico,.mce-menu .mce-menu-item.mce-selected .mce-text,.mce-menu .mce-menu-item:focus .mce-ico,.mce-menu .mce-menu-item:focus .mce-menu-shortcut,.mce-menu .mce-menu-item:focus .mce-text,.mce-menu .mce-menu-item:hover .mce-ico,.mce-menu .mce-menu-item:hover .mce-menu-shortcut,.mce-menu .mce-menu-item:hover .mce-text{color:inherit}.mce-menu .mce-menu-item.mce-disabled{cursor:default}.mce-menu .mce-menu-item.mce-disabled:hover{background:#c3c4c7}div.mce-menubar{border-color:#dcdcde;background:#fff;border-width:0 0 1px}.mce-menubar .mce-menubtn.mce-active,.mce-menubar .mce-menubtn:focus,.mce-menubar .mce-menubtn:hover{border-color:transparent;background:0 0}.mce-menubar .mce-menubtn:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}.mce-menu-item-sep:hover,div.mce-menu .mce-menu-item-sep{border-bottom:1px solid #dcdcde;height:0;margin:5px 0}.mce-menubtn span{margin-right:0;padding-left:3px}.mce-menu-has-icons i.mce-ico:before{margin-left:-2px}.mce-menu.mce-menu-align .mce-menu-item-normal{position:relative}.mce-menu.mce-menu-align .mce-menu-shortcut{bottom:.6em;font-size:.9em}.mce-primary button,.mce-primary button i{text-align:center;color:#fff;text-shadow:none;padding:0;line-height:1.85714285}.mce-window .mce-btn{color:#50575e;background:#f6f7f7;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0;cursor:pointer;border:1px solid #c3c4c7;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-shadow:0 1px 0 #c3c4c7}.mce-window .mce-btn::-moz-focus-inner{border-width:0;border-style:none;padding:0}.mce-window .mce-btn:focus,.mce-window .mce-btn:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.mce-window .mce-btn:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.mce-window .mce-btn:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);transform:translateY(1px)}.mce-window .mce-btn.mce-disabled{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}.mce-window .mce-btn.mce-primary{background:#3582c4;border-color:#2271b1 #135e96 #135e96;box-shadow:0 1px 0 #135e96;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #135e96,1px 0 1px #135e96,0 1px 1px #135e96,-1px 0 1px #135e96}.mce-window .mce-btn.mce-primary:focus,.mce-window .mce-btn.mce-primary:hover{background:#4f94d4;border-color:#135e96;color:#fff}.mce-window .mce-btn.mce-primary:focus{box-shadow:0 1px 0 #2271b1,0 0 2px 1px #72aee6}.mce-window .mce-btn.mce-primary:active{background:#2271b1;border-color:#135e96;box-shadow:inset 0 2px 0 #135e96;vertical-align:top}.mce-window .mce-btn.mce-primary.mce-disabled{color:#9ec2e6!important;background:#4f94d4!important;border-color:#3582c4!important;box-shadow:none!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important;cursor:default}.mce-menubtn.mce-fixed-width span{overflow-x:hidden;text-overflow:ellipsis;width:82px}.mce-charmap{margin:3px}.mce-charmap td{padding:0;border-color:#dcdcde;cursor:pointer}.mce-charmap td:hover{background:#f6f7f7}.mce-charmap td div{width:18px;height:22px;line-height:1.57142857}.mce-tooltip{margin-top:2px}.mce-tooltip-inner{border-radius:3px;box-shadow:0 3px 5px rgba(0,0,0,.2);color:#fff;font-size:12px}.mce-ico{font-family:tinymce,Arial}.mce-btn-small .mce-ico{font-family:tinymce-small,Arial}.mce-toolbar .mce-ico{color:#50575e;line-height:1;width:20px;height:20px;text-align:center;text-shadow:none;margin:0;padding:0}.qt-dfw{color:#50575e;line-height:1;width:28px;height:26px;text-align:center;text-shadow:none}.mce-toolbar .mce-btn .mce-open{line-height:20px}.mce-toolbar .mce-btn.mce-active .mce-open,.mce-toolbar .mce-btn:focus .mce-open,.mce-toolbar .mce-btn:hover .mce-open{border-left-color:#1d2327}div.mce-notification{left:10%!important;right:10%}.mce-notification button.mce-close{right:6px;top:3px;font-weight:400;color:#50575e}.mce-notification button.mce-close:focus,.mce-notification button.mce-close:hover{color:#000}i.mce-i-aligncenter,i.mce-i-alignjustify,i.mce-i-alignleft,i.mce-i-alignright,i.mce-i-backcolor,i.mce-i-blockquote,i.mce-i-bold,i.mce-i-bullist,i.mce-i-charmap,i.mce-i-dashicon,i.mce-i-dfw,i.mce-i-forecolor,i.mce-i-fullscreen,i.mce-i-help,i.mce-i-hr,i.mce-i-indent,i.mce-i-italic,i.mce-i-link,i.mce-i-ltr,i.mce-i-numlist,i.mce-i-outdent,i.mce-i-pastetext,i.mce-i-pasteword,i.mce-i-redo,i.mce-i-remove,i.mce-i-removeformat,i.mce-i-spellchecker,i.mce-i-strikethrough,i.mce-i-underline,i.mce-i-undo,i.mce-i-unlink,i.mce-i-wp-media-library,i.mce-i-wp_adv,i.mce-i-wp_code,i.mce-i-wp_fullscreen,i.mce-i-wp_help,i.mce-i-wp_more,i.mce-i-wp_page{font:normal 20px/1 dashicons;padding:0;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:-2px;padding-right:2px}.qt-dfw{font:normal 20px/1 dashicons;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}i.mce-i-bold:before{content:"\f200"}i.mce-i-italic:before{content:"\f201"}i.mce-i-bullist:before{content:"\f203"}i.mce-i-numlist:before{content:"\f204"}i.mce-i-blockquote:before{content:"\f205"}i.mce-i-alignleft:before{content:"\f206"}i.mce-i-aligncenter:before{content:"\f207"}i.mce-i-alignright:before{content:"\f208"}i.mce-i-link:before{content:"\f103"}i.mce-i-unlink:before{content:"\f225"}i.mce-i-wp_more:before{content:"\f209"}i.mce-i-strikethrough:before{content:"\f224"}i.mce-i-spellchecker:before{content:"\f210"}.qt-dfw:before,i.mce-i-dfw:before,i.mce-i-fullscreen:before,i.mce-i-wp_fullscreen:before{content:"\f211"}i.mce-i-wp_adv:before{content:"\f212"}i.mce-i-underline:before{content:"\f213"}i.mce-i-alignjustify:before{content:"\f214"}i.mce-i-backcolor:before,i.mce-i-forecolor:before{content:"\f215"}i.mce-i-pastetext:before{content:"\f217"}i.mce-i-removeformat:before{content:"\f218"}i.mce-i-charmap:before{content:"\f220"}i.mce-i-outdent:before{content:"\f221"}i.mce-i-indent:before{content:"\f222"}i.mce-i-undo:before{content:"\f171"}i.mce-i-redo:before{content:"\f172"}i.mce-i-help:before,i.mce-i-wp_help:before{content:"\f223"}i.mce-i-wp-media-library:before{content:"\f104"}i.mce-i-ltr:before{content:"\f320"}i.mce-i-wp_page:before{content:"\f105"}i.mce-i-hr:before{content:"\f460"}i.mce-i-remove:before{content:"\f158"}i.mce-i-wp_code:before{content:"\f475"}.rtl i.mce-i-outdent:before{content:"\f222"}.rtl i.mce-i-indent:before{content:"\f221"}.wp-editor-wrap{position:relative}.wp-editor-tools{position:relative;z-index:1}.wp-editor-tools:after{clear:both;content:"";display:table}.wp-editor-container{clear:both;border:1px solid #dcdcde}.wp-editor-area{font-family:Consolas,Monaco,monospace;font-size:13px;padding:10px;margin:1px 0 0;line-height:150%;border:0;outline:0;display:block;resize:vertical;box-sizing:border-box}.rtl .wp-editor-area{font-family:Tahoma,Monaco,monospace}.locale-he-il .wp-editor-area{font-family:Arial,Monaco,monospace}.wp-editor-container textarea.wp-editor-area{width:100%;margin:0;box-shadow:none}.wp-editor-tabs{float:right}.wp-switch-editor{float:left;box-sizing:content-box;position:relative;top:1px;background:#f0f0f1;color:#646970;cursor:pointer;font-size:13px;line-height:1.46153846;height:20px;margin:5px 0 0 5px;padding:3px 8px 4px;border:1px solid #dcdcde}.wp-switch-editor:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:0;color:#1d2327}.html-active .switch-html:focus,.tmce-active .switch-tmce:focus,.wp-switch-editor:active{box-shadow:none}.wp-switch-editor:active{background-color:#f6f7f7;box-shadow:none}.js .tmce-active .wp-editor-area{color:#fff}.tmce-active .quicktags-toolbar{display:none}.html-active .switch-html,.tmce-active .switch-tmce{background:#f6f7f7;color:#50575e;border-bottom-color:#f6f7f7}.wp-media-buttons{float:left}.wp-media-buttons .button{margin-right:5px;margin-bottom:4px;padding-left:7px;padding-right:7px}.wp-media-buttons .button:active{position:relative;top:1px;margin-top:-1px;margin-bottom:1px}.wp-media-buttons .insert-media{padding-left:5px}.wp-media-buttons a{text-decoration:none;color:#3c434a;font-size:12px}.wp-media-buttons img{padding:0 4px;vertical-align:middle}.wp-media-buttons span.wp-media-buttons-icon{display:inline-block;width:20px;height:20px;line-height:1;vertical-align:middle;margin:0 2px}.wp-media-buttons .add_media span.wp-media-buttons-icon{background:0 0}.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font:normal 18px/1 dashicons;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-media-buttons .add_media span.wp-media-buttons-icon:before{content:"\f104"}.mce-content-body dl.wp-caption{max-width:100%}.quicktags-toolbar{padding:3px;position:relative;border-bottom:1px solid #dcdcde;background:#f6f7f7;min-height:30px}.has-dfw .quicktags-toolbar{padding-right:35px}.wp-core-ui .quicktags-toolbar input.button.button-small{margin:2px}.quicktags-toolbar input[value=link]{text-decoration:underline}.quicktags-toolbar input[value=del]{text-decoration:line-through}.quicktags-toolbar input[value="i"]{font-style:italic}.quicktags-toolbar input[value="b"]{font-weight:600}.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw,.qt-dfw{position:absolute;top:0;right:0}.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw{margin:7px 7px 0 0}.qt-dfw{margin:5px 5px 0 0}.qt-fullscreen{position:static;margin:2px}@media screen and (max-width:782px){.mce-toolbar .mce-btn button,.qt-dfw{padding:6px 7px}.mce-toolbar .mce-btn-group .mce-btn.mce-primary button{padding:6px 7px 5px}.mce-toolbar .mce-btn-group .mce-btn{margin:1px}.qt-dfw{width:36px;height:34px}.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw{margin:4px 4px 0 0}.mce-toolbar .mce-colorbutton .mce-preview{left:8px;bottom:6px}.mce-window .mce-btn{padding:2px 0}.has-dfw .quicktags-toolbar,.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first{padding-right:40px}}@media screen and (min-width:782px){.wp-core-ui .quicktags-toolbar input.button.button-small{font-size:12px;min-height:26px;line-height:2}}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:100020}#wp_delgallery,#wp_delimgbtn,#wp_editgallery,#wp_editimgbtn{background-color:#f0f0f1;margin:2px;padding:2px;border:1px solid #8c8f94;border-radius:3px}#wp_delgallery:hover,#wp_delimgbtn:hover,#wp_editgallery:hover,#wp_editimgbtn:hover{border-color:#50575e;background-color:#c3c4c7}#wp-link-wrap{display:none;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);width:500px;overflow:hidden;margin-left:-250px;margin-top:-125px;position:fixed;top:50%;left:50%;z-index:100105;transition:height .2s,margin-top .2s}#wp-link-backdrop{display:none;position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:100100}#wp-link{position:relative;height:100%}#wp-link-wrap{height:500px;margin-top:-250px}#wp-link-wrap .wp-link-text-field{display:none}#wp-link-wrap.has-text-field .wp-link-text-field{display:block}#link-modal-title{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;margin:0;padding:0 36px 0 16px}#wp-link-close{color:#646970;padding:0;position:absolute;top:0;right:0;width:36px;height:36px;text-align:center;background:0 0;border:none;cursor:pointer}#wp-link-close:before{font:normal 20px/36px dashicons;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:36px;height:36px;content:"\f158"}#wp-link-close:focus,#wp-link-close:hover{color:#135e96}#wp-link-close:focus{outline:0;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:2px solid transparent;outline-offset:-2px}#wp-link-wrap #link-selector{-webkit-overflow-scrolling:touch;padding:0 16px;position:absolute;top:37px;left:0;right:0;bottom:44px}#wp-link ol,#wp-link ul{list-style:none;margin:0;padding:0}#wp-link input[type=text]{box-sizing:border-box}#wp-link #link-options{padding:8px 0 12px}#wp-link p.howto{margin:3px 0}#wp-link p.howto a{text-decoration:none;color:inherit}#wp-link label input[type=text]{margin-top:5px;width:70%}#wp-link #link-options label span,#wp-link #search-panel label span.search-label{display:inline-block;width:80px;text-align:right;padding-right:5px;max-width:24%;vertical-align:middle;word-wrap:break-word}#wp-link .link-search-field{width:250px;max-width:70%}#wp-link .link-search-wrapper{margin:5px 0 9px;display:block;overflow:hidden}#wp-link .link-search-wrapper .spinner{float:none;margin:-3px 0 0 4px}#wp-link .link-target{padding:3px 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#wp-link .link-target label{max-width:70%}#wp-link .query-results{border:1px #dcdcde solid;margin:0 0 12px;background:#fff;overflow:auto;position:absolute;left:16px;right:16px;bottom:0;top:166px}.has-text-field #wp-link .query-results{top:210px}#wp-link li{clear:both;margin-bottom:0;border-bottom:1px solid #f0f0f1;color:#2c3338;padding:4px 6px 4px 10px;cursor:pointer;position:relative}#wp-link .query-notice{padding:0;border-bottom:1px solid #dcdcde;background-color:#fff;color:#000}#wp-link .query-notice .query-notice-default,#wp-link .query-notice .query-notice-hint{display:block;padding:6px;border-left:4px solid #72aee6}#wp-link .unselectable.no-matches-found{padding:0;border-bottom:1px solid #dcdcde;background-color:#f6f7f7}#wp-link .no-matches-found .item-title{display:block;padding:6px;border-left:4px solid #d63638}#wp-link .query-results em{font-style:normal}#wp-link li:hover{background:#f0f6fc;color:#101517}#wp-link li.unselectable{border-bottom:1px solid #dcdcde}#wp-link li.unselectable:hover{background:#fff;cursor:auto;color:#2c3338}#wp-link li.selected{background:#dcdcde;color:#2c3338}#wp-link li.selected .item-title{font-weight:600}#wp-link li:last-child{border:none}#wp-link .item-title{display:inline-block;width:80%;width:calc(100% - 68px);word-wrap:break-word}#wp-link .item-info{text-transform:uppercase;color:#646970;font-size:11px;position:absolute;right:5px;top:5px}#wp-link .river-waiting{display:none;padding:10px 0}#wp-link .submitbox{padding:8px 16px;background:#fff;border-top:1px solid #dcdcde;position:absolute;bottom:0;left:0;right:0}#wp-link-cancel{line-height:1.92307692;float:left}#wp-link-update{line-height:1.76923076;float:right}#wp-link-submit{float:right}@media screen and (max-width:782px){#wp-link-wrap{margin-top:-140px}#wp-link-wrap .query-results{top:195px}#wp-link-wrap.has-text-field .query-results{top:235px}#link-selector{padding:0 16px 60px}#wp-link-wrap #link-selector{bottom:52px}#wp-link-cancel{line-height:2.46153846}#wp-link .link-target{padding-top:10px}#wp-link .submitbox .button{margin-bottom:0}}@media screen and (max-width:520px){#wp-link-wrap{width:auto;margin-left:0;left:10px;right:10px;max-width:500px}}@media screen and (max-height:520px){#wp-link-wrap{transition:none;height:auto;margin-top:0;top:10px;bottom:10px}#link-selector{overflow:auto}#search-panel .query-results{position:static}}@media screen and (max-height:290px){#wp-link-wrap{height:auto;margin-top:0;top:10px;bottom:10px}#link-selector{overflow:auto;height:calc(100% - 92px);padding-bottom:2px}#search-panel .query-results{position:static}}div.wp-link-preview{float:left;margin:5px;max-width:694px;overflow:hidden;text-overflow:ellipsis}div.wp-link-preview a{color:#2271b1;text-decoration:underline;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out;cursor:pointer}div.wp-link-preview a.wplink-url-error{color:#d63638}div.wp-link-input{float:left;margin:2px;max-width:694px}div.wp-link-input input{width:300px;padding:3px;box-sizing:border-box;line-height:1.28571429;min-height:26px}.mce-toolbar div.wp-link-input~.mce-btn,.mce-toolbar div.wp-link-preview~.mce-btn{margin:2px 1px}.mce-inline-toolbar-grp .mce-btn-group .mce-btn:last-child{margin-right:2px}.ui-autocomplete.wplink-autocomplete{z-index:100110;max-height:200px;overflow-y:auto;padding:0;margin:0;list-style:none;position:absolute;border:1px solid #4f94d4;box-shadow:0 1px 2px rgba(79,148,212,.8);background-color:#fff}.ui-autocomplete.wplink-autocomplete li{margin-bottom:0;padding:4px 10px;clear:both;white-space:normal;text-align:left}.ui-autocomplete.wplink-autocomplete li .wp-editor-float-right{float:right}.ui-autocomplete.wplink-autocomplete li.ui-state-focus{background-color:#dcdcde;cursor:pointer}@media screen and (max-width:782px){div.wp-link-input,div.wp-link-preview{max-width:70%;max-width:calc(100% - 86px)}div.wp-link-preview{margin:8px 0 8px 5px}div.wp-link-input{width:300px}div.wp-link-input input{width:100%;font-size:16px;padding:5px}}.mce-fullscreen{z-index:100010}.rtl .quicktags-toolbar input,.rtl .wp-switch-editor{font-family:Tahoma,sans-serif}.mce-rtl .mce-flow-layout .mce-flow-layout-item>div{direction:rtl}.mce-rtl .mce-listbox i.mce-caret{left:6px}html:lang(he-il) .rtl .quicktags-toolbar input,html:lang(he-il) .rtl .wp-switch-editor{font-family:Arial,sans-serif}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-media-buttons .add_media span.wp-media-buttons-icon{background:0 0}}
\ No newline at end of file
diff --git a/static/wp-includes/css/jquery-ui-dialog-rtl.css b/static/wp-includes/css/jquery-ui-dialog-rtl.css
new file mode 100755
index 0000000..7695627
--- /dev/null
+++ b/static/wp-includes/css/jquery-ui-dialog-rtl.css
@@ -0,0 +1,358 @@
+/*! This file is auto-generated */
+/*!
+ * jQuery UI CSS Framework 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ *
+ * http://api.jqueryui.com/category/theming/
+ */
+
+/* Layout helpers
+----------------------------------*/
+.ui-helper-hidden {
+ display: none;
+}
+.ui-helper-hidden-accessible {
+ border: 0;
+ clip: rect(0 0 0 0);
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px;
+}
+.ui-helper-reset {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ outline: 0;
+ line-height: 1.3;
+ text-decoration: none;
+ font-size: 100%;
+ list-style: none;
+}
+.ui-helper-clearfix:before,
+.ui-helper-clearfix:after {
+ content: "";
+ display: table;
+ border-collapse: collapse;
+}
+.ui-helper-clearfix:after {
+ clear: both;
+}
+.ui-helper-clearfix {
+ min-height: 0; /* support: IE7 */
+}
+.ui-helper-zfix {
+ width: 100%;
+ height: 100%;
+ top: 0;
+ right: 0;
+ position: absolute;
+ opacity: 0;
+ filter:Alpha(Opacity=0); /* support: IE8 */
+}
+
+.ui-front {
+ z-index: 100;
+}
+
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-disabled {
+ cursor: default !important;
+}
+
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon {
+ display: block;
+ text-indent: -99999px;
+ overflow: hidden;
+ background-repeat: no-repeat;
+}
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Overlays */
+.ui-widget-overlay {
+ position: fixed;
+ top: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+}
+
+/*!
+ * jQuery UI Resizable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */
+.ui-resizable {
+ position: relative;
+}
+.ui-resizable-handle {
+ position: absolute;
+ font-size: 0.1px;
+ display: block;
+ touch-action: none;
+}
+.ui-resizable-disabled .ui-resizable-handle,
+.ui-resizable-autohide .ui-resizable-handle {
+ display: none;
+}
+.ui-resizable-n {
+ cursor: n-resize;
+ height: 7px;
+ width: 100%;
+ top: -5px;
+ right: 0;
+}
+.ui-resizable-s {
+ cursor: s-resize;
+ height: 7px;
+ width: 100%;
+ bottom: -5px;
+ right: 0;
+}
+/* rtl:ignore */
+.ui-resizable-e {
+ cursor: e-resize;
+ width: 7px;
+ right: -5px;
+ top: 0;
+ height: 100%;
+}
+/* rtl:ignore */
+.ui-resizable-w {
+ cursor: w-resize;
+ width: 7px;
+ left: -5px;
+ top: 0;
+ height: 100%;
+}
+/* rtl:ignore */
+.ui-resizable-se {
+ cursor: se-resize;
+ width: 12px;
+ height: 12px;
+ right: 1px;
+ bottom: 1px;
+}
+/* rtl:ignore */
+.ui-resizable-sw {
+ cursor: sw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ bottom: -5px;
+}
+/* rtl:ignore */
+.ui-resizable-nw {
+ cursor: nw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ top: -5px;
+}
+/* rtl:ignore */
+.ui-resizable-ne {
+ cursor: ne-resize;
+ width: 9px;
+ height: 9px;
+ right: -5px;
+ top: -5px;
+}
+
+/* WP buttons: see buttons.css. */
+
+.ui-button {
+ display: inline-block;
+ text-decoration: none;
+ font-size: 13px;
+ line-height: 2;
+ height: 28px;
+ margin: 0;
+ padding: 0 10px 1px;
+ cursor: pointer;
+ border-width: 1px;
+ border-style: solid;
+ -webkit-appearance: none;
+ border-radius: 3px;
+ white-space: nowrap;
+ box-sizing: border-box;
+ color: #50575e;
+ border-color: #c3c4c7;
+ background: #f6f7f7;
+ box-shadow: 0 1px 0 #c3c4c7;
+ vertical-align: top;
+}
+
+.ui-button:active,
+.ui-button:focus {
+ outline: none;
+}
+
+/* Remove the dotted border on :focus and the extra padding in Firefox */
+.ui-button::-moz-focus-inner {
+ border-width: 0;
+ border-style: none;
+ padding: 0;
+}
+
+.ui-button:hover,
+.ui-button:focus {
+ background: #f6f7f7;
+ border-color: #8c8f94;
+ color: #1d2327;
+}
+
+.ui-button:focus {
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+}
+
+.ui-button:active {
+ background: #f0f0f1;
+ border-color: #8c8f94;
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+}
+
+.ui-button[disabled],
+.ui-button:disabled {
+ color: #a7aaad !important;
+ border-color: #dcdcde !important;
+ background: #f6f7f7 !important;
+ box-shadow: none !important;
+ text-shadow: 0 1px 0 #fff !important;
+ cursor: default;
+ transform: none !important;
+}
+
+@media screen and (max-width: 782px) {
+
+ .ui-button {
+ padding: 6px 14px;
+ line-height: normal;
+ font-size: 14px;
+ vertical-align: middle;
+ height: auto;
+ margin-bottom: 4px;
+ }
+
+}
+
+/* WP Theme */
+
+.ui-dialog {
+ position: absolute;
+ top: 0;
+ right: 0;
+ z-index: 100102;
+ background-color: #fff;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+ overflow: hidden;
+}
+
+.ui-dialog-titlebar {
+ background: #fff;
+ border-bottom: 1px solid #dcdcde;
+ height: 36px;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 2;
+ padding: 0 16px 0 36px;
+}
+
+.ui-button.ui-dialog-titlebar-close {
+ background: none;
+ border: none;
+ box-shadow: none;
+ color: #646970;
+ cursor: pointer;
+ display: block;
+ padding: 0;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 36px;
+ height: 36px;
+ text-align: center;
+ border-radius: 0;
+ overflow: hidden;
+}
+
+.ui-dialog-titlebar-close:before {
+ font: normal 20px/1 dashicons;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ line-height: 1.8;
+ width: 36px;
+ height: 36px;
+ content: "\f158";
+}
+
+.ui-button.ui-dialog-titlebar-close:hover,
+.ui-button.ui-dialog-titlebar-close:focus {
+ color: #135e96;
+}
+
+.ui-button.ui-dialog-titlebar-close:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+
+.ui-dialog-content {
+ padding: 16px;
+ overflow: auto;
+}
+
+.ui-dialog-buttonpane {
+ background: #fff;
+ border-top: 1px solid #dcdcde;
+ padding: 16px;
+}
+
+.ui-dialog-buttonpane .ui-button {
+ margin-right: 16px;
+}
+
+.ui-dialog-buttonpane .ui-dialog-buttonset {
+ float: left;
+}
+
+.ui-draggable .ui-dialog-titlebar {
+ cursor: move;
+}
+
+.ui-widget-overlay {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 100101;
+}
diff --git a/static/wp-includes/css/jquery-ui-dialog-rtl.min.css b/static/wp-includes/css/jquery-ui-dialog-rtl.min.css
new file mode 100755
index 0000000..fa30bb3
--- /dev/null
+++ b/static/wp-includes/css/jquery-ui-dialog-rtl.min.css
@@ -0,0 +1,18 @@
+/*! This file is auto-generated */
+/*!
+ * jQuery UI CSS Framework 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ *
+ * http://api.jqueryui.com/category/theming/
+ */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;right:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;right:0;width:100%;height:100%}/*!
+ * jQuery UI Resizable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;right:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;right:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:2;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#50575e;border-color:#c3c4c7;background:#f6f7f7;box-shadow:0 1px 0 #c3c4c7;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.ui-button:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.ui-button:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.ui-button:disabled,.ui-button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;right:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);overflow:hidden}.ui-dialog-titlebar{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 16px 0 36px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#646970;cursor:pointer;display:block;padding:0;position:absolute;top:0;left:0;width:36px;height:36px;text-align:center;border-radius:0;overflow:hidden}.ui-dialog-titlebar-close:before{font:normal 20px/1 dashicons;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.8;width:36px;height:36px;content:"\f158"}.ui-button.ui-dialog-titlebar-close:focus,.ui-button.ui-dialog-titlebar-close:hover{color:#135e96}.ui-button.ui-dialog-titlebar-close:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:2px solid transparent;outline-offset:-2px}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fff;border-top:1px solid #dcdcde;padding:16px}.ui-dialog-buttonpane .ui-button{margin-right:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-widget-overlay{position:fixed;top:0;right:0;left:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:100101}
\ No newline at end of file
diff --git a/static/wp-includes/css/jquery-ui-dialog.css b/static/wp-includes/css/jquery-ui-dialog.css
new file mode 100755
index 0000000..e457b38
--- /dev/null
+++ b/static/wp-includes/css/jquery-ui-dialog.css
@@ -0,0 +1,357 @@
+/*!
+ * jQuery UI CSS Framework 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ *
+ * http://api.jqueryui.com/category/theming/
+ */
+
+/* Layout helpers
+----------------------------------*/
+.ui-helper-hidden {
+ display: none;
+}
+.ui-helper-hidden-accessible {
+ border: 0;
+ clip: rect(0 0 0 0);
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px;
+}
+.ui-helper-reset {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ outline: 0;
+ line-height: 1.3;
+ text-decoration: none;
+ font-size: 100%;
+ list-style: none;
+}
+.ui-helper-clearfix:before,
+.ui-helper-clearfix:after {
+ content: "";
+ display: table;
+ border-collapse: collapse;
+}
+.ui-helper-clearfix:after {
+ clear: both;
+}
+.ui-helper-clearfix {
+ min-height: 0; /* support: IE7 */
+}
+.ui-helper-zfix {
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ position: absolute;
+ opacity: 0;
+ filter:Alpha(Opacity=0); /* support: IE8 */
+}
+
+.ui-front {
+ z-index: 100;
+}
+
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-disabled {
+ cursor: default !important;
+}
+
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon {
+ display: block;
+ text-indent: -99999px;
+ overflow: hidden;
+ background-repeat: no-repeat;
+}
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Overlays */
+.ui-widget-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+
+/*!
+ * jQuery UI Resizable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */
+.ui-resizable {
+ position: relative;
+}
+.ui-resizable-handle {
+ position: absolute;
+ font-size: 0.1px;
+ display: block;
+ touch-action: none;
+}
+.ui-resizable-disabled .ui-resizable-handle,
+.ui-resizable-autohide .ui-resizable-handle {
+ display: none;
+}
+.ui-resizable-n {
+ cursor: n-resize;
+ height: 7px;
+ width: 100%;
+ top: -5px;
+ left: 0;
+}
+.ui-resizable-s {
+ cursor: s-resize;
+ height: 7px;
+ width: 100%;
+ bottom: -5px;
+ left: 0;
+}
+/* rtl:ignore */
+.ui-resizable-e {
+ cursor: e-resize;
+ width: 7px;
+ right: -5px;
+ top: 0;
+ height: 100%;
+}
+/* rtl:ignore */
+.ui-resizable-w {
+ cursor: w-resize;
+ width: 7px;
+ left: -5px;
+ top: 0;
+ height: 100%;
+}
+/* rtl:ignore */
+.ui-resizable-se {
+ cursor: se-resize;
+ width: 12px;
+ height: 12px;
+ right: 1px;
+ bottom: 1px;
+}
+/* rtl:ignore */
+.ui-resizable-sw {
+ cursor: sw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ bottom: -5px;
+}
+/* rtl:ignore */
+.ui-resizable-nw {
+ cursor: nw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ top: -5px;
+}
+/* rtl:ignore */
+.ui-resizable-ne {
+ cursor: ne-resize;
+ width: 9px;
+ height: 9px;
+ right: -5px;
+ top: -5px;
+}
+
+/* WP buttons: see buttons.css. */
+
+.ui-button {
+ display: inline-block;
+ text-decoration: none;
+ font-size: 13px;
+ line-height: 2;
+ height: 28px;
+ margin: 0;
+ padding: 0 10px 1px;
+ cursor: pointer;
+ border-width: 1px;
+ border-style: solid;
+ -webkit-appearance: none;
+ border-radius: 3px;
+ white-space: nowrap;
+ box-sizing: border-box;
+ color: #50575e;
+ border-color: #c3c4c7;
+ background: #f6f7f7;
+ box-shadow: 0 1px 0 #c3c4c7;
+ vertical-align: top;
+}
+
+.ui-button:active,
+.ui-button:focus {
+ outline: none;
+}
+
+/* Remove the dotted border on :focus and the extra padding in Firefox */
+.ui-button::-moz-focus-inner {
+ border-width: 0;
+ border-style: none;
+ padding: 0;
+}
+
+.ui-button:hover,
+.ui-button:focus {
+ background: #f6f7f7;
+ border-color: #8c8f94;
+ color: #1d2327;
+}
+
+.ui-button:focus {
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+}
+
+.ui-button:active {
+ background: #f0f0f1;
+ border-color: #8c8f94;
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+}
+
+.ui-button[disabled],
+.ui-button:disabled {
+ color: #a7aaad !important;
+ border-color: #dcdcde !important;
+ background: #f6f7f7 !important;
+ box-shadow: none !important;
+ text-shadow: 0 1px 0 #fff !important;
+ cursor: default;
+ transform: none !important;
+}
+
+@media screen and (max-width: 782px) {
+
+ .ui-button {
+ padding: 6px 14px;
+ line-height: normal;
+ font-size: 14px;
+ vertical-align: middle;
+ height: auto;
+ margin-bottom: 4px;
+ }
+
+}
+
+/* WP Theme */
+
+.ui-dialog {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 100102;
+ background-color: #fff;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+ overflow: hidden;
+}
+
+.ui-dialog-titlebar {
+ background: #fff;
+ border-bottom: 1px solid #dcdcde;
+ height: 36px;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 2;
+ padding: 0 36px 0 16px;
+}
+
+.ui-button.ui-dialog-titlebar-close {
+ background: none;
+ border: none;
+ box-shadow: none;
+ color: #646970;
+ cursor: pointer;
+ display: block;
+ padding: 0;
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 36px;
+ height: 36px;
+ text-align: center;
+ border-radius: 0;
+ overflow: hidden;
+}
+
+.ui-dialog-titlebar-close:before {
+ font: normal 20px/1 dashicons;
+ vertical-align: top;
+ speak: never;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ line-height: 1.8;
+ width: 36px;
+ height: 36px;
+ content: "\f158";
+}
+
+.ui-button.ui-dialog-titlebar-close:hover,
+.ui-button.ui-dialog-titlebar-close:focus {
+ color: #135e96;
+}
+
+.ui-button.ui-dialog-titlebar-close:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ outline-offset: -2px;
+}
+
+.ui-dialog-content {
+ padding: 16px;
+ overflow: auto;
+}
+
+.ui-dialog-buttonpane {
+ background: #fff;
+ border-top: 1px solid #dcdcde;
+ padding: 16px;
+}
+
+.ui-dialog-buttonpane .ui-button {
+ margin-left: 16px;
+}
+
+.ui-dialog-buttonpane .ui-dialog-buttonset {
+ float: right;
+}
+
+.ui-draggable .ui-dialog-titlebar {
+ cursor: move;
+}
+
+.ui-widget-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 100101;
+}
diff --git a/static/wp-includes/css/jquery-ui-dialog.min.css b/static/wp-includes/css/jquery-ui-dialog.min.css
new file mode 100755
index 0000000..cde3d09
--- /dev/null
+++ b/static/wp-includes/css/jquery-ui-dialog.min.css
@@ -0,0 +1,18 @@
+/*! This file is auto-generated */
+/*!
+ * jQuery UI CSS Framework 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ *
+ * http://api.jqueryui.com/category/theming/
+ */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}/*!
+ * jQuery UI Resizable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:2;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#50575e;border-color:#c3c4c7;background:#f6f7f7;box-shadow:0 1px 0 #c3c4c7;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.ui-button:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.ui-button:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.ui-button:disabled,.ui-button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;left:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);overflow:hidden}.ui-dialog-titlebar{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 36px 0 16px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#646970;cursor:pointer;display:block;padding:0;position:absolute;top:0;right:0;width:36px;height:36px;text-align:center;border-radius:0;overflow:hidden}.ui-dialog-titlebar-close:before{font:normal 20px/1 dashicons;vertical-align:top;speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.8;width:36px;height:36px;content:"\f158"}.ui-button.ui-dialog-titlebar-close:focus,.ui-button.ui-dialog-titlebar-close:hover{color:#135e96}.ui-button.ui-dialog-titlebar-close:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);outline:2px solid transparent;outline-offset:-2px}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fff;border-top:1px solid #dcdcde;padding:16px}.ui-dialog-buttonpane .ui-button{margin-left:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-widget-overlay{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:100101}
\ No newline at end of file
diff --git a/static/wp-includes/css/media-views-rtl.css b/static/wp-includes/css/media-views-rtl.css
new file mode 100755
index 0000000..2c82f46
--- /dev/null
+++ b/static/wp-includes/css/media-views-rtl.css
@@ -0,0 +1,2989 @@
+/*! This file is auto-generated */
+/**
+ * Base Styles
+ */
+.media-modal * {
+ box-sizing: content-box;
+}
+
+.media-modal input,
+.media-modal select,
+.media-modal textarea {
+ box-sizing: border-box;
+}
+
+.media-modal,
+.media-frame {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 12px;
+ -webkit-overflow-scrolling: touch;
+}
+
+.media-modal legend {
+ padding: 0;
+ font-size: 13px;
+}
+
+.media-modal label {
+ font-size: 13px;
+}
+
+.media-modal .legend-inline {
+ position: absolute;
+ transform: translate(100%, 50%);
+ margin-right: -1%;
+ line-height: 1.2;
+}
+
+.media-frame a {
+ border-bottom: none;
+ color: #2271b1;
+}
+
+.media-frame a:hover,
+.media-frame a:active {
+ color: #135e96;
+}
+
+.media-frame a:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ color: #043959;
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.media-frame a.button {
+ color: #2c3338;
+}
+
+.media-frame a.button:hover {
+ color: #1d2327;
+}
+
+.media-frame a.button-primary,
+.media-frame a.button-primary:hover {
+ color: #fff;
+}
+
+.media-frame input,
+.media-frame textarea {
+ padding: 6px 8px;
+}
+
+.media-frame select,
+.wp-admin .media-frame select {
+ min-height: 30px;
+ vertical-align: middle;
+}
+
+.media-frame input[type="text"],
+.media-frame input[type="password"],
+.media-frame input[type="color"],
+.media-frame input[type="date"],
+.media-frame input[type="datetime"],
+.media-frame input[type="datetime-local"],
+.media-frame input[type="email"],
+.media-frame input[type="month"],
+.media-frame input[type="number"],
+.media-frame input[type="search"],
+.media-frame input[type="tel"],
+.media-frame input[type="time"],
+.media-frame input[type="url"],
+.media-frame input[type="week"],
+.media-frame textarea,
+.media-frame select {
+ box-shadow: 0 0 0 transparent;
+ border-radius: 4px;
+ border: 1px solid #8c8f94;
+ background-color: #fff;
+ color: #2c3338;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.media-frame input[type="text"],
+.media-frame input[type="password"],
+.media-frame input[type="date"],
+.media-frame input[type="datetime"],
+.media-frame input[type="datetime-local"],
+.media-frame input[type="email"],
+.media-frame input[type="month"],
+.media-frame input[type="number"],
+.media-frame input[type="search"],
+.media-frame input[type="tel"],
+.media-frame input[type="time"],
+.media-frame input[type="url"],
+.media-frame input[type="week"] {
+ padding: 0 8px;
+ /* inherits font size 13px */
+ line-height: 2.15384615; /* 28px */
+}
+
+/* Search field in the Media Library toolbar */
+.media-frame.mode-grid .wp-filter input[type="search"] {
+ font-size: 14px;
+ line-height: 2;
+}
+
+.media-frame input[type="text"]:focus,
+.media-frame input[type="password"]:focus,
+.media-frame input[type="number"]:focus,
+.media-frame input[type="search"]:focus,
+.media-frame input[type="email"]:focus,
+.media-frame input[type="url"]:focus,
+.media-frame textarea:focus,
+.media-frame select:focus {
+ border-color: #3582c4;
+ box-shadow: 0 0 0 1px #3582c4;
+ outline: 2px solid transparent;
+}
+
+.media-frame input:disabled,
+.media-frame textarea:disabled,
+.media-frame input[readonly],
+.media-frame textarea[readonly] {
+ background-color: #f0f0f1;
+}
+
+.media-frame input[type="search"] {
+ -webkit-appearance: textfield;
+}
+
+.media-frame ::-webkit-input-placeholder {
+ color: #646970;
+}
+
+.media-frame ::-moz-placeholder {
+ color: #646970;
+ opacity: 1;
+}
+
+.media-frame :-ms-input-placeholder {
+ color: #646970;
+}
+
+/*
+ * In some cases there's the need of higher specificity,
+ * for example higher than `.media-embed .setting`.
+ */
+.media-frame .hidden,
+.media-frame .setting.hidden {
+ display: none;
+}
+
+/*!
+ * jQuery UI Draggable/Sortable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */
+.ui-draggable-handle,
+.ui-sortable-handle {
+ touch-action: none;
+}
+
+/**
+ * Modal
+ */
+.media-modal {
+ position: fixed;
+ top: 30px;
+ right: 30px;
+ left: 30px;
+ bottom: 30px;
+ z-index: 160000;
+}
+
+.wp-customizer .media-modal {
+ z-index: 560000;
+}
+
+.media-modal-backdrop {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ z-index: 159900;
+}
+
+.wp-customizer .media-modal-backdrop {
+ z-index: 559900;
+}
+
+.media-modal-close {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 50px;
+ height: 50px;
+ margin: 0;
+ padding: 0;
+ border: 1px solid transparent;
+ background: none;
+ color: #646970;
+ z-index: 1000;
+ cursor: pointer;
+ outline: none;
+ transition: color .1s ease-in-out, background .1s ease-in-out;
+}
+
+.media-modal-close:hover,
+.media-modal-close:active {
+ color: #135e96;
+}
+
+.media-modal-close:focus {
+ color: #135e96;
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.media-modal-close span.media-modal-icon {
+ background-image: none;
+}
+
+.media-modal-close .media-modal-icon:before {
+ content: "\f158";
+ font: normal 20px/1 dashicons;
+ speak: never;
+ vertical-align: middle;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.media-modal-content {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ overflow: auto;
+ min-height: 300px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
+ background: #fff;
+ -webkit-font-smoothing: subpixel-antialiased;
+}
+
+.media-modal-content .media-frame select.attachment-filters {
+ margin-top: 32px;
+ margin-left: 2%;
+ width: 42%;
+ width: calc(48% - 12px);
+}
+
+.media-modal-content .attachments-browser .search {
+ width: 100%;
+}
+
+/* higher specificity */
+.wp-core-ui .media-modal-icon {
+ background-image: url(../images/uploader-icons.png);
+ background-repeat: no-repeat;
+}
+
+/**
+ * Toolbar
+ */
+.media-toolbar {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: 100;
+ height: 60px;
+ padding: 0 16px;
+ border: 0 solid #dcdcde;
+ overflow: hidden;
+}
+
+.media-frame-toolbar .media-toolbar {
+ top: auto;
+ bottom: -47px;
+ height: auto;
+ overflow: visible;
+ border-top: 1px solid #dcdcde;
+}
+
+.media-toolbar-primary {
+ float: left;
+ height: 100%;
+ position: relative;
+}
+
+.media-toolbar-secondary {
+ float: right;
+ height: 100%;
+}
+
+.media-toolbar-primary > .media-button,
+.media-toolbar-primary > .media-button-group {
+ margin-right: 10px;
+ float: right;
+ margin-top: 15px;
+}
+
+.media-toolbar-secondary > .media-button,
+.media-toolbar-secondary > .media-button-group {
+ margin-left: 10px;
+ margin-top: 15px;
+}
+
+/**
+ * Sidebar
+ */
+.media-sidebar {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ width: 267px;
+ padding: 0 16px;
+ z-index: 75;
+ background: #f6f7f7;
+ border-right: 1px solid #dcdcde;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.media-sidebar::after {
+ content: "";
+ display: flex;
+ clear: both;
+ height: 24px;
+}
+
+.hide-toolbar .media-sidebar {
+ bottom: 0;
+}
+
+.media-sidebar h2,
+.image-details h2:not(.media-attachments-filter-heading) {
+ position: relative;
+ font-weight: 600;
+ text-transform: uppercase;
+ font-size: 12px;
+ color: #646970;
+ margin: 24px 0 8px;
+}
+
+.media-sidebar .setting,
+.attachment-details .setting {
+ display: block;
+ float: right;
+ width: 100%;
+ margin: 0 0 10px;
+}
+
+.media-sidebar .collection-settings .setting {
+ margin: 1px 0;
+}
+
+.media-sidebar .setting.has-description,
+.attachment-details .setting.has-description {
+ margin-bottom: 5px;
+}
+
+.media-sidebar .setting .link-to-custom {
+ margin: 3px 2px 0;
+}
+
+.media-sidebar .setting span, /* Back-compat for pre-5.3 */
+.attachment-details .setting span, /* Back-compat for pre-5.3 */
+.media-sidebar .setting .name,
+.media-sidebar .setting .value,
+.attachment-details .setting .name {
+ min-width: 30%;
+ margin-left: 4%;
+ font-size: 12px;
+ text-align: left;
+ word-wrap: break-word;
+}
+
+.media-sidebar .setting .name {
+ max-width: 80px;
+}
+
+.media-sidebar .setting .value {
+ text-align: right;
+}
+
+.media-sidebar .setting select {
+ max-width: 65%;
+}
+
+.media-sidebar .setting input[type="checkbox"],
+.media-sidebar .field input[type="checkbox"],
+.media-sidebar .setting input[type="radio"],
+.media-sidebar .field input[type="radio"],
+.attachment-details .setting input[type="checkbox"],
+.attachment-details .field input[type="checkbox"],
+.attachment-details .setting input[type="radio"],
+.attachment-details .field input[type="radio"] {
+ float: none;
+ margin: 8px 3px 0;
+ padding: 0;
+}
+
+.media-sidebar .setting span, /* Back-compat for pre-5.3 */
+.attachment-details .setting span, /* Back-compat for pre-5.3 */
+.media-sidebar .setting .name,
+.media-sidebar .setting .value,
+.media-sidebar .checkbox-label-inline,
+.attachment-details .setting .name,
+.attachment-details .setting .value,
+.compat-item label span {
+ float: right;
+ min-height: 22px;
+ padding-top: 8px;
+ line-height: 1.33333333;
+ font-weight: 400;
+ color: #646970;
+}
+
+.media-sidebar .checkbox-label-inline {
+ font-size: 12px;
+}
+
+.media-sidebar .copy-to-clipboard-container,
+.attachment-details .copy-to-clipboard-container {
+ flex-wrap: wrap;
+ margin-top: 10px;
+ margin-right: calc( 35% - 1px );
+ padding-top: 10px;
+}
+
+/* Needs high specificity. */
+.attachment-details .attachment-info .copy-to-clipboard-container {
+ float: none;
+}
+
+.media-sidebar .copy-to-clipboard-container .success,
+.attachment-details .copy-to-clipboard-container .success {
+ padding: 0;
+ min-height: 0;
+ line-height: 2.18181818;
+ text-align: right;
+ color: #008a20;
+}
+
+.compat-item label span {
+ text-align: left;
+}
+
+.media-sidebar .setting input[type="text"],
+.media-sidebar .setting input[type="password"],
+.media-sidebar .setting input[type="email"],
+.media-sidebar .setting input[type="number"],
+.media-sidebar .setting input[type="search"],
+.media-sidebar .setting input[type="tel"],
+.media-sidebar .setting input[type="url"],
+.media-sidebar .setting textarea,
+.media-sidebar .setting .value,
+.attachment-details .setting input[type="text"],
+.attachment-details .setting input[type="password"],
+.attachment-details .setting input[type="email"],
+.attachment-details .setting input[type="number"],
+.attachment-details .setting input[type="search"],
+.attachment-details .setting input[type="tel"],
+.attachment-details .setting input[type="url"],
+.attachment-details .setting textarea,
+.attachment-details .setting .value,
+.attachment-details .setting + .description {
+ box-sizing: border-box;
+ margin: 1px;
+ width: 65%;
+ float: left;
+}
+
+.media-sidebar .setting .value,
+.attachment-details .setting .value,
+.attachment-details .setting + .description {
+ margin: 0 1px;
+ text-align: right;
+}
+
+.attachment-details .setting + .description {
+ clear: both;
+ font-size: 12px;
+ font-style: normal;
+ margin-bottom: 10px;
+}
+
+.media-sidebar .setting textarea,
+.attachment-details .setting textarea,
+.compat-item .field textarea {
+ height: 62px;
+ resize: vertical;
+}
+
+.compat-item {
+ float: right;
+ width: 100%;
+ overflow: hidden;
+}
+
+.compat-item table {
+ width: 100%;
+ table-layout: fixed;
+ border-spacing: 0;
+ border: 0;
+}
+
+.compat-item tr {
+ padding: 2px 0;
+ display: block;
+ overflow: hidden;
+}
+
+.compat-item .label,
+.compat-item .field {
+ display: block;
+ margin: 0;
+ padding: 0;
+}
+
+.compat-item .label {
+ min-width: 30%;
+ margin-left: 4%;
+ float: right;
+ text-align: left;
+}
+
+.compat-item .label span {
+ display: block;
+ width: 100%;
+}
+
+.compat-item .field {
+ float: left;
+ width: 65%;
+ margin: 1px;
+}
+
+.compat-item .field input[type="text"],
+.compat-item .field input[type="password"],
+.compat-item .field input[type="email"],
+.compat-item .field input[type="number"],
+.compat-item .field input[type="search"],
+.compat-item .field input[type="tel"],
+.compat-item .field input[type="url"],
+.compat-item .field textarea {
+ width: 100%;
+ margin: 0;
+ box-sizing: border-box;
+}
+
+.sidebar-for-errors .attachment-details,
+.sidebar-for-errors .compat-item,
+.sidebar-for-errors .media-sidebar .media-progress-bar,
+.sidebar-for-errors .upload-details {
+ display: none !important;
+}
+
+/**
+ * Menu
+ */
+.media-menu {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ margin: 0;
+ padding: 50px 0 10px;
+ background: #f6f7f7;
+ border-left-width: 1px;
+ border-left-style: solid;
+ border-left-color: #c3c4c7;
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.media-menu .media-menu-item {
+ display: block;
+ box-sizing: border-box;
+ width: 100%;
+ position: relative;
+ border: 0;
+ margin: 0;
+ padding: 8px 20px;
+ font-size: 14px;
+ line-height: 1.28571428;
+ background: transparent;
+ color: #2271b1;
+ text-align: right;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+.media-menu .media-menu-item:hover {
+ background: rgba(0, 0, 0, 0.04);
+}
+
+.media-menu .media-menu-item:active {
+ color: #2271b1;
+ outline: none;
+}
+
+.media-menu .active,
+.media-menu .active:hover {
+ color: #1d2327;
+ font-weight: 600;
+}
+
+.media-menu .media-menu-item:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ color: #043959;
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.media-menu .separator {
+ height: 0;
+ margin: 12px 20px;
+ padding: 0;
+ border-top: 1px solid #dcdcde;
+}
+
+/**
+ * Menu
+ */
+.media-router {
+ position: relative;
+ padding: 0 6px;
+ margin: 0;
+ clear: both;
+}
+
+.media-router .media-menu-item {
+ position: relative;
+ float: right;
+ border: 0;
+ margin: 0;
+ padding: 8px 10px 9px;
+ height: 18px;
+ line-height: 1.28571428;
+ font-size: 14px;
+ text-decoration: none;
+ background: transparent;
+ cursor: pointer;
+ transition: none;
+}
+
+.media-router .media-menu-item:last-child {
+ border-left: 0;
+}
+
+.media-router .media-menu-item:hover,
+.media-router .media-menu-item:active {
+ color: #2271b1;
+}
+
+.media-router .active,
+.media-router .active:hover {
+ color: #1d2327;
+}
+
+.media-router .media-menu-item:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ color: #043959;
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.media-router .active,
+.media-router .media-menu-item.active:last-child {
+ margin: -1px -1px 0;
+ background: #fff;
+ border: 1px solid #dcdcde;
+ border-bottom: none;
+}
+
+.media-router .active:after {
+ display: none;
+}
+
+/**
+ * Frame
+ */
+.media-frame {
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+}
+
+.media-frame-menu {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 200px;
+ z-index: 150;
+}
+
+.media-frame-title {
+ position: absolute;
+ top: 0;
+ right: 200px;
+ left: 0;
+ height: 50px;
+ z-index: 200;
+}
+
+.media-frame-router {
+ position: absolute;
+ top: 50px;
+ right: 200px;
+ left: 0;
+ height: 36px;
+ z-index: 200;
+}
+
+.media-frame-content {
+ position: absolute;
+ top: 84px;
+ right: 200px;
+ left: 0;
+ bottom: 61px;
+ height: auto;
+ width: auto;
+ margin: 0;
+ overflow: auto;
+ background: #fff;
+ border-top: 1px solid #dcdcde;
+}
+
+.media-frame-toolbar {
+ position: absolute;
+ right: 200px;
+ left: 0;
+ z-index: 100;
+ bottom: 60px;
+ height: auto;
+}
+
+.media-frame.hide-menu .media-frame-title,
+.media-frame.hide-menu .media-frame-router,
+.media-frame.hide-menu .media-frame-toolbar,
+.media-frame.hide-menu .media-frame-content {
+ right: 0;
+}
+
+.media-frame.hide-toolbar .media-frame-content {
+ bottom: 0;
+}
+
+.media-frame.hide-router .media-frame-content {
+ top: 50px;
+}
+
+.media-frame.hide-menu .media-frame-menu,
+.media-frame.hide-menu .media-frame-menu-heading,
+.media-frame.hide-router .media-frame-router,
+.media-frame.hide-toolbar .media-frame-toolbar {
+ display: none;
+}
+
+.media-frame-title h1 {
+ padding: 0 16px;
+ font-size: 22px;
+ line-height: 2.27272727;
+ margin: 0;
+}
+
+.media-frame-menu-heading,
+.media-attachments-filter-heading {
+ position: absolute;
+ right: 20px;
+ top: 22px;
+ margin: 0;
+ font-size: 13px;
+ line-height: 1;
+ /* Above the media-frame-menu. */
+ z-index: 151;
+}
+
+.media-attachments-filter-heading {
+ top: 10px;
+ right: 16px;
+}
+
+.mode-grid .media-attachments-filter-heading {
+ top: 0;
+ right: -9999px;
+}
+
+.mode-grid .media-frame-actions-heading {
+ display: none;
+}
+
+.wp-core-ui .button.media-frame-menu-toggle {
+ display: none;
+}
+
+.media-frame-title .suggested-dimensions {
+ font-size: 14px;
+ float: left;
+ margin-left: 20px;
+}
+
+.media-frame-content .crop-content {
+ height: 100%;
+}
+
+.wp-customizer:not(.mobile) .media-frame-content .crop-content.site-icon {
+ margin-left: 300px;
+}
+
+.media-frame-content .crop-content .crop-image {
+ display: block;
+ margin: auto;
+ max-width: 100%;
+ max-height: 100%;
+}
+
+.media-frame-content .crop-content .upload-errors {
+ position: absolute;
+ width: 300px;
+ top: 50%;
+ right: 50%;
+ margin-right: -150px;
+ margin-left: -150px;
+ z-index: 600000;
+}
+
+/**
+ * Iframes
+ */
+.media-frame .media-iframe {
+ overflow: hidden;
+}
+
+.media-frame .media-iframe,
+.media-frame .media-iframe iframe {
+ height: 100%;
+ width: 100%;
+ border: 0;
+}
+
+/**
+ * Attachment Browser Filters
+ */
+.media-frame select.attachment-filters {
+ margin-top: 11px;
+ margin-left: 2%;
+ max-width: 42%;
+ max-width: calc(48% - 12px);
+}
+
+.media-frame select.attachment-filters:last-of-type {
+ margin-left: 0;
+ width: auto;
+ max-width: 100%;
+}
+
+/**
+ * Search
+ */
+.media-frame .search {
+ margin: 32px 0 0;
+ padding: 4px;
+ font-size: 13px;
+ color: #3c434a;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ -webkit-appearance: none;
+}
+
+.media-toolbar-primary .search {
+ max-width: 100%;
+}
+
+.media-frame .media-search-input-label {
+ position: absolute;
+ right: 0;
+ top: 10px;
+ margin: 0;
+ line-height: 1;
+}
+
+/**
+ * Attachments
+ */
+.wp-core-ui .attachments {
+ margin: 0;
+ -webkit-overflow-scrolling: touch;
+}
+
+/**
+ * Attachment
+ */
+.wp-core-ui .attachment {
+ position: relative;
+ float: right;
+ padding: 8px;
+ margin: 0;
+ color: #3c434a;
+ cursor: pointer;
+ list-style: none;
+ text-align: center;
+ -webkit-user-select: none;
+ user-select: none;
+ width: 25%;
+ box-sizing: border-box;
+}
+
+.wp-core-ui .attachment:focus,
+.wp-core-ui .selected.attachment:focus,
+.wp-core-ui .attachment.details:focus {
+ box-shadow:
+ inset 0 0 2px 3px #fff,
+ inset 0 0 0 7px #4f94d4;
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ outline-offset: -6px;
+}
+
+.wp-core-ui .selected.attachment {
+ box-shadow:
+ inset 0 0 0 5px #fff,
+ inset 0 0 0 7px #c3c4c7;
+}
+
+.wp-core-ui .attachment.details {
+ box-shadow:
+ inset 0 0 0 3px #fff,
+ inset 0 0 0 7px #2271b1;
+}
+
+.wp-core-ui .attachment-preview {
+ position: relative;
+ box-shadow:
+ inset 0 0 15px rgba(0, 0, 0, 0.1),
+ inset 0 0 0 1px rgba(0, 0, 0, 0.05);
+ background: #f0f0f1;
+ cursor: pointer;
+}
+
+.wp-core-ui .attachment-preview:before {
+ content: "";
+ display: block;
+ padding-top: 100%;
+}
+
+.wp-core-ui .attachment .icon {
+ margin: 0 auto;
+ overflow: hidden;
+}
+
+.wp-core-ui .attachment .thumbnail {
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ opacity: 1;
+ transition: opacity .1s;
+}
+
+.wp-core-ui .attachment .portrait img {
+ max-width: 100%;
+}
+
+.wp-core-ui .attachment .landscape img {
+ max-height: 100%;
+}
+
+.wp-core-ui .attachment .thumbnail:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+}
+
+.wp-core-ui .attachment .thumbnail img {
+ top: 0;
+ right: 0;
+}
+
+.wp-core-ui .attachment .thumbnail .centered {
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ transform: translate( -50%, 50% );
+}
+
+.wp-core-ui .attachment .thumbnail .centered img {
+ transform: translate( 50%, -50% );
+}
+
+.wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon {
+ transform: translate( 50%, -70% );
+}
+
+.wp-core-ui .attachment .filename {
+ position: absolute;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ overflow: hidden;
+ max-height: 100%;
+ word-wrap: break-word;
+ text-align: center;
+ font-weight: 600;
+ background: rgba(255, 255, 255, 0.8);
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
+}
+
+.wp-core-ui .attachment .filename div {
+ padding: 5px 10px;
+}
+
+.wp-core-ui .attachment .thumbnail img {
+ position: absolute;
+}
+
+.wp-core-ui .attachment-close {
+ display: block;
+ position: absolute;
+ top: 5px;
+ left: 5px;
+ height: 22px;
+ width: 22px;
+ padding: 0;
+ background-color: #fff;
+ background-position: -96px 4px;
+ border-radius: 3px;
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
+ transition: none;
+}
+
+.wp-core-ui .attachment-close:hover,
+.wp-core-ui .attachment-close:focus {
+ background-position: -36px 4px;
+}
+
+.wp-core-ui .attachment .check {
+ display: none;
+ height: 24px;
+ width: 24px;
+ padding: 0;
+ border: 0;
+ position: absolute;
+ z-index: 10;
+ top: 0;
+ left: 0;
+ outline: none;
+ background: #f0f0f1;
+ cursor: pointer;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 0, 0, 0.15);
+}
+
+.wp-core-ui .attachment .check .media-modal-icon {
+ display: block;
+ background-position: -1px 0;
+ height: 15px;
+ width: 15px;
+ margin: 5px;
+}
+
+.wp-core-ui .attachment .check:hover .media-modal-icon {
+ background-position: -40px 0;
+}
+
+.wp-core-ui .attachment.selected .check {
+ display: block;
+}
+
+.wp-core-ui .attachment.details .check,
+.wp-core-ui .attachment.selected .check:focus,
+.wp-core-ui .media-frame.mode-grid .attachment.selected .check {
+ background-color: #2271b1;
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 0 2px #2271b1;
+}
+
+.wp-core-ui .attachment.selected .check:focus {
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.wp-core-ui .attachment.details .check .media-modal-icon,
+.wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon {
+ background-position: -21px 0;
+}
+
+.wp-core-ui .attachment.details .check:hover .media-modal-icon,
+.wp-core-ui .attachment.selected .check:focus .media-modal-icon,
+.wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon {
+ background-position: -60px 0;
+}
+
+.wp-core-ui .media-frame .attachment .describe {
+ position: relative;
+ display: block;
+ width: 100%;
+ margin: 0;
+ padding: 0 8px;
+ font-size: 12px;
+ border-radius: 0;
+}
+
+/**
+ * Attachments Browser
+ */
+.media-frame .attachments-browser {
+ position: relative;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+}
+
+.attachments-browser .media-toolbar {
+ left: 300px;
+ height: 72px;
+ background: #fff;
+}
+
+.attachments-browser.hide-sidebar .media-toolbar {
+ left: 0;
+}
+
+.attachments-browser .media-toolbar-primary > .media-button,
+.attachments-browser .media-toolbar-primary > .media-button-group,
+.attachments-browser .media-toolbar-secondary > .media-button,
+.attachments-browser .media-toolbar-secondary > .media-button-group {
+ margin: 10px 0;
+}
+
+.attachments-browser .attachments {
+ padding: 2px 8px 8px;
+}
+
+.attachments-browser:not(.has-load-more) .attachments,
+.attachments-browser.has-load-more .attachments-wrapper,
+.attachments-browser .uploader-inline {
+ position: absolute;
+ top: 72px;
+ right: 0;
+ left: 300px;
+ bottom: 0;
+ overflow: auto;
+ outline: none;
+}
+
+.attachments-browser .uploader-inline.hidden {
+ display: none;
+}
+
+.attachments-browser .media-toolbar-primary {
+ max-width: 33%;
+}
+
+.mode-grid .attachments-browser .media-toolbar-primary {
+ display: flex;
+ align-items: center;
+}
+
+.mode-grid .attachments-browser .media-toolbar-mode-select .media-toolbar-primary {
+ display: none;
+}
+
+.attachments-browser .media-toolbar-secondary {
+ max-width: 66%;
+}
+
+.uploader-inline .close {
+ background-color: transparent;
+ border: 0;
+ cursor: pointer;
+ height: 48px;
+ outline: none;
+ padding: 0;
+ position: absolute;
+ left: 2px;
+ text-align: center;
+ top: 2px;
+ width: 48px;
+ z-index: 1;
+}
+
+.uploader-inline .close:before {
+ font: normal 30px/1 dashicons !important;
+ color: #50575e;
+ display: inline-block;
+ content: "\f335";
+ font-weight: 300;
+ margin-top: 1px;
+}
+
+.uploader-inline .close:focus {
+ outline: 1px solid #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+}
+
+.attachments-browser.hide-sidebar .attachments,
+.attachments-browser.hide-sidebar .uploader-inline {
+ left: 0;
+ margin-left: 0;
+}
+
+.attachments-browser .instructions {
+ display: inline-block;
+ margin-top: 16px;
+ line-height: 1.38461538;
+ font-size: 13px;
+ color: #646970;
+}
+
+.attachments-browser .no-media {
+ padding: 2em 2em 0 0;
+}
+
+.more-loaded .attachment:not(.found-media) {
+ background: #dcdcde;
+}
+
+.load-more-wrapper {
+ clear: both;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: center;
+ padding: 1em 0;
+}
+
+.load-more-wrapper .load-more-count {
+ min-width: 100%;
+ margin: 0 0 1em;
+ text-align: center;
+}
+
+.load-more-wrapper .load-more {
+ margin: 0;
+}
+
+/* Needs high specificity. */
+.media-frame .load-more-wrapper .load-more + .spinner {
+ float: none;
+ margin: 0 10px 0 -30px;
+}
+
+/* Reset spinner margin when the button is hidden to avoid horizontal scrollbar. */
+.media-frame .load-more-wrapper .load-more.hidden + .spinner {
+ margin: 0;
+}
+
+/* Force a new row within the flex container. */
+.load-more-wrapper::after {
+ content: "";
+ min-width: 100%;
+ order: 1;
+}
+
+.load-more-wrapper .load-more-jump {
+ margin: 0 12px 0 0;
+}
+
+.attachment.new-media {
+ outline: 2px dotted #c3c4c7;
+}
+
+.load-more-wrapper {
+ clear: both;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: center;
+ padding: 1em 0;
+}
+
+.load-more-wrapper .load-more-count {
+ min-width: 100%;
+ margin: 0 0 1em;
+ text-align: center;
+}
+
+.load-more-wrapper .load-more {
+ margin: 0;
+}
+
+/* Needs high specificity. */
+.media-frame .load-more-wrapper .load-more + .spinner {
+ float: none;
+ margin: 0 10px 0 -30px;
+}
+
+/* Reset spinner margin when the button is hidden to avoid horizontal scrollbar. */
+.media-frame .load-more-wrapper .load-more.hidden + .spinner {
+ margin: 0;
+}
+
+/* Force a new row within the flex container. */
+.load-more-wrapper::after {
+ content: "";
+ min-width: 100%;
+ order: 1;
+}
+
+.load-more-wrapper .load-more-jump {
+ margin: 0 12px 0 0;
+}
+
+/**
+ * Progress Bar
+ */
+.media-progress-bar {
+ position: relative;
+ height: 10px;
+ width: 70%;
+ margin: 10px auto;
+ border-radius: 10px;
+ background: #dcdcde;
+ background: rgba(0, 0, 0, 0.1);
+}
+
+.media-progress-bar div {
+ height: 10px;
+ min-width: 20px;
+ width: 0;
+ background: #2271b1;
+ border-radius: 10px;
+ transition: width 300ms;
+}
+
+.media-uploader-status .media-progress-bar {
+ display: none;
+ width: 100%;
+}
+
+.uploading.media-uploader-status .media-progress-bar {
+ display: block;
+}
+
+.attachment-preview .media-progress-bar {
+ position: absolute;
+ top: 50%;
+ right: 15%;
+ width: 70%;
+ margin: -5px 0 0;
+}
+
+.media-uploader-status {
+ position: relative;
+ margin: 0 auto;
+ padding-bottom: 10px;
+ max-width: 400px;
+}
+
+.uploader-inline .media-uploader-status h2 {
+ display: none;
+}
+
+.media-uploader-status .upload-details {
+ display: none;
+ font-size: 12px;
+ color: #646970;
+}
+
+.uploading.media-uploader-status .upload-details {
+ display: block;
+}
+
+.media-uploader-status .upload-detail-separator {
+ padding: 0 4px;
+}
+
+.media-uploader-status .upload-count {
+ color: #3c434a;
+}
+
+.media-uploader-status .upload-dismiss-errors,
+.media-uploader-status .upload-errors {
+ display: none;
+}
+
+.errors.media-uploader-status .upload-dismiss-errors,
+.errors.media-uploader-status .upload-errors {
+ display: block;
+}
+
+.media-uploader-status .upload-dismiss-errors {
+ transition: none;
+ text-decoration: none;
+}
+
+.upload-errors .upload-error {
+ padding: 12px;
+ margin-bottom: 12px;
+ background: #fff;
+ border-right: 4px solid #d63638;
+ box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
+}
+
+.uploader-inline .upload-errors .upload-error {
+ padding: 12px 30px;
+ background-color: #fcf0f1;
+ box-shadow: none;
+}
+
+.upload-errors .upload-error-filename {
+ font-weight: 600;
+}
+
+.upload-errors .upload-error-message {
+ display: block;
+ padding-top: 8px;
+ word-wrap: break-word;
+}
+
+/**
+ * Window and Editor uploaders used to display "drop zones"
+ */
+.uploader-window,
+.wp-editor-wrap .uploader-editor {
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ text-align: center;
+ display: none;
+}
+
+.uploader-window {
+ position: fixed;
+ z-index: 250000;
+ opacity: 0; /* Only the inline uploader is animated with JS, the editor one isn't */
+ transition: opacity 250ms;
+}
+
+.wp-editor-wrap .uploader-editor {
+ position: absolute;
+ z-index: 99998; /* under the toolbar */
+ background: rgba(140, 143, 148, 0.9);
+}
+
+.uploader-window,
+.wp-editor-wrap .uploader-editor.droppable {
+ background: rgba(10, 75, 120, 0.9);
+}
+
+.uploader-window-content,
+.wp-editor-wrap .uploader-editor-content {
+ position: absolute;
+ top: 10px;
+ right: 10px;
+ left: 10px;
+ bottom: 10px;
+ border: 1px dashed #fff;
+}
+
+/* uploader drop-zone title */
+.uploader-window h1, /* Back-compat for pre-5.3 */
+.uploader-window .uploader-editor-title,
+.wp-editor-wrap .uploader-editor .uploader-editor-title {
+ position: absolute;
+ top: 50%;
+ right: 0;
+ left: 0;
+ transform: translateY(-50%);
+ font-size: 3em;
+ line-height: 1.3;
+ font-weight: 600;
+ color: #fff;
+ margin: 0;
+ padding: 0 10px;
+}
+
+.wp-editor-wrap .uploader-editor .uploader-editor-title {
+ display: none;
+}
+
+.wp-editor-wrap .uploader-editor.droppable .uploader-editor-title {
+ display: block;
+}
+
+.uploader-window .media-progress-bar {
+ margin-top: 20px;
+ max-width: 300px;
+ background: transparent;
+ border-color: #fff;
+ display: none;
+}
+
+.uploader-window .media-progress-bar div {
+ background: #fff;
+}
+
+.uploading .uploader-window .media-progress-bar {
+ display: block;
+}
+
+.media-frame .uploader-inline {
+ margin-bottom: 20px;
+ padding: 0;
+ text-align: center;
+}
+
+.uploader-inline-content {
+ position: absolute;
+ top: 30%;
+ right: 0;
+ left: 0;
+}
+
+.uploader-inline-content .upload-ui {
+ margin: 2em 0;
+}
+
+.uploader-inline-content .post-upload-ui {
+ margin-bottom: 2em;
+}
+
+.uploader-inline .has-upload-message .upload-ui {
+ margin: 0 0 4em;
+}
+
+.uploader-inline h2 {
+ font-size: 20px;
+ line-height: 1.4;
+ font-weight: 400;
+ margin: 0;
+}
+
+.uploader-inline .has-upload-message .upload-instructions {
+ font-size: 14px;
+ color: #3c434a;
+ font-weight: 400;
+}
+
+.uploader-inline .drop-instructions {
+ display: none;
+}
+
+.supports-drag-drop .uploader-inline .drop-instructions {
+ display: block;
+}
+
+.uploader-inline p {
+ margin: 0.5em 0;
+}
+
+.uploader-inline .media-progress-bar {
+ display: none;
+}
+
+.uploading.uploader-inline .media-progress-bar {
+ display: block;
+}
+
+.uploader-inline .browser {
+ display: inline-block !important;
+}
+
+/**
+ * Selection
+ */
+.media-selection {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 350px;
+ height: 60px;
+ padding: 0 16px 0 0;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.media-selection .selection-info {
+ display: inline-block;
+ font-size: 12px;
+ height: 60px;
+ margin-left: 10px;
+ vertical-align: top;
+}
+
+.media-selection.empty,
+.media-selection.editing {
+ display: none;
+}
+
+.media-selection.one .edit-selection {
+ display: none;
+}
+
+.media-selection .count {
+ display: block;
+ padding-top: 12px;
+ font-size: 14px;
+ line-height: 1.42857142;
+ font-weight: 600;
+}
+
+.media-selection .button-link {
+ float: right;
+ padding: 1px 8px;
+ margin: 1px -8px 1px 8px;
+ line-height: 1.4;
+ border-left: 1px solid #dcdcde;
+ color: #2271b1;
+ text-decoration: none;
+}
+
+.media-selection .button-link:hover,
+.media-selection .button-link:focus {
+ color: #135e96;
+}
+
+.media-selection .button-link:last-child {
+ border-left: 0;
+ margin-left: 0;
+}
+
+.selection-info .clear-selection {
+ color: #d63638;
+}
+
+.selection-info .clear-selection:hover,
+.selection-info .clear-selection:focus {
+ color: #d63638;
+}
+
+.media-selection .selection-view {
+ display: inline-block;
+ vertical-align: top;
+}
+
+.media-selection .attachments {
+ display: inline-block;
+ height: 48px;
+ margin: 6px;
+ padding: 0;
+ overflow: hidden;
+ vertical-align: top;
+}
+
+.media-selection .attachment {
+ width: 40px;
+ padding: 0;
+ margin: 4px;
+}
+
+.media-selection .attachment .thumbnail {
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+}
+
+.media-selection .attachment .icon {
+ width: 50%;
+}
+
+.media-selection .attachment-preview {
+ box-shadow: none;
+ background: none;
+}
+
+.wp-core-ui .media-selection .attachment:focus,
+.wp-core-ui .media-selection .selected.attachment:focus,
+.wp-core-ui .media-selection .attachment.details:focus {
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 2px 3px #4f94d4;
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.wp-core-ui .media-selection .selected.attachment {
+ box-shadow: none;
+}
+
+.wp-core-ui .media-selection .attachment.details {
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 0 3px #2271b1;
+}
+
+.media-selection:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ width: 25px;
+ background-image: linear-gradient(to right,#fff,rgba(255, 255, 255, 0));
+}
+
+.media-selection .attachment .filename {
+ display: none;
+}
+
+/**
+ * Spinner
+ */
+.media-frame .spinner {
+ background: url(../images/spinner.gif) no-repeat;
+ background-size: 20px 20px;
+ float: left;
+ display: inline-block;
+ visibility: hidden;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ width: 20px;
+ height: 20px;
+ margin: 0;
+ vertical-align: middle;
+}
+
+.media-frame.mode-grid .spinner {
+ margin: 0;
+ float: none;
+ vertical-align: middle;
+}
+
+.media-modal .media-toolbar .spinner {
+ float: none;
+ vertical-align: bottom;
+ margin: 0 5px 5px 0;
+}
+
+.media-frame .instructions + .spinner.is-active {
+ vertical-align: middle;
+}
+
+.media-frame .spinner.is-active {
+ visibility: visible;
+}
+
+/**
+ * Attachment Details
+ */
+.attachment-details {
+ position: relative;
+ overflow: auto;
+}
+
+.attachment-details .settings-save-status {
+ float: left;
+ text-transform: none;
+ font-weight: 400;
+}
+
+.attachment-details .settings-save-status .spinner {
+ float: none;
+ margin-right: 5px;
+}
+
+.attachment-details .settings-save-status .saved {
+ display: none;
+}
+
+.attachment-details.save-waiting .settings-save-status .spinner {
+ visibility: visible;
+}
+
+.attachment-details.save-complete .settings-save-status .saved {
+ display: inline-block;
+}
+
+.attachment-info {
+ overflow: hidden;
+ min-height: 60px;
+ margin-bottom: 16px;
+ line-height: 1.5;
+ color: #646970;
+ border-bottom: 1px solid #dcdcde;
+ padding-bottom: 11px;
+}
+
+.attachment-info .wp-media-wrapper {
+ margin-bottom: 8px;
+}
+
+.attachment-info .wp-media-wrapper.wp-audio {
+ margin-top: 13px;
+}
+
+.attachment-info .filename {
+ font-weight: 600;
+ color: #3c434a;
+ word-wrap: break-word;
+}
+
+.attachment-info .thumbnail {
+ position: relative;
+ float: right;
+ max-width: 120px;
+ max-height: 120px;
+ margin-top: 5px;
+ margin-left: 10px;
+ margin-bottom: 5px;
+}
+
+.uploading .attachment-info .thumbnail {
+ width: 120px;
+ height: 80px;
+ box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
+}
+
+.uploading .attachment-info .media-progress-bar {
+ margin-top: 35px;
+}
+
+.attachment-info .thumbnail-image:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
+ overflow: hidden;
+}
+
+.attachment-info .thumbnail img {
+ display: block;
+ max-width: 120px;
+ max-height: 120px;
+ margin: 0 auto;
+}
+
+.attachment-info .details {
+ float: right;
+ font-size: 12px;
+ max-width: 100%;
+}
+
+.attachment-info .edit-attachment,
+.attachment-info .delete-attachment,
+.attachment-info .trash-attachment,
+.attachment-info .untrash-attachment {
+ display: block;
+ text-decoration: none;
+ white-space: nowrap;
+}
+
+.attachment-details.needs-refresh .attachment-info .edit-attachment {
+ display: none;
+}
+
+.attachment-info .edit-attachment {
+ display: block;
+}
+
+.media-modal .delete-attachment,
+.media-modal .trash-attachment,
+.media-modal .untrash-attachment {
+ display: inline;
+ padding: 0;
+ color: #d63638;
+}
+
+.media-modal .delete-attachment:hover,
+.media-modal .delete-attachment:focus,
+.media-modal .trash-attachment:hover,
+.media-modal .trash-attachment:focus,
+.media-modal .untrash-attachment:hover,
+.media-modal .untrash-attachment:focus {
+ color: #d63638;
+}
+
+/**
+ * Attachment Display Settings
+ */
+.attachment-display-settings {
+ width: 100%;
+ float: right;
+ overflow: hidden;
+}
+
+.collection-settings {
+ overflow: hidden;
+}
+
+.collection-settings .setting input[type="checkbox"] {
+ float: right;
+ margin-left: 8px;
+}
+
+.collection-settings .setting span, /* Back-compat for pre-5.3 */
+.collection-settings .setting .name {
+ min-width: inherit;
+}
+
+/**
+ * Image Editor
+ */
+.media-modal .imgedit-wrap {
+ position: static;
+}
+
+.media-modal .imgedit-wrap .imgedit-panel-content {
+ padding: 16px 16px 0;
+ position: absolute;
+ top: 0;
+ left: 282px;
+ bottom: 0;
+ right: 0;
+ overflow: auto;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.media-modal .imgedit-wrap .imgedit-submit {
+ margin-bottom: 16px;
+}
+
+.media-modal .imgedit-wrap .imgedit-settings {
+ background: #f6f7f7;
+ border-right: 1px solid #dcdcde;
+ padding: 20px 16px 0;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ width: 250px;
+ overflow: auto;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.media-modal .imgedit-wrap .imgedit-save-target {
+ margin: 8px 0 24px;
+}
+
+.media-modal .imgedit-group {
+ background: none;
+ border: none;
+ border-bottom: 1px solid #dcdcde;
+ box-shadow: none;
+ margin: 0;
+ margin-bottom: 16px;
+ padding: 0;
+ padding-bottom: 16px;
+ position: relative; /* RTL fix, #WP29352 */
+}
+
+.media-modal .imgedit-group:last-of-type {
+ border: none;
+ margin: 0;
+ padding: 0;
+}
+
+.media-modal .imgedit-group-top {
+ margin: 0;
+}
+
+.media-modal .imgedit-group-top h2,
+.media-modal .imgedit-group-top h2 .button-link {
+ display: inline-block;
+ text-transform: uppercase;
+ font-size: 12px;
+ color: #646970;
+ margin: 0;
+ margin-top: 3px;
+}
+
+.media-modal .imgedit-group-top h2 a,
+.media-modal .imgedit-group-top h2 .button-link {
+ text-decoration: none;
+ color: #646970;
+}
+
+/* higher specificity than media.css */
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle,
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover,
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active {
+ border: 1px solid transparent;
+ margin: 0;
+ padding: 0;
+ background: transparent;
+ color: #2271b1;
+ font-size: 20px;
+ line-height: 1;
+ cursor: pointer;
+ box-sizing: content-box;
+ box-shadow: none;
+}
+
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus {
+ color: #2271b1;
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle {
+ margin-top: -3px;
+}
+
+.wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle {
+ margin-top: -2px;
+}
+
+.media-modal .imgedit-help-toggled span.dashicons:before {
+ content: "\f142";
+}
+
+.media-modal .imgedit-thumbnail-preview {
+ margin: 10px 0 0 8px;
+}
+
+.imgedit-thumbnail-preview-caption {
+ display: block;
+}
+
+.media-modal .imgedit-wrap div.updated, /* Back-compat for pre-5.5 */
+.media-modal .imgedit-wrap .notice {
+ margin: 0;
+ margin-bottom: 16px;
+}
+
+/**
+ * Embed from URL and Image Details
+ */
+.embed-url {
+ display: block;
+ position: relative;
+ padding: 16px;
+ margin: 0;
+ z-index: 250;
+ background: #fff;
+ font-size: 18px;
+}
+
+.media-frame .embed-url input {
+ font-size: 18px;
+ line-height: 1.22222222; /* 22px */
+ padding: 12px 14px 12px 40px; /* right padding to leave room for the spinner */
+ width: 100%;
+ min-width: 200px;
+ box-shadow: inset -2px 2px 4px -2px rgba(0, 0, 0, 0.1);
+}
+
+.media-frame .embed-url input::-ms-clear {
+ display: none; /* the "x" in IE 11 conflicts with the spinner */
+}
+
+.media-frame .embed-url .spinner {
+ position: absolute;
+ top: 32px;
+ left: 26px;
+}
+
+.media-frame .embed-loading .embed-url .spinner {
+ visibility: visible;
+}
+
+.embed-link-settings,
+.embed-media-settings {
+ position: absolute;
+ top: 82px;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ padding: 0 16px;
+ overflow: auto;
+}
+
+.media-embed .embed-link-settings .link-text {
+ margin-top: 0;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.embed-link-settings::after,
+.embed-media-settings::after {
+ content: "";
+ display: flex;
+ clear: both;
+ height: 24px;
+}
+
+.media-embed .embed-link-settings {
+ /* avoid Firefox to give focus to the embed preview container parent */
+ overflow: visible;
+}
+
+.embed-preview img,
+.embed-preview iframe,
+.embed-preview embed,
+.mejs-container video {
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+.embed-preview a {
+ display: inline-block;
+}
+
+.embed-preview img {
+ display: block;
+ height: auto;
+}
+
+.mejs-container:focus {
+ outline: 1px solid #4f94d4;
+ box-shadow: 0 0 2px 1px rgba(79, 148, 212, 0.8);
+}
+
+.image-details .media-modal {
+ right: 140px;
+ left: 140px;
+}
+
+.image-details .media-frame-title,
+.image-details .media-frame-content,
+.image-details .media-frame-router {
+ right: 0;
+}
+
+.image-details .embed-media-settings {
+ top: 0;
+ overflow: visible;
+ padding: 0;
+}
+
+.image-details .embed-media-settings::after {
+ content: none;
+}
+
+.image-details .embed-media-settings,
+.image-details .embed-media-settings div {
+ box-sizing: border-box;
+}
+
+.image-details .column-settings {
+ background: #f6f7f7;
+ border-left: 1px solid #dcdcde;
+ min-height: 100%;
+ width: 55%;
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+
+.image-details .column-settings h2 {
+ margin: 20px;
+ padding-top: 20px;
+ border-top: 1px solid #dcdcde;
+ color: #1d2327;
+}
+
+.image-details .column-image {
+ width: 45%;
+ position: absolute;
+ right: 55%;
+ top: 0;
+}
+
+.image-details .image {
+ margin: 20px;
+}
+
+.image-details .image img {
+ max-width: 100%;
+ max-height: 500px;
+}
+
+.image-details .advanced-toggle {
+ padding: 0;
+ color: #646970;
+ text-transform: uppercase;
+ text-decoration: none;
+}
+
+.image-details .advanced-toggle:hover,
+.image-details .advanced-toggle:active {
+ color: #646970;
+}
+
+.image-details .advanced-toggle:after {
+ font: normal 20px/1 dashicons;
+ speak: never;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ content: "\f140";
+ display: inline-block;
+ margin-top: -2px;
+}
+
+.image-details .advanced-visible .advanced-toggle:after {
+ content: "\f142";
+}
+
+.image-details .custom-size label, /* Back-compat for pre-5.3 */
+.image-details .custom-size .custom-size-setting {
+ display: block;
+ float: right;
+}
+
+.image-details .custom-size .custom-size-setting label {
+ float: none;
+}
+
+.image-details .custom-size input {
+ width: 5em;
+}
+
+.image-details .custom-size .sep {
+ float: right;
+ margin: 26px 6px 0;
+}
+
+.image-details .custom-size .description {
+ margin-right: 0;
+}
+
+.media-embed .thumbnail {
+ max-width: 100%;
+ max-height: 200px;
+ position: relative;
+ float: right;
+}
+
+.media-embed .thumbnail img {
+ max-height: 200px;
+ display: block;
+}
+
+.media-embed .thumbnail:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+}
+
+.media-embed .setting,
+.media-embed .setting-group {
+ width: 100%;
+ margin: 10px 0;
+ float: right;
+ display: block;
+ clear: both;
+}
+
+.media-embed .setting-group .setting:not(.checkbox-setting) {
+ margin: 0;
+}
+
+.media-embed .setting.has-description {
+ margin-bottom: 5px;
+}
+
+.media-embed .description {
+ clear: both;
+ font-style: normal;
+}
+
+.media-embed .content-track + .description {
+ line-height: 1.4;
+ /* The !important needs to override a high specificity selector from wp-medialement.css */
+ max-width: none !important;
+}
+
+.media-embed .remove-track {
+ margin-bottom: 10px;
+}
+
+.image-details .embed-media-settings .setting,
+.image-details .embed-media-settings .setting-group {
+ float: none;
+ width: auto;
+}
+
+.image-details .actions {
+ margin: 10px 0;
+}
+
+.image-details .hidden {
+ display: none;
+}
+
+.media-embed .setting input[type="text"],
+.media-embed .setting textarea,
+.media-embed fieldset {
+ display: block;
+ width: 100%;
+ max-width: 400px;
+}
+
+.image-details .embed-media-settings .setting input[type="text"],
+.image-details .embed-media-settings .setting textarea {
+ max-width: inherit;
+ width: 70%;
+}
+
+.image-details .embed-media-settings .setting input.link-to-custom,
+.image-details .embed-media-settings .link-target,
+.image-details .embed-media-settings .custom-size,
+.image-details .embed-media-settings .setting-group,
+.image-details .description {
+ margin-right: 27%;
+ width: 70%;
+}
+
+.image-details .description {
+ font-style: normal;
+ margin-top: 0;
+}
+
+.image-details .embed-media-settings .link-target {
+ margin-top: 16px;
+}
+
+.image-details .checkbox-label,
+.audio-details .checkbox-label,
+.video-details .checkbox-label {
+ vertical-align: baseline;
+}
+
+.media-embed .setting input.hidden,
+.media-embed .setting textarea.hidden {
+ display: none;
+}
+
+.media-embed .setting span, /* Back-compat for pre-5.3 */
+.media-embed .setting .name,
+.media-embed .setting-group .name {
+ display: inline-block;
+ font-size: 13px;
+ line-height: 1.84615384;
+ color: #646970;
+}
+
+.media-embed .setting span {
+ display: block; /* Back-compat for pre-5.3 */
+ width: 200px; /* Back-compat for pre-5.3 */
+}
+
+.image-details .embed-media-settings .setting span, /* Back-compat for pre-5.3 */
+.image-details .embed-media-settings .setting .name {
+ float: right;
+ width: 25%;
+ text-align: left;
+ margin: 8px 1% 0;
+ line-height: 1.1;
+}
+
+/* Buttons group in IE 11. */
+.media-frame .setting-group .button-group,
+.image-details .embed-media-settings .setting .button-group {
+ width: auto;
+}
+
+.media-embed-sidebar {
+ position: absolute;
+ top: 0;
+ right: 440px;
+}
+
+.advanced-section,
+.link-settings {
+ margin-top: 10px;
+}
+
+/**
+ * Button groups fix: can be removed together with the Back-compat for pre-5.3
+ */
+ .media-frame .setting .button-group {
+ display: flex;
+ margin: 0 !important;
+ max-width: none !important;
+ }
+
+/**
+ * Localization
+ */
+.rtl .media-modal,
+.rtl .media-frame,
+.rtl .media-frame .search,
+.rtl .media-frame input[type="text"],
+.rtl .media-frame input[type="password"],
+.rtl .media-frame input[type="number"],
+.rtl .media-frame input[type="search"],
+.rtl .media-frame input[type="email"],
+.rtl .media-frame input[type="url"],
+.rtl .media-frame input[type="tel"],
+.rtl .media-frame textarea,
+.rtl .media-frame select {
+ font-family: Tahoma, sans-serif;
+}
+
+:lang(he-il) .rtl .media-modal,
+:lang(he-il) .rtl .media-frame,
+:lang(he-il) .rtl .media-frame .search,
+:lang(he-il) .rtl .media-frame input[type="text"],
+:lang(he-il) .rtl .media-frame input[type="password"],
+:lang(he-il) .rtl .media-frame input[type="number"],
+:lang(he-il) .rtl .media-frame input[type="search"],
+:lang(he-il) .rtl .media-frame input[type="email"],
+:lang(he-il) .rtl .media-frame input[type="url"],
+:lang(he-il) .rtl .media-frame textarea,
+:lang(he-il) .rtl .media-frame select {
+ font-family: Arial, sans-serif;
+}
+
+/**
+ * Responsive layout
+ */
+@media only screen and (max-width: 900px) {
+ .media-modal .media-frame-title {
+ height: 40px;
+ }
+
+ .media-modal .media-frame-title h1 {
+ line-height: 2.22222222;
+ font-size: 18px;
+ }
+
+ .media-modal-close {
+ width: 42px;
+ height: 42px;
+ }
+
+ /* Drop-down menu */
+ .media-frame .media-frame-title {
+ position: static;
+ padding: 0 44px;
+ text-align: center;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-router,
+ .media-frame:not(.hide-menu) .media-frame-content,
+ .media-frame:not(.hide-menu) .media-frame-toolbar {
+ right: 0;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-router {
+ /* 40 title + (40 - 6) menu toggle button + 6 spacing */
+ top: 80px;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-content {
+ /* 80 + room for the tabs */
+ top: 114px;
+ }
+
+ .media-frame.hide-router .media-frame-content {
+ top: 80px;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-menu {
+ position: static;
+ width: 0;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu {
+ display: none;
+ width: auto;
+ max-width: 80%;
+ overflow: auto;
+ z-index: 2000;
+ top: 75px;
+ right: 50%;
+ transform: translateX(50%);
+ left: auto;
+ bottom: auto;
+ padding: 5px 0;
+ border: 1px solid #c3c4c7;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu.visible {
+ display: block;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu > a {
+ padding: 12px 16px;
+ font-size: 16px;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu .separator {
+ margin: 5px 10px;
+ }
+
+ /* Visually hide the menu heading keeping it available to assistive technologies. */
+ .media-frame-menu-heading {
+ clip: rect(1px, 1px, 1px, 1px);
+ -webkit-clip-path: inset(50%);
+ clip-path: inset(50%);
+ height: 1px;
+ overflow: hidden;
+ padding: 0;
+ width: 1px;
+ word-wrap: normal !important;
+ }
+
+ /* Reveal the menu toggle button. */
+ .wp-core-ui .media-frame:not(.hide-menu) .button.media-frame-menu-toggle {
+ display: inline-flex;
+ align-items: center;
+ position: absolute;
+ right: 50%;
+ transform: translateX(50%);
+ margin: -6px 0 0;
+ padding: 0 12px 0 2px;
+ font-size: 0.875rem;
+ font-weight: 600;
+ text-decoration: none;
+ background: transparent;
+ /* Only for IE11 to vertically align text within the inline-flex button */
+ height: 0.1%;
+ /* Modern browsers */
+ min-height: 40px;
+ }
+
+ .wp-core-ui .button.media-frame-menu-toggle:hover,
+ .wp-core-ui .button.media-frame-menu-toggle:active {
+ background: transparent;
+ transform: none;
+ }
+
+ .wp-core-ui .button.media-frame-menu-toggle:focus {
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+ }
+ /* End drop-down menu */
+
+ .media-sidebar {
+ width: 230px;
+ }
+
+ .attachments-browser .attachments,
+ .attachments-browser .uploader-inline,
+ .attachments-browser .media-toolbar,
+ .attachments-browser .attachments-wrapper,
+ .attachments-browser.has-load-more .attachments-wrapper {
+ left: 262px;
+ }
+
+ .media-sidebar .setting,
+ .attachment-details .setting {
+ margin: 6px 0;
+ }
+
+ .media-sidebar .setting input,
+ .media-sidebar .setting textarea,
+ .media-sidebar .setting .name,
+ .attachment-details .setting input,
+ .attachment-details .setting textarea,
+ .attachment-details .setting .name,
+ .compat-item label span {
+ float: none;
+ display: inline-block;
+ }
+
+ .media-sidebar .setting span, /* Back-compat for pre-5.3 */
+ .attachment-details .setting span, /* Back-compat for pre-5.3 */
+ .media-sidebar .checkbox-label-inline {
+ float: none;
+ }
+
+ .media-sidebar .setting .select-label-inline {
+ display: inline;
+ }
+
+ .media-sidebar .setting .name,
+ .media-sidebar .checkbox-label-inline,
+ .attachment-details .setting .name,
+ .compat-item label span {
+ text-align: inherit;
+ min-height: 16px;
+ margin: 0;
+ padding: 8px 2px 2px;
+ }
+
+ /* Needs high specificity. */
+ .media-sidebar .setting .copy-to-clipboard-container,
+ .attachment-details .attachment-info .copy-to-clipboard-container {
+ margin-right: 0;
+ padding-top: 0;
+ }
+
+ .media-sidebar .setting .copy-attachment-url,
+ .attachment-details .attachment-info .copy-attachment-url {
+ margin: 0 1px;
+ }
+
+ .media-sidebar .setting .value,
+ .attachment-details .setting .value {
+ float: none;
+ width: auto;
+ }
+
+ .media-sidebar .setting input[type="text"],
+ .media-sidebar .setting input[type="password"],
+ .media-sidebar .setting input[type="email"],
+ .media-sidebar .setting input[type="number"],
+ .media-sidebar .setting input[type="search"],
+ .media-sidebar .setting input[type="tel"],
+ .media-sidebar .setting input[type="url"],
+ .media-sidebar .setting textarea,
+ .media-sidebar .setting select,
+ .attachment-details .setting input[type="text"],
+ .attachment-details .setting input[type="password"],
+ .attachment-details .setting input[type="email"],
+ .attachment-details .setting input[type="number"],
+ .attachment-details .setting input[type="search"],
+ .attachment-details .setting input[type="tel"],
+ .attachment-details .setting input[type="url"],
+ .attachment-details .setting textarea,
+ .attachment-details .setting select,
+ .attachment-details .setting + .description {
+ float: none;
+ width: 98%;
+ max-width: none;
+ height: auto;
+ }
+
+ .media-frame .media-toolbar input[type="search"] {
+ line-height: 2.25; /* 36px */
+ }
+
+ .media-sidebar .setting select.columns,
+ .attachment-details .setting select.columns {
+ width: auto;
+ }
+
+ .media-frame input,
+ .media-frame textarea,
+ .media-frame .search {
+ padding: 3px 6px;
+ }
+
+ .wp-admin .media-frame select {
+ min-height: 40px;
+ font-size: 16px;
+ line-height: 1.625;
+ padding: 5px 8px 5px 24px;
+ }
+
+ .image-details .column-image {
+ width: 30%;
+ right: 70%;
+ }
+
+ .image-details .column-settings {
+ width: 70%;
+ }
+
+ .image-details .media-modal {
+ right: 30px;
+ left: 30px;
+ }
+
+ .image-details .embed-media-settings .setting,
+ .image-details .embed-media-settings .setting-group {
+ margin: 20px;
+ }
+
+ .image-details .embed-media-settings .setting span, /* Back-compat for pre-5.3 */
+ .image-details .embed-media-settings .setting .name {
+ float: none;
+ text-align: right;
+ width: 100%;
+ margin-bottom: 4px;
+ margin-right: 0;
+ }
+
+ .media-modal .legend-inline {
+ position: static;
+ transform: none;
+ margin-right: 0;
+ margin-bottom: 6px;
+ }
+
+ .image-details .embed-media-settings .setting-group .setting {
+ margin-bottom: 0;
+ }
+
+ .image-details .embed-media-settings .setting input.link-to-custom,
+ .image-details .embed-media-settings .setting input[type="text"],
+ .image-details .embed-media-settings .setting textarea {
+ width: 100%;
+ margin-right: 0;
+ }
+
+ .image-details .embed-media-settings .setting.has-description {
+ margin-bottom: 5px;
+ }
+
+ .image-details .description {
+ width: auto;
+ margin: 0 20px;
+ }
+
+ .image-details .embed-media-settings .custom-size {
+ margin-right: 20px;
+ }
+
+ .collection-settings .setting input[type="checkbox"] {
+ float: none;
+ margin-top: 0;
+ }
+
+ .media-selection {
+ min-width: 120px;
+ }
+
+ .media-selection:after {
+ background: none;
+ }
+
+ .media-selection .attachments {
+ display: none;
+ }
+
+ .media-modal .attachments-browser .media-toolbar .search {
+ max-width: 100%;
+ height: auto;
+ float: left;
+ }
+
+ .media-modal .attachments-browser .media-toolbar .attachment-filters {
+ height: auto;
+ }
+
+ /* Text inputs need to be 16px, or they force zooming on iOS */
+ .media-frame input[type="text"],
+ .media-frame input[type="password"],
+ .media-frame input[type="number"],
+ .media-frame input[type="search"],
+ .media-frame input[type="email"],
+ .media-frame input[type="url"],
+ .media-frame textarea,
+ .media-frame select {
+ font-size: 16px;
+ }
+
+ .media-frame .media-toolbar input[type="search"] {
+ line-height: 2.3755; /* 38px */
+ }
+
+ .media-modal .media-toolbar .spinner {
+ margin-bottom: 10px;
+ }
+}
+
+@media screen and (max-width: 782px) {
+ .attachments-browser .media-toolbar {
+ height: 82px;
+ }
+
+ .attachments-browser .attachments,
+ .attachments-browser .uploader-inline {
+ top: 82px;
+ }
+
+ .media-frame-toolbar .media-toolbar {
+ bottom: -54px;
+ }
+
+ .mode-grid .attachments-browser .media-toolbar-primary {
+ display: block;
+ }
+
+ .media-sidebar .copy-to-clipboard-container .success,
+ .attachment-details .copy-to-clipboard-container .success {
+ font-size: 14px;
+ line-height: 2.71428571;
+ }
+}
+
+/* Responsive on portrait and landscape */
+@media only screen and (max-width: 640px), screen and (max-height: 400px) {
+ /* Full-bleed modal */
+ .media-modal,
+ .image-details .media-modal {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ }
+
+ .media-modal-backdrop {
+ position: fixed;
+ }
+
+ .media-sidebar {
+ z-index: 1900;
+ max-width: 70%;
+ bottom: 120%;
+ box-sizing: border-box;
+ padding-bottom: 0;
+ }
+
+ .media-sidebar.visible {
+ bottom: 0;
+ }
+
+ .attachments-browser .attachments,
+ .attachments-browser .uploader-inline,
+ .attachments-browser .media-toolbar,
+ .media-frame-content .attachments-browser .attachments-wrapper {
+ left: 0;
+ }
+
+ .attachments-browser .attachments-wrapper {
+ padding-top: 12px;
+ }
+
+ .image-details .media-frame-title {
+ display: block;
+ top: 0;
+ font-size: 14px;
+ }
+
+ .image-details .column-image,
+ .image-details .column-settings {
+ width: 100%;
+ position: relative;
+ right: 0;
+ }
+
+ .image-details .column-settings {
+ padding: 4px 0;
+ }
+
+ /* Media tabs on the top */
+ .media-frame-content .media-toolbar .instructions {
+ display: none;
+ }
+
+ /* Change margin direction on load more button in responsive views. */
+ .load-more-wrapper .load-more-jump {
+ margin: 12px 0 0;
+ }
+
+}
+
+@media only screen and (min-width: 901px) and (max-height: 400px) {
+ .media-menu,
+ .media-frame:not(.hide-menu) .media-menu {
+ top: 0;
+ padding-top: 44px;
+ }
+
+ /* Change margin direction on load more button in responsive views. */
+ .load-more-wrapper .load-more-jump {
+ margin: 12px 0 0;
+ }
+
+}
+
+@media only screen and (max-width: 480px) {
+ .wp-core-ui.wp-customizer .media-button {
+ margin-top: 13px;
+ }
+}
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ .wp-core-ui .media-modal-icon {
+ background-image: url(../images/uploader-icons-2x.png);
+ background-size: 134px 15px;
+ }
+
+ .media-frame .spinner {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+.media-frame-content[data-columns="1"] .attachment {
+ width: 100%;
+}
+
+.media-frame-content[data-columns="2"] .attachment {
+ width: 50%;
+}
+
+.media-frame-content[data-columns="3"] .attachment {
+ width: 33.33%;
+}
+
+.media-frame-content[data-columns="4"] .attachment {
+ width: 25%;
+}
+
+.media-frame-content[data-columns="5"] .attachment {
+ width: 20%;
+}
+
+.media-frame-content[data-columns="6"] .attachment {
+ width: 16.66%;
+}
+
+.media-frame-content[data-columns="7"] .attachment {
+ width: 14.28%;
+}
+
+.media-frame-content[data-columns="8"] .attachment {
+ width: 12.5%;
+}
+
+.media-frame-content[data-columns="9"] .attachment {
+ width: 11.11%;
+}
+
+.media-frame-content[data-columns="10"] .attachment {
+ width: 10%;
+}
+
+.media-frame-content[data-columns="11"] .attachment {
+ width: 9.09%;
+}
+
+.media-frame-content[data-columns="12"] .attachment {
+ width: 8.33%;
+}
diff --git a/static/wp-includes/css/media-views-rtl.min.css b/static/wp-includes/css/media-views-rtl.min.css
new file mode 100755
index 0000000..1212a5c
--- /dev/null
+++ b/static/wp-includes/css/media-views-rtl.min.css
@@ -0,0 +1,9 @@
+/*! This file is auto-generated */
+.media-modal *{box-sizing:content-box}.media-modal input,.media-modal select,.media-modal textarea{box-sizing:border-box}.media-frame,.media-modal{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;-webkit-overflow-scrolling:touch}.media-modal legend{padding:0;font-size:13px}.media-modal label{font-size:13px}.media-modal .legend-inline{position:absolute;transform:translate(100%,50%);margin-right:-1%;line-height:1.2}.media-frame a{border-bottom:none;color:#2271b1}.media-frame a:active,.media-frame a:hover{color:#135e96}.media-frame a:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);color:#043959;outline:1px solid transparent}.media-frame a.button{color:#2c3338}.media-frame a.button:hover{color:#1d2327}.media-frame a.button-primary,.media-frame a.button-primary:hover{color:#fff}.media-frame input,.media-frame textarea{padding:6px 8px}.media-frame select,.wp-admin .media-frame select{min-height:30px;vertical-align:middle}.media-frame input[type=color],.media-frame input[type=date],.media-frame input[type=datetime-local],.media-frame input[type=datetime],.media-frame input[type=email],.media-frame input[type=month],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=tel],.media-frame input[type=text],.media-frame input[type=time],.media-frame input[type=url],.media-frame input[type=week],.media-frame select,.media-frame textarea{box-shadow:0 0 0 transparent;border-radius:4px;border:1px solid #8c8f94;background-color:#fff;color:#2c3338;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.media-frame input[type=date],.media-frame input[type=datetime-local],.media-frame input[type=datetime],.media-frame input[type=email],.media-frame input[type=month],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=tel],.media-frame input[type=text],.media-frame input[type=time],.media-frame input[type=url],.media-frame input[type=week]{padding:0 8px;line-height:2.15384615}.media-frame.mode-grid .wp-filter input[type=search]{font-size:14px;line-height:2}.media-frame input[type=email]:focus,.media-frame input[type=number]:focus,.media-frame input[type=password]:focus,.media-frame input[type=search]:focus,.media-frame input[type=text]:focus,.media-frame input[type=url]:focus,.media-frame select:focus,.media-frame textarea:focus{border-color:#3582c4;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.media-frame input:disabled,.media-frame input[readonly],.media-frame textarea:disabled,.media-frame textarea[readonly]{background-color:#f0f0f1}.media-frame input[type=search]{-webkit-appearance:textfield}.media-frame ::-webkit-input-placeholder{color:#646970}.media-frame ::-moz-placeholder{color:#646970;opacity:1}.media-frame :-ms-input-placeholder{color:#646970}.media-frame .hidden,.media-frame .setting.hidden{display:none}/*!
+ * jQuery UI Draggable/Sortable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */.ui-draggable-handle,.ui-sortable-handle{touch-action:none}.media-modal{position:fixed;top:30px;right:30px;left:30px;bottom:30px;z-index:160000}.wp-customizer .media-modal{z-index:560000}.media-modal-backdrop{position:fixed;top:0;right:0;left:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:159900}.wp-customizer .media-modal-backdrop{z-index:559900}.media-modal-close{position:absolute;top:0;left:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#646970;z-index:1000;cursor:pointer;outline:0;transition:color .1s ease-in-out,background .1s ease-in-out}.media-modal-close:active,.media-modal-close:hover{color:#135e96}.media-modal-close:focus{color:#135e96;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent}.media-modal-close span.media-modal-icon{background-image:none}.media-modal-close .media-modal-icon:before{content:"\f158";font:normal 20px/1 dashicons;speak:never;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.media-modal-content{position:absolute;top:0;right:0;left:0;bottom:0;overflow:auto;min-height:300px;box-shadow:0 5px 15px rgba(0,0,0,.7);background:#fff;-webkit-font-smoothing:subpixel-antialiased}.media-modal-content .media-frame select.attachment-filters{margin-top:32px;margin-left:2%;width:42%;width:calc(48% - 12px)}.media-modal-content .attachments-browser .search{width:100%}.wp-core-ui .media-modal-icon{background-image:url(../images/uploader-icons.png);background-repeat:no-repeat}.media-toolbar{position:absolute;top:0;right:0;left:0;z-index:100;height:60px;padding:0 16px;border:0 solid #dcdcde;overflow:hidden}.media-frame-toolbar .media-toolbar{top:auto;bottom:-47px;height:auto;overflow:visible;border-top:1px solid #dcdcde}.media-toolbar-primary{float:left;height:100%;position:relative}.media-toolbar-secondary{float:right;height:100%}.media-toolbar-primary>.media-button,.media-toolbar-primary>.media-button-group{margin-right:10px;float:right;margin-top:15px}.media-toolbar-secondary>.media-button,.media-toolbar-secondary>.media-button-group{margin-left:10px;margin-top:15px}.media-sidebar{position:absolute;top:0;left:0;bottom:0;width:267px;padding:0 16px;z-index:75;background:#f6f7f7;border-right:1px solid #dcdcde;overflow:auto;-webkit-overflow-scrolling:touch}.media-sidebar::after{content:"";display:flex;clear:both;height:24px}.hide-toolbar .media-sidebar{bottom:0}.image-details h2:not(.media-attachments-filter-heading),.media-sidebar h2{position:relative;font-weight:600;text-transform:uppercase;font-size:12px;color:#646970;margin:24px 0 8px}.attachment-details .setting,.media-sidebar .setting{display:block;float:right;width:100%;margin:0 0 10px}.media-sidebar .collection-settings .setting{margin:1px 0}.attachment-details .setting.has-description,.media-sidebar .setting.has-description{margin-bottom:5px}.media-sidebar .setting .link-to-custom{margin:3px 2px 0}.attachment-details .setting .name,.attachment-details .setting span,.media-sidebar .setting .name,.media-sidebar .setting .value,.media-sidebar .setting span{min-width:30%;margin-left:4%;font-size:12px;text-align:left;word-wrap:break-word}.media-sidebar .setting .name{max-width:80px}.media-sidebar .setting .value{text-align:right}.media-sidebar .setting select{max-width:65%}.attachment-details .field input[type=checkbox],.attachment-details .field input[type=radio],.attachment-details .setting input[type=checkbox],.attachment-details .setting input[type=radio],.media-sidebar .field input[type=checkbox],.media-sidebar .field input[type=radio],.media-sidebar .setting input[type=checkbox],.media-sidebar .setting input[type=radio]{float:none;margin:8px 3px 0;padding:0}.attachment-details .setting .name,.attachment-details .setting .value,.attachment-details .setting span,.compat-item label span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting .name,.media-sidebar .setting .value,.media-sidebar .setting span{float:right;min-height:22px;padding-top:8px;line-height:1.33333333;font-weight:400;color:#646970}.media-sidebar .checkbox-label-inline{font-size:12px}.attachment-details .copy-to-clipboard-container,.media-sidebar .copy-to-clipboard-container{flex-wrap:wrap;margin-top:10px;margin-right:calc(35% - 1px);padding-top:10px}.attachment-details .attachment-info .copy-to-clipboard-container{float:none}.attachment-details .copy-to-clipboard-container .success,.media-sidebar .copy-to-clipboard-container .success{padding:0;min-height:0;line-height:2.18181818;text-align:right;color:#008a20}.compat-item label span{text-align:left}.attachment-details .setting .value,.attachment-details .setting input[type=email],.attachment-details .setting input[type=number],.attachment-details .setting input[type=password],.attachment-details .setting input[type=search],.attachment-details .setting input[type=tel],.attachment-details .setting input[type=text],.attachment-details .setting input[type=url],.attachment-details .setting textarea,.attachment-details .setting+.description,.media-sidebar .setting .value,.media-sidebar .setting input[type=email],.media-sidebar .setting input[type=number],.media-sidebar .setting input[type=password],.media-sidebar .setting input[type=search],.media-sidebar .setting input[type=tel],.media-sidebar .setting input[type=text],.media-sidebar .setting input[type=url],.media-sidebar .setting textarea{box-sizing:border-box;margin:1px;width:65%;float:left}.attachment-details .setting .value,.attachment-details .setting+.description,.media-sidebar .setting .value{margin:0 1px;text-align:right}.attachment-details .setting+.description{clear:both;font-size:12px;font-style:normal;margin-bottom:10px}.attachment-details .setting textarea,.compat-item .field textarea,.media-sidebar .setting textarea{height:62px;resize:vertical}.compat-item{float:right;width:100%;overflow:hidden}.compat-item table{width:100%;table-layout:fixed;border-spacing:0;border:0}.compat-item tr{padding:2px 0;display:block;overflow:hidden}.compat-item .field,.compat-item .label{display:block;margin:0;padding:0}.compat-item .label{min-width:30%;margin-left:4%;float:right;text-align:left}.compat-item .label span{display:block;width:100%}.compat-item .field{float:left;width:65%;margin:1px}.compat-item .field input[type=email],.compat-item .field input[type=number],.compat-item .field input[type=password],.compat-item .field input[type=search],.compat-item .field input[type=tel],.compat-item .field input[type=text],.compat-item .field input[type=url],.compat-item .field textarea{width:100%;margin:0;box-sizing:border-box}.sidebar-for-errors .attachment-details,.sidebar-for-errors .compat-item,.sidebar-for-errors .media-sidebar .media-progress-bar,.sidebar-for-errors .upload-details{display:none!important}.media-menu{position:absolute;top:0;right:0;left:0;bottom:0;margin:0;padding:50px 0 10px;background:#f6f7f7;border-left-width:1px;border-left-style:solid;border-left-color:#c3c4c7;-webkit-user-select:none;user-select:none}.media-menu .media-menu-item{display:block;box-sizing:border-box;width:100%;position:relative;border:0;margin:0;padding:8px 20px;font-size:14px;line-height:1.28571428;background:0 0;color:#2271b1;text-align:right;text-decoration:none;cursor:pointer}.media-menu .media-menu-item:hover{background:rgba(0,0,0,.04)}.media-menu .media-menu-item:active{color:#2271b1;outline:0}.media-menu .active,.media-menu .active:hover{color:#1d2327;font-weight:600}.media-menu .media-menu-item:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);color:#043959;outline:1px solid transparent}.media-menu .separator{height:0;margin:12px 20px;padding:0;border-top:1px solid #dcdcde}.media-router{position:relative;padding:0 6px;margin:0;clear:both}.media-router .media-menu-item{position:relative;float:right;border:0;margin:0;padding:8px 10px 9px;height:18px;line-height:1.28571428;font-size:14px;text-decoration:none;background:0 0;cursor:pointer;transition:none}.media-router .media-menu-item:last-child{border-left:0}.media-router .media-menu-item:active,.media-router .media-menu-item:hover{color:#2271b1}.media-router .active,.media-router .active:hover{color:#1d2327}.media-router .media-menu-item:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);color:#043959;outline:1px solid transparent}.media-router .active,.media-router .media-menu-item.active:last-child{margin:-1px -1px 0;background:#fff;border:1px solid #dcdcde;border-bottom:none}.media-router .active:after{display:none}.media-frame{overflow:hidden;position:absolute;top:0;right:0;left:0;bottom:0}.media-frame-menu{position:absolute;top:0;right:0;bottom:0;width:200px;z-index:150}.media-frame-title{position:absolute;top:0;right:200px;left:0;height:50px;z-index:200}.media-frame-router{position:absolute;top:50px;right:200px;left:0;height:36px;z-index:200}.media-frame-content{position:absolute;top:84px;right:200px;left:0;bottom:61px;height:auto;width:auto;margin:0;overflow:auto;background:#fff;border-top:1px solid #dcdcde}.media-frame-toolbar{position:absolute;right:200px;left:0;z-index:100;bottom:60px;height:auto}.media-frame.hide-menu .media-frame-content,.media-frame.hide-menu .media-frame-router,.media-frame.hide-menu .media-frame-title,.media-frame.hide-menu .media-frame-toolbar{right:0}.media-frame.hide-toolbar .media-frame-content{bottom:0}.media-frame.hide-router .media-frame-content{top:50px}.media-frame.hide-menu .media-frame-menu,.media-frame.hide-menu .media-frame-menu-heading,.media-frame.hide-router .media-frame-router,.media-frame.hide-toolbar .media-frame-toolbar{display:none}.media-frame-title h1{padding:0 16px;font-size:22px;line-height:2.27272727;margin:0}.media-attachments-filter-heading,.media-frame-menu-heading{position:absolute;right:20px;top:22px;margin:0;font-size:13px;line-height:1;z-index:151}.media-attachments-filter-heading{top:10px;right:16px}.mode-grid .media-attachments-filter-heading{top:0;right:-9999px}.mode-grid .media-frame-actions-heading{display:none}.wp-core-ui .button.media-frame-menu-toggle{display:none}.media-frame-title .suggested-dimensions{font-size:14px;float:left;margin-left:20px}.media-frame-content .crop-content{height:100%}.wp-customizer:not(.mobile) .media-frame-content .crop-content.site-icon{margin-left:300px}.media-frame-content .crop-content .crop-image{display:block;margin:auto;max-width:100%;max-height:100%}.media-frame-content .crop-content .upload-errors{position:absolute;width:300px;top:50%;right:50%;margin-right:-150px;margin-left:-150px;z-index:600000}.media-frame .media-iframe{overflow:hidden}.media-frame .media-iframe,.media-frame .media-iframe iframe{height:100%;width:100%;border:0}.media-frame select.attachment-filters{margin-top:11px;margin-left:2%;max-width:42%;max-width:calc(48% - 12px)}.media-frame select.attachment-filters:last-of-type{margin-left:0;width:auto;max-width:100%}.media-frame .search{margin:32px 0 0;padding:4px;font-size:13px;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;-webkit-appearance:none}.media-toolbar-primary .search{max-width:100%}.media-frame .media-search-input-label{position:absolute;right:0;top:10px;margin:0;line-height:1}.wp-core-ui .attachments{margin:0;-webkit-overflow-scrolling:touch}.wp-core-ui .attachment{position:relative;float:right;padding:8px;margin:0;color:#3c434a;cursor:pointer;list-style:none;text-align:center;-webkit-user-select:none;user-select:none;width:25%;box-sizing:border-box}.wp-core-ui .attachment.details:focus,.wp-core-ui .attachment:focus,.wp-core-ui .selected.attachment:focus{box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #4f94d4;outline:2px solid transparent;outline-offset:-6px}.wp-core-ui .selected.attachment{box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #c3c4c7}.wp-core-ui .attachment.details{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #2271b1}.wp-core-ui .attachment-preview{position:relative;box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);background:#f0f0f1;cursor:pointer}.wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}.wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}.wp-core-ui .attachment .thumbnail{overflow:hidden;position:absolute;top:0;left:0;bottom:0;right:0;opacity:1;transition:opacity .1s}.wp-core-ui .attachment .portrait img{max-width:100%}.wp-core-ui .attachment .landscape img{max-height:100%}.wp-core-ui .attachment .thumbnail:after{content:"";display:block;position:absolute;top:0;right:0;left:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.wp-core-ui .attachment .thumbnail img{top:0;right:0}.wp-core-ui .attachment .thumbnail .centered{position:absolute;top:0;right:0;width:100%;height:100%;transform:translate(-50%,50%)}.wp-core-ui .attachment .thumbnail .centered img{transform:translate(50%,-50%)}.wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{transform:translate(50%,-70%)}.wp-core-ui .attachment .filename{position:absolute;right:0;left:0;bottom:0;overflow:hidden;max-height:100%;word-wrap:break-word;text-align:center;font-weight:600;background:rgba(255,255,255,.8);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15)}.wp-core-ui .attachment .filename div{padding:5px 10px}.wp-core-ui .attachment .thumbnail img{position:absolute}.wp-core-ui .attachment-close{display:block;position:absolute;top:5px;left:5px;height:22px;width:22px;padding:0;background-color:#fff;background-position:-96px 4px;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.3);transition:none}.wp-core-ui .attachment-close:focus,.wp-core-ui .attachment-close:hover{background-position:-36px 4px}.wp-core-ui .attachment .check{display:none;height:24px;width:24px;padding:0;border:0;position:absolute;z-index:10;top:0;left:0;outline:0;background:#f0f0f1;cursor:pointer;box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15)}.wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}.wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}.wp-core-ui .attachment.selected .check{display:block}.wp-core-ui .attachment.details .check,.wp-core-ui .attachment.selected .check:focus,.wp-core-ui .media-frame.mode-grid .attachment.selected .check{background-color:#2271b1;box-shadow:0 0 0 1px #fff,0 0 0 2px #2271b1}.wp-core-ui .attachment.selected .check:focus{outline:2px solid transparent}.wp-core-ui .attachment.details .check .media-modal-icon,.wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon{background-position:-21px 0}.wp-core-ui .attachment.details .check:hover .media-modal-icon,.wp-core-ui .attachment.selected .check:focus .media-modal-icon,.wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon{background-position:-60px 0}.wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:0 8px;font-size:12px;border-radius:0}.media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}.attachments-browser .media-toolbar{left:300px;height:72px;background:#fff}.attachments-browser.hide-sidebar .media-toolbar{left:0}.attachments-browser .media-toolbar-primary>.media-button,.attachments-browser .media-toolbar-primary>.media-button-group,.attachments-browser .media-toolbar-secondary>.media-button,.attachments-browser .media-toolbar-secondary>.media-button-group{margin:10px 0}.attachments-browser .attachments{padding:2px 8px 8px}.attachments-browser .uploader-inline,.attachments-browser.has-load-more .attachments-wrapper,.attachments-browser:not(.has-load-more) .attachments{position:absolute;top:72px;right:0;left:300px;bottom:0;overflow:auto;outline:0}.attachments-browser .uploader-inline.hidden{display:none}.attachments-browser .media-toolbar-primary{max-width:33%}.mode-grid .attachments-browser .media-toolbar-primary{display:flex;align-items:center}.mode-grid .attachments-browser .media-toolbar-mode-select .media-toolbar-primary{display:none}.attachments-browser .media-toolbar-secondary{max-width:66%}.uploader-inline .close{background-color:transparent;border:0;cursor:pointer;height:48px;outline:0;padding:0;position:absolute;left:2px;text-align:center;top:2px;width:48px;z-index:1}.uploader-inline .close:before{font:normal 30px/1 dashicons!important;color:#50575e;display:inline-block;content:"\f335";font-weight:300;margin-top:1px}.uploader-inline .close:focus{outline:1px solid #4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.attachments-browser.hide-sidebar .attachments,.attachments-browser.hide-sidebar .uploader-inline{left:0;margin-left:0}.attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:1.38461538;font-size:13px;color:#646970}.attachments-browser .no-media{padding:2em 2em 0 0}.more-loaded .attachment:not(.found-media){background:#dcdcde}.load-more-wrapper{clear:both;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;padding:1em 0}.load-more-wrapper .load-more-count{min-width:100%;margin:0 0 1em;text-align:center}.load-more-wrapper .load-more{margin:0}.media-frame .load-more-wrapper .load-more+.spinner{float:none;margin:0 10px 0 -30px}.media-frame .load-more-wrapper .load-more.hidden+.spinner{margin:0}.load-more-wrapper::after{content:"";min-width:100%;order:1}.load-more-wrapper .load-more-jump{margin:0 12px 0 0}.attachment.new-media{outline:2px dotted #c3c4c7}.load-more-wrapper{clear:both;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;padding:1em 0}.load-more-wrapper .load-more-count{min-width:100%;margin:0 0 1em;text-align:center}.load-more-wrapper .load-more{margin:0}.media-frame .load-more-wrapper .load-more+.spinner{float:none;margin:0 10px 0 -30px}.media-frame .load-more-wrapper .load-more.hidden+.spinner{margin:0}.load-more-wrapper::after{content:"";min-width:100%;order:1}.load-more-wrapper .load-more-jump{margin:0 12px 0 0}.media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#dcdcde;background:rgba(0,0,0,.1)}.media-progress-bar div{height:10px;min-width:20px;width:0;background:#2271b1;border-radius:10px;transition:width .3s}.media-uploader-status .media-progress-bar{display:none;width:100%}.uploading.media-uploader-status .media-progress-bar{display:block}.attachment-preview .media-progress-bar{position:absolute;top:50%;right:15%;width:70%;margin:-5px 0 0}.media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}.uploader-inline .media-uploader-status h2{display:none}.media-uploader-status .upload-details{display:none;font-size:12px;color:#646970}.uploading.media-uploader-status .upload-details{display:block}.media-uploader-status .upload-detail-separator{padding:0 4px}.media-uploader-status .upload-count{color:#3c434a}.media-uploader-status .upload-dismiss-errors,.media-uploader-status .upload-errors{display:none}.errors.media-uploader-status .upload-dismiss-errors,.errors.media-uploader-status .upload-errors{display:block}.media-uploader-status .upload-dismiss-errors{transition:none;text-decoration:none}.upload-errors .upload-error{padding:12px;margin-bottom:12px;background:#fff;border-right:4px solid #d63638;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.uploader-inline .upload-errors .upload-error{padding:12px 30px;background-color:#fcf0f1;box-shadow:none}.upload-errors .upload-error-filename{font-weight:600}.upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}.uploader-window,.wp-editor-wrap .uploader-editor{top:0;right:0;left:0;bottom:0;text-align:center;display:none}.uploader-window{position:fixed;z-index:250000;opacity:0;transition:opacity 250ms}.wp-editor-wrap .uploader-editor{position:absolute;z-index:99998;background:rgba(140,143,148,.9)}.uploader-window,.wp-editor-wrap .uploader-editor.droppable{background:rgba(10,75,120,.9)}.uploader-window-content,.wp-editor-wrap .uploader-editor-content{position:absolute;top:10px;right:10px;left:10px;bottom:10px;border:1px dashed #fff}.uploader-window .uploader-editor-title,.uploader-window h1,.wp-editor-wrap .uploader-editor .uploader-editor-title{position:absolute;top:50%;right:0;left:0;transform:translateY(-50%);font-size:3em;line-height:1.3;font-weight:600;color:#fff;margin:0;padding:0 10px}.wp-editor-wrap .uploader-editor .uploader-editor-title{display:none}.wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}.uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}.uploader-window .media-progress-bar div{background:#fff}.uploading .uploader-window .media-progress-bar{display:block}.media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}.uploader-inline-content{position:absolute;top:30%;right:0;left:0}.uploader-inline-content .upload-ui{margin:2em 0}.uploader-inline-content .post-upload-ui{margin-bottom:2em}.uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}.uploader-inline h2{font-size:20px;line-height:1.4;font-weight:400;margin:0}.uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#3c434a;font-weight:400}.uploader-inline .drop-instructions{display:none}.supports-drag-drop .uploader-inline .drop-instructions{display:block}.uploader-inline p{margin:.5em 0}.uploader-inline .media-progress-bar{display:none}.uploading.uploader-inline .media-progress-bar{display:block}.uploader-inline .browser{display:inline-block!important}.media-selection{position:absolute;top:0;right:0;left:350px;height:60px;padding:0 16px 0 0;overflow:hidden;white-space:nowrap}.media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-left:10px;vertical-align:top}.media-selection.editing,.media-selection.empty{display:none}.media-selection.one .edit-selection{display:none}.media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:1.42857142;font-weight:600}.media-selection .button-link{float:right;padding:1px 8px;margin:1px -8px 1px 8px;line-height:1.4;border-left:1px solid #dcdcde;color:#2271b1;text-decoration:none}.media-selection .button-link:focus,.media-selection .button-link:hover{color:#135e96}.media-selection .button-link:last-child{border-left:0;margin-left:0}.selection-info .clear-selection{color:#d63638}.selection-info .clear-selection:focus,.selection-info .clear-selection:hover{color:#d63638}.media-selection .selection-view{display:inline-block;vertical-align:top}.media-selection .attachments{display:inline-block;height:48px;margin:6px;padding:0;overflow:hidden;vertical-align:top}.media-selection .attachment{width:40px;padding:0;margin:4px}.media-selection .attachment .thumbnail{top:0;left:0;bottom:0;right:0}.media-selection .attachment .icon{width:50%}.media-selection .attachment-preview{box-shadow:none;background:0 0}.wp-core-ui .media-selection .attachment.details:focus,.wp-core-ui .media-selection .attachment:focus,.wp-core-ui .media-selection .selected.attachment:focus{box-shadow:0 0 0 1px #fff,0 0 2px 3px #4f94d4;outline:2px solid transparent}.wp-core-ui .media-selection .selected.attachment{box-shadow:none}.wp-core-ui .media-selection .attachment.details{box-shadow:0 0 0 1px #fff,0 0 0 3px #2271b1}.media-selection:after{content:"";display:block;position:absolute;top:0;left:0;bottom:0;width:25px;background-image:linear-gradient(to right,#fff,rgba(255,255,255,0))}.media-selection .attachment .filename{display:none}.media-frame .spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;float:left;display:inline-block;visibility:hidden;opacity:.7;width:20px;height:20px;margin:0;vertical-align:middle}.media-frame.mode-grid .spinner{margin:0;float:none;vertical-align:middle}.media-modal .media-toolbar .spinner{float:none;vertical-align:bottom;margin:0 5px 5px 0}.media-frame .instructions+.spinner.is-active{vertical-align:middle}.media-frame .spinner.is-active{visibility:visible}.attachment-details{position:relative;overflow:auto}.attachment-details .settings-save-status{float:left;text-transform:none;font-weight:400}.attachment-details .settings-save-status .spinner{float:none;margin-right:5px}.attachment-details .settings-save-status .saved{display:none}.attachment-details.save-waiting .settings-save-status .spinner{visibility:visible}.attachment-details.save-complete .settings-save-status .saved{display:inline-block}.attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:1.5;color:#646970;border-bottom:1px solid #dcdcde;padding-bottom:11px}.attachment-info .wp-media-wrapper{margin-bottom:8px}.attachment-info .wp-media-wrapper.wp-audio{margin-top:13px}.attachment-info .filename{font-weight:600;color:#3c434a;word-wrap:break-word}.attachment-info .thumbnail{position:relative;float:right;max-width:120px;max-height:120px;margin-top:5px;margin-left:10px;margin-bottom:5px}.uploading .attachment-info .thumbnail{width:120px;height:80px;box-shadow:inset 0 0 15px rgba(0,0,0,.1)}.uploading .attachment-info .media-progress-bar{margin-top:35px}.attachment-info .thumbnail-image:after{content:"";display:block;position:absolute;top:0;right:0;left:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);overflow:hidden}.attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}.attachment-info .details{float:right;font-size:12px;max-width:100%}.attachment-info .delete-attachment,.attachment-info .edit-attachment,.attachment-info .trash-attachment,.attachment-info .untrash-attachment{display:block;text-decoration:none;white-space:nowrap}.attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}.attachment-info .edit-attachment{display:block}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment{display:inline;padding:0;color:#d63638}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover{color:#d63638}.attachment-display-settings{width:100%;float:right;overflow:hidden}.collection-settings{overflow:hidden}.collection-settings .setting input[type=checkbox]{float:right;margin-left:8px}.collection-settings .setting .name,.collection-settings .setting span{min-width:inherit}.media-modal .imgedit-wrap{position:static}.media-modal .imgedit-wrap .imgedit-panel-content{padding:16px 16px 0;position:absolute;top:0;left:282px;bottom:0;right:0;overflow:auto}.media-modal .imgedit-wrap .imgedit-submit{margin-bottom:16px}.media-modal .imgedit-wrap .imgedit-settings{background:#f6f7f7;border-right:1px solid #dcdcde;padding:20px 16px 0;position:absolute;top:0;left:0;bottom:0;width:250px;overflow:auto}.media-modal .imgedit-wrap .imgedit-save-target{margin:8px 0 24px}.media-modal .imgedit-group{background:0 0;border:none;border-bottom:1px solid #dcdcde;box-shadow:none;margin:0;margin-bottom:16px;padding:0;padding-bottom:16px;position:relative}.media-modal .imgedit-group:last-of-type{border:none;margin:0;padding:0}.media-modal .imgedit-group-top{margin:0}.media-modal .imgedit-group-top h2,.media-modal .imgedit-group-top h2 .button-link{display:inline-block;text-transform:uppercase;font-size:12px;color:#646970;margin:0;margin-top:3px}.media-modal .imgedit-group-top h2 .button-link,.media-modal .imgedit-group-top h2 a{text-decoration:none;color:#646970}.wp-core-ui.media-modal .image-editor .imgedit-help-toggle,.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active,.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover{border:1px solid transparent;margin:0;padding:0;background:0 0;color:#2271b1;font-size:20px;line-height:1;cursor:pointer;box-sizing:content-box;box-shadow:none}.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus{color:#2271b1;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent}.wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}.wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}.media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142"}.media-modal .imgedit-thumbnail-preview{margin:10px 0 0 8px}.imgedit-thumbnail-preview-caption{display:block}.media-modal .imgedit-wrap .notice,.media-modal .imgedit-wrap div.updated{margin:0;margin-bottom:16px}.embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}.media-frame .embed-url input{font-size:18px;line-height:1.22222222;padding:12px 14px 12px 40px;width:100%;min-width:200px;box-shadow:inset -2px 2px 4px -2px rgba(0,0,0,.1)}.media-frame .embed-url input::-ms-clear{display:none}.media-frame .embed-url .spinner{position:absolute;top:32px;left:26px}.media-frame .embed-loading .embed-url .spinner{visibility:visible}.embed-link-settings,.embed-media-settings{position:absolute;top:82px;right:0;left:0;bottom:0;padding:0 16px;overflow:auto}.media-embed .embed-link-settings .link-text{margin-top:0}.embed-link-settings::after,.embed-media-settings::after{content:"";display:flex;clear:both;height:24px}.media-embed .embed-link-settings{overflow:visible}.embed-preview embed,.embed-preview iframe,.embed-preview img,.mejs-container video{max-width:100%;vertical-align:middle}.embed-preview a{display:inline-block}.embed-preview img{display:block;height:auto}.mejs-container:focus{outline:1px solid #4f94d4;box-shadow:0 0 2px 1px rgba(79,148,212,.8)}.image-details .media-modal{right:140px;left:140px}.image-details .media-frame-content,.image-details .media-frame-router,.image-details .media-frame-title{right:0}.image-details .embed-media-settings{top:0;overflow:visible;padding:0}.image-details .embed-media-settings::after{content:none}.image-details .embed-media-settings,.image-details .embed-media-settings div{box-sizing:border-box}.image-details .column-settings{background:#f6f7f7;border-left:1px solid #dcdcde;min-height:100%;width:55%;position:absolute;top:0;right:0}.image-details .column-settings h2{margin:20px;padding-top:20px;border-top:1px solid #dcdcde;color:#1d2327}.image-details .column-image{width:45%;position:absolute;right:55%;top:0}.image-details .image{margin:20px}.image-details .image img{max-width:100%;max-height:500px}.image-details .advanced-toggle{padding:0;color:#646970;text-transform:uppercase;text-decoration:none}.image-details .advanced-toggle:active,.image-details .advanced-toggle:hover{color:#646970}.image-details .advanced-toggle:after{font:normal 20px/1 dashicons;speak:never;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f140";display:inline-block;margin-top:-2px}.image-details .advanced-visible .advanced-toggle:after{content:"\f142"}.image-details .custom-size .custom-size-setting,.image-details .custom-size label{display:block;float:right}.image-details .custom-size .custom-size-setting label{float:none}.image-details .custom-size input{width:5em}.image-details .custom-size .sep{float:right;margin:26px 6px 0}.image-details .custom-size .description{margin-right:0}.media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:right}.media-embed .thumbnail img{max-height:200px;display:block}.media-embed .thumbnail:after{content:"";display:block;position:absolute;top:0;right:0;left:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.media-embed .setting,.media-embed .setting-group{width:100%;margin:10px 0;float:right;display:block;clear:both}.media-embed .setting-group .setting:not(.checkbox-setting){margin:0}.media-embed .setting.has-description{margin-bottom:5px}.media-embed .description{clear:both;font-style:normal}.media-embed .content-track+.description{line-height:1.4;max-width:none!important}.media-embed .remove-track{margin-bottom:10px}.image-details .embed-media-settings .setting,.image-details .embed-media-settings .setting-group{float:none;width:auto}.image-details .actions{margin:10px 0}.image-details .hidden{display:none}.media-embed .setting input[type=text],.media-embed .setting textarea,.media-embed fieldset{display:block;width:100%;max-width:400px}.image-details .embed-media-settings .setting input[type=text],.image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}.image-details .description,.image-details .embed-media-settings .custom-size,.image-details .embed-media-settings .link-target,.image-details .embed-media-settings .setting input.link-to-custom,.image-details .embed-media-settings .setting-group{margin-right:27%;width:70%}.image-details .description{font-style:normal;margin-top:0}.image-details .embed-media-settings .link-target{margin-top:16px}.audio-details .checkbox-label,.image-details .checkbox-label,.video-details .checkbox-label{vertical-align:baseline}.media-embed .setting input.hidden,.media-embed .setting textarea.hidden{display:none}.media-embed .setting .name,.media-embed .setting span,.media-embed .setting-group .name{display:inline-block;font-size:13px;line-height:1.84615384;color:#646970}.media-embed .setting span{display:block;width:200px}.image-details .embed-media-settings .setting .name,.image-details .embed-media-settings .setting span{float:right;width:25%;text-align:left;margin:8px 1% 0;line-height:1.1}.image-details .embed-media-settings .setting .button-group,.media-frame .setting-group .button-group{width:auto}.media-embed-sidebar{position:absolute;top:0;right:440px}.advanced-section,.link-settings{margin-top:10px}.media-frame .setting .button-group{display:flex;margin:0!important;max-width:none!important}.rtl .media-frame,.rtl .media-frame .search,.rtl .media-frame input[type=email],.rtl .media-frame input[type=number],.rtl .media-frame input[type=password],.rtl .media-frame input[type=search],.rtl .media-frame input[type=tel],.rtl .media-frame input[type=text],.rtl .media-frame input[type=url],.rtl .media-frame select,.rtl .media-frame textarea,.rtl .media-modal{font-family:Tahoma,sans-serif}:lang(he-il) .rtl .media-frame,:lang(he-il) .rtl .media-frame .search,:lang(he-il) .rtl .media-frame input[type=email],:lang(he-il) .rtl .media-frame input[type=number],:lang(he-il) .rtl .media-frame input[type=password],:lang(he-il) .rtl .media-frame input[type=search],:lang(he-il) .rtl .media-frame input[type=text],:lang(he-il) .rtl .media-frame input[type=url],:lang(he-il) .rtl .media-frame select,:lang(he-il) .rtl .media-frame textarea,:lang(he-il) .rtl .media-modal{font-family:Arial,sans-serif}@media only screen and (max-width:900px){.media-modal .media-frame-title{height:40px}.media-modal .media-frame-title h1{line-height:2.22222222;font-size:18px}.media-modal-close{width:42px;height:42px}.media-frame .media-frame-title{position:static;padding:0 44px;text-align:center}.media-frame:not(.hide-menu) .media-frame-content,.media-frame:not(.hide-menu) .media-frame-router,.media-frame:not(.hide-menu) .media-frame-toolbar{right:0}.media-frame:not(.hide-menu) .media-frame-router{top:80px}.media-frame:not(.hide-menu) .media-frame-content{top:114px}.media-frame.hide-router .media-frame-content{top:80px}.media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}.media-frame:not(.hide-menu) .media-menu{display:none;width:auto;max-width:80%;overflow:auto;z-index:2000;top:75px;right:50%;transform:translateX(50%);left:auto;bottom:auto;padding:5px 0;border:1px solid #c3c4c7}.media-frame:not(.hide-menu) .media-menu.visible{display:block}.media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}.media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}.media-frame-menu-heading{clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;padding:0;width:1px;word-wrap:normal!important}.wp-core-ui .media-frame:not(.hide-menu) .button.media-frame-menu-toggle{display:inline-flex;align-items:center;position:absolute;right:50%;transform:translateX(50%);margin:-6px 0 0;padding:0 12px 0 2px;font-size:.875rem;font-weight:600;text-decoration:none;background:0 0;height:.1%;min-height:40px}.wp-core-ui .button.media-frame-menu-toggle:active,.wp-core-ui .button.media-frame-menu-toggle:hover{background:0 0;transform:none}.wp-core-ui .button.media-frame-menu-toggle:focus{outline:1px solid transparent}.media-sidebar{width:230px}.attachments-browser .attachments,.attachments-browser .attachments-wrapper,.attachments-browser .media-toolbar,.attachments-browser .uploader-inline,.attachments-browser.has-load-more .attachments-wrapper{left:262px}.attachment-details .setting,.media-sidebar .setting{margin:6px 0}.attachment-details .setting .name,.attachment-details .setting input,.attachment-details .setting textarea,.compat-item label span,.media-sidebar .setting .name,.media-sidebar .setting input,.media-sidebar .setting textarea{float:none;display:inline-block}.attachment-details .setting span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting span{float:none}.media-sidebar .setting .select-label-inline{display:inline}.attachment-details .setting .name,.compat-item label span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting .name{text-align:inherit;min-height:16px;margin:0;padding:8px 2px 2px}.attachment-details .attachment-info .copy-to-clipboard-container,.media-sidebar .setting .copy-to-clipboard-container{margin-right:0;padding-top:0}.attachment-details .attachment-info .copy-attachment-url,.media-sidebar .setting .copy-attachment-url{margin:0 1px}.attachment-details .setting .value,.media-sidebar .setting .value{float:none;width:auto}.attachment-details .setting input[type=email],.attachment-details .setting input[type=number],.attachment-details .setting input[type=password],.attachment-details .setting input[type=search],.attachment-details .setting input[type=tel],.attachment-details .setting input[type=text],.attachment-details .setting input[type=url],.attachment-details .setting select,.attachment-details .setting textarea,.attachment-details .setting+.description,.media-sidebar .setting input[type=email],.media-sidebar .setting input[type=number],.media-sidebar .setting input[type=password],.media-sidebar .setting input[type=search],.media-sidebar .setting input[type=tel],.media-sidebar .setting input[type=text],.media-sidebar .setting input[type=url],.media-sidebar .setting select,.media-sidebar .setting textarea{float:none;width:98%;max-width:none;height:auto}.media-frame .media-toolbar input[type=search]{line-height:2.25}.attachment-details .setting select.columns,.media-sidebar .setting select.columns{width:auto}.media-frame .search,.media-frame input,.media-frame textarea{padding:3px 6px}.wp-admin .media-frame select{min-height:40px;font-size:16px;line-height:1.625;padding:5px 8px 5px 24px}.image-details .column-image{width:30%;right:70%}.image-details .column-settings{width:70%}.image-details .media-modal{right:30px;left:30px}.image-details .embed-media-settings .setting,.image-details .embed-media-settings .setting-group{margin:20px}.image-details .embed-media-settings .setting .name,.image-details .embed-media-settings .setting span{float:none;text-align:right;width:100%;margin-bottom:4px;margin-right:0}.media-modal .legend-inline{position:static;transform:none;margin-right:0;margin-bottom:6px}.image-details .embed-media-settings .setting-group .setting{margin-bottom:0}.image-details .embed-media-settings .setting input.link-to-custom,.image-details .embed-media-settings .setting input[type=text],.image-details .embed-media-settings .setting textarea{width:100%;margin-right:0}.image-details .embed-media-settings .setting.has-description{margin-bottom:5px}.image-details .description{width:auto;margin:0 20px}.image-details .embed-media-settings .custom-size{margin-right:20px}.collection-settings .setting input[type=checkbox]{float:none;margin-top:0}.media-selection{min-width:120px}.media-selection:after{background:0 0}.media-selection .attachments{display:none}.media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:left}.media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}.media-frame input[type=email],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=text],.media-frame input[type=url],.media-frame select,.media-frame textarea{font-size:16px}.media-frame .media-toolbar input[type=search]{line-height:2.3755}.media-modal .media-toolbar .spinner{margin-bottom:10px}}@media screen and (max-width:782px){.attachments-browser .media-toolbar{height:82px}.attachments-browser .attachments,.attachments-browser .uploader-inline{top:82px}.media-frame-toolbar .media-toolbar{bottom:-54px}.mode-grid .attachments-browser .media-toolbar-primary{display:block}.attachment-details .copy-to-clipboard-container .success,.media-sidebar .copy-to-clipboard-container .success{font-size:14px;line-height:2.71428571}}@media only screen and (max-width:640px),screen and (max-height:400px){.image-details .media-modal,.media-modal{position:fixed;top:0;right:0;left:0;bottom:0}.media-modal-backdrop{position:fixed}.media-sidebar{z-index:1900;max-width:70%;bottom:120%;box-sizing:border-box;padding-bottom:0}.media-sidebar.visible{bottom:0}.attachments-browser .attachments,.attachments-browser .media-toolbar,.attachments-browser .uploader-inline,.media-frame-content .attachments-browser .attachments-wrapper{left:0}.attachments-browser .attachments-wrapper{padding-top:12px}.image-details .media-frame-title{display:block;top:0;font-size:14px}.image-details .column-image,.image-details .column-settings{width:100%;position:relative;right:0}.image-details .column-settings{padding:4px 0}.media-frame-content .media-toolbar .instructions{display:none}.load-more-wrapper .load-more-jump{margin:12px 0 0}}@media only screen and (min-width:901px) and (max-height:400px){.media-frame:not(.hide-menu) .media-menu,.media-menu{top:0;padding-top:44px}.load-more-wrapper .load-more-jump{margin:12px 0 0}}@media only screen and (max-width:480px){.wp-core-ui.wp-customizer .media-button{margin-top:13px}}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-core-ui .media-modal-icon{background-image:url(../images/uploader-icons-2x.png);background-size:134px 15px}.media-frame .spinner{background-image:url(../images/spinner-2x.gif)}}.media-frame-content[data-columns="1"] .attachment{width:100%}.media-frame-content[data-columns="2"] .attachment{width:50%}.media-frame-content[data-columns="3"] .attachment{width:33.33%}.media-frame-content[data-columns="4"] .attachment{width:25%}.media-frame-content[data-columns="5"] .attachment{width:20%}.media-frame-content[data-columns="6"] .attachment{width:16.66%}.media-frame-content[data-columns="7"] .attachment{width:14.28%}.media-frame-content[data-columns="8"] .attachment{width:12.5%}.media-frame-content[data-columns="9"] .attachment{width:11.11%}.media-frame-content[data-columns="10"] .attachment{width:10%}.media-frame-content[data-columns="11"] .attachment{width:9.09%}.media-frame-content[data-columns="12"] .attachment{width:8.33%}
\ No newline at end of file
diff --git a/static/wp-includes/css/media-views.css b/static/wp-includes/css/media-views.css
new file mode 100755
index 0000000..3bcfcd6
--- /dev/null
+++ b/static/wp-includes/css/media-views.css
@@ -0,0 +1,2988 @@
+/**
+ * Base Styles
+ */
+.media-modal * {
+ box-sizing: content-box;
+}
+
+.media-modal input,
+.media-modal select,
+.media-modal textarea {
+ box-sizing: border-box;
+}
+
+.media-modal,
+.media-frame {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 12px;
+ -webkit-overflow-scrolling: touch;
+}
+
+.media-modal legend {
+ padding: 0;
+ font-size: 13px;
+}
+
+.media-modal label {
+ font-size: 13px;
+}
+
+.media-modal .legend-inline {
+ position: absolute;
+ transform: translate(-100%, 50%);
+ margin-left: -1%;
+ line-height: 1.2;
+}
+
+.media-frame a {
+ border-bottom: none;
+ color: #2271b1;
+}
+
+.media-frame a:hover,
+.media-frame a:active {
+ color: #135e96;
+}
+
+.media-frame a:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ color: #043959;
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.media-frame a.button {
+ color: #2c3338;
+}
+
+.media-frame a.button:hover {
+ color: #1d2327;
+}
+
+.media-frame a.button-primary,
+.media-frame a.button-primary:hover {
+ color: #fff;
+}
+
+.media-frame input,
+.media-frame textarea {
+ padding: 6px 8px;
+}
+
+.media-frame select,
+.wp-admin .media-frame select {
+ min-height: 30px;
+ vertical-align: middle;
+}
+
+.media-frame input[type="text"],
+.media-frame input[type="password"],
+.media-frame input[type="color"],
+.media-frame input[type="date"],
+.media-frame input[type="datetime"],
+.media-frame input[type="datetime-local"],
+.media-frame input[type="email"],
+.media-frame input[type="month"],
+.media-frame input[type="number"],
+.media-frame input[type="search"],
+.media-frame input[type="tel"],
+.media-frame input[type="time"],
+.media-frame input[type="url"],
+.media-frame input[type="week"],
+.media-frame textarea,
+.media-frame select {
+ box-shadow: 0 0 0 transparent;
+ border-radius: 4px;
+ border: 1px solid #8c8f94;
+ background-color: #fff;
+ color: #2c3338;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+}
+
+.media-frame input[type="text"],
+.media-frame input[type="password"],
+.media-frame input[type="date"],
+.media-frame input[type="datetime"],
+.media-frame input[type="datetime-local"],
+.media-frame input[type="email"],
+.media-frame input[type="month"],
+.media-frame input[type="number"],
+.media-frame input[type="search"],
+.media-frame input[type="tel"],
+.media-frame input[type="time"],
+.media-frame input[type="url"],
+.media-frame input[type="week"] {
+ padding: 0 8px;
+ /* inherits font size 13px */
+ line-height: 2.15384615; /* 28px */
+}
+
+/* Search field in the Media Library toolbar */
+.media-frame.mode-grid .wp-filter input[type="search"] {
+ font-size: 14px;
+ line-height: 2;
+}
+
+.media-frame input[type="text"]:focus,
+.media-frame input[type="password"]:focus,
+.media-frame input[type="number"]:focus,
+.media-frame input[type="search"]:focus,
+.media-frame input[type="email"]:focus,
+.media-frame input[type="url"]:focus,
+.media-frame textarea:focus,
+.media-frame select:focus {
+ border-color: #3582c4;
+ box-shadow: 0 0 0 1px #3582c4;
+ outline: 2px solid transparent;
+}
+
+.media-frame input:disabled,
+.media-frame textarea:disabled,
+.media-frame input[readonly],
+.media-frame textarea[readonly] {
+ background-color: #f0f0f1;
+}
+
+.media-frame input[type="search"] {
+ -webkit-appearance: textfield;
+}
+
+.media-frame ::-webkit-input-placeholder {
+ color: #646970;
+}
+
+.media-frame ::-moz-placeholder {
+ color: #646970;
+ opacity: 1;
+}
+
+.media-frame :-ms-input-placeholder {
+ color: #646970;
+}
+
+/*
+ * In some cases there's the need of higher specificity,
+ * for example higher than `.media-embed .setting`.
+ */
+.media-frame .hidden,
+.media-frame .setting.hidden {
+ display: none;
+}
+
+/*!
+ * jQuery UI Draggable/Sortable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */
+.ui-draggable-handle,
+.ui-sortable-handle {
+ touch-action: none;
+}
+
+/**
+ * Modal
+ */
+.media-modal {
+ position: fixed;
+ top: 30px;
+ left: 30px;
+ right: 30px;
+ bottom: 30px;
+ z-index: 160000;
+}
+
+.wp-customizer .media-modal {
+ z-index: 560000;
+}
+
+.media-modal-backdrop {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ z-index: 159900;
+}
+
+.wp-customizer .media-modal-backdrop {
+ z-index: 559900;
+}
+
+.media-modal-close {
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 50px;
+ height: 50px;
+ margin: 0;
+ padding: 0;
+ border: 1px solid transparent;
+ background: none;
+ color: #646970;
+ z-index: 1000;
+ cursor: pointer;
+ outline: none;
+ transition: color .1s ease-in-out, background .1s ease-in-out;
+}
+
+.media-modal-close:hover,
+.media-modal-close:active {
+ color: #135e96;
+}
+
+.media-modal-close:focus {
+ color: #135e96;
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.media-modal-close span.media-modal-icon {
+ background-image: none;
+}
+
+.media-modal-close .media-modal-icon:before {
+ content: "\f158";
+ font: normal 20px/1 dashicons;
+ speak: never;
+ vertical-align: middle;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.media-modal-content {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ overflow: auto;
+ min-height: 300px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
+ background: #fff;
+ -webkit-font-smoothing: subpixel-antialiased;
+}
+
+.media-modal-content .media-frame select.attachment-filters {
+ margin-top: 32px;
+ margin-right: 2%;
+ width: 42%;
+ width: calc(48% - 12px);
+}
+
+.media-modal-content .attachments-browser .search {
+ width: 100%;
+}
+
+/* higher specificity */
+.wp-core-ui .media-modal-icon {
+ background-image: url(../images/uploader-icons.png);
+ background-repeat: no-repeat;
+}
+
+/**
+ * Toolbar
+ */
+.media-toolbar {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ z-index: 100;
+ height: 60px;
+ padding: 0 16px;
+ border: 0 solid #dcdcde;
+ overflow: hidden;
+}
+
+.media-frame-toolbar .media-toolbar {
+ top: auto;
+ bottom: -47px;
+ height: auto;
+ overflow: visible;
+ border-top: 1px solid #dcdcde;
+}
+
+.media-toolbar-primary {
+ float: right;
+ height: 100%;
+ position: relative;
+}
+
+.media-toolbar-secondary {
+ float: left;
+ height: 100%;
+}
+
+.media-toolbar-primary > .media-button,
+.media-toolbar-primary > .media-button-group {
+ margin-left: 10px;
+ float: left;
+ margin-top: 15px;
+}
+
+.media-toolbar-secondary > .media-button,
+.media-toolbar-secondary > .media-button-group {
+ margin-right: 10px;
+ margin-top: 15px;
+}
+
+/**
+ * Sidebar
+ */
+.media-sidebar {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 267px;
+ padding: 0 16px;
+ z-index: 75;
+ background: #f6f7f7;
+ border-left: 1px solid #dcdcde;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.media-sidebar::after {
+ content: "";
+ display: flex;
+ clear: both;
+ height: 24px;
+}
+
+.hide-toolbar .media-sidebar {
+ bottom: 0;
+}
+
+.media-sidebar h2,
+.image-details h2:not(.media-attachments-filter-heading) {
+ position: relative;
+ font-weight: 600;
+ text-transform: uppercase;
+ font-size: 12px;
+ color: #646970;
+ margin: 24px 0 8px;
+}
+
+.media-sidebar .setting,
+.attachment-details .setting {
+ display: block;
+ float: left;
+ width: 100%;
+ margin: 0 0 10px;
+}
+
+.media-sidebar .collection-settings .setting {
+ margin: 1px 0;
+}
+
+.media-sidebar .setting.has-description,
+.attachment-details .setting.has-description {
+ margin-bottom: 5px;
+}
+
+.media-sidebar .setting .link-to-custom {
+ margin: 3px 2px 0;
+}
+
+.media-sidebar .setting span, /* Back-compat for pre-5.3 */
+.attachment-details .setting span, /* Back-compat for pre-5.3 */
+.media-sidebar .setting .name,
+.media-sidebar .setting .value,
+.attachment-details .setting .name {
+ min-width: 30%;
+ margin-right: 4%;
+ font-size: 12px;
+ text-align: right;
+ word-wrap: break-word;
+}
+
+.media-sidebar .setting .name {
+ max-width: 80px;
+}
+
+.media-sidebar .setting .value {
+ text-align: left;
+}
+
+.media-sidebar .setting select {
+ max-width: 65%;
+}
+
+.media-sidebar .setting input[type="checkbox"],
+.media-sidebar .field input[type="checkbox"],
+.media-sidebar .setting input[type="radio"],
+.media-sidebar .field input[type="radio"],
+.attachment-details .setting input[type="checkbox"],
+.attachment-details .field input[type="checkbox"],
+.attachment-details .setting input[type="radio"],
+.attachment-details .field input[type="radio"] {
+ float: none;
+ margin: 8px 3px 0;
+ padding: 0;
+}
+
+.media-sidebar .setting span, /* Back-compat for pre-5.3 */
+.attachment-details .setting span, /* Back-compat for pre-5.3 */
+.media-sidebar .setting .name,
+.media-sidebar .setting .value,
+.media-sidebar .checkbox-label-inline,
+.attachment-details .setting .name,
+.attachment-details .setting .value,
+.compat-item label span {
+ float: left;
+ min-height: 22px;
+ padding-top: 8px;
+ line-height: 1.33333333;
+ font-weight: 400;
+ color: #646970;
+}
+
+.media-sidebar .checkbox-label-inline {
+ font-size: 12px;
+}
+
+.media-sidebar .copy-to-clipboard-container,
+.attachment-details .copy-to-clipboard-container {
+ flex-wrap: wrap;
+ margin-top: 10px;
+ margin-left: calc( 35% - 1px );
+ padding-top: 10px;
+}
+
+/* Needs high specificity. */
+.attachment-details .attachment-info .copy-to-clipboard-container {
+ float: none;
+}
+
+.media-sidebar .copy-to-clipboard-container .success,
+.attachment-details .copy-to-clipboard-container .success {
+ padding: 0;
+ min-height: 0;
+ line-height: 2.18181818;
+ text-align: left;
+ color: #008a20;
+}
+
+.compat-item label span {
+ text-align: right;
+}
+
+.media-sidebar .setting input[type="text"],
+.media-sidebar .setting input[type="password"],
+.media-sidebar .setting input[type="email"],
+.media-sidebar .setting input[type="number"],
+.media-sidebar .setting input[type="search"],
+.media-sidebar .setting input[type="tel"],
+.media-sidebar .setting input[type="url"],
+.media-sidebar .setting textarea,
+.media-sidebar .setting .value,
+.attachment-details .setting input[type="text"],
+.attachment-details .setting input[type="password"],
+.attachment-details .setting input[type="email"],
+.attachment-details .setting input[type="number"],
+.attachment-details .setting input[type="search"],
+.attachment-details .setting input[type="tel"],
+.attachment-details .setting input[type="url"],
+.attachment-details .setting textarea,
+.attachment-details .setting .value,
+.attachment-details .setting + .description {
+ box-sizing: border-box;
+ margin: 1px;
+ width: 65%;
+ float: right;
+}
+
+.media-sidebar .setting .value,
+.attachment-details .setting .value,
+.attachment-details .setting + .description {
+ margin: 0 1px;
+ text-align: left;
+}
+
+.attachment-details .setting + .description {
+ clear: both;
+ font-size: 12px;
+ font-style: normal;
+ margin-bottom: 10px;
+}
+
+.media-sidebar .setting textarea,
+.attachment-details .setting textarea,
+.compat-item .field textarea {
+ height: 62px;
+ resize: vertical;
+}
+
+.compat-item {
+ float: left;
+ width: 100%;
+ overflow: hidden;
+}
+
+.compat-item table {
+ width: 100%;
+ table-layout: fixed;
+ border-spacing: 0;
+ border: 0;
+}
+
+.compat-item tr {
+ padding: 2px 0;
+ display: block;
+ overflow: hidden;
+}
+
+.compat-item .label,
+.compat-item .field {
+ display: block;
+ margin: 0;
+ padding: 0;
+}
+
+.compat-item .label {
+ min-width: 30%;
+ margin-right: 4%;
+ float: left;
+ text-align: right;
+}
+
+.compat-item .label span {
+ display: block;
+ width: 100%;
+}
+
+.compat-item .field {
+ float: right;
+ width: 65%;
+ margin: 1px;
+}
+
+.compat-item .field input[type="text"],
+.compat-item .field input[type="password"],
+.compat-item .field input[type="email"],
+.compat-item .field input[type="number"],
+.compat-item .field input[type="search"],
+.compat-item .field input[type="tel"],
+.compat-item .field input[type="url"],
+.compat-item .field textarea {
+ width: 100%;
+ margin: 0;
+ box-sizing: border-box;
+}
+
+.sidebar-for-errors .attachment-details,
+.sidebar-for-errors .compat-item,
+.sidebar-for-errors .media-sidebar .media-progress-bar,
+.sidebar-for-errors .upload-details {
+ display: none !important;
+}
+
+/**
+ * Menu
+ */
+.media-menu {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ margin: 0;
+ padding: 50px 0 10px;
+ background: #f6f7f7;
+ border-right-width: 1px;
+ border-right-style: solid;
+ border-right-color: #c3c4c7;
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.media-menu .media-menu-item {
+ display: block;
+ box-sizing: border-box;
+ width: 100%;
+ position: relative;
+ border: 0;
+ margin: 0;
+ padding: 8px 20px;
+ font-size: 14px;
+ line-height: 1.28571428;
+ background: transparent;
+ color: #2271b1;
+ text-align: left;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+.media-menu .media-menu-item:hover {
+ background: rgba(0, 0, 0, 0.04);
+}
+
+.media-menu .media-menu-item:active {
+ color: #2271b1;
+ outline: none;
+}
+
+.media-menu .active,
+.media-menu .active:hover {
+ color: #1d2327;
+ font-weight: 600;
+}
+
+.media-menu .media-menu-item:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ color: #043959;
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.media-menu .separator {
+ height: 0;
+ margin: 12px 20px;
+ padding: 0;
+ border-top: 1px solid #dcdcde;
+}
+
+/**
+ * Menu
+ */
+.media-router {
+ position: relative;
+ padding: 0 6px;
+ margin: 0;
+ clear: both;
+}
+
+.media-router .media-menu-item {
+ position: relative;
+ float: left;
+ border: 0;
+ margin: 0;
+ padding: 8px 10px 9px;
+ height: 18px;
+ line-height: 1.28571428;
+ font-size: 14px;
+ text-decoration: none;
+ background: transparent;
+ cursor: pointer;
+ transition: none;
+}
+
+.media-router .media-menu-item:last-child {
+ border-right: 0;
+}
+
+.media-router .media-menu-item:hover,
+.media-router .media-menu-item:active {
+ color: #2271b1;
+}
+
+.media-router .active,
+.media-router .active:hover {
+ color: #1d2327;
+}
+
+.media-router .media-menu-item:focus {
+ box-shadow:
+ 0 0 0 1px #4f94d4,
+ 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ color: #043959;
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+}
+
+.media-router .active,
+.media-router .media-menu-item.active:last-child {
+ margin: -1px -1px 0;
+ background: #fff;
+ border: 1px solid #dcdcde;
+ border-bottom: none;
+}
+
+.media-router .active:after {
+ display: none;
+}
+
+/**
+ * Frame
+ */
+.media-frame {
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.media-frame-menu {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ width: 200px;
+ z-index: 150;
+}
+
+.media-frame-title {
+ position: absolute;
+ top: 0;
+ left: 200px;
+ right: 0;
+ height: 50px;
+ z-index: 200;
+}
+
+.media-frame-router {
+ position: absolute;
+ top: 50px;
+ left: 200px;
+ right: 0;
+ height: 36px;
+ z-index: 200;
+}
+
+.media-frame-content {
+ position: absolute;
+ top: 84px;
+ left: 200px;
+ right: 0;
+ bottom: 61px;
+ height: auto;
+ width: auto;
+ margin: 0;
+ overflow: auto;
+ background: #fff;
+ border-top: 1px solid #dcdcde;
+}
+
+.media-frame-toolbar {
+ position: absolute;
+ left: 200px;
+ right: 0;
+ z-index: 100;
+ bottom: 60px;
+ height: auto;
+}
+
+.media-frame.hide-menu .media-frame-title,
+.media-frame.hide-menu .media-frame-router,
+.media-frame.hide-menu .media-frame-toolbar,
+.media-frame.hide-menu .media-frame-content {
+ left: 0;
+}
+
+.media-frame.hide-toolbar .media-frame-content {
+ bottom: 0;
+}
+
+.media-frame.hide-router .media-frame-content {
+ top: 50px;
+}
+
+.media-frame.hide-menu .media-frame-menu,
+.media-frame.hide-menu .media-frame-menu-heading,
+.media-frame.hide-router .media-frame-router,
+.media-frame.hide-toolbar .media-frame-toolbar {
+ display: none;
+}
+
+.media-frame-title h1 {
+ padding: 0 16px;
+ font-size: 22px;
+ line-height: 2.27272727;
+ margin: 0;
+}
+
+.media-frame-menu-heading,
+.media-attachments-filter-heading {
+ position: absolute;
+ left: 20px;
+ top: 22px;
+ margin: 0;
+ font-size: 13px;
+ line-height: 1;
+ /* Above the media-frame-menu. */
+ z-index: 151;
+}
+
+.media-attachments-filter-heading {
+ top: 10px;
+ left: 16px;
+}
+
+.mode-grid .media-attachments-filter-heading {
+ top: 0;
+ left: -9999px;
+}
+
+.mode-grid .media-frame-actions-heading {
+ display: none;
+}
+
+.wp-core-ui .button.media-frame-menu-toggle {
+ display: none;
+}
+
+.media-frame-title .suggested-dimensions {
+ font-size: 14px;
+ float: right;
+ margin-right: 20px;
+}
+
+.media-frame-content .crop-content {
+ height: 100%;
+}
+
+.wp-customizer:not(.mobile) .media-frame-content .crop-content.site-icon {
+ margin-right: 300px;
+}
+
+.media-frame-content .crop-content .crop-image {
+ display: block;
+ margin: auto;
+ max-width: 100%;
+ max-height: 100%;
+}
+
+.media-frame-content .crop-content .upload-errors {
+ position: absolute;
+ width: 300px;
+ top: 50%;
+ left: 50%;
+ margin-left: -150px;
+ margin-right: -150px;
+ z-index: 600000;
+}
+
+/**
+ * Iframes
+ */
+.media-frame .media-iframe {
+ overflow: hidden;
+}
+
+.media-frame .media-iframe,
+.media-frame .media-iframe iframe {
+ height: 100%;
+ width: 100%;
+ border: 0;
+}
+
+/**
+ * Attachment Browser Filters
+ */
+.media-frame select.attachment-filters {
+ margin-top: 11px;
+ margin-right: 2%;
+ max-width: 42%;
+ max-width: calc(48% - 12px);
+}
+
+.media-frame select.attachment-filters:last-of-type {
+ margin-right: 0;
+ width: auto;
+ max-width: 100%;
+}
+
+/**
+ * Search
+ */
+.media-frame .search {
+ margin: 32px 0 0;
+ padding: 4px;
+ font-size: 13px;
+ color: #3c434a;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ -webkit-appearance: none;
+}
+
+.media-toolbar-primary .search {
+ max-width: 100%;
+}
+
+.media-frame .media-search-input-label {
+ position: absolute;
+ left: 0;
+ top: 10px;
+ margin: 0;
+ line-height: 1;
+}
+
+/**
+ * Attachments
+ */
+.wp-core-ui .attachments {
+ margin: 0;
+ -webkit-overflow-scrolling: touch;
+}
+
+/**
+ * Attachment
+ */
+.wp-core-ui .attachment {
+ position: relative;
+ float: left;
+ padding: 8px;
+ margin: 0;
+ color: #3c434a;
+ cursor: pointer;
+ list-style: none;
+ text-align: center;
+ -webkit-user-select: none;
+ user-select: none;
+ width: 25%;
+ box-sizing: border-box;
+}
+
+.wp-core-ui .attachment:focus,
+.wp-core-ui .selected.attachment:focus,
+.wp-core-ui .attachment.details:focus {
+ box-shadow:
+ inset 0 0 2px 3px #fff,
+ inset 0 0 0 7px #4f94d4;
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+ outline-offset: -6px;
+}
+
+.wp-core-ui .selected.attachment {
+ box-shadow:
+ inset 0 0 0 5px #fff,
+ inset 0 0 0 7px #c3c4c7;
+}
+
+.wp-core-ui .attachment.details {
+ box-shadow:
+ inset 0 0 0 3px #fff,
+ inset 0 0 0 7px #2271b1;
+}
+
+.wp-core-ui .attachment-preview {
+ position: relative;
+ box-shadow:
+ inset 0 0 15px rgba(0, 0, 0, 0.1),
+ inset 0 0 0 1px rgba(0, 0, 0, 0.05);
+ background: #f0f0f1;
+ cursor: pointer;
+}
+
+.wp-core-ui .attachment-preview:before {
+ content: "";
+ display: block;
+ padding-top: 100%;
+}
+
+.wp-core-ui .attachment .icon {
+ margin: 0 auto;
+ overflow: hidden;
+}
+
+.wp-core-ui .attachment .thumbnail {
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ opacity: 1;
+ transition: opacity .1s;
+}
+
+.wp-core-ui .attachment .portrait img {
+ max-width: 100%;
+}
+
+.wp-core-ui .attachment .landscape img {
+ max-height: 100%;
+}
+
+.wp-core-ui .attachment .thumbnail:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+}
+
+.wp-core-ui .attachment .thumbnail img {
+ top: 0;
+ left: 0;
+}
+
+.wp-core-ui .attachment .thumbnail .centered {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ transform: translate( 50%, 50% );
+}
+
+.wp-core-ui .attachment .thumbnail .centered img {
+ transform: translate( -50%, -50% );
+}
+
+.wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon {
+ transform: translate( -50%, -70% );
+}
+
+.wp-core-ui .attachment .filename {
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ overflow: hidden;
+ max-height: 100%;
+ word-wrap: break-word;
+ text-align: center;
+ font-weight: 600;
+ background: rgba(255, 255, 255, 0.8);
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
+}
+
+.wp-core-ui .attachment .filename div {
+ padding: 5px 10px;
+}
+
+.wp-core-ui .attachment .thumbnail img {
+ position: absolute;
+}
+
+.wp-core-ui .attachment-close {
+ display: block;
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ height: 22px;
+ width: 22px;
+ padding: 0;
+ background-color: #fff;
+ background-position: -96px 4px;
+ border-radius: 3px;
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
+ transition: none;
+}
+
+.wp-core-ui .attachment-close:hover,
+.wp-core-ui .attachment-close:focus {
+ background-position: -36px 4px;
+}
+
+.wp-core-ui .attachment .check {
+ display: none;
+ height: 24px;
+ width: 24px;
+ padding: 0;
+ border: 0;
+ position: absolute;
+ z-index: 10;
+ top: 0;
+ right: 0;
+ outline: none;
+ background: #f0f0f1;
+ cursor: pointer;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 0, 0, 0.15);
+}
+
+.wp-core-ui .attachment .check .media-modal-icon {
+ display: block;
+ background-position: -1px 0;
+ height: 15px;
+ width: 15px;
+ margin: 5px;
+}
+
+.wp-core-ui .attachment .check:hover .media-modal-icon {
+ background-position: -40px 0;
+}
+
+.wp-core-ui .attachment.selected .check {
+ display: block;
+}
+
+.wp-core-ui .attachment.details .check,
+.wp-core-ui .attachment.selected .check:focus,
+.wp-core-ui .media-frame.mode-grid .attachment.selected .check {
+ background-color: #2271b1;
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 0 2px #2271b1;
+}
+
+.wp-core-ui .attachment.selected .check:focus {
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.wp-core-ui .attachment.details .check .media-modal-icon,
+.wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon {
+ background-position: -21px 0;
+}
+
+.wp-core-ui .attachment.details .check:hover .media-modal-icon,
+.wp-core-ui .attachment.selected .check:focus .media-modal-icon,
+.wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon {
+ background-position: -60px 0;
+}
+
+.wp-core-ui .media-frame .attachment .describe {
+ position: relative;
+ display: block;
+ width: 100%;
+ margin: 0;
+ padding: 0 8px;
+ font-size: 12px;
+ border-radius: 0;
+}
+
+/**
+ * Attachments Browser
+ */
+.media-frame .attachments-browser {
+ position: relative;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+}
+
+.attachments-browser .media-toolbar {
+ right: 300px;
+ height: 72px;
+ background: #fff;
+}
+
+.attachments-browser.hide-sidebar .media-toolbar {
+ right: 0;
+}
+
+.attachments-browser .media-toolbar-primary > .media-button,
+.attachments-browser .media-toolbar-primary > .media-button-group,
+.attachments-browser .media-toolbar-secondary > .media-button,
+.attachments-browser .media-toolbar-secondary > .media-button-group {
+ margin: 10px 0;
+}
+
+.attachments-browser .attachments {
+ padding: 2px 8px 8px;
+}
+
+.attachments-browser:not(.has-load-more) .attachments,
+.attachments-browser.has-load-more .attachments-wrapper,
+.attachments-browser .uploader-inline {
+ position: absolute;
+ top: 72px;
+ left: 0;
+ right: 300px;
+ bottom: 0;
+ overflow: auto;
+ outline: none;
+}
+
+.attachments-browser .uploader-inline.hidden {
+ display: none;
+}
+
+.attachments-browser .media-toolbar-primary {
+ max-width: 33%;
+}
+
+.mode-grid .attachments-browser .media-toolbar-primary {
+ display: flex;
+ align-items: center;
+}
+
+.mode-grid .attachments-browser .media-toolbar-mode-select .media-toolbar-primary {
+ display: none;
+}
+
+.attachments-browser .media-toolbar-secondary {
+ max-width: 66%;
+}
+
+.uploader-inline .close {
+ background-color: transparent;
+ border: 0;
+ cursor: pointer;
+ height: 48px;
+ outline: none;
+ padding: 0;
+ position: absolute;
+ right: 2px;
+ text-align: center;
+ top: 2px;
+ width: 48px;
+ z-index: 1;
+}
+
+.uploader-inline .close:before {
+ font: normal 30px/1 dashicons !important;
+ color: #50575e;
+ display: inline-block;
+ content: "\f335";
+ font-weight: 300;
+ margin-top: 1px;
+}
+
+.uploader-inline .close:focus {
+ outline: 1px solid #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+}
+
+.attachments-browser.hide-sidebar .attachments,
+.attachments-browser.hide-sidebar .uploader-inline {
+ right: 0;
+ margin-right: 0;
+}
+
+.attachments-browser .instructions {
+ display: inline-block;
+ margin-top: 16px;
+ line-height: 1.38461538;
+ font-size: 13px;
+ color: #646970;
+}
+
+.attachments-browser .no-media {
+ padding: 2em 0 0 2em;
+}
+
+.more-loaded .attachment:not(.found-media) {
+ background: #dcdcde;
+}
+
+.load-more-wrapper {
+ clear: both;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: center;
+ padding: 1em 0;
+}
+
+.load-more-wrapper .load-more-count {
+ min-width: 100%;
+ margin: 0 0 1em;
+ text-align: center;
+}
+
+.load-more-wrapper .load-more {
+ margin: 0;
+}
+
+/* Needs high specificity. */
+.media-frame .load-more-wrapper .load-more + .spinner {
+ float: none;
+ margin: 0 -30px 0 10px;
+}
+
+/* Reset spinner margin when the button is hidden to avoid horizontal scrollbar. */
+.media-frame .load-more-wrapper .load-more.hidden + .spinner {
+ margin: 0;
+}
+
+/* Force a new row within the flex container. */
+.load-more-wrapper::after {
+ content: "";
+ min-width: 100%;
+ order: 1;
+}
+
+.load-more-wrapper .load-more-jump {
+ margin: 0 0 0 12px;
+}
+
+.attachment.new-media {
+ outline: 2px dotted #c3c4c7;
+}
+
+.load-more-wrapper {
+ clear: both;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: center;
+ padding: 1em 0;
+}
+
+.load-more-wrapper .load-more-count {
+ min-width: 100%;
+ margin: 0 0 1em;
+ text-align: center;
+}
+
+.load-more-wrapper .load-more {
+ margin: 0;
+}
+
+/* Needs high specificity. */
+.media-frame .load-more-wrapper .load-more + .spinner {
+ float: none;
+ margin: 0 -30px 0 10px;
+}
+
+/* Reset spinner margin when the button is hidden to avoid horizontal scrollbar. */
+.media-frame .load-more-wrapper .load-more.hidden + .spinner {
+ margin: 0;
+}
+
+/* Force a new row within the flex container. */
+.load-more-wrapper::after {
+ content: "";
+ min-width: 100%;
+ order: 1;
+}
+
+.load-more-wrapper .load-more-jump {
+ margin: 0 0 0 12px;
+}
+
+/**
+ * Progress Bar
+ */
+.media-progress-bar {
+ position: relative;
+ height: 10px;
+ width: 70%;
+ margin: 10px auto;
+ border-radius: 10px;
+ background: #dcdcde;
+ background: rgba(0, 0, 0, 0.1);
+}
+
+.media-progress-bar div {
+ height: 10px;
+ min-width: 20px;
+ width: 0;
+ background: #2271b1;
+ border-radius: 10px;
+ transition: width 300ms;
+}
+
+.media-uploader-status .media-progress-bar {
+ display: none;
+ width: 100%;
+}
+
+.uploading.media-uploader-status .media-progress-bar {
+ display: block;
+}
+
+.attachment-preview .media-progress-bar {
+ position: absolute;
+ top: 50%;
+ left: 15%;
+ width: 70%;
+ margin: -5px 0 0;
+}
+
+.media-uploader-status {
+ position: relative;
+ margin: 0 auto;
+ padding-bottom: 10px;
+ max-width: 400px;
+}
+
+.uploader-inline .media-uploader-status h2 {
+ display: none;
+}
+
+.media-uploader-status .upload-details {
+ display: none;
+ font-size: 12px;
+ color: #646970;
+}
+
+.uploading.media-uploader-status .upload-details {
+ display: block;
+}
+
+.media-uploader-status .upload-detail-separator {
+ padding: 0 4px;
+}
+
+.media-uploader-status .upload-count {
+ color: #3c434a;
+}
+
+.media-uploader-status .upload-dismiss-errors,
+.media-uploader-status .upload-errors {
+ display: none;
+}
+
+.errors.media-uploader-status .upload-dismiss-errors,
+.errors.media-uploader-status .upload-errors {
+ display: block;
+}
+
+.media-uploader-status .upload-dismiss-errors {
+ transition: none;
+ text-decoration: none;
+}
+
+.upload-errors .upload-error {
+ padding: 12px;
+ margin-bottom: 12px;
+ background: #fff;
+ border-left: 4px solid #d63638;
+ box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
+}
+
+.uploader-inline .upload-errors .upload-error {
+ padding: 12px 30px;
+ background-color: #fcf0f1;
+ box-shadow: none;
+}
+
+.upload-errors .upload-error-filename {
+ font-weight: 600;
+}
+
+.upload-errors .upload-error-message {
+ display: block;
+ padding-top: 8px;
+ word-wrap: break-word;
+}
+
+/**
+ * Window and Editor uploaders used to display "drop zones"
+ */
+.uploader-window,
+.wp-editor-wrap .uploader-editor {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ display: none;
+}
+
+.uploader-window {
+ position: fixed;
+ z-index: 250000;
+ opacity: 0; /* Only the inline uploader is animated with JS, the editor one isn't */
+ transition: opacity 250ms;
+}
+
+.wp-editor-wrap .uploader-editor {
+ position: absolute;
+ z-index: 99998; /* under the toolbar */
+ background: rgba(140, 143, 148, 0.9);
+}
+
+.uploader-window,
+.wp-editor-wrap .uploader-editor.droppable {
+ background: rgba(10, 75, 120, 0.9);
+}
+
+.uploader-window-content,
+.wp-editor-wrap .uploader-editor-content {
+ position: absolute;
+ top: 10px;
+ left: 10px;
+ right: 10px;
+ bottom: 10px;
+ border: 1px dashed #fff;
+}
+
+/* uploader drop-zone title */
+.uploader-window h1, /* Back-compat for pre-5.3 */
+.uploader-window .uploader-editor-title,
+.wp-editor-wrap .uploader-editor .uploader-editor-title {
+ position: absolute;
+ top: 50%;
+ left: 0;
+ right: 0;
+ transform: translateY(-50%);
+ font-size: 3em;
+ line-height: 1.3;
+ font-weight: 600;
+ color: #fff;
+ margin: 0;
+ padding: 0 10px;
+}
+
+.wp-editor-wrap .uploader-editor .uploader-editor-title {
+ display: none;
+}
+
+.wp-editor-wrap .uploader-editor.droppable .uploader-editor-title {
+ display: block;
+}
+
+.uploader-window .media-progress-bar {
+ margin-top: 20px;
+ max-width: 300px;
+ background: transparent;
+ border-color: #fff;
+ display: none;
+}
+
+.uploader-window .media-progress-bar div {
+ background: #fff;
+}
+
+.uploading .uploader-window .media-progress-bar {
+ display: block;
+}
+
+.media-frame .uploader-inline {
+ margin-bottom: 20px;
+ padding: 0;
+ text-align: center;
+}
+
+.uploader-inline-content {
+ position: absolute;
+ top: 30%;
+ left: 0;
+ right: 0;
+}
+
+.uploader-inline-content .upload-ui {
+ margin: 2em 0;
+}
+
+.uploader-inline-content .post-upload-ui {
+ margin-bottom: 2em;
+}
+
+.uploader-inline .has-upload-message .upload-ui {
+ margin: 0 0 4em;
+}
+
+.uploader-inline h2 {
+ font-size: 20px;
+ line-height: 1.4;
+ font-weight: 400;
+ margin: 0;
+}
+
+.uploader-inline .has-upload-message .upload-instructions {
+ font-size: 14px;
+ color: #3c434a;
+ font-weight: 400;
+}
+
+.uploader-inline .drop-instructions {
+ display: none;
+}
+
+.supports-drag-drop .uploader-inline .drop-instructions {
+ display: block;
+}
+
+.uploader-inline p {
+ margin: 0.5em 0;
+}
+
+.uploader-inline .media-progress-bar {
+ display: none;
+}
+
+.uploading.uploader-inline .media-progress-bar {
+ display: block;
+}
+
+.uploader-inline .browser {
+ display: inline-block !important;
+}
+
+/**
+ * Selection
+ */
+.media-selection {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 350px;
+ height: 60px;
+ padding: 0 0 0 16px;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.media-selection .selection-info {
+ display: inline-block;
+ font-size: 12px;
+ height: 60px;
+ margin-right: 10px;
+ vertical-align: top;
+}
+
+.media-selection.empty,
+.media-selection.editing {
+ display: none;
+}
+
+.media-selection.one .edit-selection {
+ display: none;
+}
+
+.media-selection .count {
+ display: block;
+ padding-top: 12px;
+ font-size: 14px;
+ line-height: 1.42857142;
+ font-weight: 600;
+}
+
+.media-selection .button-link {
+ float: left;
+ padding: 1px 8px;
+ margin: 1px 8px 1px -8px;
+ line-height: 1.4;
+ border-right: 1px solid #dcdcde;
+ color: #2271b1;
+ text-decoration: none;
+}
+
+.media-selection .button-link:hover,
+.media-selection .button-link:focus {
+ color: #135e96;
+}
+
+.media-selection .button-link:last-child {
+ border-right: 0;
+ margin-right: 0;
+}
+
+.selection-info .clear-selection {
+ color: #d63638;
+}
+
+.selection-info .clear-selection:hover,
+.selection-info .clear-selection:focus {
+ color: #d63638;
+}
+
+.media-selection .selection-view {
+ display: inline-block;
+ vertical-align: top;
+}
+
+.media-selection .attachments {
+ display: inline-block;
+ height: 48px;
+ margin: 6px;
+ padding: 0;
+ overflow: hidden;
+ vertical-align: top;
+}
+
+.media-selection .attachment {
+ width: 40px;
+ padding: 0;
+ margin: 4px;
+}
+
+.media-selection .attachment .thumbnail {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+
+.media-selection .attachment .icon {
+ width: 50%;
+}
+
+.media-selection .attachment-preview {
+ box-shadow: none;
+ background: none;
+}
+
+.wp-core-ui .media-selection .attachment:focus,
+.wp-core-ui .media-selection .selected.attachment:focus,
+.wp-core-ui .media-selection .attachment.details:focus {
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 2px 3px #4f94d4;
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.wp-core-ui .media-selection .selected.attachment {
+ box-shadow: none;
+}
+
+.wp-core-ui .media-selection .attachment.details {
+ box-shadow:
+ 0 0 0 1px #fff,
+ 0 0 0 3px #2271b1;
+}
+
+.media-selection:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 25px;
+ background-image: linear-gradient(to left,#fff,rgba(255, 255, 255, 0));
+}
+
+.media-selection .attachment .filename {
+ display: none;
+}
+
+/**
+ * Spinner
+ */
+.media-frame .spinner {
+ background: url(../images/spinner.gif) no-repeat;
+ background-size: 20px 20px;
+ float: right;
+ display: inline-block;
+ visibility: hidden;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ width: 20px;
+ height: 20px;
+ margin: 0;
+ vertical-align: middle;
+}
+
+.media-frame.mode-grid .spinner {
+ margin: 0;
+ float: none;
+ vertical-align: middle;
+}
+
+.media-modal .media-toolbar .spinner {
+ float: none;
+ vertical-align: bottom;
+ margin: 0 0 5px 5px;
+}
+
+.media-frame .instructions + .spinner.is-active {
+ vertical-align: middle;
+}
+
+.media-frame .spinner.is-active {
+ visibility: visible;
+}
+
+/**
+ * Attachment Details
+ */
+.attachment-details {
+ position: relative;
+ overflow: auto;
+}
+
+.attachment-details .settings-save-status {
+ float: right;
+ text-transform: none;
+ font-weight: 400;
+}
+
+.attachment-details .settings-save-status .spinner {
+ float: none;
+ margin-left: 5px;
+}
+
+.attachment-details .settings-save-status .saved {
+ display: none;
+}
+
+.attachment-details.save-waiting .settings-save-status .spinner {
+ visibility: visible;
+}
+
+.attachment-details.save-complete .settings-save-status .saved {
+ display: inline-block;
+}
+
+.attachment-info {
+ overflow: hidden;
+ min-height: 60px;
+ margin-bottom: 16px;
+ line-height: 1.5;
+ color: #646970;
+ border-bottom: 1px solid #dcdcde;
+ padding-bottom: 11px;
+}
+
+.attachment-info .wp-media-wrapper {
+ margin-bottom: 8px;
+}
+
+.attachment-info .wp-media-wrapper.wp-audio {
+ margin-top: 13px;
+}
+
+.attachment-info .filename {
+ font-weight: 600;
+ color: #3c434a;
+ word-wrap: break-word;
+}
+
+.attachment-info .thumbnail {
+ position: relative;
+ float: left;
+ max-width: 120px;
+ max-height: 120px;
+ margin-top: 5px;
+ margin-right: 10px;
+ margin-bottom: 5px;
+}
+
+.uploading .attachment-info .thumbnail {
+ width: 120px;
+ height: 80px;
+ box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
+}
+
+.uploading .attachment-info .media-progress-bar {
+ margin-top: 35px;
+}
+
+.attachment-info .thumbnail-image:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
+ overflow: hidden;
+}
+
+.attachment-info .thumbnail img {
+ display: block;
+ max-width: 120px;
+ max-height: 120px;
+ margin: 0 auto;
+}
+
+.attachment-info .details {
+ float: left;
+ font-size: 12px;
+ max-width: 100%;
+}
+
+.attachment-info .edit-attachment,
+.attachment-info .delete-attachment,
+.attachment-info .trash-attachment,
+.attachment-info .untrash-attachment {
+ display: block;
+ text-decoration: none;
+ white-space: nowrap;
+}
+
+.attachment-details.needs-refresh .attachment-info .edit-attachment {
+ display: none;
+}
+
+.attachment-info .edit-attachment {
+ display: block;
+}
+
+.media-modal .delete-attachment,
+.media-modal .trash-attachment,
+.media-modal .untrash-attachment {
+ display: inline;
+ padding: 0;
+ color: #d63638;
+}
+
+.media-modal .delete-attachment:hover,
+.media-modal .delete-attachment:focus,
+.media-modal .trash-attachment:hover,
+.media-modal .trash-attachment:focus,
+.media-modal .untrash-attachment:hover,
+.media-modal .untrash-attachment:focus {
+ color: #d63638;
+}
+
+/**
+ * Attachment Display Settings
+ */
+.attachment-display-settings {
+ width: 100%;
+ float: left;
+ overflow: hidden;
+}
+
+.collection-settings {
+ overflow: hidden;
+}
+
+.collection-settings .setting input[type="checkbox"] {
+ float: left;
+ margin-right: 8px;
+}
+
+.collection-settings .setting span, /* Back-compat for pre-5.3 */
+.collection-settings .setting .name {
+ min-width: inherit;
+}
+
+/**
+ * Image Editor
+ */
+.media-modal .imgedit-wrap {
+ position: static;
+}
+
+.media-modal .imgedit-wrap .imgedit-panel-content {
+ padding: 16px 16px 0;
+ position: absolute;
+ top: 0;
+ right: 282px;
+ bottom: 0;
+ left: 0;
+ overflow: auto;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.media-modal .imgedit-wrap .imgedit-submit {
+ margin-bottom: 16px;
+}
+
+.media-modal .imgedit-wrap .imgedit-settings {
+ background: #f6f7f7;
+ border-left: 1px solid #dcdcde;
+ padding: 20px 16px 0;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 250px;
+ overflow: auto;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.media-modal .imgedit-wrap .imgedit-save-target {
+ margin: 8px 0 24px;
+}
+
+.media-modal .imgedit-group {
+ background: none;
+ border: none;
+ border-bottom: 1px solid #dcdcde;
+ box-shadow: none;
+ margin: 0;
+ margin-bottom: 16px;
+ padding: 0;
+ padding-bottom: 16px;
+ position: relative; /* RTL fix, #WP29352 */
+}
+
+.media-modal .imgedit-group:last-of-type {
+ border: none;
+ margin: 0;
+ padding: 0;
+}
+
+.media-modal .imgedit-group-top {
+ margin: 0;
+}
+
+.media-modal .imgedit-group-top h2,
+.media-modal .imgedit-group-top h2 .button-link {
+ display: inline-block;
+ text-transform: uppercase;
+ font-size: 12px;
+ color: #646970;
+ margin: 0;
+ margin-top: 3px;
+}
+
+.media-modal .imgedit-group-top h2 a,
+.media-modal .imgedit-group-top h2 .button-link {
+ text-decoration: none;
+ color: #646970;
+}
+
+/* higher specificity than media.css */
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle,
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover,
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active {
+ border: 1px solid transparent;
+ margin: 0;
+ padding: 0;
+ background: transparent;
+ color: #2271b1;
+ font-size: 20px;
+ line-height: 1;
+ cursor: pointer;
+ box-sizing: content-box;
+ box-shadow: none;
+}
+
+.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus {
+ color: #2271b1;
+ border-color: #4f94d4;
+ box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
+ /* Only visible in Windows High Contrast mode */
+ outline: 2px solid transparent;
+}
+
+.wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle {
+ margin-top: -3px;
+}
+
+.wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle {
+ margin-top: -2px;
+}
+
+.media-modal .imgedit-help-toggled span.dashicons:before {
+ content: "\f142";
+}
+
+.media-modal .imgedit-thumbnail-preview {
+ margin: 10px 8px 0 0;
+}
+
+.imgedit-thumbnail-preview-caption {
+ display: block;
+}
+
+.media-modal .imgedit-wrap div.updated, /* Back-compat for pre-5.5 */
+.media-modal .imgedit-wrap .notice {
+ margin: 0;
+ margin-bottom: 16px;
+}
+
+/**
+ * Embed from URL and Image Details
+ */
+.embed-url {
+ display: block;
+ position: relative;
+ padding: 16px;
+ margin: 0;
+ z-index: 250;
+ background: #fff;
+ font-size: 18px;
+}
+
+.media-frame .embed-url input {
+ font-size: 18px;
+ line-height: 1.22222222; /* 22px */
+ padding: 12px 40px 12px 14px; /* right padding to leave room for the spinner */
+ width: 100%;
+ min-width: 200px;
+ box-shadow: inset 2px 2px 4px -2px rgba(0, 0, 0, 0.1);
+}
+
+.media-frame .embed-url input::-ms-clear {
+ display: none; /* the "x" in IE 11 conflicts with the spinner */
+}
+
+.media-frame .embed-url .spinner {
+ position: absolute;
+ top: 32px;
+ right: 26px;
+}
+
+.media-frame .embed-loading .embed-url .spinner {
+ visibility: visible;
+}
+
+.embed-link-settings,
+.embed-media-settings {
+ position: absolute;
+ top: 82px;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding: 0 16px;
+ overflow: auto;
+}
+
+.media-embed .embed-link-settings .link-text {
+ margin-top: 0;
+}
+
+/*
+ * Implementation of bottom padding in overflow content differs across browsers.
+ * We need a different method. See https://github.com/w3c/csswg-drafts/issues/129
+ */
+.embed-link-settings::after,
+.embed-media-settings::after {
+ content: "";
+ display: flex;
+ clear: both;
+ height: 24px;
+}
+
+.media-embed .embed-link-settings {
+ /* avoid Firefox to give focus to the embed preview container parent */
+ overflow: visible;
+}
+
+.embed-preview img,
+.embed-preview iframe,
+.embed-preview embed,
+.mejs-container video {
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+.embed-preview a {
+ display: inline-block;
+}
+
+.embed-preview img {
+ display: block;
+ height: auto;
+}
+
+.mejs-container:focus {
+ outline: 1px solid #4f94d4;
+ box-shadow: 0 0 2px 1px rgba(79, 148, 212, 0.8);
+}
+
+.image-details .media-modal {
+ left: 140px;
+ right: 140px;
+}
+
+.image-details .media-frame-title,
+.image-details .media-frame-content,
+.image-details .media-frame-router {
+ left: 0;
+}
+
+.image-details .embed-media-settings {
+ top: 0;
+ overflow: visible;
+ padding: 0;
+}
+
+.image-details .embed-media-settings::after {
+ content: none;
+}
+
+.image-details .embed-media-settings,
+.image-details .embed-media-settings div {
+ box-sizing: border-box;
+}
+
+.image-details .column-settings {
+ background: #f6f7f7;
+ border-right: 1px solid #dcdcde;
+ min-height: 100%;
+ width: 55%;
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+
+.image-details .column-settings h2 {
+ margin: 20px;
+ padding-top: 20px;
+ border-top: 1px solid #dcdcde;
+ color: #1d2327;
+}
+
+.image-details .column-image {
+ width: 45%;
+ position: absolute;
+ left: 55%;
+ top: 0;
+}
+
+.image-details .image {
+ margin: 20px;
+}
+
+.image-details .image img {
+ max-width: 100%;
+ max-height: 500px;
+}
+
+.image-details .advanced-toggle {
+ padding: 0;
+ color: #646970;
+ text-transform: uppercase;
+ text-decoration: none;
+}
+
+.image-details .advanced-toggle:hover,
+.image-details .advanced-toggle:active {
+ color: #646970;
+}
+
+.image-details .advanced-toggle:after {
+ font: normal 20px/1 dashicons;
+ speak: never;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ content: "\f140";
+ display: inline-block;
+ margin-top: -2px;
+}
+
+.image-details .advanced-visible .advanced-toggle:after {
+ content: "\f142";
+}
+
+.image-details .custom-size label, /* Back-compat for pre-5.3 */
+.image-details .custom-size .custom-size-setting {
+ display: block;
+ float: left;
+}
+
+.image-details .custom-size .custom-size-setting label {
+ float: none;
+}
+
+.image-details .custom-size input {
+ width: 5em;
+}
+
+.image-details .custom-size .sep {
+ float: left;
+ margin: 26px 6px 0;
+}
+
+.image-details .custom-size .description {
+ margin-left: 0;
+}
+
+.media-embed .thumbnail {
+ max-width: 100%;
+ max-height: 200px;
+ position: relative;
+ float: left;
+}
+
+.media-embed .thumbnail img {
+ max-height: 200px;
+ display: block;
+}
+
+.media-embed .thumbnail:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+}
+
+.media-embed .setting,
+.media-embed .setting-group {
+ width: 100%;
+ margin: 10px 0;
+ float: left;
+ display: block;
+ clear: both;
+}
+
+.media-embed .setting-group .setting:not(.checkbox-setting) {
+ margin: 0;
+}
+
+.media-embed .setting.has-description {
+ margin-bottom: 5px;
+}
+
+.media-embed .description {
+ clear: both;
+ font-style: normal;
+}
+
+.media-embed .content-track + .description {
+ line-height: 1.4;
+ /* The !important needs to override a high specificity selector from wp-medialement.css */
+ max-width: none !important;
+}
+
+.media-embed .remove-track {
+ margin-bottom: 10px;
+}
+
+.image-details .embed-media-settings .setting,
+.image-details .embed-media-settings .setting-group {
+ float: none;
+ width: auto;
+}
+
+.image-details .actions {
+ margin: 10px 0;
+}
+
+.image-details .hidden {
+ display: none;
+}
+
+.media-embed .setting input[type="text"],
+.media-embed .setting textarea,
+.media-embed fieldset {
+ display: block;
+ width: 100%;
+ max-width: 400px;
+}
+
+.image-details .embed-media-settings .setting input[type="text"],
+.image-details .embed-media-settings .setting textarea {
+ max-width: inherit;
+ width: 70%;
+}
+
+.image-details .embed-media-settings .setting input.link-to-custom,
+.image-details .embed-media-settings .link-target,
+.image-details .embed-media-settings .custom-size,
+.image-details .embed-media-settings .setting-group,
+.image-details .description {
+ margin-left: 27%;
+ width: 70%;
+}
+
+.image-details .description {
+ font-style: normal;
+ margin-top: 0;
+}
+
+.image-details .embed-media-settings .link-target {
+ margin-top: 16px;
+}
+
+.image-details .checkbox-label,
+.audio-details .checkbox-label,
+.video-details .checkbox-label {
+ vertical-align: baseline;
+}
+
+.media-embed .setting input.hidden,
+.media-embed .setting textarea.hidden {
+ display: none;
+}
+
+.media-embed .setting span, /* Back-compat for pre-5.3 */
+.media-embed .setting .name,
+.media-embed .setting-group .name {
+ display: inline-block;
+ font-size: 13px;
+ line-height: 1.84615384;
+ color: #646970;
+}
+
+.media-embed .setting span {
+ display: block; /* Back-compat for pre-5.3 */
+ width: 200px; /* Back-compat for pre-5.3 */
+}
+
+.image-details .embed-media-settings .setting span, /* Back-compat for pre-5.3 */
+.image-details .embed-media-settings .setting .name {
+ float: left;
+ width: 25%;
+ text-align: right;
+ margin: 8px 1% 0;
+ line-height: 1.1;
+}
+
+/* Buttons group in IE 11. */
+.media-frame .setting-group .button-group,
+.image-details .embed-media-settings .setting .button-group {
+ width: auto;
+}
+
+.media-embed-sidebar {
+ position: absolute;
+ top: 0;
+ left: 440px;
+}
+
+.advanced-section,
+.link-settings {
+ margin-top: 10px;
+}
+
+/**
+ * Button groups fix: can be removed together with the Back-compat for pre-5.3
+ */
+ .media-frame .setting .button-group {
+ display: flex;
+ margin: 0 !important;
+ max-width: none !important;
+ }
+
+/**
+ * Localization
+ */
+.rtl .media-modal,
+.rtl .media-frame,
+.rtl .media-frame .search,
+.rtl .media-frame input[type="text"],
+.rtl .media-frame input[type="password"],
+.rtl .media-frame input[type="number"],
+.rtl .media-frame input[type="search"],
+.rtl .media-frame input[type="email"],
+.rtl .media-frame input[type="url"],
+.rtl .media-frame input[type="tel"],
+.rtl .media-frame textarea,
+.rtl .media-frame select {
+ font-family: Tahoma, sans-serif;
+}
+
+:lang(he-il) .rtl .media-modal,
+:lang(he-il) .rtl .media-frame,
+:lang(he-il) .rtl .media-frame .search,
+:lang(he-il) .rtl .media-frame input[type="text"],
+:lang(he-il) .rtl .media-frame input[type="password"],
+:lang(he-il) .rtl .media-frame input[type="number"],
+:lang(he-il) .rtl .media-frame input[type="search"],
+:lang(he-il) .rtl .media-frame input[type="email"],
+:lang(he-il) .rtl .media-frame input[type="url"],
+:lang(he-il) .rtl .media-frame textarea,
+:lang(he-il) .rtl .media-frame select {
+ font-family: Arial, sans-serif;
+}
+
+/**
+ * Responsive layout
+ */
+@media only screen and (max-width: 900px) {
+ .media-modal .media-frame-title {
+ height: 40px;
+ }
+
+ .media-modal .media-frame-title h1 {
+ line-height: 2.22222222;
+ font-size: 18px;
+ }
+
+ .media-modal-close {
+ width: 42px;
+ height: 42px;
+ }
+
+ /* Drop-down menu */
+ .media-frame .media-frame-title {
+ position: static;
+ padding: 0 44px;
+ text-align: center;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-router,
+ .media-frame:not(.hide-menu) .media-frame-content,
+ .media-frame:not(.hide-menu) .media-frame-toolbar {
+ left: 0;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-router {
+ /* 40 title + (40 - 6) menu toggle button + 6 spacing */
+ top: 80px;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-content {
+ /* 80 + room for the tabs */
+ top: 114px;
+ }
+
+ .media-frame.hide-router .media-frame-content {
+ top: 80px;
+ }
+
+ .media-frame:not(.hide-menu) .media-frame-menu {
+ position: static;
+ width: 0;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu {
+ display: none;
+ width: auto;
+ max-width: 80%;
+ overflow: auto;
+ z-index: 2000;
+ top: 75px;
+ left: 50%;
+ transform: translateX(-50%);
+ right: auto;
+ bottom: auto;
+ padding: 5px 0;
+ border: 1px solid #c3c4c7;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu.visible {
+ display: block;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu > a {
+ padding: 12px 16px;
+ font-size: 16px;
+ }
+
+ .media-frame:not(.hide-menu) .media-menu .separator {
+ margin: 5px 10px;
+ }
+
+ /* Visually hide the menu heading keeping it available to assistive technologies. */
+ .media-frame-menu-heading {
+ clip: rect(1px, 1px, 1px, 1px);
+ -webkit-clip-path: inset(50%);
+ clip-path: inset(50%);
+ height: 1px;
+ overflow: hidden;
+ padding: 0;
+ width: 1px;
+ word-wrap: normal !important;
+ }
+
+ /* Reveal the menu toggle button. */
+ .wp-core-ui .media-frame:not(.hide-menu) .button.media-frame-menu-toggle {
+ display: inline-flex;
+ align-items: center;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ margin: -6px 0 0;
+ padding: 0 2px 0 12px;
+ font-size: 0.875rem;
+ font-weight: 600;
+ text-decoration: none;
+ background: transparent;
+ /* Only for IE11 to vertically align text within the inline-flex button */
+ height: 0.1%;
+ /* Modern browsers */
+ min-height: 40px;
+ }
+
+ .wp-core-ui .button.media-frame-menu-toggle:hover,
+ .wp-core-ui .button.media-frame-menu-toggle:active {
+ background: transparent;
+ transform: none;
+ }
+
+ .wp-core-ui .button.media-frame-menu-toggle:focus {
+ /* Only visible in Windows High Contrast mode */
+ outline: 1px solid transparent;
+ }
+ /* End drop-down menu */
+
+ .media-sidebar {
+ width: 230px;
+ }
+
+ .attachments-browser .attachments,
+ .attachments-browser .uploader-inline,
+ .attachments-browser .media-toolbar,
+ .attachments-browser .attachments-wrapper,
+ .attachments-browser.has-load-more .attachments-wrapper {
+ right: 262px;
+ }
+
+ .media-sidebar .setting,
+ .attachment-details .setting {
+ margin: 6px 0;
+ }
+
+ .media-sidebar .setting input,
+ .media-sidebar .setting textarea,
+ .media-sidebar .setting .name,
+ .attachment-details .setting input,
+ .attachment-details .setting textarea,
+ .attachment-details .setting .name,
+ .compat-item label span {
+ float: none;
+ display: inline-block;
+ }
+
+ .media-sidebar .setting span, /* Back-compat for pre-5.3 */
+ .attachment-details .setting span, /* Back-compat for pre-5.3 */
+ .media-sidebar .checkbox-label-inline {
+ float: none;
+ }
+
+ .media-sidebar .setting .select-label-inline {
+ display: inline;
+ }
+
+ .media-sidebar .setting .name,
+ .media-sidebar .checkbox-label-inline,
+ .attachment-details .setting .name,
+ .compat-item label span {
+ text-align: inherit;
+ min-height: 16px;
+ margin: 0;
+ padding: 8px 2px 2px;
+ }
+
+ /* Needs high specificity. */
+ .media-sidebar .setting .copy-to-clipboard-container,
+ .attachment-details .attachment-info .copy-to-clipboard-container {
+ margin-left: 0;
+ padding-top: 0;
+ }
+
+ .media-sidebar .setting .copy-attachment-url,
+ .attachment-details .attachment-info .copy-attachment-url {
+ margin: 0 1px;
+ }
+
+ .media-sidebar .setting .value,
+ .attachment-details .setting .value {
+ float: none;
+ width: auto;
+ }
+
+ .media-sidebar .setting input[type="text"],
+ .media-sidebar .setting input[type="password"],
+ .media-sidebar .setting input[type="email"],
+ .media-sidebar .setting input[type="number"],
+ .media-sidebar .setting input[type="search"],
+ .media-sidebar .setting input[type="tel"],
+ .media-sidebar .setting input[type="url"],
+ .media-sidebar .setting textarea,
+ .media-sidebar .setting select,
+ .attachment-details .setting input[type="text"],
+ .attachment-details .setting input[type="password"],
+ .attachment-details .setting input[type="email"],
+ .attachment-details .setting input[type="number"],
+ .attachment-details .setting input[type="search"],
+ .attachment-details .setting input[type="tel"],
+ .attachment-details .setting input[type="url"],
+ .attachment-details .setting textarea,
+ .attachment-details .setting select,
+ .attachment-details .setting + .description {
+ float: none;
+ width: 98%;
+ max-width: none;
+ height: auto;
+ }
+
+ .media-frame .media-toolbar input[type="search"] {
+ line-height: 2.25; /* 36px */
+ }
+
+ .media-sidebar .setting select.columns,
+ .attachment-details .setting select.columns {
+ width: auto;
+ }
+
+ .media-frame input,
+ .media-frame textarea,
+ .media-frame .search {
+ padding: 3px 6px;
+ }
+
+ .wp-admin .media-frame select {
+ min-height: 40px;
+ font-size: 16px;
+ line-height: 1.625;
+ padding: 5px 24px 5px 8px;
+ }
+
+ .image-details .column-image {
+ width: 30%;
+ left: 70%;
+ }
+
+ .image-details .column-settings {
+ width: 70%;
+ }
+
+ .image-details .media-modal {
+ left: 30px;
+ right: 30px;
+ }
+
+ .image-details .embed-media-settings .setting,
+ .image-details .embed-media-settings .setting-group {
+ margin: 20px;
+ }
+
+ .image-details .embed-media-settings .setting span, /* Back-compat for pre-5.3 */
+ .image-details .embed-media-settings .setting .name {
+ float: none;
+ text-align: left;
+ width: 100%;
+ margin-bottom: 4px;
+ margin-left: 0;
+ }
+
+ .media-modal .legend-inline {
+ position: static;
+ transform: none;
+ margin-left: 0;
+ margin-bottom: 6px;
+ }
+
+ .image-details .embed-media-settings .setting-group .setting {
+ margin-bottom: 0;
+ }
+
+ .image-details .embed-media-settings .setting input.link-to-custom,
+ .image-details .embed-media-settings .setting input[type="text"],
+ .image-details .embed-media-settings .setting textarea {
+ width: 100%;
+ margin-left: 0;
+ }
+
+ .image-details .embed-media-settings .setting.has-description {
+ margin-bottom: 5px;
+ }
+
+ .image-details .description {
+ width: auto;
+ margin: 0 20px;
+ }
+
+ .image-details .embed-media-settings .custom-size {
+ margin-left: 20px;
+ }
+
+ .collection-settings .setting input[type="checkbox"] {
+ float: none;
+ margin-top: 0;
+ }
+
+ .media-selection {
+ min-width: 120px;
+ }
+
+ .media-selection:after {
+ background: none;
+ }
+
+ .media-selection .attachments {
+ display: none;
+ }
+
+ .media-modal .attachments-browser .media-toolbar .search {
+ max-width: 100%;
+ height: auto;
+ float: right;
+ }
+
+ .media-modal .attachments-browser .media-toolbar .attachment-filters {
+ height: auto;
+ }
+
+ /* Text inputs need to be 16px, or they force zooming on iOS */
+ .media-frame input[type="text"],
+ .media-frame input[type="password"],
+ .media-frame input[type="number"],
+ .media-frame input[type="search"],
+ .media-frame input[type="email"],
+ .media-frame input[type="url"],
+ .media-frame textarea,
+ .media-frame select {
+ font-size: 16px;
+ }
+
+ .media-frame .media-toolbar input[type="search"] {
+ line-height: 2.3755; /* 38px */
+ }
+
+ .media-modal .media-toolbar .spinner {
+ margin-bottom: 10px;
+ }
+}
+
+@media screen and (max-width: 782px) {
+ .attachments-browser .media-toolbar {
+ height: 82px;
+ }
+
+ .attachments-browser .attachments,
+ .attachments-browser .uploader-inline {
+ top: 82px;
+ }
+
+ .media-frame-toolbar .media-toolbar {
+ bottom: -54px;
+ }
+
+ .mode-grid .attachments-browser .media-toolbar-primary {
+ display: block;
+ }
+
+ .media-sidebar .copy-to-clipboard-container .success,
+ .attachment-details .copy-to-clipboard-container .success {
+ font-size: 14px;
+ line-height: 2.71428571;
+ }
+}
+
+/* Responsive on portrait and landscape */
+@media only screen and (max-width: 640px), screen and (max-height: 400px) {
+ /* Full-bleed modal */
+ .media-modal,
+ .image-details .media-modal {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ }
+
+ .media-modal-backdrop {
+ position: fixed;
+ }
+
+ .media-sidebar {
+ z-index: 1900;
+ max-width: 70%;
+ bottom: 120%;
+ box-sizing: border-box;
+ padding-bottom: 0;
+ }
+
+ .media-sidebar.visible {
+ bottom: 0;
+ }
+
+ .attachments-browser .attachments,
+ .attachments-browser .uploader-inline,
+ .attachments-browser .media-toolbar,
+ .media-frame-content .attachments-browser .attachments-wrapper {
+ right: 0;
+ }
+
+ .attachments-browser .attachments-wrapper {
+ padding-top: 12px;
+ }
+
+ .image-details .media-frame-title {
+ display: block;
+ top: 0;
+ font-size: 14px;
+ }
+
+ .image-details .column-image,
+ .image-details .column-settings {
+ width: 100%;
+ position: relative;
+ left: 0;
+ }
+
+ .image-details .column-settings {
+ padding: 4px 0;
+ }
+
+ /* Media tabs on the top */
+ .media-frame-content .media-toolbar .instructions {
+ display: none;
+ }
+
+ /* Change margin direction on load more button in responsive views. */
+ .load-more-wrapper .load-more-jump {
+ margin: 12px 0 0;
+ }
+
+}
+
+@media only screen and (min-width: 901px) and (max-height: 400px) {
+ .media-menu,
+ .media-frame:not(.hide-menu) .media-menu {
+ top: 0;
+ padding-top: 44px;
+ }
+
+ /* Change margin direction on load more button in responsive views. */
+ .load-more-wrapper .load-more-jump {
+ margin: 12px 0 0;
+ }
+
+}
+
+@media only screen and (max-width: 480px) {
+ .wp-core-ui.wp-customizer .media-button {
+ margin-top: 13px;
+ }
+}
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ .wp-core-ui .media-modal-icon {
+ background-image: url(../images/uploader-icons-2x.png);
+ background-size: 134px 15px;
+ }
+
+ .media-frame .spinner {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+.media-frame-content[data-columns="1"] .attachment {
+ width: 100%;
+}
+
+.media-frame-content[data-columns="2"] .attachment {
+ width: 50%;
+}
+
+.media-frame-content[data-columns="3"] .attachment {
+ width: 33.33%;
+}
+
+.media-frame-content[data-columns="4"] .attachment {
+ width: 25%;
+}
+
+.media-frame-content[data-columns="5"] .attachment {
+ width: 20%;
+}
+
+.media-frame-content[data-columns="6"] .attachment {
+ width: 16.66%;
+}
+
+.media-frame-content[data-columns="7"] .attachment {
+ width: 14.28%;
+}
+
+.media-frame-content[data-columns="8"] .attachment {
+ width: 12.5%;
+}
+
+.media-frame-content[data-columns="9"] .attachment {
+ width: 11.11%;
+}
+
+.media-frame-content[data-columns="10"] .attachment {
+ width: 10%;
+}
+
+.media-frame-content[data-columns="11"] .attachment {
+ width: 9.09%;
+}
+
+.media-frame-content[data-columns="12"] .attachment {
+ width: 8.33%;
+}
diff --git a/static/wp-includes/css/media-views.min.css b/static/wp-includes/css/media-views.min.css
new file mode 100755
index 0000000..3449421
--- /dev/null
+++ b/static/wp-includes/css/media-views.min.css
@@ -0,0 +1,9 @@
+/*! This file is auto-generated */
+.media-modal *{box-sizing:content-box}.media-modal input,.media-modal select,.media-modal textarea{box-sizing:border-box}.media-frame,.media-modal{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;-webkit-overflow-scrolling:touch}.media-modal legend{padding:0;font-size:13px}.media-modal label{font-size:13px}.media-modal .legend-inline{position:absolute;transform:translate(-100%,50%);margin-left:-1%;line-height:1.2}.media-frame a{border-bottom:none;color:#2271b1}.media-frame a:active,.media-frame a:hover{color:#135e96}.media-frame a:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);color:#043959;outline:1px solid transparent}.media-frame a.button{color:#2c3338}.media-frame a.button:hover{color:#1d2327}.media-frame a.button-primary,.media-frame a.button-primary:hover{color:#fff}.media-frame input,.media-frame textarea{padding:6px 8px}.media-frame select,.wp-admin .media-frame select{min-height:30px;vertical-align:middle}.media-frame input[type=color],.media-frame input[type=date],.media-frame input[type=datetime-local],.media-frame input[type=datetime],.media-frame input[type=email],.media-frame input[type=month],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=tel],.media-frame input[type=text],.media-frame input[type=time],.media-frame input[type=url],.media-frame input[type=week],.media-frame select,.media-frame textarea{box-shadow:0 0 0 transparent;border-radius:4px;border:1px solid #8c8f94;background-color:#fff;color:#2c3338;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.media-frame input[type=date],.media-frame input[type=datetime-local],.media-frame input[type=datetime],.media-frame input[type=email],.media-frame input[type=month],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=tel],.media-frame input[type=text],.media-frame input[type=time],.media-frame input[type=url],.media-frame input[type=week]{padding:0 8px;line-height:2.15384615}.media-frame.mode-grid .wp-filter input[type=search]{font-size:14px;line-height:2}.media-frame input[type=email]:focus,.media-frame input[type=number]:focus,.media-frame input[type=password]:focus,.media-frame input[type=search]:focus,.media-frame input[type=text]:focus,.media-frame input[type=url]:focus,.media-frame select:focus,.media-frame textarea:focus{border-color:#3582c4;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.media-frame input:disabled,.media-frame input[readonly],.media-frame textarea:disabled,.media-frame textarea[readonly]{background-color:#f0f0f1}.media-frame input[type=search]{-webkit-appearance:textfield}.media-frame ::-webkit-input-placeholder{color:#646970}.media-frame ::-moz-placeholder{color:#646970;opacity:1}.media-frame :-ms-input-placeholder{color:#646970}.media-frame .hidden,.media-frame .setting.hidden{display:none}/*!
+ * jQuery UI Draggable/Sortable 1.11.4
+ * http://jqueryui.com
+ *
+ * Copyright jQuery Foundation and other contributors
+ * Released under the MIT license.
+ * http://jquery.org/license
+ */.ui-draggable-handle,.ui-sortable-handle{touch-action:none}.media-modal{position:fixed;top:30px;left:30px;right:30px;bottom:30px;z-index:160000}.wp-customizer .media-modal{z-index:560000}.media-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:159900}.wp-customizer .media-modal-backdrop{z-index:559900}.media-modal-close{position:absolute;top:0;right:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#646970;z-index:1000;cursor:pointer;outline:0;transition:color .1s ease-in-out,background .1s ease-in-out}.media-modal-close:active,.media-modal-close:hover{color:#135e96}.media-modal-close:focus{color:#135e96;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent}.media-modal-close span.media-modal-icon{background-image:none}.media-modal-close .media-modal-icon:before{content:"\f158";font:normal 20px/1 dashicons;speak:never;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.media-modal-content{position:absolute;top:0;left:0;right:0;bottom:0;overflow:auto;min-height:300px;box-shadow:0 5px 15px rgba(0,0,0,.7);background:#fff;-webkit-font-smoothing:subpixel-antialiased}.media-modal-content .media-frame select.attachment-filters{margin-top:32px;margin-right:2%;width:42%;width:calc(48% - 12px)}.media-modal-content .attachments-browser .search{width:100%}.wp-core-ui .media-modal-icon{background-image:url(../images/uploader-icons.png);background-repeat:no-repeat}.media-toolbar{position:absolute;top:0;left:0;right:0;z-index:100;height:60px;padding:0 16px;border:0 solid #dcdcde;overflow:hidden}.media-frame-toolbar .media-toolbar{top:auto;bottom:-47px;height:auto;overflow:visible;border-top:1px solid #dcdcde}.media-toolbar-primary{float:right;height:100%;position:relative}.media-toolbar-secondary{float:left;height:100%}.media-toolbar-primary>.media-button,.media-toolbar-primary>.media-button-group{margin-left:10px;float:left;margin-top:15px}.media-toolbar-secondary>.media-button,.media-toolbar-secondary>.media-button-group{margin-right:10px;margin-top:15px}.media-sidebar{position:absolute;top:0;right:0;bottom:0;width:267px;padding:0 16px;z-index:75;background:#f6f7f7;border-left:1px solid #dcdcde;overflow:auto;-webkit-overflow-scrolling:touch}.media-sidebar::after{content:"";display:flex;clear:both;height:24px}.hide-toolbar .media-sidebar{bottom:0}.image-details h2:not(.media-attachments-filter-heading),.media-sidebar h2{position:relative;font-weight:600;text-transform:uppercase;font-size:12px;color:#646970;margin:24px 0 8px}.attachment-details .setting,.media-sidebar .setting{display:block;float:left;width:100%;margin:0 0 10px}.media-sidebar .collection-settings .setting{margin:1px 0}.attachment-details .setting.has-description,.media-sidebar .setting.has-description{margin-bottom:5px}.media-sidebar .setting .link-to-custom{margin:3px 2px 0}.attachment-details .setting .name,.attachment-details .setting span,.media-sidebar .setting .name,.media-sidebar .setting .value,.media-sidebar .setting span{min-width:30%;margin-right:4%;font-size:12px;text-align:right;word-wrap:break-word}.media-sidebar .setting .name{max-width:80px}.media-sidebar .setting .value{text-align:left}.media-sidebar .setting select{max-width:65%}.attachment-details .field input[type=checkbox],.attachment-details .field input[type=radio],.attachment-details .setting input[type=checkbox],.attachment-details .setting input[type=radio],.media-sidebar .field input[type=checkbox],.media-sidebar .field input[type=radio],.media-sidebar .setting input[type=checkbox],.media-sidebar .setting input[type=radio]{float:none;margin:8px 3px 0;padding:0}.attachment-details .setting .name,.attachment-details .setting .value,.attachment-details .setting span,.compat-item label span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting .name,.media-sidebar .setting .value,.media-sidebar .setting span{float:left;min-height:22px;padding-top:8px;line-height:1.33333333;font-weight:400;color:#646970}.media-sidebar .checkbox-label-inline{font-size:12px}.attachment-details .copy-to-clipboard-container,.media-sidebar .copy-to-clipboard-container{flex-wrap:wrap;margin-top:10px;margin-left:calc(35% - 1px);padding-top:10px}.attachment-details .attachment-info .copy-to-clipboard-container{float:none}.attachment-details .copy-to-clipboard-container .success,.media-sidebar .copy-to-clipboard-container .success{padding:0;min-height:0;line-height:2.18181818;text-align:left;color:#008a20}.compat-item label span{text-align:right}.attachment-details .setting .value,.attachment-details .setting input[type=email],.attachment-details .setting input[type=number],.attachment-details .setting input[type=password],.attachment-details .setting input[type=search],.attachment-details .setting input[type=tel],.attachment-details .setting input[type=text],.attachment-details .setting input[type=url],.attachment-details .setting textarea,.attachment-details .setting+.description,.media-sidebar .setting .value,.media-sidebar .setting input[type=email],.media-sidebar .setting input[type=number],.media-sidebar .setting input[type=password],.media-sidebar .setting input[type=search],.media-sidebar .setting input[type=tel],.media-sidebar .setting input[type=text],.media-sidebar .setting input[type=url],.media-sidebar .setting textarea{box-sizing:border-box;margin:1px;width:65%;float:right}.attachment-details .setting .value,.attachment-details .setting+.description,.media-sidebar .setting .value{margin:0 1px;text-align:left}.attachment-details .setting+.description{clear:both;font-size:12px;font-style:normal;margin-bottom:10px}.attachment-details .setting textarea,.compat-item .field textarea,.media-sidebar .setting textarea{height:62px;resize:vertical}.compat-item{float:left;width:100%;overflow:hidden}.compat-item table{width:100%;table-layout:fixed;border-spacing:0;border:0}.compat-item tr{padding:2px 0;display:block;overflow:hidden}.compat-item .field,.compat-item .label{display:block;margin:0;padding:0}.compat-item .label{min-width:30%;margin-right:4%;float:left;text-align:right}.compat-item .label span{display:block;width:100%}.compat-item .field{float:right;width:65%;margin:1px}.compat-item .field input[type=email],.compat-item .field input[type=number],.compat-item .field input[type=password],.compat-item .field input[type=search],.compat-item .field input[type=tel],.compat-item .field input[type=text],.compat-item .field input[type=url],.compat-item .field textarea{width:100%;margin:0;box-sizing:border-box}.sidebar-for-errors .attachment-details,.sidebar-for-errors .compat-item,.sidebar-for-errors .media-sidebar .media-progress-bar,.sidebar-for-errors .upload-details{display:none!important}.media-menu{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:50px 0 10px;background:#f6f7f7;border-right-width:1px;border-right-style:solid;border-right-color:#c3c4c7;-webkit-user-select:none;user-select:none}.media-menu .media-menu-item{display:block;box-sizing:border-box;width:100%;position:relative;border:0;margin:0;padding:8px 20px;font-size:14px;line-height:1.28571428;background:0 0;color:#2271b1;text-align:left;text-decoration:none;cursor:pointer}.media-menu .media-menu-item:hover{background:rgba(0,0,0,.04)}.media-menu .media-menu-item:active{color:#2271b1;outline:0}.media-menu .active,.media-menu .active:hover{color:#1d2327;font-weight:600}.media-menu .media-menu-item:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);color:#043959;outline:1px solid transparent}.media-menu .separator{height:0;margin:12px 20px;padding:0;border-top:1px solid #dcdcde}.media-router{position:relative;padding:0 6px;margin:0;clear:both}.media-router .media-menu-item{position:relative;float:left;border:0;margin:0;padding:8px 10px 9px;height:18px;line-height:1.28571428;font-size:14px;text-decoration:none;background:0 0;cursor:pointer;transition:none}.media-router .media-menu-item:last-child{border-right:0}.media-router .media-menu-item:active,.media-router .media-menu-item:hover{color:#2271b1}.media-router .active,.media-router .active:hover{color:#1d2327}.media-router .media-menu-item:focus{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);color:#043959;outline:1px solid transparent}.media-router .active,.media-router .media-menu-item.active:last-child{margin:-1px -1px 0;background:#fff;border:1px solid #dcdcde;border-bottom:none}.media-router .active:after{display:none}.media-frame{overflow:hidden;position:absolute;top:0;left:0;right:0;bottom:0}.media-frame-menu{position:absolute;top:0;left:0;bottom:0;width:200px;z-index:150}.media-frame-title{position:absolute;top:0;left:200px;right:0;height:50px;z-index:200}.media-frame-router{position:absolute;top:50px;left:200px;right:0;height:36px;z-index:200}.media-frame-content{position:absolute;top:84px;left:200px;right:0;bottom:61px;height:auto;width:auto;margin:0;overflow:auto;background:#fff;border-top:1px solid #dcdcde}.media-frame-toolbar{position:absolute;left:200px;right:0;z-index:100;bottom:60px;height:auto}.media-frame.hide-menu .media-frame-content,.media-frame.hide-menu .media-frame-router,.media-frame.hide-menu .media-frame-title,.media-frame.hide-menu .media-frame-toolbar{left:0}.media-frame.hide-toolbar .media-frame-content{bottom:0}.media-frame.hide-router .media-frame-content{top:50px}.media-frame.hide-menu .media-frame-menu,.media-frame.hide-menu .media-frame-menu-heading,.media-frame.hide-router .media-frame-router,.media-frame.hide-toolbar .media-frame-toolbar{display:none}.media-frame-title h1{padding:0 16px;font-size:22px;line-height:2.27272727;margin:0}.media-attachments-filter-heading,.media-frame-menu-heading{position:absolute;left:20px;top:22px;margin:0;font-size:13px;line-height:1;z-index:151}.media-attachments-filter-heading{top:10px;left:16px}.mode-grid .media-attachments-filter-heading{top:0;left:-9999px}.mode-grid .media-frame-actions-heading{display:none}.wp-core-ui .button.media-frame-menu-toggle{display:none}.media-frame-title .suggested-dimensions{font-size:14px;float:right;margin-right:20px}.media-frame-content .crop-content{height:100%}.wp-customizer:not(.mobile) .media-frame-content .crop-content.site-icon{margin-right:300px}.media-frame-content .crop-content .crop-image{display:block;margin:auto;max-width:100%;max-height:100%}.media-frame-content .crop-content .upload-errors{position:absolute;width:300px;top:50%;left:50%;margin-left:-150px;margin-right:-150px;z-index:600000}.media-frame .media-iframe{overflow:hidden}.media-frame .media-iframe,.media-frame .media-iframe iframe{height:100%;width:100%;border:0}.media-frame select.attachment-filters{margin-top:11px;margin-right:2%;max-width:42%;max-width:calc(48% - 12px)}.media-frame select.attachment-filters:last-of-type{margin-right:0;width:auto;max-width:100%}.media-frame .search{margin:32px 0 0;padding:4px;font-size:13px;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;-webkit-appearance:none}.media-toolbar-primary .search{max-width:100%}.media-frame .media-search-input-label{position:absolute;left:0;top:10px;margin:0;line-height:1}.wp-core-ui .attachments{margin:0;-webkit-overflow-scrolling:touch}.wp-core-ui .attachment{position:relative;float:left;padding:8px;margin:0;color:#3c434a;cursor:pointer;list-style:none;text-align:center;-webkit-user-select:none;user-select:none;width:25%;box-sizing:border-box}.wp-core-ui .attachment.details:focus,.wp-core-ui .attachment:focus,.wp-core-ui .selected.attachment:focus{box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #4f94d4;outline:2px solid transparent;outline-offset:-6px}.wp-core-ui .selected.attachment{box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #c3c4c7}.wp-core-ui .attachment.details{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #2271b1}.wp-core-ui .attachment-preview{position:relative;box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);background:#f0f0f1;cursor:pointer}.wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}.wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}.wp-core-ui .attachment .thumbnail{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;opacity:1;transition:opacity .1s}.wp-core-ui .attachment .portrait img{max-width:100%}.wp-core-ui .attachment .landscape img{max-height:100%}.wp-core-ui .attachment .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.wp-core-ui .attachment .thumbnail img{top:0;left:0}.wp-core-ui .attachment .thumbnail .centered{position:absolute;top:0;left:0;width:100%;height:100%;transform:translate(50%,50%)}.wp-core-ui .attachment .thumbnail .centered img{transform:translate(-50%,-50%)}.wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{transform:translate(-50%,-70%)}.wp-core-ui .attachment .filename{position:absolute;left:0;right:0;bottom:0;overflow:hidden;max-height:100%;word-wrap:break-word;text-align:center;font-weight:600;background:rgba(255,255,255,.8);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15)}.wp-core-ui .attachment .filename div{padding:5px 10px}.wp-core-ui .attachment .thumbnail img{position:absolute}.wp-core-ui .attachment-close{display:block;position:absolute;top:5px;right:5px;height:22px;width:22px;padding:0;background-color:#fff;background-position:-96px 4px;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.3);transition:none}.wp-core-ui .attachment-close:focus,.wp-core-ui .attachment-close:hover{background-position:-36px 4px}.wp-core-ui .attachment .check{display:none;height:24px;width:24px;padding:0;border:0;position:absolute;z-index:10;top:0;right:0;outline:0;background:#f0f0f1;cursor:pointer;box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15)}.wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}.wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}.wp-core-ui .attachment.selected .check{display:block}.wp-core-ui .attachment.details .check,.wp-core-ui .attachment.selected .check:focus,.wp-core-ui .media-frame.mode-grid .attachment.selected .check{background-color:#2271b1;box-shadow:0 0 0 1px #fff,0 0 0 2px #2271b1}.wp-core-ui .attachment.selected .check:focus{outline:2px solid transparent}.wp-core-ui .attachment.details .check .media-modal-icon,.wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon{background-position:-21px 0}.wp-core-ui .attachment.details .check:hover .media-modal-icon,.wp-core-ui .attachment.selected .check:focus .media-modal-icon,.wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon{background-position:-60px 0}.wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:0 8px;font-size:12px;border-radius:0}.media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}.attachments-browser .media-toolbar{right:300px;height:72px;background:#fff}.attachments-browser.hide-sidebar .media-toolbar{right:0}.attachments-browser .media-toolbar-primary>.media-button,.attachments-browser .media-toolbar-primary>.media-button-group,.attachments-browser .media-toolbar-secondary>.media-button,.attachments-browser .media-toolbar-secondary>.media-button-group{margin:10px 0}.attachments-browser .attachments{padding:2px 8px 8px}.attachments-browser .uploader-inline,.attachments-browser.has-load-more .attachments-wrapper,.attachments-browser:not(.has-load-more) .attachments{position:absolute;top:72px;left:0;right:300px;bottom:0;overflow:auto;outline:0}.attachments-browser .uploader-inline.hidden{display:none}.attachments-browser .media-toolbar-primary{max-width:33%}.mode-grid .attachments-browser .media-toolbar-primary{display:flex;align-items:center}.mode-grid .attachments-browser .media-toolbar-mode-select .media-toolbar-primary{display:none}.attachments-browser .media-toolbar-secondary{max-width:66%}.uploader-inline .close{background-color:transparent;border:0;cursor:pointer;height:48px;outline:0;padding:0;position:absolute;right:2px;text-align:center;top:2px;width:48px;z-index:1}.uploader-inline .close:before{font:normal 30px/1 dashicons!important;color:#50575e;display:inline-block;content:"\f335";font-weight:300;margin-top:1px}.uploader-inline .close:focus{outline:1px solid #4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.attachments-browser.hide-sidebar .attachments,.attachments-browser.hide-sidebar .uploader-inline{right:0;margin-right:0}.attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:1.38461538;font-size:13px;color:#646970}.attachments-browser .no-media{padding:2em 0 0 2em}.more-loaded .attachment:not(.found-media){background:#dcdcde}.load-more-wrapper{clear:both;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;padding:1em 0}.load-more-wrapper .load-more-count{min-width:100%;margin:0 0 1em;text-align:center}.load-more-wrapper .load-more{margin:0}.media-frame .load-more-wrapper .load-more+.spinner{float:none;margin:0 -30px 0 10px}.media-frame .load-more-wrapper .load-more.hidden+.spinner{margin:0}.load-more-wrapper::after{content:"";min-width:100%;order:1}.load-more-wrapper .load-more-jump{margin:0 0 0 12px}.attachment.new-media{outline:2px dotted #c3c4c7}.load-more-wrapper{clear:both;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;padding:1em 0}.load-more-wrapper .load-more-count{min-width:100%;margin:0 0 1em;text-align:center}.load-more-wrapper .load-more{margin:0}.media-frame .load-more-wrapper .load-more+.spinner{float:none;margin:0 -30px 0 10px}.media-frame .load-more-wrapper .load-more.hidden+.spinner{margin:0}.load-more-wrapper::after{content:"";min-width:100%;order:1}.load-more-wrapper .load-more-jump{margin:0 0 0 12px}.media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#dcdcde;background:rgba(0,0,0,.1)}.media-progress-bar div{height:10px;min-width:20px;width:0;background:#2271b1;border-radius:10px;transition:width .3s}.media-uploader-status .media-progress-bar{display:none;width:100%}.uploading.media-uploader-status .media-progress-bar{display:block}.attachment-preview .media-progress-bar{position:absolute;top:50%;left:15%;width:70%;margin:-5px 0 0}.media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}.uploader-inline .media-uploader-status h2{display:none}.media-uploader-status .upload-details{display:none;font-size:12px;color:#646970}.uploading.media-uploader-status .upload-details{display:block}.media-uploader-status .upload-detail-separator{padding:0 4px}.media-uploader-status .upload-count{color:#3c434a}.media-uploader-status .upload-dismiss-errors,.media-uploader-status .upload-errors{display:none}.errors.media-uploader-status .upload-dismiss-errors,.errors.media-uploader-status .upload-errors{display:block}.media-uploader-status .upload-dismiss-errors{transition:none;text-decoration:none}.upload-errors .upload-error{padding:12px;margin-bottom:12px;background:#fff;border-left:4px solid #d63638;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.uploader-inline .upload-errors .upload-error{padding:12px 30px;background-color:#fcf0f1;box-shadow:none}.upload-errors .upload-error-filename{font-weight:600}.upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}.uploader-window,.wp-editor-wrap .uploader-editor{top:0;left:0;right:0;bottom:0;text-align:center;display:none}.uploader-window{position:fixed;z-index:250000;opacity:0;transition:opacity 250ms}.wp-editor-wrap .uploader-editor{position:absolute;z-index:99998;background:rgba(140,143,148,.9)}.uploader-window,.wp-editor-wrap .uploader-editor.droppable{background:rgba(10,75,120,.9)}.uploader-window-content,.wp-editor-wrap .uploader-editor-content{position:absolute;top:10px;left:10px;right:10px;bottom:10px;border:1px dashed #fff}.uploader-window .uploader-editor-title,.uploader-window h1,.wp-editor-wrap .uploader-editor .uploader-editor-title{position:absolute;top:50%;left:0;right:0;transform:translateY(-50%);font-size:3em;line-height:1.3;font-weight:600;color:#fff;margin:0;padding:0 10px}.wp-editor-wrap .uploader-editor .uploader-editor-title{display:none}.wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}.uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}.uploader-window .media-progress-bar div{background:#fff}.uploading .uploader-window .media-progress-bar{display:block}.media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}.uploader-inline-content{position:absolute;top:30%;left:0;right:0}.uploader-inline-content .upload-ui{margin:2em 0}.uploader-inline-content .post-upload-ui{margin-bottom:2em}.uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}.uploader-inline h2{font-size:20px;line-height:1.4;font-weight:400;margin:0}.uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#3c434a;font-weight:400}.uploader-inline .drop-instructions{display:none}.supports-drag-drop .uploader-inline .drop-instructions{display:block}.uploader-inline p{margin:.5em 0}.uploader-inline .media-progress-bar{display:none}.uploading.uploader-inline .media-progress-bar{display:block}.uploader-inline .browser{display:inline-block!important}.media-selection{position:absolute;top:0;left:0;right:350px;height:60px;padding:0 0 0 16px;overflow:hidden;white-space:nowrap}.media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-right:10px;vertical-align:top}.media-selection.editing,.media-selection.empty{display:none}.media-selection.one .edit-selection{display:none}.media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:1.42857142;font-weight:600}.media-selection .button-link{float:left;padding:1px 8px;margin:1px 8px 1px -8px;line-height:1.4;border-right:1px solid #dcdcde;color:#2271b1;text-decoration:none}.media-selection .button-link:focus,.media-selection .button-link:hover{color:#135e96}.media-selection .button-link:last-child{border-right:0;margin-right:0}.selection-info .clear-selection{color:#d63638}.selection-info .clear-selection:focus,.selection-info .clear-selection:hover{color:#d63638}.media-selection .selection-view{display:inline-block;vertical-align:top}.media-selection .attachments{display:inline-block;height:48px;margin:6px;padding:0;overflow:hidden;vertical-align:top}.media-selection .attachment{width:40px;padding:0;margin:4px}.media-selection .attachment .thumbnail{top:0;right:0;bottom:0;left:0}.media-selection .attachment .icon{width:50%}.media-selection .attachment-preview{box-shadow:none;background:0 0}.wp-core-ui .media-selection .attachment.details:focus,.wp-core-ui .media-selection .attachment:focus,.wp-core-ui .media-selection .selected.attachment:focus{box-shadow:0 0 0 1px #fff,0 0 2px 3px #4f94d4;outline:2px solid transparent}.wp-core-ui .media-selection .selected.attachment{box-shadow:none}.wp-core-ui .media-selection .attachment.details{box-shadow:0 0 0 1px #fff,0 0 0 3px #2271b1}.media-selection:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;width:25px;background-image:linear-gradient(to left,#fff,rgba(255,255,255,0))}.media-selection .attachment .filename{display:none}.media-frame .spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;float:right;display:inline-block;visibility:hidden;opacity:.7;width:20px;height:20px;margin:0;vertical-align:middle}.media-frame.mode-grid .spinner{margin:0;float:none;vertical-align:middle}.media-modal .media-toolbar .spinner{float:none;vertical-align:bottom;margin:0 0 5px 5px}.media-frame .instructions+.spinner.is-active{vertical-align:middle}.media-frame .spinner.is-active{visibility:visible}.attachment-details{position:relative;overflow:auto}.attachment-details .settings-save-status{float:right;text-transform:none;font-weight:400}.attachment-details .settings-save-status .spinner{float:none;margin-left:5px}.attachment-details .settings-save-status .saved{display:none}.attachment-details.save-waiting .settings-save-status .spinner{visibility:visible}.attachment-details.save-complete .settings-save-status .saved{display:inline-block}.attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:1.5;color:#646970;border-bottom:1px solid #dcdcde;padding-bottom:11px}.attachment-info .wp-media-wrapper{margin-bottom:8px}.attachment-info .wp-media-wrapper.wp-audio{margin-top:13px}.attachment-info .filename{font-weight:600;color:#3c434a;word-wrap:break-word}.attachment-info .thumbnail{position:relative;float:left;max-width:120px;max-height:120px;margin-top:5px;margin-right:10px;margin-bottom:5px}.uploading .attachment-info .thumbnail{width:120px;height:80px;box-shadow:inset 0 0 15px rgba(0,0,0,.1)}.uploading .attachment-info .media-progress-bar{margin-top:35px}.attachment-info .thumbnail-image:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);overflow:hidden}.attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}.attachment-info .details{float:left;font-size:12px;max-width:100%}.attachment-info .delete-attachment,.attachment-info .edit-attachment,.attachment-info .trash-attachment,.attachment-info .untrash-attachment{display:block;text-decoration:none;white-space:nowrap}.attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}.attachment-info .edit-attachment{display:block}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment{display:inline;padding:0;color:#d63638}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover{color:#d63638}.attachment-display-settings{width:100%;float:left;overflow:hidden}.collection-settings{overflow:hidden}.collection-settings .setting input[type=checkbox]{float:left;margin-right:8px}.collection-settings .setting .name,.collection-settings .setting span{min-width:inherit}.media-modal .imgedit-wrap{position:static}.media-modal .imgedit-wrap .imgedit-panel-content{padding:16px 16px 0;position:absolute;top:0;right:282px;bottom:0;left:0;overflow:auto}.media-modal .imgedit-wrap .imgedit-submit{margin-bottom:16px}.media-modal .imgedit-wrap .imgedit-settings{background:#f6f7f7;border-left:1px solid #dcdcde;padding:20px 16px 0;position:absolute;top:0;right:0;bottom:0;width:250px;overflow:auto}.media-modal .imgedit-wrap .imgedit-save-target{margin:8px 0 24px}.media-modal .imgedit-group{background:0 0;border:none;border-bottom:1px solid #dcdcde;box-shadow:none;margin:0;margin-bottom:16px;padding:0;padding-bottom:16px;position:relative}.media-modal .imgedit-group:last-of-type{border:none;margin:0;padding:0}.media-modal .imgedit-group-top{margin:0}.media-modal .imgedit-group-top h2,.media-modal .imgedit-group-top h2 .button-link{display:inline-block;text-transform:uppercase;font-size:12px;color:#646970;margin:0;margin-top:3px}.media-modal .imgedit-group-top h2 .button-link,.media-modal .imgedit-group-top h2 a{text-decoration:none;color:#646970}.wp-core-ui.media-modal .image-editor .imgedit-help-toggle,.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active,.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover{border:1px solid transparent;margin:0;padding:0;background:0 0;color:#2271b1;font-size:20px;line-height:1;cursor:pointer;box-sizing:content-box;box-shadow:none}.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus{color:#2271b1;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent}.wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}.wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}.media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142"}.media-modal .imgedit-thumbnail-preview{margin:10px 8px 0 0}.imgedit-thumbnail-preview-caption{display:block}.media-modal .imgedit-wrap .notice,.media-modal .imgedit-wrap div.updated{margin:0;margin-bottom:16px}.embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}.media-frame .embed-url input{font-size:18px;line-height:1.22222222;padding:12px 40px 12px 14px;width:100%;min-width:200px;box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1)}.media-frame .embed-url input::-ms-clear{display:none}.media-frame .embed-url .spinner{position:absolute;top:32px;right:26px}.media-frame .embed-loading .embed-url .spinner{visibility:visible}.embed-link-settings,.embed-media-settings{position:absolute;top:82px;left:0;right:0;bottom:0;padding:0 16px;overflow:auto}.media-embed .embed-link-settings .link-text{margin-top:0}.embed-link-settings::after,.embed-media-settings::after{content:"";display:flex;clear:both;height:24px}.media-embed .embed-link-settings{overflow:visible}.embed-preview embed,.embed-preview iframe,.embed-preview img,.mejs-container video{max-width:100%;vertical-align:middle}.embed-preview a{display:inline-block}.embed-preview img{display:block;height:auto}.mejs-container:focus{outline:1px solid #4f94d4;box-shadow:0 0 2px 1px rgba(79,148,212,.8)}.image-details .media-modal{left:140px;right:140px}.image-details .media-frame-content,.image-details .media-frame-router,.image-details .media-frame-title{left:0}.image-details .embed-media-settings{top:0;overflow:visible;padding:0}.image-details .embed-media-settings::after{content:none}.image-details .embed-media-settings,.image-details .embed-media-settings div{box-sizing:border-box}.image-details .column-settings{background:#f6f7f7;border-right:1px solid #dcdcde;min-height:100%;width:55%;position:absolute;top:0;left:0}.image-details .column-settings h2{margin:20px;padding-top:20px;border-top:1px solid #dcdcde;color:#1d2327}.image-details .column-image{width:45%;position:absolute;left:55%;top:0}.image-details .image{margin:20px}.image-details .image img{max-width:100%;max-height:500px}.image-details .advanced-toggle{padding:0;color:#646970;text-transform:uppercase;text-decoration:none}.image-details .advanced-toggle:active,.image-details .advanced-toggle:hover{color:#646970}.image-details .advanced-toggle:after{font:normal 20px/1 dashicons;speak:never;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f140";display:inline-block;margin-top:-2px}.image-details .advanced-visible .advanced-toggle:after{content:"\f142"}.image-details .custom-size .custom-size-setting,.image-details .custom-size label{display:block;float:left}.image-details .custom-size .custom-size-setting label{float:none}.image-details .custom-size input{width:5em}.image-details .custom-size .sep{float:left;margin:26px 6px 0}.image-details .custom-size .description{margin-left:0}.media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:left}.media-embed .thumbnail img{max-height:200px;display:block}.media-embed .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.media-embed .setting,.media-embed .setting-group{width:100%;margin:10px 0;float:left;display:block;clear:both}.media-embed .setting-group .setting:not(.checkbox-setting){margin:0}.media-embed .setting.has-description{margin-bottom:5px}.media-embed .description{clear:both;font-style:normal}.media-embed .content-track+.description{line-height:1.4;max-width:none!important}.media-embed .remove-track{margin-bottom:10px}.image-details .embed-media-settings .setting,.image-details .embed-media-settings .setting-group{float:none;width:auto}.image-details .actions{margin:10px 0}.image-details .hidden{display:none}.media-embed .setting input[type=text],.media-embed .setting textarea,.media-embed fieldset{display:block;width:100%;max-width:400px}.image-details .embed-media-settings .setting input[type=text],.image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}.image-details .description,.image-details .embed-media-settings .custom-size,.image-details .embed-media-settings .link-target,.image-details .embed-media-settings .setting input.link-to-custom,.image-details .embed-media-settings .setting-group{margin-left:27%;width:70%}.image-details .description{font-style:normal;margin-top:0}.image-details .embed-media-settings .link-target{margin-top:16px}.audio-details .checkbox-label,.image-details .checkbox-label,.video-details .checkbox-label{vertical-align:baseline}.media-embed .setting input.hidden,.media-embed .setting textarea.hidden{display:none}.media-embed .setting .name,.media-embed .setting span,.media-embed .setting-group .name{display:inline-block;font-size:13px;line-height:1.84615384;color:#646970}.media-embed .setting span{display:block;width:200px}.image-details .embed-media-settings .setting .name,.image-details .embed-media-settings .setting span{float:left;width:25%;text-align:right;margin:8px 1% 0;line-height:1.1}.image-details .embed-media-settings .setting .button-group,.media-frame .setting-group .button-group{width:auto}.media-embed-sidebar{position:absolute;top:0;left:440px}.advanced-section,.link-settings{margin-top:10px}.media-frame .setting .button-group{display:flex;margin:0!important;max-width:none!important}.rtl .media-frame,.rtl .media-frame .search,.rtl .media-frame input[type=email],.rtl .media-frame input[type=number],.rtl .media-frame input[type=password],.rtl .media-frame input[type=search],.rtl .media-frame input[type=tel],.rtl .media-frame input[type=text],.rtl .media-frame input[type=url],.rtl .media-frame select,.rtl .media-frame textarea,.rtl .media-modal{font-family:Tahoma,sans-serif}:lang(he-il) .rtl .media-frame,:lang(he-il) .rtl .media-frame .search,:lang(he-il) .rtl .media-frame input[type=email],:lang(he-il) .rtl .media-frame input[type=number],:lang(he-il) .rtl .media-frame input[type=password],:lang(he-il) .rtl .media-frame input[type=search],:lang(he-il) .rtl .media-frame input[type=text],:lang(he-il) .rtl .media-frame input[type=url],:lang(he-il) .rtl .media-frame select,:lang(he-il) .rtl .media-frame textarea,:lang(he-il) .rtl .media-modal{font-family:Arial,sans-serif}@media only screen and (max-width:900px){.media-modal .media-frame-title{height:40px}.media-modal .media-frame-title h1{line-height:2.22222222;font-size:18px}.media-modal-close{width:42px;height:42px}.media-frame .media-frame-title{position:static;padding:0 44px;text-align:center}.media-frame:not(.hide-menu) .media-frame-content,.media-frame:not(.hide-menu) .media-frame-router,.media-frame:not(.hide-menu) .media-frame-toolbar{left:0}.media-frame:not(.hide-menu) .media-frame-router{top:80px}.media-frame:not(.hide-menu) .media-frame-content{top:114px}.media-frame.hide-router .media-frame-content{top:80px}.media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}.media-frame:not(.hide-menu) .media-menu{display:none;width:auto;max-width:80%;overflow:auto;z-index:2000;top:75px;left:50%;transform:translateX(-50%);right:auto;bottom:auto;padding:5px 0;border:1px solid #c3c4c7}.media-frame:not(.hide-menu) .media-menu.visible{display:block}.media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}.media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}.media-frame-menu-heading{clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;padding:0;width:1px;word-wrap:normal!important}.wp-core-ui .media-frame:not(.hide-menu) .button.media-frame-menu-toggle{display:inline-flex;align-items:center;position:absolute;left:50%;transform:translateX(-50%);margin:-6px 0 0;padding:0 2px 0 12px;font-size:.875rem;font-weight:600;text-decoration:none;background:0 0;height:.1%;min-height:40px}.wp-core-ui .button.media-frame-menu-toggle:active,.wp-core-ui .button.media-frame-menu-toggle:hover{background:0 0;transform:none}.wp-core-ui .button.media-frame-menu-toggle:focus{outline:1px solid transparent}.media-sidebar{width:230px}.attachments-browser .attachments,.attachments-browser .attachments-wrapper,.attachments-browser .media-toolbar,.attachments-browser .uploader-inline,.attachments-browser.has-load-more .attachments-wrapper{right:262px}.attachment-details .setting,.media-sidebar .setting{margin:6px 0}.attachment-details .setting .name,.attachment-details .setting input,.attachment-details .setting textarea,.compat-item label span,.media-sidebar .setting .name,.media-sidebar .setting input,.media-sidebar .setting textarea{float:none;display:inline-block}.attachment-details .setting span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting span{float:none}.media-sidebar .setting .select-label-inline{display:inline}.attachment-details .setting .name,.compat-item label span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting .name{text-align:inherit;min-height:16px;margin:0;padding:8px 2px 2px}.attachment-details .attachment-info .copy-to-clipboard-container,.media-sidebar .setting .copy-to-clipboard-container{margin-left:0;padding-top:0}.attachment-details .attachment-info .copy-attachment-url,.media-sidebar .setting .copy-attachment-url{margin:0 1px}.attachment-details .setting .value,.media-sidebar .setting .value{float:none;width:auto}.attachment-details .setting input[type=email],.attachment-details .setting input[type=number],.attachment-details .setting input[type=password],.attachment-details .setting input[type=search],.attachment-details .setting input[type=tel],.attachment-details .setting input[type=text],.attachment-details .setting input[type=url],.attachment-details .setting select,.attachment-details .setting textarea,.attachment-details .setting+.description,.media-sidebar .setting input[type=email],.media-sidebar .setting input[type=number],.media-sidebar .setting input[type=password],.media-sidebar .setting input[type=search],.media-sidebar .setting input[type=tel],.media-sidebar .setting input[type=text],.media-sidebar .setting input[type=url],.media-sidebar .setting select,.media-sidebar .setting textarea{float:none;width:98%;max-width:none;height:auto}.media-frame .media-toolbar input[type=search]{line-height:2.25}.attachment-details .setting select.columns,.media-sidebar .setting select.columns{width:auto}.media-frame .search,.media-frame input,.media-frame textarea{padding:3px 6px}.wp-admin .media-frame select{min-height:40px;font-size:16px;line-height:1.625;padding:5px 24px 5px 8px}.image-details .column-image{width:30%;left:70%}.image-details .column-settings{width:70%}.image-details .media-modal{left:30px;right:30px}.image-details .embed-media-settings .setting,.image-details .embed-media-settings .setting-group{margin:20px}.image-details .embed-media-settings .setting .name,.image-details .embed-media-settings .setting span{float:none;text-align:left;width:100%;margin-bottom:4px;margin-left:0}.media-modal .legend-inline{position:static;transform:none;margin-left:0;margin-bottom:6px}.image-details .embed-media-settings .setting-group .setting{margin-bottom:0}.image-details .embed-media-settings .setting input.link-to-custom,.image-details .embed-media-settings .setting input[type=text],.image-details .embed-media-settings .setting textarea{width:100%;margin-left:0}.image-details .embed-media-settings .setting.has-description{margin-bottom:5px}.image-details .description{width:auto;margin:0 20px}.image-details .embed-media-settings .custom-size{margin-left:20px}.collection-settings .setting input[type=checkbox]{float:none;margin-top:0}.media-selection{min-width:120px}.media-selection:after{background:0 0}.media-selection .attachments{display:none}.media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:right}.media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}.media-frame input[type=email],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=text],.media-frame input[type=url],.media-frame select,.media-frame textarea{font-size:16px}.media-frame .media-toolbar input[type=search]{line-height:2.3755}.media-modal .media-toolbar .spinner{margin-bottom:10px}}@media screen and (max-width:782px){.attachments-browser .media-toolbar{height:82px}.attachments-browser .attachments,.attachments-browser .uploader-inline{top:82px}.media-frame-toolbar .media-toolbar{bottom:-54px}.mode-grid .attachments-browser .media-toolbar-primary{display:block}.attachment-details .copy-to-clipboard-container .success,.media-sidebar .copy-to-clipboard-container .success{font-size:14px;line-height:2.71428571}}@media only screen and (max-width:640px),screen and (max-height:400px){.image-details .media-modal,.media-modal{position:fixed;top:0;left:0;right:0;bottom:0}.media-modal-backdrop{position:fixed}.media-sidebar{z-index:1900;max-width:70%;bottom:120%;box-sizing:border-box;padding-bottom:0}.media-sidebar.visible{bottom:0}.attachments-browser .attachments,.attachments-browser .media-toolbar,.attachments-browser .uploader-inline,.media-frame-content .attachments-browser .attachments-wrapper{right:0}.attachments-browser .attachments-wrapper{padding-top:12px}.image-details .media-frame-title{display:block;top:0;font-size:14px}.image-details .column-image,.image-details .column-settings{width:100%;position:relative;left:0}.image-details .column-settings{padding:4px 0}.media-frame-content .media-toolbar .instructions{display:none}.load-more-wrapper .load-more-jump{margin:12px 0 0}}@media only screen and (min-width:901px) and (max-height:400px){.media-frame:not(.hide-menu) .media-menu,.media-menu{top:0;padding-top:44px}.load-more-wrapper .load-more-jump{margin:12px 0 0}}@media only screen and (max-width:480px){.wp-core-ui.wp-customizer .media-button{margin-top:13px}}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-core-ui .media-modal-icon{background-image:url(../images/uploader-icons-2x.png);background-size:134px 15px}.media-frame .spinner{background-image:url(../images/spinner-2x.gif)}}.media-frame-content[data-columns="1"] .attachment{width:100%}.media-frame-content[data-columns="2"] .attachment{width:50%}.media-frame-content[data-columns="3"] .attachment{width:33.33%}.media-frame-content[data-columns="4"] .attachment{width:25%}.media-frame-content[data-columns="5"] .attachment{width:20%}.media-frame-content[data-columns="6"] .attachment{width:16.66%}.media-frame-content[data-columns="7"] .attachment{width:14.28%}.media-frame-content[data-columns="8"] .attachment{width:12.5%}.media-frame-content[data-columns="9"] .attachment{width:11.11%}.media-frame-content[data-columns="10"] .attachment{width:10%}.media-frame-content[data-columns="11"] .attachment{width:9.09%}.media-frame-content[data-columns="12"] .attachment{width:8.33%}
\ No newline at end of file
diff --git a/static/wp-includes/css/wp-auth-check-rtl.css b/static/wp-includes/css/wp-auth-check-rtl.css
new file mode 100755
index 0000000..77570b6
--- /dev/null
+++ b/static/wp-includes/css/wp-auth-check-rtl.css
@@ -0,0 +1,124 @@
+/*! This file is auto-generated */
+/*------------------------------------------------------------------------------
+ Interim login dialog
+------------------------------------------------------------------------------*/
+
+#wp-auth-check-wrap.hidden {
+ display: none;
+}
+
+#wp-auth-check-wrap #wp-auth-check-bg {
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 1000010; /* needs to appear above .notification-dialog */
+}
+
+#wp-auth-check-wrap #wp-auth-check {
+ position: fixed;
+ right: 50%;
+ overflow: hidden;
+ top: 40px;
+ bottom: 20px;
+ max-height: 415px;
+ width: 380px;
+ margin: 0 -190px 0 0;
+ padding: 30px 0 0;
+ background-color: #f0f0f1;
+ z-index: 1000011; /* needs to appear above #wp-auth-check-bg */
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+}
+
+@media screen and (max-width: 380px) {
+ #wp-auth-check-wrap #wp-auth-check {
+ right: 0;
+ width: 100%;
+ margin: 0;
+ }
+}
+
+#wp-auth-check-wrap.fallback #wp-auth-check {
+ max-height: 180px;
+ overflow: auto;
+}
+
+#wp-auth-check-wrap #wp-auth-check-form {
+ height: 100%;
+ position: relative;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+}
+
+#wp-auth-check-form.loading:before {
+ content: "";
+ display: block;
+ width: 20px;
+ height: 20px;
+ position: absolute;
+ right: 50%;
+ top: 50%;
+ margin: -10px -10px 0 0;
+ background: url(../images/spinner.gif) no-repeat center;
+ background-size: 20px 20px;
+ transform: translateZ(0);
+}
+
+@media print,
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ #wp-auth-check-form.loading:before {
+ background-image: url(../images/spinner-2x.gif);
+ }
+
+}
+
+#wp-auth-check-wrap #wp-auth-check-form iframe {
+ height: 98%; /* Scrollbar fix */
+ width: 100%;
+}
+
+#wp-auth-check-wrap .wp-auth-check-close {
+ position: absolute;
+ top: 5px;
+ left: 5px;
+ height: 22px;
+ width: 22px;
+ color: #787c82;
+ text-decoration: none;
+ text-align: center;
+}
+
+#wp-auth-check-wrap .wp-auth-check-close:before {
+ content: "\f158";
+ font: normal 20px/22px dashicons;
+ speak: never;
+ -webkit-font-smoothing: antialiased !important;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#wp-auth-check-wrap .wp-auth-check-close:hover,
+#wp-auth-check-wrap .wp-auth-check-close:focus {
+ color: #2271b1;
+}
+
+#wp-auth-check-wrap .wp-auth-fallback-expired {
+ outline: 0;
+}
+
+#wp-auth-check-wrap .wp-auth-fallback {
+ font-size: 14px;
+ line-height: 1.5;
+ padding: 0 25px;
+ display: none;
+}
+
+#wp-auth-check-wrap.fallback .wp-auth-fallback,
+#wp-auth-check-wrap.fallback .wp-auth-check-close {
+ display: block;
+}
diff --git a/static/wp-includes/css/wp-auth-check-rtl.min.css b/static/wp-includes/css/wp-auth-check-rtl.min.css
new file mode 100755
index 0000000..9f9e1c5
--- /dev/null
+++ b/static/wp-includes/css/wp-auth-check-rtl.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+#wp-auth-check-wrap.hidden{display:none}#wp-auth-check-wrap #wp-auth-check-bg{position:fixed;top:0;bottom:0;right:0;left:0;background:#000;opacity:.7;z-index:1000010}#wp-auth-check-wrap #wp-auth-check{position:fixed;right:50%;overflow:hidden;top:40px;bottom:20px;max-height:415px;width:380px;margin:0 -190px 0 0;padding:30px 0 0;background-color:#f0f0f1;z-index:1000011;box-shadow:0 3px 6px rgba(0,0,0,.3)}@media screen and (max-width:380px){#wp-auth-check-wrap #wp-auth-check{right:0;width:100%;margin:0}}#wp-auth-check-wrap.fallback #wp-auth-check{max-height:180px;overflow:auto}#wp-auth-check-wrap #wp-auth-check-form{height:100%;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}#wp-auth-check-form.loading:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;margin:-10px -10px 0 0;background:url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){#wp-auth-check-form.loading:before{background-image:url(../images/spinner-2x.gif)}}#wp-auth-check-wrap #wp-auth-check-form iframe{height:98%;width:100%}#wp-auth-check-wrap .wp-auth-check-close{position:absolute;top:5px;left:5px;height:22px;width:22px;color:#787c82;text-decoration:none;text-align:center}#wp-auth-check-wrap .wp-auth-check-close:before{content:"\f158";font:normal 20px/22px dashicons;speak:never;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale}#wp-auth-check-wrap .wp-auth-check-close:focus,#wp-auth-check-wrap .wp-auth-check-close:hover{color:#2271b1}#wp-auth-check-wrap .wp-auth-fallback-expired{outline:0}#wp-auth-check-wrap .wp-auth-fallback{font-size:14px;line-height:1.5;padding:0 25px;display:none}#wp-auth-check-wrap.fallback .wp-auth-check-close,#wp-auth-check-wrap.fallback .wp-auth-fallback{display:block}
\ No newline at end of file
diff --git a/static/wp-includes/css/wp-auth-check.css b/static/wp-includes/css/wp-auth-check.css
new file mode 100755
index 0000000..8994f49
--- /dev/null
+++ b/static/wp-includes/css/wp-auth-check.css
@@ -0,0 +1,123 @@
+/*------------------------------------------------------------------------------
+ Interim login dialog
+------------------------------------------------------------------------------*/
+
+#wp-auth-check-wrap.hidden {
+ display: none;
+}
+
+#wp-auth-check-wrap #wp-auth-check-bg {
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 1000010; /* needs to appear above .notification-dialog */
+}
+
+#wp-auth-check-wrap #wp-auth-check {
+ position: fixed;
+ left: 50%;
+ overflow: hidden;
+ top: 40px;
+ bottom: 20px;
+ max-height: 415px;
+ width: 380px;
+ margin: 0 0 0 -190px;
+ padding: 30px 0 0;
+ background-color: #f0f0f1;
+ z-index: 1000011; /* needs to appear above #wp-auth-check-bg */
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
+}
+
+@media screen and (max-width: 380px) {
+ #wp-auth-check-wrap #wp-auth-check {
+ left: 0;
+ width: 100%;
+ margin: 0;
+ }
+}
+
+#wp-auth-check-wrap.fallback #wp-auth-check {
+ max-height: 180px;
+ overflow: auto;
+}
+
+#wp-auth-check-wrap #wp-auth-check-form {
+ height: 100%;
+ position: relative;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+}
+
+#wp-auth-check-form.loading:before {
+ content: "";
+ display: block;
+ width: 20px;
+ height: 20px;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ margin: -10px 0 0 -10px;
+ background: url(../images/spinner.gif) no-repeat center;
+ background-size: 20px 20px;
+ transform: translateZ(0);
+}
+
+@media print,
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ #wp-auth-check-form.loading:before {
+ background-image: url(../images/spinner-2x.gif);
+ }
+
+}
+
+#wp-auth-check-wrap #wp-auth-check-form iframe {
+ height: 98%; /* Scrollbar fix */
+ width: 100%;
+}
+
+#wp-auth-check-wrap .wp-auth-check-close {
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ height: 22px;
+ width: 22px;
+ color: #787c82;
+ text-decoration: none;
+ text-align: center;
+}
+
+#wp-auth-check-wrap .wp-auth-check-close:before {
+ content: "\f158";
+ font: normal 20px/22px dashicons;
+ speak: never;
+ -webkit-font-smoothing: antialiased !important;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#wp-auth-check-wrap .wp-auth-check-close:hover,
+#wp-auth-check-wrap .wp-auth-check-close:focus {
+ color: #2271b1;
+}
+
+#wp-auth-check-wrap .wp-auth-fallback-expired {
+ outline: 0;
+}
+
+#wp-auth-check-wrap .wp-auth-fallback {
+ font-size: 14px;
+ line-height: 1.5;
+ padding: 0 25px;
+ display: none;
+}
+
+#wp-auth-check-wrap.fallback .wp-auth-fallback,
+#wp-auth-check-wrap.fallback .wp-auth-check-close {
+ display: block;
+}
diff --git a/static/wp-includes/css/wp-auth-check.min.css b/static/wp-includes/css/wp-auth-check.min.css
new file mode 100755
index 0000000..e693244
--- /dev/null
+++ b/static/wp-includes/css/wp-auth-check.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+#wp-auth-check-wrap.hidden{display:none}#wp-auth-check-wrap #wp-auth-check-bg{position:fixed;top:0;bottom:0;left:0;right:0;background:#000;opacity:.7;z-index:1000010}#wp-auth-check-wrap #wp-auth-check{position:fixed;left:50%;overflow:hidden;top:40px;bottom:20px;max-height:415px;width:380px;margin:0 0 0 -190px;padding:30px 0 0;background-color:#f0f0f1;z-index:1000011;box-shadow:0 3px 6px rgba(0,0,0,.3)}@media screen and (max-width:380px){#wp-auth-check-wrap #wp-auth-check{left:0;width:100%;margin:0}}#wp-auth-check-wrap.fallback #wp-auth-check{max-height:180px;overflow:auto}#wp-auth-check-wrap #wp-auth-check-form{height:100%;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}#wp-auth-check-form.loading:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;margin:-10px 0 0 -10px;background:url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){#wp-auth-check-form.loading:before{background-image:url(../images/spinner-2x.gif)}}#wp-auth-check-wrap #wp-auth-check-form iframe{height:98%;width:100%}#wp-auth-check-wrap .wp-auth-check-close{position:absolute;top:5px;right:5px;height:22px;width:22px;color:#787c82;text-decoration:none;text-align:center}#wp-auth-check-wrap .wp-auth-check-close:before{content:"\f158";font:normal 20px/22px dashicons;speak:never;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale}#wp-auth-check-wrap .wp-auth-check-close:focus,#wp-auth-check-wrap .wp-auth-check-close:hover{color:#2271b1}#wp-auth-check-wrap .wp-auth-fallback-expired{outline:0}#wp-auth-check-wrap .wp-auth-fallback{font-size:14px;line-height:1.5;padding:0 25px;display:none}#wp-auth-check-wrap.fallback .wp-auth-check-close,#wp-auth-check-wrap.fallback .wp-auth-fallback{display:block}
\ No newline at end of file
diff --git a/static/wp-includes/css/wp-embed-template-ie.css b/static/wp-includes/css/wp-embed-template-ie.css
new file mode 100755
index 0000000..cec05c9
--- /dev/null
+++ b/static/wp-includes/css/wp-embed-template-ie.css
@@ -0,0 +1,19 @@
+.dashicons-no {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAcElEQVR4AdXRVxmEMBAGwJMQCUhAIhKQECmRsFJwMFfp7HfP/E8pk0173CuKpt/0R+WaBaaZqogLagBMuh+DdoKbyRCwqZ/SnM0R5oQuZ2UHS8Z6k23qPxZCTrV5UlHMi8bsfHVXP7K/GXZHaTO7S54CWLdHlN2YIwAAAABJRU5ErkJggg==);
+}
+
+.dashicons-admin-comments {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATUlEQVR4AWMYWqCpvUcAiA8A8X9iMFStAD4DG0AKScQNVDZw1MBRAwvIMLCA5jmFlCD4AMQGlOTtBgoNwzQQ3TCKDaTcMMxYN2AYVgAAYPKsEBxN0PIAAAAASUVORK5CYII=);
+}
+
+.wp-embed-comments a:hover .dashicons-admin-comments {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATElEQVR4AWMYYqB4lQAQHwDi/8RgqFoBfAY2gBSSiBuobOCogaMGFpBhYAEdcwrhIPgAxAaU5O0GCg3DNBDdMIoNpNwwzFg3YBhWAABG71qAFYcFqgAAAABJRU5ErkJggg==);
+}
+
+.dashicons-share {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYfqCpvccAiBcA8X8gfgDEBZQaeAFkGBoOoMR1/7HgDeQa2ECZgQiDHID4AMwAor0MCmBoQP+HBnwAskFQdgBRkQJViGk7wiAHUr21AYdhDTA1dDOQHl6mPFLokmwoT9j0z3qUFw70L77oDwAiuzCIub1XpQAAAABJRU5ErkJggg==);
+}
+
+.wp-embed-share-dialog-open:hover .dashicons-share {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYhqB4lQEQLwDi/0D8AIgLKDXwAsgwNBxAiev+Y8EbyDWwgTIDEQY5APEBmAFEexkUwNCA/g8N+ABkg6DsAKIiBaoQ03aEQQ6kemsDDsMaYEroZiA9vEx5pNAl2VCesOmf9SgvHOhffNEfAAAMqPR5IEZH5wAAAABJRU5ErkJggg==);
+}
diff --git a/static/wp-includes/css/wp-embed-template-ie.min.css b/static/wp-includes/css/wp-embed-template-ie.min.css
new file mode 100755
index 0000000..6228217
--- /dev/null
+++ b/static/wp-includes/css/wp-embed-template-ie.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.dashicons-no{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAcElEQVR4AdXRVxmEMBAGwJMQCUhAIhKQECmRsFJwMFfp7HfP/E8pk0173CuKpt/0R+WaBaaZqogLagBMuh+DdoKbyRCwqZ/SnM0R5oQuZ2UHS8Z6k23qPxZCTrV5UlHMi8bsfHVXP7K/GXZHaTO7S54CWLdHlN2YIwAAAABJRU5ErkJggg==)}.dashicons-admin-comments{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATUlEQVR4AWMYWqCpvUcAiA8A8X9iMFStAD4DG0AKScQNVDZw1MBRAwvIMLCA5jmFlCD4AMQGlOTtBgoNwzQQ3TCKDaTcMMxYN2AYVgAAYPKsEBxN0PIAAAAASUVORK5CYII=)}.wp-embed-comments a:hover .dashicons-admin-comments{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATElEQVR4AWMYYqB4lQAQHwDi/8RgqFoBfAY2gBSSiBuobOCogaMGFpBhYAEdcwrhIPgAxAaU5O0GCg3DNBDdMIoNpNwwzFg3YBhWAABG71qAFYcFqgAAAABJRU5ErkJggg==)}.dashicons-share{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYfqCpvccAiBcA8X8gfgDEBZQaeAFkGBoOoMR1/7HgDeQa2ECZgQiDHID4AMwAor0MCmBoQP+HBnwAskFQdgBRkQJViGk7wiAHUr21AYdhDTA1dDOQHl6mPFLokmwoT9j0z3qUFw70L77oDwAiuzCIub1XpQAAAABJRU5ErkJggg==)}.wp-embed-share-dialog-open:hover .dashicons-share{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYhqB4lQEQLwDi/0D8AIgLKDXwAsgwNBxAiev+Y8EbyDWwgTIDEQY5APEBmAFEexkUwNCA/g8N+ABkg6DsAKIiBaoQ03aEQQ6kemsDDsMaYEroZiA9vEx5pNAl2VCesOmf9SgvHOhffNEfAAAMqPR5IEZH5wAAAABJRU5ErkJggg==)}
\ No newline at end of file
diff --git a/static/wp-includes/css/wp-embed-template.css b/static/wp-includes/css/wp-embed-template.css
new file mode 100755
index 0000000..c1f1cc5
--- /dev/null
+++ b/static/wp-includes/css/wp-embed-template.css
@@ -0,0 +1,359 @@
+html, body {
+ padding: 0;
+ margin: 0;
+}
+
+body {
+ font-family: sans-serif;
+}
+
+/* Text meant only for screen readers */
+.screen-reader-text {
+ 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;
+}
+
+/* Dashicons */
+.dashicons {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ background-color: transparent;
+ background-repeat: no-repeat;
+ background-size: 20px;
+ background-position: center;
+ transition: background .1s ease-in;
+ position: relative;
+ top: 5px;
+}
+
+.dashicons-no {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M15.55%2013.7l-2.19%202.06-3.42-3.65-3.64%203.43-2.06-2.18%203.64-3.43-3.42-3.64%202.18-2.06%203.43%203.64%203.64-3.42%202.05%202.18-3.64%203.43z%27%20fill%3D%27%23fff%27%2F%3E%3C%2Fsvg%3E");
+}
+
+.dashicons-admin-comments {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M5%202h9q.82%200%201.41.59T16%204v7q0%20.82-.59%201.41T14%2013h-2l-5%205v-5H5q-.82%200-1.41-.59T3%2011V4q0-.82.59-1.41T5%202z%27%20fill%3D%27%2382878c%27%2F%3E%3C%2Fsvg%3E");
+}
+
+.wp-embed-comments a:hover .dashicons-admin-comments {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M5%202h9q.82%200%201.41.59T16%204v7q0%20.82-.59%201.41T14%2013h-2l-5%205v-5H5q-.82%200-1.41-.59T3%2011V4q0-.82.59-1.41T5%202z%27%20fill%3D%27%230073aa%27%2F%3E%3C%2Fsvg%3E");
+}
+
+.dashicons-share {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.5%2012q1.24%200%202.12.88T17.5%2015t-.88%202.12-2.12.88-2.12-.88T11.5%2015q0-.34.09-.69l-4.38-2.3Q6.32%2013%205%2013q-1.24%200-2.12-.88T2%2010t.88-2.12T5%207q1.3%200%202.21.99l4.38-2.3q-.09-.35-.09-.69%200-1.24.88-2.12T14.5%202t2.12.88T17.5%205t-.88%202.12T14.5%208q-1.3%200-2.21-.99l-4.38%202.3Q8%209.66%208%2010t-.09.69l4.38%202.3q.89-.99%202.21-.99z%27%20fill%3D%27%2382878c%27%2F%3E%3C%2Fsvg%3E");
+ display: none;
+}
+
+.js .dashicons-share {
+ display: inline-block;
+}
+
+.wp-embed-share-dialog-open:hover .dashicons-share {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.5%2012q1.24%200%202.12.88T17.5%2015t-.88%202.12-2.12.88-2.12-.88T11.5%2015q0-.34.09-.69l-4.38-2.3Q6.32%2013%205%2013q-1.24%200-2.12-.88T2%2010t.88-2.12T5%207q1.3%200%202.21.99l4.38-2.3q-.09-.35-.09-.69%200-1.24.88-2.12T14.5%202t2.12.88T17.5%205t-.88%202.12T14.5%208q-1.3%200-2.21-.99l-4.38%202.3Q8%209.66%208%2010t-.09.69l4.38%202.3q.89-.99%202.21-.99z%27%20fill%3D%27%230073aa%27%2F%3E%3C%2Fsvg%3E");
+}
+
+.wp-embed {
+ padding: 25px;
+ font-size: 14px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 1.5;
+ color: #8c8f94;
+ background: #fff;
+ border: 1px solid #dcdcde;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+ /* Clearfix */
+ overflow: auto;
+ zoom: 1;
+}
+
+.wp-embed a {
+ color: #8c8f94;
+ text-decoration: none;
+}
+
+.wp-embed a:hover {
+ text-decoration: underline;
+}
+
+.wp-embed-featured-image {
+ margin-bottom: 20px;
+}
+
+.wp-embed-featured-image img {
+ width: 100%;
+ height: auto;
+ border: none;
+}
+
+.wp-embed-featured-image.square {
+ float: left;
+ max-width: 160px;
+ margin-right: 20px;
+}
+
+.wp-embed p {
+ margin: 0;
+}
+
+p.wp-embed-heading {
+ margin: 0 0 15px;
+ font-weight: 600;
+ font-size: 22px;
+ line-height: 1.3;
+}
+
+.wp-embed-heading a {
+ color: #2c3338;
+}
+
+.wp-embed .wp-embed-more {
+ color: #c3c4c7;
+}
+
+.wp-embed-footer {
+ display: table;
+ width: 100%;
+ margin-top: 30px;
+}
+
+.wp-embed-site-icon {
+ position: absolute;
+ top: 50%;
+ left: 0;
+ transform: translateY(-50%);
+ height: 25px;
+ width: 25px;
+ border: 0;
+}
+
+.wp-embed-site-title {
+ font-weight: 600;
+ line-height: 1.78571428;
+}
+
+.wp-embed-site-title a {
+ position: relative;
+ display: inline-block;
+ padding-left: 35px;
+}
+
+.wp-embed-site-title,
+.wp-embed-meta {
+ display: table-cell;
+}
+
+.wp-embed-meta {
+ text-align: right;
+ white-space: nowrap;
+ vertical-align: middle;
+}
+
+.wp-embed-comments,
+.wp-embed-share {
+ display: inline;
+}
+
+.wp-embed-meta a:hover {
+ text-decoration: none;
+ color: #2271b1;
+}
+
+.wp-embed-comments a {
+ line-height: 1.78571428;
+ display: inline-block;
+}
+
+.wp-embed-comments + .wp-embed-share {
+ margin-left: 10px;
+}
+
+.wp-embed-share-dialog {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background-color: #1d2327;
+ background-color: rgba(0, 0, 0, 0.9);
+ color: #fff;
+ opacity: 1;
+ transition: opacity .25s ease-in-out;
+}
+
+.wp-embed-share-dialog.hidden {
+ opacity: 0;
+ visibility: hidden;
+}
+
+.wp-embed-share-dialog-open,
+.wp-embed-share-dialog-close {
+ margin: -8px 0 0;
+ padding: 0;
+ background: transparent;
+ border: none;
+ cursor: pointer;
+ outline: none;
+}
+
+.wp-embed-share-dialog-open .dashicons,
+.wp-embed-share-dialog-close .dashicons {
+ padding: 4px;
+}
+
+.wp-embed-share-dialog-open .dashicons {
+ top: 8px;
+}
+
+.wp-embed-share-dialog-open:focus .dashicons,
+.wp-embed-share-dialog-close:focus .dashicons {
+ box-shadow: 0 0 0 1px #4f94d4, 0 0 2px 1px rgba(79, 148, 212, 0.8);
+ border-radius: 100%;
+}
+
+.wp-embed-share-dialog-close {
+ position: absolute;
+ top: 20px;
+ right: 20px;
+ font-size: 22px;
+}
+
+.wp-embed-share-dialog-close:hover {
+ text-decoration: none;
+}
+
+.wp-embed-share-dialog-close .dashicons {
+ height: 24px;
+ width: 24px;
+ background-size: 24px;
+}
+
+.wp-embed-share-dialog-content {
+ height: 100%;
+ transform-style: preserve-3d;
+ overflow: hidden;
+}
+
+.wp-embed-share-dialog-text {
+ margin-top: 25px;
+ padding: 20px;
+}
+
+.wp-embed-share-tabs {
+ margin: 0 0 20px;
+ padding: 0;
+ list-style: none;
+}
+
+.wp-embed-share-tab-button {
+ display: inline-block;
+}
+
+.wp-embed-share-tab-button button {
+ margin: 0;
+ padding: 0;
+ border: none;
+ background: transparent;
+ font-size: 16px;
+ line-height: 1.3;
+ color: #a7aaad;
+ cursor: pointer;
+ transition: color .1s ease-in;
+}
+
+.wp-embed-share-tab-button [aria-selected="true"] {
+ color: #fff;
+}
+
+.wp-embed-share-tab-button button:hover {
+ color: #fff;
+}
+
+.wp-embed-share-tab-button + .wp-embed-share-tab-button {
+ margin: 0 0 0 10px;
+ padding: 0 0 0 11px;
+ border-left: 1px solid #a7aaad;
+}
+
+.wp-embed-share-tab[aria-hidden="true"] {
+ display: none;
+}
+
+p.wp-embed-share-description {
+ margin: 0;
+ font-size: 14px;
+ line-height: 1;
+ font-style: italic;
+ color: #a7aaad;
+}
+
+.wp-embed-share-input {
+ box-sizing: border-box;
+ width: 100%;
+ border: none;
+ height: 28px;
+ margin: 0 0 10px;
+ padding: 0 5px;
+ font-size: 14px;
+ font-weight: 400;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+ line-height: 1.5;
+ resize: none;
+ cursor: text;
+}
+
+textarea.wp-embed-share-input {
+ height: 72px;
+}
+
+html[dir="rtl"] .wp-embed-featured-image.square {
+ float: right;
+ margin-right: 0;
+
+ margin-left: 20px;
+}
+
+html[dir="rtl"] .wp-embed-site-title a {
+ padding-left: 0;
+ padding-right: 35px;
+}
+
+html[dir="rtl"] .wp-embed-site-icon {
+ margin-right: 0;
+ margin-left: 10px;
+ left: auto;
+ right: 0;
+}
+
+html[dir="rtl"] .wp-embed-meta {
+ text-align: left;
+}
+
+html[dir="rtl"] .wp-embed-footer {
+}
+
+html[dir="rtl"] .wp-embed-share {
+ margin-left: 0;
+ margin-right: 10px;
+}
+
+html[dir="rtl"] .wp-embed-share-dialog-close {
+ right: auto;
+ left: 20px;
+}
+
+html[dir="rtl"] .wp-embed-share-tab-button + .wp-embed-share-tab-button {
+ margin: 0 10px 0 0;
+ padding: 0 11px 0 0;
+ border-left: none;
+ border-right: 1px solid #a7aaad;
+}
diff --git a/static/wp-includes/css/wp-embed-template.min.css b/static/wp-includes/css/wp-embed-template.min.css
new file mode 100755
index 0000000..b17a75b
--- /dev/null
+++ b/static/wp-includes/css/wp-embed-template.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+body,html{padding:0;margin:0}body{font-family:sans-serif}.screen-reader-text{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}.dashicons{display:inline-block;width:20px;height:20px;background-color:transparent;background-repeat:no-repeat;background-size:20px;background-position:center;transition:background .1s ease-in;position:relative;top:5px}.dashicons-no{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M15.55%2013.7l-2.19%202.06-3.42-3.65-3.64%203.43-2.06-2.18%203.64-3.43-3.42-3.64%202.18-2.06%203.43%203.64%203.64-3.42%202.05%202.18-3.64%203.43z%27%20fill%3D%27%23fff%27%2F%3E%3C%2Fsvg%3E")}.dashicons-admin-comments{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M5%202h9q.82%200%201.41.59T16%204v7q0%20.82-.59%201.41T14%2013h-2l-5%205v-5H5q-.82%200-1.41-.59T3%2011V4q0-.82.59-1.41T5%202z%27%20fill%3D%27%2382878c%27%2F%3E%3C%2Fsvg%3E")}.wp-embed-comments a:hover .dashicons-admin-comments{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M5%202h9q.82%200%201.41.59T16%204v7q0%20.82-.59%201.41T14%2013h-2l-5%205v-5H5q-.82%200-1.41-.59T3%2011V4q0-.82.59-1.41T5%202z%27%20fill%3D%27%230073aa%27%2F%3E%3C%2Fsvg%3E")}.dashicons-share{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.5%2012q1.24%200%202.12.88T17.5%2015t-.88%202.12-2.12.88-2.12-.88T11.5%2015q0-.34.09-.69l-4.38-2.3Q6.32%2013%205%2013q-1.24%200-2.12-.88T2%2010t.88-2.12T5%207q1.3%200%202.21.99l4.38-2.3q-.09-.35-.09-.69%200-1.24.88-2.12T14.5%202t2.12.88T17.5%205t-.88%202.12T14.5%208q-1.3%200-2.21-.99l-4.38%202.3Q8%209.66%208%2010t-.09.69l4.38%202.3q.89-.99%202.21-.99z%27%20fill%3D%27%2382878c%27%2F%3E%3C%2Fsvg%3E");display:none}.js .dashicons-share{display:inline-block}.wp-embed-share-dialog-open:hover .dashicons-share{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.5%2012q1.24%200%202.12.88T17.5%2015t-.88%202.12-2.12.88-2.12-.88T11.5%2015q0-.34.09-.69l-4.38-2.3Q6.32%2013%205%2013q-1.24%200-2.12-.88T2%2010t.88-2.12T5%207q1.3%200%202.21.99l4.38-2.3q-.09-.35-.09-.69%200-1.24.88-2.12T14.5%202t2.12.88T17.5%205t-.88%202.12T14.5%208q-1.3%200-2.21-.99l-4.38%202.3Q8%209.66%208%2010t-.09.69l4.38%202.3q.89-.99%202.21-.99z%27%20fill%3D%27%230073aa%27%2F%3E%3C%2Fsvg%3E")}.wp-embed{padding:25px;font-size:14px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.5;color:#8c8f94;background:#fff;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.05);overflow:auto;zoom:1}.wp-embed a{color:#8c8f94;text-decoration:none}.wp-embed a:hover{text-decoration:underline}.wp-embed-featured-image{margin-bottom:20px}.wp-embed-featured-image img{width:100%;height:auto;border:none}.wp-embed-featured-image.square{float:left;max-width:160px;margin-right:20px}.wp-embed p{margin:0}p.wp-embed-heading{margin:0 0 15px;font-weight:600;font-size:22px;line-height:1.3}.wp-embed-heading a{color:#2c3338}.wp-embed .wp-embed-more{color:#c3c4c7}.wp-embed-footer{display:table;width:100%;margin-top:30px}.wp-embed-site-icon{position:absolute;top:50%;left:0;transform:translateY(-50%);height:25px;width:25px;border:0}.wp-embed-site-title{font-weight:600;line-height:1.78571428}.wp-embed-site-title a{position:relative;display:inline-block;padding-left:35px}.wp-embed-meta,.wp-embed-site-title{display:table-cell}.wp-embed-meta{text-align:right;white-space:nowrap;vertical-align:middle}.wp-embed-comments,.wp-embed-share{display:inline}.wp-embed-meta a:hover{text-decoration:none;color:#2271b1}.wp-embed-comments a{line-height:1.78571428;display:inline-block}.wp-embed-comments+.wp-embed-share{margin-left:10px}.wp-embed-share-dialog{position:absolute;top:0;left:0;right:0;bottom:0;background-color:#1d2327;background-color:rgba(0,0,0,.9);color:#fff;opacity:1;transition:opacity .25s ease-in-out}.wp-embed-share-dialog.hidden{opacity:0;visibility:hidden}.wp-embed-share-dialog-close,.wp-embed-share-dialog-open{margin:-8px 0 0;padding:0;background:0 0;border:none;cursor:pointer;outline:0}.wp-embed-share-dialog-close .dashicons,.wp-embed-share-dialog-open .dashicons{padding:4px}.wp-embed-share-dialog-open .dashicons{top:8px}.wp-embed-share-dialog-close:focus .dashicons,.wp-embed-share-dialog-open:focus .dashicons{box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8);border-radius:100%}.wp-embed-share-dialog-close{position:absolute;top:20px;right:20px;font-size:22px}.wp-embed-share-dialog-close:hover{text-decoration:none}.wp-embed-share-dialog-close .dashicons{height:24px;width:24px;background-size:24px}.wp-embed-share-dialog-content{height:100%;transform-style:preserve-3d;overflow:hidden}.wp-embed-share-dialog-text{margin-top:25px;padding:20px}.wp-embed-share-tabs{margin:0 0 20px;padding:0;list-style:none}.wp-embed-share-tab-button{display:inline-block}.wp-embed-share-tab-button button{margin:0;padding:0;border:none;background:0 0;font-size:16px;line-height:1.3;color:#a7aaad;cursor:pointer;transition:color .1s ease-in}.wp-embed-share-tab-button [aria-selected=true]{color:#fff}.wp-embed-share-tab-button button:hover{color:#fff}.wp-embed-share-tab-button+.wp-embed-share-tab-button{margin:0 0 0 10px;padding:0 0 0 11px;border-left:1px solid #a7aaad}.wp-embed-share-tab[aria-hidden=true]{display:none}p.wp-embed-share-description{margin:0;font-size:14px;line-height:1;font-style:italic;color:#a7aaad}.wp-embed-share-input{box-sizing:border-box;width:100%;border:none;height:28px;margin:0 0 10px;padding:0 5px;font-size:14px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.5;resize:none;cursor:text}textarea.wp-embed-share-input{height:72px}html[dir=rtl] .wp-embed-featured-image.square{float:right;margin-right:0;margin-left:20px}html[dir=rtl] .wp-embed-site-title a{padding-left:0;padding-right:35px}html[dir=rtl] .wp-embed-site-icon{margin-right:0;margin-left:10px;left:auto;right:0}html[dir=rtl] .wp-embed-meta{text-align:left}html[dir=rtl] .wp-embed-share{margin-left:0;margin-right:10px}html[dir=rtl] .wp-embed-share-dialog-close{right:auto;left:20px}html[dir=rtl] .wp-embed-share-tab-button+.wp-embed-share-tab-button{margin:0 10px 0 0;padding:0 11px 0 0;border-left:none;border-right:1px solid #a7aaad}
\ No newline at end of file
diff --git a/static/wp-includes/css/wp-pointer-rtl.css b/static/wp-includes/css/wp-pointer-rtl.css
new file mode 100755
index 0000000..582a0c6
--- /dev/null
+++ b/static/wp-includes/css/wp-pointer-rtl.css
@@ -0,0 +1,225 @@
+/*! This file is auto-generated */
+.wp-pointer-content {
+ padding: 0 0 10px;
+ position: relative;
+ font-size: 13px;
+ background: #fff;
+ border: 1px solid #c3c4c7;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
+}
+
+.wp-pointer-content h3 {
+ position: relative;
+ margin: -1px -1px 5px;
+ padding: 15px 60px 14px 18px;
+ border: 1px solid #2271b1;
+ border-bottom: none;
+ line-height: 1.4;
+ font-size: 14px;
+ color: #fff;
+ background: #2271b1;
+}
+
+.wp-pointer-content h3:before {
+ background: #fff;
+ border-radius: 50%;
+ color: #2271b1;
+ content: "\f227";
+ font: normal 20px/1.6 dashicons;
+ position: absolute;
+ top: 8px;
+ right: 15px;
+ speak: never;
+ text-align: center;
+ width: 32px;
+ height: 32px;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.wp-pointer-content h4 {
+ margin: 1.33em 20px 1em;
+ font-size: 1.15em;
+}
+
+.wp-pointer-content p {
+ padding: 0 20px;
+}
+
+.wp-pointer-buttons {
+ margin: 0;
+ padding: 5px 15px;
+ overflow: auto;
+}
+
+.wp-pointer-buttons a {
+ float: left;
+ display: inline-block;
+ text-decoration: none;
+}
+
+.wp-pointer-buttons a.close {
+ padding-right: 3px;
+ position: relative;
+}
+
+.wp-pointer-buttons a.close:before {
+ background: none;
+ color: #787c82;
+ content: "\f153";
+ display: block !important;
+ font: normal 16px/1 dashicons;
+ speak: never;
+ margin: 1px 0;
+ text-align: center;
+ -webkit-font-smoothing: antialiased !important;
+ width: 10px;
+ height: 100%;
+ position: absolute;
+ right: -15px;
+ top: 1px;
+}
+
+.wp-pointer-buttons a.close:hover:before {
+ color: #d63638;
+}
+
+/* The arrow base class must take up no space, even with transparent borders. */
+.wp-pointer-arrow,
+.wp-pointer-arrow-inner {
+ position: absolute;
+ width: 0;
+ height: 0;
+}
+
+.wp-pointer-arrow {
+ z-index: 10;
+ width: 0;
+ height: 0;
+ border: 0 solid transparent;
+}
+
+.wp-pointer-arrow-inner {
+ z-index: 20;
+}
+
+/* Make Room for the Arrow! */
+.wp-pointer-top,
+.wp-pointer-undefined {
+ padding-top: 13px;
+}
+
+.wp-pointer-bottom {
+ margin-top: -13px;
+ padding-bottom: 13px;
+}
+
+/* rtl:ignore */
+.wp-pointer-left {
+ padding-left: 13px;
+}
+/* rtl:ignore */
+.wp-pointer-right {
+ margin-left: -13px;
+ padding-right: 13px;
+}
+
+/* Base Size & Positioning */
+.wp-pointer-top .wp-pointer-arrow,
+.wp-pointer-bottom .wp-pointer-arrow,
+.wp-pointer-undefined .wp-pointer-arrow {
+ right: 50px;
+}
+
+.wp-pointer-left .wp-pointer-arrow,
+.wp-pointer-right .wp-pointer-arrow {
+ top: 50%;
+ margin-top: -15px;
+}
+
+/* Arrow Sprite */
+.wp-pointer-top .wp-pointer-arrow,
+.wp-pointer-undefined .wp-pointer-arrow {
+ top: 0;
+ border-width: 0 13px 13px;
+ border-bottom-color: #2271b1;
+}
+
+.wp-pointer-top .wp-pointer-arrow-inner,
+.wp-pointer-undefined .wp-pointer-arrow-inner {
+ top: 1px;
+ margin-right: -13px;
+ margin-top: -13px;
+ border: 13px solid transparent;
+ border-bottom-color: #2271b1;
+ display: block;
+ content: " ";
+}
+
+.wp-pointer-bottom .wp-pointer-arrow {
+ bottom: 0;
+ border-width: 13px 13px 0;
+ border-top-color: #c3c4c7;
+}
+
+.wp-pointer-bottom .wp-pointer-arrow-inner {
+ bottom: 1px;
+ margin-right: -13px;
+ margin-bottom: -13px;
+ border: 13px solid transparent;
+ border-top-color: #fff;
+ display: block;
+ content: " ";
+}
+
+/* rtl:ignore */
+.wp-pointer-left .wp-pointer-arrow {
+ left: 0;
+ border-width: 13px 13px 13px 0;
+ border-right-color: #c3c4c7;
+}
+
+/* rtl:ignore */
+.wp-pointer-left .wp-pointer-arrow-inner {
+ left: 1px;
+ margin-left: -13px;
+ margin-top: -13px;
+ border: 13px solid transparent;
+ border-right-color: #fff;
+ display: block;
+ content: " ";
+}
+
+/* rtl:ignore */
+.wp-pointer-right .wp-pointer-arrow {
+ right: 0;
+ border-width: 13px 0 13px 13px;
+ border-left-color: #c3c4c7;
+}
+
+/* rtl:ignore */
+.wp-pointer-right .wp-pointer-arrow-inner {
+ right: 1px;
+ margin-right: -13px;
+ margin-top: -13px;
+ border: 13px solid transparent;
+ border-left-color: #fff;
+ display: block;
+ content: " ";
+}
+
+.wp-pointer.arrow-bottom .wp-pointer-content {
+ margin-bottom: -45px;
+}
+
+.wp-pointer.arrow-bottom .wp-pointer-arrow {
+ top: 100%;
+ margin-top: -30px;
+}
+
+/* Disable pointers at responsive sizes */
+@media screen and (max-width: 782px) {
+ .wp-pointer {
+ display: none;
+ }
+}
diff --git a/static/wp-includes/css/wp-pointer-rtl.min.css b/static/wp-includes/css/wp-pointer-rtl.min.css
new file mode 100755
index 0000000..a8564c4
--- /dev/null
+++ b/static/wp-includes/css/wp-pointer-rtl.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border:1px solid #c3c4c7;box-shadow:0 3px 6px rgba(0,0,0,.08)}.wp-pointer-content h3{position:relative;margin:-1px -1px 5px;padding:15px 60px 14px 18px;border:1px solid #2271b1;border-bottom:none;line-height:1.4;font-size:14px;color:#fff;background:#2271b1}.wp-pointer-content h3:before{background:#fff;border-radius:50%;color:#2271b1;content:"\f227";font:normal 20px/1.6 dashicons;position:absolute;top:8px;right:15px;speak:never;text-align:center;width:32px;height:32px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-pointer-content h4{margin:1.33em 20px 1em;font-size:1.15em}.wp-pointer-content p{padding:0 20px}.wp-pointer-buttons{margin:0;padding:5px 15px;overflow:auto}.wp-pointer-buttons a{float:left;display:inline-block;text-decoration:none}.wp-pointer-buttons a.close{padding-right:3px;position:relative}.wp-pointer-buttons a.close:before{background:0 0;color:#787c82;content:"\f153";display:block!important;font:normal 16px/1 dashicons;speak:never;margin:1px 0;text-align:center;-webkit-font-smoothing:antialiased!important;width:10px;height:100%;position:absolute;right:-15px;top:1px}.wp-pointer-buttons a.close:hover:before{color:#d63638}.wp-pointer-arrow,.wp-pointer-arrow-inner{position:absolute;width:0;height:0}.wp-pointer-arrow{z-index:10;width:0;height:0;border:0 solid transparent}.wp-pointer-arrow-inner{z-index:20}.wp-pointer-top,.wp-pointer-undefined{padding-top:13px}.wp-pointer-bottom{margin-top:-13px;padding-bottom:13px}.wp-pointer-left{padding-left:13px}.wp-pointer-right{margin-left:-13px;padding-right:13px}.wp-pointer-bottom .wp-pointer-arrow,.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{right:50px}.wp-pointer-left .wp-pointer-arrow,.wp-pointer-right .wp-pointer-arrow{top:50%;margin-top:-15px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{top:0;border-width:0 13px 13px;border-bottom-color:#2271b1}.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer-undefined .wp-pointer-arrow-inner{top:1px;margin-right:-13px;margin-top:-13px;border:13px solid transparent;border-bottom-color:#2271b1;display:block;content:" "}.wp-pointer-bottom .wp-pointer-arrow{bottom:0;border-width:13px 13px 0;border-top-color:#c3c4c7}.wp-pointer-bottom .wp-pointer-arrow-inner{bottom:1px;margin-right:-13px;margin-bottom:-13px;border:13px solid transparent;border-top-color:#fff;display:block;content:" "}.wp-pointer-left .wp-pointer-arrow{left:0;border-width:13px 13px 13px 0;border-right-color:#c3c4c7}.wp-pointer-left .wp-pointer-arrow-inner{left:1px;margin-left:-13px;margin-top:-13px;border:13px solid transparent;border-right-color:#fff;display:block;content:" "}.wp-pointer-right .wp-pointer-arrow{right:0;border-width:13px 0 13px 13px;border-left-color:#c3c4c7}.wp-pointer-right .wp-pointer-arrow-inner{right:1px;margin-right:-13px;margin-top:-13px;border:13px solid transparent;border-left-color:#fff;display:block;content:" "}.wp-pointer.arrow-bottom .wp-pointer-content{margin-bottom:-45px}.wp-pointer.arrow-bottom .wp-pointer-arrow{top:100%;margin-top:-30px}@media screen and (max-width:782px){.wp-pointer{display:none}}
\ No newline at end of file
diff --git a/static/wp-includes/css/wp-pointer.css b/static/wp-includes/css/wp-pointer.css
new file mode 100755
index 0000000..a1c085c
--- /dev/null
+++ b/static/wp-includes/css/wp-pointer.css
@@ -0,0 +1,224 @@
+.wp-pointer-content {
+ padding: 0 0 10px;
+ position: relative;
+ font-size: 13px;
+ background: #fff;
+ border: 1px solid #c3c4c7;
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
+}
+
+.wp-pointer-content h3 {
+ position: relative;
+ margin: -1px -1px 5px;
+ padding: 15px 18px 14px 60px;
+ border: 1px solid #2271b1;
+ border-bottom: none;
+ line-height: 1.4;
+ font-size: 14px;
+ color: #fff;
+ background: #2271b1;
+}
+
+.wp-pointer-content h3:before {
+ background: #fff;
+ border-radius: 50%;
+ color: #2271b1;
+ content: "\f227";
+ font: normal 20px/1.6 dashicons;
+ position: absolute;
+ top: 8px;
+ left: 15px;
+ speak: never;
+ text-align: center;
+ width: 32px;
+ height: 32px;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.wp-pointer-content h4 {
+ margin: 1.33em 20px 1em;
+ font-size: 1.15em;
+}
+
+.wp-pointer-content p {
+ padding: 0 20px;
+}
+
+.wp-pointer-buttons {
+ margin: 0;
+ padding: 5px 15px;
+ overflow: auto;
+}
+
+.wp-pointer-buttons a {
+ float: right;
+ display: inline-block;
+ text-decoration: none;
+}
+
+.wp-pointer-buttons a.close {
+ padding-left: 3px;
+ position: relative;
+}
+
+.wp-pointer-buttons a.close:before {
+ background: none;
+ color: #787c82;
+ content: "\f153";
+ display: block !important;
+ font: normal 16px/1 dashicons;
+ speak: never;
+ margin: 1px 0;
+ text-align: center;
+ -webkit-font-smoothing: antialiased !important;
+ width: 10px;
+ height: 100%;
+ position: absolute;
+ left: -15px;
+ top: 1px;
+}
+
+.wp-pointer-buttons a.close:hover:before {
+ color: #d63638;
+}
+
+/* The arrow base class must take up no space, even with transparent borders. */
+.wp-pointer-arrow,
+.wp-pointer-arrow-inner {
+ position: absolute;
+ width: 0;
+ height: 0;
+}
+
+.wp-pointer-arrow {
+ z-index: 10;
+ width: 0;
+ height: 0;
+ border: 0 solid transparent;
+}
+
+.wp-pointer-arrow-inner {
+ z-index: 20;
+}
+
+/* Make Room for the Arrow! */
+.wp-pointer-top,
+.wp-pointer-undefined {
+ padding-top: 13px;
+}
+
+.wp-pointer-bottom {
+ margin-top: -13px;
+ padding-bottom: 13px;
+}
+
+/* rtl:ignore */
+.wp-pointer-left {
+ padding-left: 13px;
+}
+/* rtl:ignore */
+.wp-pointer-right {
+ margin-left: -13px;
+ padding-right: 13px;
+}
+
+/* Base Size & Positioning */
+.wp-pointer-top .wp-pointer-arrow,
+.wp-pointer-bottom .wp-pointer-arrow,
+.wp-pointer-undefined .wp-pointer-arrow {
+ left: 50px;
+}
+
+.wp-pointer-left .wp-pointer-arrow,
+.wp-pointer-right .wp-pointer-arrow {
+ top: 50%;
+ margin-top: -15px;
+}
+
+/* Arrow Sprite */
+.wp-pointer-top .wp-pointer-arrow,
+.wp-pointer-undefined .wp-pointer-arrow {
+ top: 0;
+ border-width: 0 13px 13px;
+ border-bottom-color: #2271b1;
+}
+
+.wp-pointer-top .wp-pointer-arrow-inner,
+.wp-pointer-undefined .wp-pointer-arrow-inner {
+ top: 1px;
+ margin-left: -13px;
+ margin-top: -13px;
+ border: 13px solid transparent;
+ border-bottom-color: #2271b1;
+ display: block;
+ content: " ";
+}
+
+.wp-pointer-bottom .wp-pointer-arrow {
+ bottom: 0;
+ border-width: 13px 13px 0;
+ border-top-color: #c3c4c7;
+}
+
+.wp-pointer-bottom .wp-pointer-arrow-inner {
+ bottom: 1px;
+ margin-left: -13px;
+ margin-bottom: -13px;
+ border: 13px solid transparent;
+ border-top-color: #fff;
+ display: block;
+ content: " ";
+}
+
+/* rtl:ignore */
+.wp-pointer-left .wp-pointer-arrow {
+ left: 0;
+ border-width: 13px 13px 13px 0;
+ border-right-color: #c3c4c7;
+}
+
+/* rtl:ignore */
+.wp-pointer-left .wp-pointer-arrow-inner {
+ left: 1px;
+ margin-left: -13px;
+ margin-top: -13px;
+ border: 13px solid transparent;
+ border-right-color: #fff;
+ display: block;
+ content: " ";
+}
+
+/* rtl:ignore */
+.wp-pointer-right .wp-pointer-arrow {
+ right: 0;
+ border-width: 13px 0 13px 13px;
+ border-left-color: #c3c4c7;
+}
+
+/* rtl:ignore */
+.wp-pointer-right .wp-pointer-arrow-inner {
+ right: 1px;
+ margin-right: -13px;
+ margin-top: -13px;
+ border: 13px solid transparent;
+ border-left-color: #fff;
+ display: block;
+ content: " ";
+}
+
+.wp-pointer.arrow-bottom .wp-pointer-content {
+ margin-bottom: -45px;
+}
+
+.wp-pointer.arrow-bottom .wp-pointer-arrow {
+ top: 100%;
+ margin-top: -30px;
+}
+
+/* Disable pointers at responsive sizes */
+@media screen and (max-width: 782px) {
+ .wp-pointer {
+ display: none;
+ }
+}
diff --git a/static/wp-includes/css/wp-pointer.min.css b/static/wp-includes/css/wp-pointer.min.css
new file mode 100755
index 0000000..2630da7
--- /dev/null
+++ b/static/wp-includes/css/wp-pointer.min.css
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border:1px solid #c3c4c7;box-shadow:0 3px 6px rgba(0,0,0,.08)}.wp-pointer-content h3{position:relative;margin:-1px -1px 5px;padding:15px 18px 14px 60px;border:1px solid #2271b1;border-bottom:none;line-height:1.4;font-size:14px;color:#fff;background:#2271b1}.wp-pointer-content h3:before{background:#fff;border-radius:50%;color:#2271b1;content:"\f227";font:normal 20px/1.6 dashicons;position:absolute;top:8px;left:15px;speak:never;text-align:center;width:32px;height:32px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-pointer-content h4{margin:1.33em 20px 1em;font-size:1.15em}.wp-pointer-content p{padding:0 20px}.wp-pointer-buttons{margin:0;padding:5px 15px;overflow:auto}.wp-pointer-buttons a{float:right;display:inline-block;text-decoration:none}.wp-pointer-buttons a.close{padding-left:3px;position:relative}.wp-pointer-buttons a.close:before{background:0 0;color:#787c82;content:"\f153";display:block!important;font:normal 16px/1 dashicons;speak:never;margin:1px 0;text-align:center;-webkit-font-smoothing:antialiased!important;width:10px;height:100%;position:absolute;left:-15px;top:1px}.wp-pointer-buttons a.close:hover:before{color:#d63638}.wp-pointer-arrow,.wp-pointer-arrow-inner{position:absolute;width:0;height:0}.wp-pointer-arrow{z-index:10;width:0;height:0;border:0 solid transparent}.wp-pointer-arrow-inner{z-index:20}.wp-pointer-top,.wp-pointer-undefined{padding-top:13px}.wp-pointer-bottom{margin-top:-13px;padding-bottom:13px}.wp-pointer-left{padding-left:13px}.wp-pointer-right{margin-left:-13px;padding-right:13px}.wp-pointer-bottom .wp-pointer-arrow,.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{left:50px}.wp-pointer-left .wp-pointer-arrow,.wp-pointer-right .wp-pointer-arrow{top:50%;margin-top:-15px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{top:0;border-width:0 13px 13px;border-bottom-color:#2271b1}.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer-undefined .wp-pointer-arrow-inner{top:1px;margin-left:-13px;margin-top:-13px;border:13px solid transparent;border-bottom-color:#2271b1;display:block;content:" "}.wp-pointer-bottom .wp-pointer-arrow{bottom:0;border-width:13px 13px 0;border-top-color:#c3c4c7}.wp-pointer-bottom .wp-pointer-arrow-inner{bottom:1px;margin-left:-13px;margin-bottom:-13px;border:13px solid transparent;border-top-color:#fff;display:block;content:" "}.wp-pointer-left .wp-pointer-arrow{left:0;border-width:13px 13px 13px 0;border-right-color:#c3c4c7}.wp-pointer-left .wp-pointer-arrow-inner{left:1px;margin-left:-13px;margin-top:-13px;border:13px solid transparent;border-right-color:#fff;display:block;content:" "}.wp-pointer-right .wp-pointer-arrow{right:0;border-width:13px 0 13px 13px;border-left-color:#c3c4c7}.wp-pointer-right .wp-pointer-arrow-inner{right:1px;margin-right:-13px;margin-top:-13px;border:13px solid transparent;border-left-color:#fff;display:block;content:" "}.wp-pointer.arrow-bottom .wp-pointer-content{margin-bottom:-45px}.wp-pointer.arrow-bottom .wp-pointer-arrow{top:100%;margin-top:-30px}@media screen and (max-width:782px){.wp-pointer{display:none}}
\ No newline at end of file
diff --git a/static/wp-includes/js/admin-bar.js b/static/wp-includes/js/admin-bar.js
new file mode 100755
index 0000000..8cb94ea
--- /dev/null
+++ b/static/wp-includes/js/admin-bar.js
@@ -0,0 +1,453 @@
+/**
+ * @output wp-includes/js/admin-bar.js
+ */
+/**
+ * Admin bar with Vanilla JS, no external dependencies.
+ *
+ * @since 5.3.1
+ *
+ * @param {Object} document The document object.
+ * @param {Object} window The window object.
+ * @param {Object} navigator The navigator object.
+ *
+ * @return {void}
+ */
+( function( document, window, navigator ) {
+ document.addEventListener( 'DOMContentLoaded', function() {
+ var adminBar = document.getElementById( 'wpadminbar' ),
+ topMenuItems,
+ allMenuItems,
+ adminBarLogout,
+ adminBarSearchForm,
+ shortlink,
+ skipLink,
+ mobileEvent,
+ adminBarSearchInput,
+ i;
+
+ if ( ! adminBar || ! ( 'querySelectorAll' in adminBar ) ) {
+ return;
+ }
+
+ topMenuItems = adminBar.querySelectorAll( 'li.menupop' );
+ allMenuItems = adminBar.querySelectorAll( '.ab-item' );
+ adminBarLogout = document.getElementById( 'wp-admin-bar-logout' );
+ adminBarSearchForm = document.getElementById( 'adminbarsearch' );
+ shortlink = document.getElementById( 'wp-admin-bar-get-shortlink' );
+ skipLink = adminBar.querySelector( '.screen-reader-shortcut' );
+ mobileEvent = /Mobile\/.+Safari/.test( navigator.userAgent ) ? 'touchstart' : 'click';
+
+ // Remove nojs class after the DOM is loaded.
+ removeClass( adminBar, 'nojs' );
+
+ if ( 'ontouchstart' in window ) {
+ // Remove hover class when the user touches outside the menu items.
+ document.body.addEventListener( mobileEvent, function( e ) {
+ if ( ! getClosest( e.target, 'li.menupop' ) ) {
+ removeAllHoverClass( topMenuItems );
+ }
+ } );
+
+ // Add listener for menu items to toggle hover class by touches.
+ // Remove the callback later for better performance.
+ adminBar.addEventListener( 'touchstart', function bindMobileEvents() {
+ for ( var i = 0; i < topMenuItems.length; i++ ) {
+ topMenuItems[i].addEventListener( 'click', mobileHover.bind( null, topMenuItems ) );
+ }
+
+ adminBar.removeEventListener( 'touchstart', bindMobileEvents );
+ } );
+ }
+
+ // Scroll page to top when clicking on the admin bar.
+ adminBar.addEventListener( 'click', scrollToTop );
+
+ for ( i = 0; i < topMenuItems.length; i++ ) {
+ // Adds or removes the hover class based on the hover intent.
+ window.hoverintent(
+ topMenuItems[i],
+ addClass.bind( null, topMenuItems[i], 'hover' ),
+ removeClass.bind( null, topMenuItems[i], 'hover' )
+ ).options( {
+ timeout: 180
+ } );
+
+ // Toggle hover class if the enter key is pressed.
+ topMenuItems[i].addEventListener( 'keydown', toggleHoverIfEnter );
+ }
+
+ // Remove hover class if the escape key is pressed.
+ for ( i = 0; i < allMenuItems.length; i++ ) {
+ allMenuItems[i].addEventListener( 'keydown', removeHoverIfEscape );
+ }
+
+ if ( adminBarSearchForm ) {
+ adminBarSearchInput = document.getElementById( 'adminbar-search' );
+
+ // Adds the adminbar-focused class on focus.
+ adminBarSearchInput.addEventListener( 'focus', function() {
+ addClass( adminBarSearchForm, 'adminbar-focused' );
+ } );
+
+ // Removes the adminbar-focused class on blur.
+ adminBarSearchInput.addEventListener( 'blur', function() {
+ removeClass( adminBarSearchForm, 'adminbar-focused' );
+ } );
+ }
+
+ if ( skipLink ) {
+ // Focus the target of skip link after pressing Enter.
+ skipLink.addEventListener( 'keydown', focusTargetAfterEnter );
+ }
+
+ if ( shortlink ) {
+ shortlink.addEventListener( 'click', clickShortlink );
+ }
+
+ // Prevents the toolbar from covering up content when a hash is present in the URL.
+ if ( window.location.hash ) {
+ window.scrollBy( 0, -32 );
+ }
+
+ // Clear sessionStorage on logging out.
+ if ( adminBarLogout ) {
+ adminBarLogout.addEventListener( 'click', emptySessionStorage );
+ }
+ } );
+
+ /**
+ * Remove hover class for top level menu item when escape is pressed.
+ *
+ * @since 5.3.1
+ *
+ * @param {Event} event The keydown event.
+ */
+ function removeHoverIfEscape( event ) {
+ var wrapper;
+
+ if ( event.which !== 27 ) {
+ return;
+ }
+
+ wrapper = getClosest( event.target, '.menupop' );
+
+ if ( ! wrapper ) {
+ return;
+ }
+
+ wrapper.querySelector( '.menupop > .ab-item' ).focus();
+ removeClass( wrapper, 'hover' );
+ }
+
+ /**
+ * Toggle hover class for top level menu item when enter is pressed.
+ *
+ * @since 5.3.1
+ *
+ * @param {Event} event The keydown event.
+ */
+ function toggleHoverIfEnter( event ) {
+ var wrapper;
+
+ if ( event.which !== 13 ) {
+ return;
+ }
+
+ if ( !! getClosest( event.target, '.ab-sub-wrapper' ) ) {
+ return;
+ }
+
+ wrapper = getClosest( event.target, '.menupop' );
+
+ if ( ! wrapper ) {
+ return;
+ }
+
+ event.preventDefault();
+
+ if ( hasClass( wrapper, 'hover' ) ) {
+ removeClass( wrapper, 'hover' );
+ } else {
+ addClass( wrapper, 'hover' );
+ }
+ }
+
+ /**
+ * Focus the target of skip link after pressing Enter.
+ *
+ * @since 5.3.1
+ *
+ * @param {Event} event The keydown event.
+ */
+ function focusTargetAfterEnter( event ) {
+ var id, userAgent;
+
+ if ( event.which !== 13 ) {
+ return;
+ }
+
+ id = event.target.getAttribute( 'href' );
+ userAgent = navigator.userAgent.toLowerCase();
+
+ if ( userAgent.indexOf( 'applewebkit' ) > -1 && id && id.charAt( 0 ) === '#' ) {
+ setTimeout( function() {
+ var target = document.getElementById( id.replace( '#', '' ) );
+
+ if ( target ) {
+ target.setAttribute( 'tabIndex', '0' );
+ target.focus();
+ }
+ }, 100 );
+ }
+ }
+
+ /**
+ * Toogle hover class for mobile devices.
+ *
+ * @since 5.3.1
+ *
+ * @param {NodeList} topMenuItems All menu items.
+ * @param {Event} event The click event.
+ */
+ function mobileHover( topMenuItems, event ) {
+ var wrapper;
+
+ if ( !! getClosest( event.target, '.ab-sub-wrapper' ) ) {
+ return;
+ }
+
+ event.preventDefault();
+
+ wrapper = getClosest( event.target, '.menupop' );
+
+ if ( ! wrapper ) {
+ return;
+ }
+
+ if ( hasClass( wrapper, 'hover' ) ) {
+ removeClass( wrapper, 'hover' );
+ } else {
+ removeAllHoverClass( topMenuItems );
+ addClass( wrapper, 'hover' );
+ }
+ }
+
+ /**
+ * Handles the click on the Shortlink link in the adminbar.
+ *
+ * @since 3.1.0
+ * @since 5.3.1 Use querySelector to clean up the function.
+ *
+ * @param {Event} event The click event.
+ * @return {boolean} Returns false to prevent default click behavior.
+ */
+ function clickShortlink( event ) {
+ var wrapper = event.target.parentNode,
+ input;
+
+ if ( wrapper ) {
+ input = wrapper.querySelector( '.shortlink-input' );
+ }
+
+ if ( ! input ) {
+ return;
+ }
+
+ // (Old) IE doesn't support preventDefault, and does support returnValue.
+ if ( event.preventDefault ) {
+ event.preventDefault();
+ }
+
+ event.returnValue = false;
+
+ addClass( wrapper, 'selected' );
+
+ input.focus();
+ input.select();
+ input.onblur = function() {
+ removeClass( wrapper, 'selected' );
+ };
+
+ return false;
+ }
+
+ /**
+ * Clear sessionStorage on logging out.
+ *
+ * @since 5.3.1
+ */
+ function emptySessionStorage() {
+ if ( 'sessionStorage' in window ) {
+ try {
+ for ( var key in sessionStorage ) {
+ if ( key.indexOf( 'wp-autosave-' ) > -1 ) {
+ sessionStorage.removeItem( key );
+ }
+ }
+ } catch ( er ) {}
+ }
+ }
+
+ /**
+ * Check if element has class.
+ *
+ * @since 5.3.1
+ *
+ * @param {HTMLElement} element The HTML element.
+ * @param {string} className The class name.
+ * @return {boolean} Whether the element has the className.
+ */
+ function hasClass( element, className ) {
+ var classNames;
+
+ if ( ! element ) {
+ return false;
+ }
+
+ if ( element.classList && element.classList.contains ) {
+ return element.classList.contains( className );
+ } else if ( element.className ) {
+ classNames = element.className.split( ' ' );
+ return classNames.indexOf( className ) > -1;
+ }
+
+ return false;
+ }
+
+ /**
+ * Add class to an element.
+ *
+ * @since 5.3.1
+ *
+ * @param {HTMLElement} element The HTML element.
+ * @param {string} className The class name.
+ */
+ function addClass( element, className ) {
+ if ( ! element ) {
+ return;
+ }
+
+ if ( element.classList && element.classList.add ) {
+ element.classList.add( className );
+ } else if ( ! hasClass( element, className ) ) {
+ if ( element.className ) {
+ element.className += ' ';
+ }
+
+ element.className += className;
+ }
+ }
+
+ /**
+ * Remove class from an element.
+ *
+ * @since 5.3.1
+ *
+ * @param {HTMLElement} element The HTML element.
+ * @param {string} className The class name.
+ */
+ function removeClass( element, className ) {
+ var testName,
+ classes;
+
+ if ( ! element || ! hasClass( element, className ) ) {
+ return;
+ }
+
+ if ( element.classList && element.classList.remove ) {
+ element.classList.remove( className );
+ } else {
+ testName = ' ' + className + ' ';
+ classes = ' ' + element.className + ' ';
+
+ while ( classes.indexOf( testName ) > -1 ) {
+ classes = classes.replace( testName, '' );
+ }
+
+ element.className = classes.replace( /^[\s]+|[\s]+$/g, '' );
+ }
+ }
+
+ /**
+ * Remove hover class for all menu items.
+ *
+ * @since 5.3.1
+ *
+ * @param {NodeList} topMenuItems All menu items.
+ */
+ function removeAllHoverClass( topMenuItems ) {
+ if ( topMenuItems && topMenuItems.length ) {
+ for ( var i = 0; i < topMenuItems.length; i++ ) {
+ removeClass( topMenuItems[i], 'hover' );
+ }
+ }
+ }
+
+ /**
+ * Scrolls to the top of the page.
+ *
+ * @since 3.4.0
+ *
+ * @param {Event} event The Click event.
+ *
+ * @return {void}
+ */
+ function scrollToTop( event ) {
+ // Only scroll when clicking on the wpadminbar, not on menus or submenus.
+ if (
+ event.target &&
+ event.target.id !== 'wpadminbar' &&
+ event.target.id !== 'wp-admin-bar-top-secondary'
+ ) {
+ return;
+ }
+
+ try {
+ window.scrollTo( {
+ top: -32,
+ left: 0,
+ behavior: 'smooth'
+ } );
+ } catch ( er ) {
+ window.scrollTo( 0, -32 );
+ }
+ }
+
+ /**
+ * Get closest Element.
+ *
+ * @since 5.3.1
+ *
+ * @param {HTMLElement} el Element to get parent.
+ * @param {string} selector CSS selector to match.
+ */
+ function getClosest( el, selector ) {
+ if ( ! window.Element.prototype.matches ) {
+ // Polyfill from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches.
+ window.Element.prototype.matches =
+ window.Element.prototype.matchesSelector ||
+ window.Element.prototype.mozMatchesSelector ||
+ window.Element.prototype.msMatchesSelector ||
+ window.Element.prototype.oMatchesSelector ||
+ window.Element.prototype.webkitMatchesSelector ||
+ function( s ) {
+ var matches = ( this.document || this.ownerDocument ).querySelectorAll( s ),
+ i = matches.length;
+
+ while ( --i >= 0 && matches.item( i ) !== this ) { }
+
+ return i > -1;
+ };
+ }
+
+ // Get the closest matching elent.
+ for ( ; el && el !== document; el = el.parentNode ) {
+ if ( el.matches( selector ) ) {
+ return el;
+ }
+ }
+
+ return null;
+ }
+
+} )( document, window, navigator );
diff --git a/static/wp-includes/js/admin-bar.min.js b/static/wp-includes/js/admin-bar.min.js
new file mode 100755
index 0000000..5fb7196
--- /dev/null
+++ b/static/wp-includes/js/admin-bar.min.js
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+!function(l,u,d){function m(e){27===e.which&&(e=w(e.target,".menupop"))&&(e.querySelector(".menupop > .ab-item").focus(),y(e,"hover"))}function f(e){var t;13!==e.which||w(e.target,".ab-sub-wrapper")||(t=w(e.target,".menupop"))&&(e.preventDefault(),(o(t,"hover")?y:b)(t,"hover"))}function p(e){var t;13===e.which&&(t=e.target.getAttribute("href"),-1 lastTriggerSave ) {
+ editor.save();
+ lastTriggerSave = time;
+ }
+
+ data = {
+ post_id: $( '#post_ID' ).val() || 0,
+ post_type: $( '#post_type' ).val() || '',
+ post_author: $( '#post_author' ).val() || '',
+ post_title: $( '#title' ).val() || '',
+ content: $( '#content' ).val() || '',
+ excerpt: $( '#excerpt' ).val() || ''
+ };
+
+ if ( type === 'local' ) {
+ return data;
+ }
+
+ $( 'input[id^="in-category-"]:checked' ).each( function() {
+ cats.push( this.value );
+ });
+ data.catslist = cats.join(',');
+
+ if ( post_name = $( '#post_name' ).val() ) {
+ data.post_name = post_name;
+ }
+
+ if ( parent_id = $( '#parent_id' ).val() ) {
+ data.parent_id = parent_id;
+ }
+
+ if ( $( '#comment_status' ).prop( 'checked' ) ) {
+ data.comment_status = 'open';
+ }
+
+ if ( $( '#ping_status' ).prop( 'checked' ) ) {
+ data.ping_status = 'open';
+ }
+
+ if ( $( '#auto_draft' ).val() === '1' ) {
+ data.auto_draft = '1';
+ }
+
+ return data;
+ }
+
+ /**
+ * Concatenates the title, content and excerpt. This is used to track changes
+ * when auto-saving.
+ *
+ * @since 3.9.0
+ *
+ * @param {Object} postData The object containing the post data.
+ *
+ * @return {string} A concatenated string with title, content and excerpt.
+ */
+ function getCompareString( postData ) {
+ if ( typeof postData === 'object' ) {
+ return ( postData.post_title || '' ) + '::' + ( postData.content || '' ) + '::' + ( postData.excerpt || '' );
+ }
+
+ return ( $('#title').val() || '' ) + '::' + ( $('#content').val() || '' ) + '::' + ( $('#excerpt').val() || '' );
+ }
+
+ /**
+ * Disables save buttons.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function disableButtons() {
+ $document.trigger('autosave-disable-buttons');
+
+ // Re-enable 5 sec later. Just gives autosave a head start to avoid collisions.
+ setTimeout( enableButtons, 5000 );
+ }
+
+ /**
+ * Enables save buttons.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function enableButtons() {
+ $document.trigger( 'autosave-enable-buttons' );
+ }
+
+ /**
+ * Gets the content editor.
+ *
+ * @since 4.6.0
+ *
+ * @return {boolean|*} Returns either false if the editor is undefined,
+ * or the instance of the content editor.
+ */
+ function getEditor() {
+ return typeof tinymce !== 'undefined' && tinymce.get('content');
+ }
+
+ /**
+ * Autosave in localStorage.
+ *
+ * @since 3.9.0
+ *
+ * @return {
+ * {
+ * hasStorage: *,
+ * getSavedPostData: getSavedPostData,
+ * save: save,
+ * suspend: suspend,
+ * resume: resume
+ * }
+ * }
+ * The object with all functions for local storage autosave.
+ */
+ function autosaveLocal() {
+ var blog_id, post_id, hasStorage, intervalTimer,
+ lastCompareString,
+ isSuspended = false;
+
+ /**
+ * Checks if the browser supports sessionStorage and it's not disabled.
+ *
+ * @since 3.9.0
+ *
+ * @return {boolean} True if the sessionStorage is supported and enabled.
+ */
+ function checkStorage() {
+ var test = Math.random().toString(),
+ result = false;
+
+ try {
+ window.sessionStorage.setItem( 'wp-test', test );
+ result = window.sessionStorage.getItem( 'wp-test' ) === test;
+ window.sessionStorage.removeItem( 'wp-test' );
+ } catch(e) {}
+
+ hasStorage = result;
+ return result;
+ }
+
+ /**
+ * Initializes the local storage.
+ *
+ * @since 3.9.0
+ *
+ * @return {boolean|Object} False if no sessionStorage in the browser or an Object
+ * containing all postData for this blog.
+ */
+ function getStorage() {
+ var stored_obj = false;
+ // Separate local storage containers for each blog_id.
+ if ( hasStorage && blog_id ) {
+ stored_obj = sessionStorage.getItem( 'wp-autosave-' + blog_id );
+
+ if ( stored_obj ) {
+ stored_obj = JSON.parse( stored_obj );
+ } else {
+ stored_obj = {};
+ }
+ }
+
+ return stored_obj;
+ }
+
+ /**
+ * Sets the storage for this blog. Confirms that the data was saved
+ * successfully.
+ *
+ * @since 3.9.0
+ *
+ * @return {boolean} True if the data was saved successfully, false if it wasn't saved.
+ */
+ function setStorage( stored_obj ) {
+ var key;
+
+ if ( hasStorage && blog_id ) {
+ key = 'wp-autosave-' + blog_id;
+ sessionStorage.setItem( key, JSON.stringify( stored_obj ) );
+ return sessionStorage.getItem( key ) !== null;
+ }
+
+ return false;
+ }
+
+ /**
+ * Gets the saved post data for the current post.
+ *
+ * @since 3.9.0
+ *
+ * @return {boolean|Object} False if no storage or no data or the postData as an Object.
+ */
+ function getSavedPostData() {
+ var stored = getStorage();
+
+ if ( ! stored || ! post_id ) {
+ return false;
+ }
+
+ return stored[ 'post_' + post_id ] || false;
+ }
+
+ /**
+ * Sets (save or delete) post data in the storage.
+ *
+ * If stored_data evaluates to 'false' the storage key for the current post will be removed.
+ *
+ * @since 3.9.0
+ *
+ * @param {Object|boolean|null} stored_data The post data to store or null/false/empty to delete the key.
+ *
+ * @return {boolean} True if data is stored, false if data was removed.
+ */
+ function setData( stored_data ) {
+ var stored = getStorage();
+
+ if ( ! stored || ! post_id ) {
+ return false;
+ }
+
+ if ( stored_data ) {
+ stored[ 'post_' + post_id ] = stored_data;
+ } else if ( stored.hasOwnProperty( 'post_' + post_id ) ) {
+ delete stored[ 'post_' + post_id ];
+ } else {
+ return false;
+ }
+
+ return setStorage( stored );
+ }
+
+ /**
+ * Sets isSuspended to true.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function suspend() {
+ isSuspended = true;
+ }
+
+ /**
+ * Sets isSuspended to false.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function resume() {
+ isSuspended = false;
+ }
+
+ /**
+ * Saves post data for the current post.
+ *
+ * Runs on a 15 seconds interval, saves when there are differences in the post title or content.
+ * When the optional data is provided, updates the last saved post data.
+ *
+ * @since 3.9.0
+ *
+ * @param {Object} data The post data for saving, minimum 'post_title' and 'content'.
+ *
+ * @return {boolean} Returns true when data has been saved, otherwise it returns false.
+ */
+ function save( data ) {
+ var postData, compareString,
+ result = false;
+
+ if ( isSuspended || ! hasStorage ) {
+ return false;
+ }
+
+ if ( data ) {
+ postData = getSavedPostData() || {};
+ $.extend( postData, data );
+ } else {
+ postData = getPostData('local');
+ }
+
+ compareString = getCompareString( postData );
+
+ if ( typeof lastCompareString === 'undefined' ) {
+ lastCompareString = initialCompareString;
+ }
+
+ // If the content, title and excerpt did not change since the last save, don't save again.
+ if ( compareString === lastCompareString ) {
+ return false;
+ }
+
+ postData.save_time = ( new Date() ).getTime();
+ postData.status = $( '#post_status' ).val() || '';
+ result = setData( postData );
+
+ if ( result ) {
+ lastCompareString = compareString;
+ }
+
+ return result;
+ }
+
+ /**
+ * Initializes the auto save function.
+ *
+ * Checks whether the editor is active or not to use the editor events
+ * to autosave, or uses the values from the elements to autosave.
+ *
+ * Runs on DOM ready.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function run() {
+ post_id = $('#post_ID').val() || 0;
+
+ // Check if the local post data is different than the loaded post data.
+ if ( $( '#wp-content-wrap' ).hasClass( 'tmce-active' ) ) {
+
+ /*
+ * If TinyMCE loads first, check the post 1.5 seconds after it is ready.
+ * By this time the content has been loaded in the editor and 'saved' to the textarea.
+ * This prevents false positives.
+ */
+ $document.on( 'tinymce-editor-init.autosave', function() {
+ window.setTimeout( function() {
+ checkPost();
+ }, 1500 );
+ });
+ } else {
+ checkPost();
+ }
+
+ // Save every 15 seconds.
+ intervalTimer = window.setInterval( save, 15000 );
+
+ $( 'form#post' ).on( 'submit.autosave-local', function() {
+ var editor = getEditor(),
+ post_id = $('#post_ID').val() || 0;
+
+ if ( editor && ! editor.isHidden() ) {
+
+ // Last onSubmit event in the editor, needs to run after the content has been moved to the textarea.
+ editor.on( 'submit', function() {
+ save({
+ post_title: $( '#title' ).val() || '',
+ content: $( '#content' ).val() || '',
+ excerpt: $( '#excerpt' ).val() || ''
+ });
+ });
+ } else {
+ save({
+ post_title: $( '#title' ).val() || '',
+ content: $( '#content' ).val() || '',
+ excerpt: $( '#excerpt' ).val() || ''
+ });
+ }
+
+ var secure = ( 'https:' === window.location.protocol );
+ wpCookies.set( 'wp-saving-post', post_id + '-check', 24 * 60 * 60, false, false, secure );
+ });
+ }
+
+ /**
+ * Compares 2 strings. Removes whitespaces in the strings before comparing them.
+ *
+ * @since 3.9.0
+ *
+ * @param {string} str1 The first string.
+ * @param {string} str2 The second string.
+ * @return {boolean} True if the strings are the same.
+ */
+ function compare( str1, str2 ) {
+ function removeSpaces( string ) {
+ return string.toString().replace(/[\x20\t\r\n\f]+/g, '');
+ }
+
+ return ( removeSpaces( str1 || '' ) === removeSpaces( str2 || '' ) );
+ }
+
+ /**
+ * Checks if the saved data for the current post (if any) is different than the
+ * loaded post data on the screen.
+ *
+ * Shows a standard message letting the user restore the post data if different.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function checkPost() {
+ var content, post_title, excerpt, $notice,
+ postData = getSavedPostData(),
+ cookie = wpCookies.get( 'wp-saving-post' ),
+ $newerAutosaveNotice = $( '#has-newer-autosave' ).parent( '.notice' ),
+ $headerEnd = $( '.wp-header-end' );
+
+ if ( cookie === post_id + '-saved' ) {
+ wpCookies.remove( 'wp-saving-post' );
+ // The post was saved properly, remove old data and bail.
+ setData( false );
+ return;
+ }
+
+ if ( ! postData ) {
+ return;
+ }
+
+ content = $( '#content' ).val() || '';
+ post_title = $( '#title' ).val() || '';
+ excerpt = $( '#excerpt' ).val() || '';
+
+ if ( compare( content, postData.content ) && compare( post_title, postData.post_title ) &&
+ compare( excerpt, postData.excerpt ) ) {
+
+ return;
+ }
+
+ /*
+ * If '.wp-header-end' is found, append the notices after it otherwise
+ * after the first h1 or h2 heading found within the main content.
+ */
+ if ( ! $headerEnd.length ) {
+ $headerEnd = $( '.wrap h1, .wrap h2' ).first();
+ }
+
+ $notice = $( '#local-storage-notice' )
+ .insertAfter( $headerEnd )
+ .addClass( 'notice-warning' );
+
+ if ( $newerAutosaveNotice.length ) {
+
+ // If there is a "server" autosave notice, hide it.
+ // The data in the session storage is either the same or newer.
+ $newerAutosaveNotice.slideUp( 150, function() {
+ $notice.slideDown( 150 );
+ });
+ } else {
+ $notice.slideDown( 200 );
+ }
+
+ $notice.find( '.restore-backup' ).on( 'click.autosave-local', function() {
+ restorePost( postData );
+ $notice.fadeTo( 250, 0, function() {
+ $notice.slideUp( 150 );
+ });
+ });
+ }
+
+ /**
+ * Restores the current title, content and excerpt from postData.
+ *
+ * @since 3.9.0
+ *
+ * @param {Object} postData The object containing all post data.
+ *
+ * @return {boolean} True if the post is restored.
+ */
+ function restorePost( postData ) {
+ var editor;
+
+ if ( postData ) {
+ // Set the last saved data.
+ lastCompareString = getCompareString( postData );
+
+ if ( $( '#title' ).val() !== postData.post_title ) {
+ $( '#title' ).trigger( 'focus' ).val( postData.post_title || '' );
+ }
+
+ $( '#excerpt' ).val( postData.excerpt || '' );
+ editor = getEditor();
+
+ if ( editor && ! editor.isHidden() && typeof switchEditors !== 'undefined' ) {
+ if ( editor.settings.wpautop && postData.content ) {
+ postData.content = switchEditors.wpautop( postData.content );
+ }
+
+ // Make sure there's an undo level in the editor.
+ editor.undoManager.transact( function() {
+ editor.setContent( postData.content || '' );
+ editor.nodeChanged();
+ });
+ } else {
+
+ // Make sure the Text editor is selected.
+ $( '#content-html' ).trigger( 'click' );
+ $( '#content' ).trigger( 'focus' );
+
+ // Using document.execCommand() will let the user undo.
+ document.execCommand( 'selectAll' );
+ document.execCommand( 'insertText', false, postData.content || '' );
+ }
+
+ return true;
+ }
+
+ return false;
+ }
+
+ blog_id = typeof window.autosaveL10n !== 'undefined' && window.autosaveL10n.blog_id;
+
+ /*
+ * Check if the browser supports sessionStorage and it's not disabled,
+ * then initialize and run checkPost().
+ * Don't run if the post type supports neither 'editor' (textarea#content) nor 'excerpt'.
+ */
+ if ( checkStorage() && blog_id && ( $('#content').length || $('#excerpt').length ) ) {
+ $( run );
+ }
+
+ return {
+ hasStorage: hasStorage,
+ getSavedPostData: getSavedPostData,
+ save: save,
+ suspend: suspend,
+ resume: resume
+ };
+ }
+
+ /**
+ * Auto saves the post on the server.
+ *
+ * @since 3.9.0
+ *
+ * @return {Object} {
+ * {
+ * tempBlockSave: tempBlockSave,
+ * triggerSave: triggerSave,
+ * postChanged: postChanged,
+ * suspend: suspend,
+ * resume: resume
+ * }
+ * } The object all functions for autosave.
+ */
+ function autosaveServer() {
+ var _blockSave, _blockSaveTimer, previousCompareString, lastCompareString,
+ nextRun = 0,
+ isSuspended = false;
+
+
+ /**
+ * Blocks saving for the next 10 seconds.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function tempBlockSave() {
+ _blockSave = true;
+ window.clearTimeout( _blockSaveTimer );
+
+ _blockSaveTimer = window.setTimeout( function() {
+ _blockSave = false;
+ }, 10000 );
+ }
+
+ /**
+ * Sets isSuspended to true.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function suspend() {
+ isSuspended = true;
+ }
+
+ /**
+ * Sets isSuspended to false.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function resume() {
+ isSuspended = false;
+ }
+
+ /**
+ * Triggers the autosave with the post data.
+ *
+ * @since 3.9.0
+ *
+ * @param {Object} data The post data.
+ *
+ * @return {void}
+ */
+ function response( data ) {
+ _schedule();
+ _blockSave = false;
+ lastCompareString = previousCompareString;
+ previousCompareString = '';
+
+ $document.trigger( 'after-autosave', [data] );
+ enableButtons();
+
+ if ( data.success ) {
+ // No longer an auto-draft.
+ $( '#auto_draft' ).val('');
+ }
+ }
+
+ /**
+ * Saves immediately.
+ *
+ * Resets the timing and tells heartbeat to connect now.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function triggerSave() {
+ nextRun = 0;
+ wp.heartbeat.connectNow();
+ }
+
+ /**
+ * Checks if the post content in the textarea has changed since page load.
+ *
+ * This also happens when TinyMCE is active and editor.save() is triggered by
+ * wp.autosave.getPostData().
+ *
+ * @since 3.9.0
+ *
+ * @return {boolean} True if the post has been changed.
+ */
+ function postChanged() {
+ var changed = false;
+
+ // If there are TinyMCE instances, loop through them.
+ if ( window.tinymce ) {
+ window.tinymce.each( [ 'content', 'excerpt' ], function( field ) {
+ var editor = window.tinymce.get( field );
+
+ if ( ! editor || editor.isHidden() ) {
+ if ( ( $( '#' + field ).val() || '' ) !== initialCompareData[ field ] ) {
+ changed = true;
+ // Break.
+ return false;
+ }
+ } else if ( editor.isDirty() ) {
+ changed = true;
+ return false;
+ }
+ } );
+
+ if ( ( $( '#title' ).val() || '' ) !== initialCompareData.post_title ) {
+ changed = true;
+ }
+
+ return changed;
+ }
+
+ return getCompareString() !== initialCompareString;
+ }
+
+ /**
+ * Checks if the post can be saved or not.
+ *
+ * If the post hasn't changed or it cannot be updated,
+ * because the autosave is blocked or suspended, the function returns false.
+ *
+ * @since 3.9.0
+ *
+ * @return {Object} Returns the post data.
+ */
+ function save() {
+ var postData, compareString;
+
+ // window.autosave() used for back-compat.
+ if ( isSuspended || _blockSave || ! window.autosave() ) {
+ return false;
+ }
+
+ if ( ( new Date() ).getTime() < nextRun ) {
+ return false;
+ }
+
+ postData = getPostData();
+ compareString = getCompareString( postData );
+
+ // First check.
+ if ( typeof lastCompareString === 'undefined' ) {
+ lastCompareString = initialCompareString;
+ }
+
+ // No change.
+ if ( compareString === lastCompareString ) {
+ return false;
+ }
+
+ previousCompareString = compareString;
+ tempBlockSave();
+ disableButtons();
+
+ $document.trigger( 'wpcountwords', [ postData.content ] )
+ .trigger( 'before-autosave', [ postData ] );
+
+ postData._wpnonce = $( '#_wpnonce' ).val() || '';
+
+ return postData;
+ }
+
+ /**
+ * Sets the next run, based on the autosave interval.
+ *
+ * @private
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ function _schedule() {
+ nextRun = ( new Date() ).getTime() + ( autosaveL10n.autosaveInterval * 1000 ) || 60000;
+ }
+
+ /**
+ * Sets the autosaveData on the autosave heartbeat.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ $( function() {
+ _schedule();
+ }).on( 'heartbeat-send.autosave', function( event, data ) {
+ var autosaveData = save();
+
+ if ( autosaveData ) {
+ data.wp_autosave = autosaveData;
+ }
+
+ /**
+ * Triggers the autosave of the post with the autosave data on the autosave
+ * heartbeat.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ }).on( 'heartbeat-tick.autosave', function( event, data ) {
+ if ( data.wp_autosave ) {
+ response( data.wp_autosave );
+ }
+ /**
+ * Disables buttons and throws a notice when the connection is lost.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ }).on( 'heartbeat-connection-lost.autosave', function( event, error, status ) {
+
+ // When connection is lost, keep user from submitting changes.
+ if ( 'timeout' === error || 603 === status ) {
+ var $notice = $('#lost-connection-notice');
+
+ if ( ! wp.autosave.local.hasStorage ) {
+ $notice.find('.hide-if-no-sessionstorage').hide();
+ }
+
+ $notice.show();
+ disableButtons();
+ }
+
+ /**
+ * Enables buttons when the connection is restored.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ }).on( 'heartbeat-connection-restored.autosave', function() {
+ $('#lost-connection-notice').hide();
+ enableButtons();
+ });
+
+ return {
+ tempBlockSave: tempBlockSave,
+ triggerSave: triggerSave,
+ postChanged: postChanged,
+ suspend: suspend,
+ resume: resume
+ };
+ }
+
+ /**
+ * Sets the autosave time out.
+ *
+ * Wait for TinyMCE to initialize plus 1 second. for any external css to finish loading,
+ * then save to the textarea before setting initialCompareString.
+ * This avoids any insignificant differences between the initial textarea content and the content
+ * extracted from the editor.
+ *
+ * @since 3.9.0
+ *
+ * @return {void}
+ */
+ $( function() {
+ // Set the initial compare string in case TinyMCE is not used or not loaded first.
+ setInitialCompare();
+ }).on( 'tinymce-editor-init.autosave', function( event, editor ) {
+ // Reset the initialCompare data after the TinyMCE instances have been initialized.
+ if ( 'content' === editor.id || 'excerpt' === editor.id ) {
+ window.setTimeout( function() {
+ editor.save();
+ setInitialCompare();
+ }, 1000 );
+ }
+ });
+
+ return {
+ getPostData: getPostData,
+ getCompareString: getCompareString,
+ disableButtons: disableButtons,
+ enableButtons: enableButtons,
+ local: autosaveLocal(),
+ server: autosaveServer()
+ };
+ }
+
+ /** @namespace wp */
+ window.wp = window.wp || {};
+ window.wp.autosave = autosave();
+
+}( jQuery, window ));
diff --git a/static/wp-includes/js/autosave.min.js b/static/wp-includes/js/autosave.min.js
new file mode 100755
index 0000000..206acb3
--- /dev/null
+++ b/static/wp-includes/js/autosave.min.js
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+window.autosave=function(){return!0},function(c,a){function n(){T={post_title:c("#title").val()||"",content:c("#content").val()||"",excerpt:c("#excerpt").val()||""},w=r(T)}function i(t){var e=(new Date).getTime(),n=[],o=u();return o&&o.isDirty()&&!o.isHidden()&&H this.length) at = this.length;
+ if (at < 0) at += this.length + 1;
+
+ var set = [];
+ var toAdd = [];
+ var toMerge = [];
+ var toRemove = [];
+ var modelMap = {};
+
+ var add = options.add;
+ var merge = options.merge;
+ var remove = options.remove;
+
+ var sort = false;
+ var sortable = this.comparator && at == null && options.sort !== false;
+ var sortAttr = _.isString(this.comparator) ? this.comparator : null;
+
+ // Turn bare objects into model references, and prevent invalid models
+ // from being added.
+ var model, i;
+ for (i = 0; i < models.length; i++) {
+ model = models[i];
+
+ // If a duplicate is found, prevent it from being added and
+ // optionally merge it into the existing model.
+ var existing = this.get(model);
+ if (existing) {
+ if (merge && model !== existing) {
+ var attrs = this._isModel(model) ? model.attributes : model;
+ if (options.parse) attrs = existing.parse(attrs, options);
+ existing.set(attrs, options);
+ toMerge.push(existing);
+ if (sortable && !sort) sort = existing.hasChanged(sortAttr);
+ }
+ if (!modelMap[existing.cid]) {
+ modelMap[existing.cid] = true;
+ set.push(existing);
+ }
+ models[i] = existing;
+
+ // If this is a new, valid model, push it to the `toAdd` list.
+ } else if (add) {
+ model = models[i] = this._prepareModel(model, options);
+ if (model) {
+ toAdd.push(model);
+ this._addReference(model, options);
+ modelMap[model.cid] = true;
+ set.push(model);
+ }
+ }
+ }
+
+ // Remove stale models.
+ if (remove) {
+ for (i = 0; i < this.length; i++) {
+ model = this.models[i];
+ if (!modelMap[model.cid]) toRemove.push(model);
+ }
+ if (toRemove.length) this._removeModels(toRemove, options);
+ }
+
+ // See if sorting is needed, update `length` and splice in new models.
+ var orderChanged = false;
+ var replace = !sortable && add && remove;
+ if (set.length && replace) {
+ orderChanged = this.length !== set.length || _.some(this.models, function(m, index) {
+ return m !== set[index];
+ });
+ this.models.length = 0;
+ splice(this.models, set, 0);
+ this.length = this.models.length;
+ } else if (toAdd.length) {
+ if (sortable) sort = true;
+ splice(this.models, toAdd, at == null ? this.length : at);
+ this.length = this.models.length;
+ }
+
+ // Silently sort the collection if appropriate.
+ if (sort) this.sort({silent: true});
+
+ // Unless silenced, it's time to fire all appropriate add/sort/update events.
+ if (!options.silent) {
+ for (i = 0; i < toAdd.length; i++) {
+ if (at != null) options.index = at + i;
+ model = toAdd[i];
+ model.trigger('add', model, this, options);
+ }
+ if (sort || orderChanged) this.trigger('sort', this, options);
+ if (toAdd.length || toRemove.length || toMerge.length) {
+ options.changes = {
+ added: toAdd,
+ removed: toRemove,
+ merged: toMerge
+ };
+ this.trigger('update', this, options);
+ }
+ }
+
+ // Return the added (or merged) model (or models).
+ return singular ? models[0] : models;
+ },
+
+ // When you have more items than you want to add or remove individually,
+ // you can reset the entire set with a new list of models, without firing
+ // any granular `add` or `remove` events. Fires `reset` when finished.
+ // Useful for bulk operations and optimizations.
+ reset: function(models, options) {
+ options = options ? _.clone(options) : {};
+ for (var i = 0; i < this.models.length; i++) {
+ this._removeReference(this.models[i], options);
+ }
+ options.previousModels = this.models;
+ this._reset();
+ models = this.add(models, _.extend({silent: true}, options));
+ if (!options.silent) this.trigger('reset', this, options);
+ return models;
+ },
+
+ // Add a model to the end of the collection.
+ push: function(model, options) {
+ return this.add(model, _.extend({at: this.length}, options));
+ },
+
+ // Remove a model from the end of the collection.
+ pop: function(options) {
+ var model = this.at(this.length - 1);
+ return this.remove(model, options);
+ },
+
+ // Add a model to the beginning of the collection.
+ unshift: function(model, options) {
+ return this.add(model, _.extend({at: 0}, options));
+ },
+
+ // Remove a model from the beginning of the collection.
+ shift: function(options) {
+ var model = this.at(0);
+ return this.remove(model, options);
+ },
+
+ // Slice out a sub-array of models from the collection.
+ slice: function() {
+ return slice.apply(this.models, arguments);
+ },
+
+ // Get a model from the set by id, cid, model object with id or cid
+ // properties, or an attributes object that is transformed through modelId.
+ get: function(obj) {
+ if (obj == null) return void 0;
+ return this._byId[obj] ||
+ this._byId[this.modelId(this._isModel(obj) ? obj.attributes : obj, obj.idAttribute)] ||
+ obj.cid && this._byId[obj.cid];
+ },
+
+ // Returns `true` if the model is in the collection.
+ has: function(obj) {
+ return this.get(obj) != null;
+ },
+
+ // Get the model at the given index.
+ at: function(index) {
+ if (index < 0) index += this.length;
+ return this.models[index];
+ },
+
+ // Return models with matching attributes. Useful for simple cases of
+ // `filter`.
+ where: function(attrs, first) {
+ return this[first ? 'find' : 'filter'](attrs);
+ },
+
+ // Return the first model with matching attributes. Useful for simple cases
+ // of `find`.
+ findWhere: function(attrs) {
+ return this.where(attrs, true);
+ },
+
+ // Force the collection to re-sort itself. You don't need to call this under
+ // normal circumstances, as the set will maintain sort order as each item
+ // is added.
+ sort: function(options) {
+ var comparator = this.comparator;
+ if (!comparator) throw new Error('Cannot sort a set without a comparator');
+ options || (options = {});
+
+ var length = comparator.length;
+ if (_.isFunction(comparator)) comparator = comparator.bind(this);
+
+ // Run sort based on type of `comparator`.
+ if (length === 1 || _.isString(comparator)) {
+ this.models = this.sortBy(comparator);
+ } else {
+ this.models.sort(comparator);
+ }
+ if (!options.silent) this.trigger('sort', this, options);
+ return this;
+ },
+
+ // Pluck an attribute from each model in the collection.
+ pluck: function(attr) {
+ return this.map(attr + '');
+ },
+
+ // Fetch the default set of models for this collection, resetting the
+ // collection when they arrive. If `reset: true` is passed, the response
+ // data will be passed through the `reset` method instead of `set`.
+ fetch: function(options) {
+ options = _.extend({parse: true}, options);
+ var success = options.success;
+ var collection = this;
+ options.success = function(resp) {
+ var method = options.reset ? 'reset' : 'set';
+ collection[method](resp, options);
+ if (success) success.call(options.context, collection, resp, options);
+ collection.trigger('sync', collection, resp, options);
+ };
+ wrapError(this, options);
+ return this.sync('read', this, options);
+ },
+
+ // Create a new instance of a model in this collection. Add the model to the
+ // collection immediately, unless `wait: true` is passed, in which case we
+ // wait for the server to agree.
+ create: function(model, options) {
+ options = options ? _.clone(options) : {};
+ var wait = options.wait;
+ model = this._prepareModel(model, options);
+ if (!model) return false;
+ if (!wait) this.add(model, options);
+ var collection = this;
+ var success = options.success;
+ options.success = function(m, resp, callbackOpts) {
+ if (wait) collection.add(m, callbackOpts);
+ if (success) success.call(callbackOpts.context, m, resp, callbackOpts);
+ };
+ model.save(null, options);
+ return model;
+ },
+
+ // **parse** converts a response into a list of models to be added to the
+ // collection. The default implementation is just to pass it through.
+ parse: function(resp, options) {
+ return resp;
+ },
+
+ // Create a new collection with an identical list of models as this one.
+ clone: function() {
+ return new this.constructor(this.models, {
+ model: this.model,
+ comparator: this.comparator
+ });
+ },
+
+ // Define how to uniquely identify models in the collection.
+ modelId: function(attrs, idAttribute) {
+ return attrs[idAttribute || this.model.prototype.idAttribute || 'id'];
+ },
+
+ // Get an iterator of all models in this collection.
+ values: function() {
+ return new CollectionIterator(this, ITERATOR_VALUES);
+ },
+
+ // Get an iterator of all model IDs in this collection.
+ keys: function() {
+ return new CollectionIterator(this, ITERATOR_KEYS);
+ },
+
+ // Get an iterator of all [ID, model] tuples in this collection.
+ entries: function() {
+ return new CollectionIterator(this, ITERATOR_KEYSVALUES);
+ },
+
+ // Private method to reset all internal state. Called when the collection
+ // is first initialized or reset.
+ _reset: function() {
+ this.length = 0;
+ this.models = [];
+ this._byId = {};
+ },
+
+ // Prepare a hash of attributes (or other model) to be added to this
+ // collection.
+ _prepareModel: function(attrs, options) {
+ if (this._isModel(attrs)) {
+ if (!attrs.collection) attrs.collection = this;
+ return attrs;
+ }
+ options = options ? _.clone(options) : {};
+ options.collection = this;
+
+ var model;
+ if (this.model.prototype) {
+ model = new this.model(attrs, options);
+ } else {
+ // ES class methods didn't have prototype
+ model = this.model(attrs, options);
+ }
+
+ if (!model.validationError) return model;
+ this.trigger('invalid', this, model.validationError, options);
+ return false;
+ },
+
+ // Internal method called by both remove and set.
+ _removeModels: function(models, options) {
+ var removed = [];
+ for (var i = 0; i < models.length; i++) {
+ var model = this.get(models[i]);
+ if (!model) continue;
+
+ var index = this.indexOf(model);
+ this.models.splice(index, 1);
+ this.length--;
+
+ // Remove references before triggering 'remove' event to prevent an
+ // infinite loop. #3693
+ delete this._byId[model.cid];
+ var id = this.modelId(model.attributes, model.idAttribute);
+ if (id != null) delete this._byId[id];
+
+ if (!options.silent) {
+ options.index = index;
+ model.trigger('remove', model, this, options);
+ }
+
+ removed.push(model);
+ this._removeReference(model, options);
+ }
+ return removed;
+ },
+
+ // Method for checking whether an object should be considered a model for
+ // the purposes of adding to the collection.
+ _isModel: function(model) {
+ return model instanceof Model;
+ },
+
+ // Internal method to create a model's ties to a collection.
+ _addReference: function(model, options) {
+ this._byId[model.cid] = model;
+ var id = this.modelId(model.attributes, model.idAttribute);
+ if (id != null) this._byId[id] = model;
+ model.on('all', this._onModelEvent, this);
+ },
+
+ // Internal method to sever a model's ties to a collection.
+ _removeReference: function(model, options) {
+ delete this._byId[model.cid];
+ var id = this.modelId(model.attributes, model.idAttribute);
+ if (id != null) delete this._byId[id];
+ if (this === model.collection) delete model.collection;
+ model.off('all', this._onModelEvent, this);
+ },
+
+ // Internal method called every time a model in the set fires an event.
+ // Sets need to update their indexes when models change ids. All other
+ // events simply proxy through. "add" and "remove" events that originate
+ // in other collections are ignored.
+ _onModelEvent: function(event, model, collection, options) {
+ if (model) {
+ if ((event === 'add' || event === 'remove') && collection !== this) return;
+ if (event === 'destroy') this.remove(model, options);
+ if (event === 'changeId') {
+ var prevId = this.modelId(model.previousAttributes(), model.idAttribute);
+ var id = this.modelId(model.attributes, model.idAttribute);
+ if (prevId != null) delete this._byId[prevId];
+ if (id != null) this._byId[id] = model;
+ }
+ }
+ this.trigger.apply(this, arguments);
+ }
+
+ });
+
+ // Defining an @@iterator method implements JavaScript's Iterable protocol.
+ // In modern ES2015 browsers, this value is found at Symbol.iterator.
+ /* global Symbol */
+ var $$iterator = typeof Symbol === 'function' && Symbol.iterator;
+ if ($$iterator) {
+ Collection.prototype[$$iterator] = Collection.prototype.values;
+ }
+
+ // CollectionIterator
+ // ------------------
+
+ // A CollectionIterator implements JavaScript's Iterator protocol, allowing the
+ // use of `for of` loops in modern browsers and interoperation between
+ // Backbone.Collection and other JavaScript functions and third-party libraries
+ // which can operate on Iterables.
+ var CollectionIterator = function(collection, kind) {
+ this._collection = collection;
+ this._kind = kind;
+ this._index = 0;
+ };
+
+ // This "enum" defines the three possible kinds of values which can be emitted
+ // by a CollectionIterator that correspond to the values(), keys() and entries()
+ // methods on Collection, respectively.
+ var ITERATOR_VALUES = 1;
+ var ITERATOR_KEYS = 2;
+ var ITERATOR_KEYSVALUES = 3;
+
+ // All Iterators should themselves be Iterable.
+ if ($$iterator) {
+ CollectionIterator.prototype[$$iterator] = function() {
+ return this;
+ };
+ }
+
+ CollectionIterator.prototype.next = function() {
+ if (this._collection) {
+
+ // Only continue iterating if the iterated collection is long enough.
+ if (this._index < this._collection.length) {
+ var model = this._collection.at(this._index);
+ this._index++;
+
+ // Construct a value depending on what kind of values should be iterated.
+ var value;
+ if (this._kind === ITERATOR_VALUES) {
+ value = model;
+ } else {
+ var id = this._collection.modelId(model.attributes, model.idAttribute);
+ if (this._kind === ITERATOR_KEYS) {
+ value = id;
+ } else { // ITERATOR_KEYSVALUES
+ value = [id, model];
+ }
+ }
+ return {value: value, done: false};
+ }
+
+ // Once exhausted, remove the reference to the collection so future
+ // calls to the next method always return done.
+ this._collection = void 0;
+ }
+
+ return {value: void 0, done: true};
+ };
+
+ // Backbone.View
+ // -------------
+
+ // Backbone Views are almost more convention than they are actual code. A View
+ // is simply a JavaScript object that represents a logical chunk of UI in the
+ // DOM. This might be a single item, an entire list, a sidebar or panel, or
+ // even the surrounding frame which wraps your whole app. Defining a chunk of
+ // UI as a **View** allows you to define your DOM events declaratively, without
+ // having to worry about render order ... and makes it easy for the view to
+ // react to specific changes in the state of your models.
+
+ // Creating a Backbone.View creates its initial element outside of the DOM,
+ // if an existing element is not provided...
+ var View = Backbone.View = function(options) {
+ this.cid = _.uniqueId('view');
+ this.preinitialize.apply(this, arguments);
+ _.extend(this, _.pick(options, viewOptions));
+ this._ensureElement();
+ this.initialize.apply(this, arguments);
+ };
+
+ // Cached regex to split keys for `delegate`.
+ var delegateEventSplitter = /^(\S+)\s*(.*)$/;
+
+ // List of view options to be set as properties.
+ var viewOptions = ['model', 'collection', 'el', 'id', 'attributes', 'className', 'tagName', 'events'];
+
+ // Set up all inheritable **Backbone.View** properties and methods.
+ _.extend(View.prototype, Events, {
+
+ // The default `tagName` of a View's element is `"div"`.
+ tagName: 'div',
+
+ // jQuery delegate for element lookup, scoped to DOM elements within the
+ // current view. This should be preferred to global lookups where possible.
+ $: function(selector) {
+ return this.$el.find(selector);
+ },
+
+ // preinitialize is an empty function by default. You can override it with a function
+ // or object. preinitialize will run before any instantiation logic is run in the View
+ preinitialize: function(){},
+
+ // Initialize is an empty function by default. Override it with your own
+ // initialization logic.
+ initialize: function(){},
+
+ // **render** is the core function that your view should override, in order
+ // to populate its element (`this.el`), with the appropriate HTML. The
+ // convention is for **render** to always return `this`.
+ render: function() {
+ return this;
+ },
+
+ // Remove this view by taking the element out of the DOM, and removing any
+ // applicable Backbone.Events listeners.
+ remove: function() {
+ this._removeElement();
+ this.stopListening();
+ return this;
+ },
+
+ // Remove this view's element from the document and all event listeners
+ // attached to it. Exposed for subclasses using an alternative DOM
+ // manipulation API.
+ _removeElement: function() {
+ this.$el.remove();
+ },
+
+ // Change the view's element (`this.el` property) and re-delegate the
+ // view's events on the new element.
+ setElement: function(element) {
+ this.undelegateEvents();
+ this._setElement(element);
+ this.delegateEvents();
+ return this;
+ },
+
+ // Creates the `this.el` and `this.$el` references for this view using the
+ // given `el`. `el` can be a CSS selector or an HTML string, a jQuery
+ // context or an element. Subclasses can override this to utilize an
+ // alternative DOM manipulation API and are only required to set the
+ // `this.el` property.
+ _setElement: function(el) {
+ this.$el = el instanceof Backbone.$ ? el : Backbone.$(el);
+ this.el = this.$el[0];
+ },
+
+ // Set callbacks, where `this.events` is a hash of
+ //
+ // *{"event selector": "callback"}*
+ //
+ // {
+ // 'mousedown .title': 'edit',
+ // 'click .button': 'save',
+ // 'click .open': function(e) { ... }
+ // }
+ //
+ // pairs. Callbacks will be bound to the view, with `this` set properly.
+ // Uses event delegation for efficiency.
+ // Omitting the selector binds the event to `this.el`.
+ delegateEvents: function(events) {
+ events || (events = _.result(this, 'events'));
+ if (!events) return this;
+ this.undelegateEvents();
+ for (var key in events) {
+ var method = events[key];
+ if (!_.isFunction(method)) method = this[method];
+ if (!method) continue;
+ var match = key.match(delegateEventSplitter);
+ this.delegate(match[1], match[2], method.bind(this));
+ }
+ return this;
+ },
+
+ // Add a single event listener to the view's element (or a child element
+ // using `selector`). This only works for delegate-able events: not `focus`,
+ // `blur`, and not `change`, `submit`, and `reset` in Internet Explorer.
+ delegate: function(eventName, selector, listener) {
+ this.$el.on(eventName + '.delegateEvents' + this.cid, selector, listener);
+ return this;
+ },
+
+ // Clears all callbacks previously bound to the view by `delegateEvents`.
+ // You usually don't need to use this, but may wish to if you have multiple
+ // Backbone views attached to the same DOM element.
+ undelegateEvents: function() {
+ if (this.$el) this.$el.off('.delegateEvents' + this.cid);
+ return this;
+ },
+
+ // A finer-grained `undelegateEvents` for removing a single delegated event.
+ // `selector` and `listener` are both optional.
+ undelegate: function(eventName, selector, listener) {
+ this.$el.off(eventName + '.delegateEvents' + this.cid, selector, listener);
+ return this;
+ },
+
+ // Produces a DOM element to be assigned to your view. Exposed for
+ // subclasses using an alternative DOM manipulation API.
+ _createElement: function(tagName) {
+ return document.createElement(tagName);
+ },
+
+ // Ensure that the View has a DOM element to render into.
+ // If `this.el` is a string, pass it through `$()`, take the first
+ // matching element, and re-assign it to `el`. Otherwise, create
+ // an element from the `id`, `className` and `tagName` properties.
+ _ensureElement: function() {
+ if (!this.el) {
+ var attrs = _.extend({}, _.result(this, 'attributes'));
+ if (this.id) attrs.id = _.result(this, 'id');
+ if (this.className) attrs['class'] = _.result(this, 'className');
+ this.setElement(this._createElement(_.result(this, 'tagName')));
+ this._setAttributes(attrs);
+ } else {
+ this.setElement(_.result(this, 'el'));
+ }
+ },
+
+ // Set attributes from a hash on this view's element. Exposed for
+ // subclasses using an alternative DOM manipulation API.
+ _setAttributes: function(attributes) {
+ this.$el.attr(attributes);
+ }
+
+ });
+
+ // Proxy Backbone class methods to Underscore functions, wrapping the model's
+ // `attributes` object or collection's `models` array behind the scenes.
+ //
+ // collection.filter(function(model) { return model.get('age') > 10 });
+ // collection.each(this.addView);
+ //
+ // `Function#apply` can be slow so we use the method's arg count, if we know it.
+ var addMethod = function(base, length, method, attribute) {
+ switch (length) {
+ case 1: return function() {
+ return base[method](this[attribute]);
+ };
+ case 2: return function(value) {
+ return base[method](this[attribute], value);
+ };
+ case 3: return function(iteratee, context) {
+ return base[method](this[attribute], cb(iteratee, this), context);
+ };
+ case 4: return function(iteratee, defaultVal, context) {
+ return base[method](this[attribute], cb(iteratee, this), defaultVal, context);
+ };
+ default: return function() {
+ var args = slice.call(arguments);
+ args.unshift(this[attribute]);
+ return base[method].apply(base, args);
+ };
+ }
+ };
+
+ var addUnderscoreMethods = function(Class, base, methods, attribute) {
+ _.each(methods, function(length, method) {
+ if (base[method]) Class.prototype[method] = addMethod(base, length, method, attribute);
+ });
+ };
+
+ // Support `collection.sortBy('attr')` and `collection.findWhere({id: 1})`.
+ var cb = function(iteratee, instance) {
+ if (_.isFunction(iteratee)) return iteratee;
+ if (_.isObject(iteratee) && !instance._isModel(iteratee)) return modelMatcher(iteratee);
+ if (_.isString(iteratee)) return function(model) { return model.get(iteratee); };
+ return iteratee;
+ };
+ var modelMatcher = function(attrs) {
+ var matcher = _.matches(attrs);
+ return function(model) {
+ return matcher(model.attributes);
+ };
+ };
+
+ // Underscore methods that we want to implement on the Collection.
+ // 90% of the core usefulness of Backbone Collections is actually implemented
+ // right here:
+ var collectionMethods = {forEach: 3, each: 3, map: 3, collect: 3, reduce: 0,
+ foldl: 0, inject: 0, reduceRight: 0, foldr: 0, find: 3, detect: 3, filter: 3,
+ select: 3, reject: 3, every: 3, all: 3, some: 3, any: 3, include: 3, includes: 3,
+ contains: 3, invoke: 0, max: 3, min: 3, toArray: 1, size: 1, first: 3,
+ head: 3, take: 3, initial: 3, rest: 3, tail: 3, drop: 3, last: 3,
+ without: 0, difference: 0, indexOf: 3, shuffle: 1, lastIndexOf: 3,
+ isEmpty: 1, chain: 1, sample: 3, partition: 3, groupBy: 3, countBy: 3,
+ sortBy: 3, indexBy: 3, findIndex: 3, findLastIndex: 3};
+
+
+ // Underscore methods that we want to implement on the Model, mapped to the
+ // number of arguments they take.
+ var modelMethods = {keys: 1, values: 1, pairs: 1, invert: 1, pick: 0,
+ omit: 0, chain: 1, isEmpty: 1};
+
+ // Mix in each Underscore method as a proxy to `Collection#models`.
+
+ _.each([
+ [Collection, collectionMethods, 'models'],
+ [Model, modelMethods, 'attributes']
+ ], function(config) {
+ var Base = config[0],
+ methods = config[1],
+ attribute = config[2];
+
+ Base.mixin = function(obj) {
+ var mappings = _.reduce(_.functions(obj), function(memo, name) {
+ memo[name] = 0;
+ return memo;
+ }, {});
+ addUnderscoreMethods(Base, obj, mappings, attribute);
+ };
+
+ addUnderscoreMethods(Base, _, methods, attribute);
+ });
+
+ // Backbone.sync
+ // -------------
+
+ // Override this function to change the manner in which Backbone persists
+ // models to the server. You will be passed the type of request, and the
+ // model in question. By default, makes a RESTful Ajax request
+ // to the model's `url()`. Some possible customizations could be:
+ //
+ // * Use `setTimeout` to batch rapid-fire updates into a single request.
+ // * Send up the models as XML instead of JSON.
+ // * Persist models via WebSockets instead of Ajax.
+ //
+ // Turn on `Backbone.emulateHTTP` in order to send `PUT` and `DELETE` requests
+ // as `POST`, with a `_method` parameter containing the true HTTP method,
+ // as well as all requests with the body as `application/x-www-form-urlencoded`
+ // instead of `application/json` with the model in a param named `model`.
+ // Useful when interfacing with server-side languages like **PHP** that make
+ // it difficult to read the body of `PUT` requests.
+ Backbone.sync = function(method, model, options) {
+ var type = methodMap[method];
+
+ // Default options, unless specified.
+ _.defaults(options || (options = {}), {
+ emulateHTTP: Backbone.emulateHTTP,
+ emulateJSON: Backbone.emulateJSON
+ });
+
+ // Default JSON-request options.
+ var params = {type: type, dataType: 'json'};
+
+ // Ensure that we have a URL.
+ if (!options.url) {
+ params.url = _.result(model, 'url') || urlError();
+ }
+
+ // Ensure that we have the appropriate request data.
+ if (options.data == null && model && (method === 'create' || method === 'update' || method === 'patch')) {
+ params.contentType = 'application/json';
+ params.data = JSON.stringify(options.attrs || model.toJSON(options));
+ }
+
+ // For older servers, emulate JSON by encoding the request into an HTML-form.
+ if (options.emulateJSON) {
+ params.contentType = 'application/x-www-form-urlencoded';
+ params.data = params.data ? {model: params.data} : {};
+ }
+
+ // For older servers, emulate HTTP by mimicking the HTTP method with `_method`
+ // And an `X-HTTP-Method-Override` header.
+ if (options.emulateHTTP && (type === 'PUT' || type === 'DELETE' || type === 'PATCH')) {
+ params.type = 'POST';
+ if (options.emulateJSON) params.data._method = type;
+ var beforeSend = options.beforeSend;
+ options.beforeSend = function(xhr) {
+ xhr.setRequestHeader('X-HTTP-Method-Override', type);
+ if (beforeSend) return beforeSend.apply(this, arguments);
+ };
+ }
+
+ // Don't process data on a non-GET request.
+ if (params.type !== 'GET' && !options.emulateJSON) {
+ params.processData = false;
+ }
+
+ // Pass along `textStatus` and `errorThrown` from jQuery.
+ var error = options.error;
+ options.error = function(xhr, textStatus, errorThrown) {
+ options.textStatus = textStatus;
+ options.errorThrown = errorThrown;
+ if (error) error.call(options.context, xhr, textStatus, errorThrown);
+ };
+
+ // Make the request, allowing the user to override any Ajax options.
+ var xhr = options.xhr = Backbone.ajax(_.extend(params, options));
+ model.trigger('request', model, xhr, options);
+ return xhr;
+ };
+
+ // Map from CRUD to HTTP for our default `Backbone.sync` implementation.
+ var methodMap = {
+ 'create': 'POST',
+ 'update': 'PUT',
+ 'patch': 'PATCH',
+ 'delete': 'DELETE',
+ 'read': 'GET'
+ };
+
+ // Set the default implementation of `Backbone.ajax` to proxy through to `$`.
+ // Override this if you'd like to use a different library.
+ Backbone.ajax = function() {
+ return Backbone.$.ajax.apply(Backbone.$, arguments);
+ };
+
+ // Backbone.Router
+ // ---------------
+
+ // Routers map faux-URLs to actions, and fire events when routes are
+ // matched. Creating a new one sets its `routes` hash, if not set statically.
+ var Router = Backbone.Router = function(options) {
+ options || (options = {});
+ this.preinitialize.apply(this, arguments);
+ if (options.routes) this.routes = options.routes;
+ this._bindRoutes();
+ this.initialize.apply(this, arguments);
+ };
+
+ // Cached regular expressions for matching named param parts and splatted
+ // parts of route strings.
+ var optionalParam = /\((.*?)\)/g;
+ var namedParam = /(\(\?)?:\w+/g;
+ var splatParam = /\*\w+/g;
+ var escapeRegExp = /[\-{}\[\]+?.,\\\^$|#\s]/g;
+
+ // Set up all inheritable **Backbone.Router** properties and methods.
+ _.extend(Router.prototype, Events, {
+
+ // preinitialize is an empty function by default. You can override it with a function
+ // or object. preinitialize will run before any instantiation logic is run in the Router.
+ preinitialize: function(){},
+
+ // Initialize is an empty function by default. Override it with your own
+ // initialization logic.
+ initialize: function(){},
+
+ // Manually bind a single named route to a callback. For example:
+ //
+ // this.route('search/:query/p:num', 'search', function(query, num) {
+ // ...
+ // });
+ //
+ route: function(route, name, callback) {
+ if (!_.isRegExp(route)) route = this._routeToRegExp(route);
+ if (_.isFunction(name)) {
+ callback = name;
+ name = '';
+ }
+ if (!callback) callback = this[name];
+ var router = this;
+ Backbone.history.route(route, function(fragment) {
+ var args = router._extractParameters(route, fragment);
+ if (router.execute(callback, args, name) !== false) {
+ router.trigger.apply(router, ['route:' + name].concat(args));
+ router.trigger('route', name, args);
+ Backbone.history.trigger('route', router, name, args);
+ }
+ });
+ return this;
+ },
+
+ // Execute a route handler with the provided parameters. This is an
+ // excellent place to do pre-route setup or post-route cleanup.
+ execute: function(callback, args, name) {
+ if (callback) callback.apply(this, args);
+ },
+
+ // Simple proxy to `Backbone.history` to save a fragment into the history.
+ navigate: function(fragment, options) {
+ Backbone.history.navigate(fragment, options);
+ return this;
+ },
+
+ // Bind all defined routes to `Backbone.history`. We have to reverse the
+ // order of the routes here to support behavior where the most general
+ // routes can be defined at the bottom of the route map.
+ _bindRoutes: function() {
+ if (!this.routes) return;
+ this.routes = _.result(this, 'routes');
+ var route, routes = _.keys(this.routes);
+ while ((route = routes.pop()) != null) {
+ this.route(route, this.routes[route]);
+ }
+ },
+
+ // Convert a route string into a regular expression, suitable for matching
+ // against the current location hash.
+ _routeToRegExp: function(route) {
+ route = route.replace(escapeRegExp, '\\$&')
+ .replace(optionalParam, '(?:$1)?')
+ .replace(namedParam, function(match, optional) {
+ return optional ? match : '([^/?]+)';
+ })
+ .replace(splatParam, '([^?]*?)');
+ return new RegExp('^' + route + '(?:\\?([\\s\\S]*))?$');
+ },
+
+ // Given a route, and a URL fragment that it matches, return the array of
+ // extracted decoded parameters. Empty or unmatched parameters will be
+ // treated as `null` to normalize cross-browser behavior.
+ _extractParameters: function(route, fragment) {
+ var params = route.exec(fragment).slice(1);
+ return _.map(params, function(param, i) {
+ // Don't decode the search params.
+ if (i === params.length - 1) return param || null;
+ return param ? decodeURIComponent(param) : null;
+ });
+ }
+
+ });
+
+ // Backbone.History
+ // ----------------
+
+ // Handles cross-browser history management, based on either
+ // [pushState](http://diveintohtml5.info/history.html) and real URLs, or
+ // [onhashchange](https://developer.mozilla.org/en-US/docs/DOM/window.onhashchange)
+ // and URL fragments. If the browser supports neither (old IE, natch),
+ // falls back to polling.
+ var History = Backbone.History = function() {
+ this.handlers = [];
+ this.checkUrl = this.checkUrl.bind(this);
+
+ // Ensure that `History` can be used outside of the browser.
+ if (typeof window !== 'undefined') {
+ this.location = window.location;
+ this.history = window.history;
+ }
+ };
+
+ // Cached regex for stripping a leading hash/slash and trailing space.
+ var routeStripper = /^[#\/]|\s+$/g;
+
+ // Cached regex for stripping leading and trailing slashes.
+ var rootStripper = /^\/+|\/+$/g;
+
+ // Cached regex for stripping urls of hash.
+ var pathStripper = /#.*$/;
+
+ // Has the history handling already been started?
+ History.started = false;
+
+ // Set up all inheritable **Backbone.History** properties and methods.
+ _.extend(History.prototype, Events, {
+
+ // The default interval to poll for hash changes, if necessary, is
+ // twenty times a second.
+ interval: 50,
+
+ // Are we at the app root?
+ atRoot: function() {
+ var path = this.location.pathname.replace(/[^\/]$/, '$&/');
+ return path === this.root && !this.getSearch();
+ },
+
+ // Does the pathname match the root?
+ matchRoot: function() {
+ var path = this.decodeFragment(this.location.pathname);
+ var rootPath = path.slice(0, this.root.length - 1) + '/';
+ return rootPath === this.root;
+ },
+
+ // Unicode characters in `location.pathname` are percent encoded so they're
+ // decoded for comparison. `%25` should not be decoded since it may be part
+ // of an encoded parameter.
+ decodeFragment: function(fragment) {
+ return decodeURI(fragment.replace(/%25/g, '%2525'));
+ },
+
+ // In IE6, the hash fragment and search params are incorrect if the
+ // fragment contains `?`.
+ getSearch: function() {
+ var match = this.location.href.replace(/#.*/, '').match(/\?.+/);
+ return match ? match[0] : '';
+ },
+
+ // Gets the true hash value. Cannot use location.hash directly due to bug
+ // in Firefox where location.hash will always be decoded.
+ getHash: function(window) {
+ var match = (window || this).location.href.match(/#(.*)$/);
+ return match ? match[1] : '';
+ },
+
+ // Get the pathname and search params, without the root.
+ getPath: function() {
+ var path = this.decodeFragment(
+ this.location.pathname + this.getSearch()
+ ).slice(this.root.length - 1);
+ return path.charAt(0) === '/' ? path.slice(1) : path;
+ },
+
+ // Get the cross-browser normalized URL fragment from the path or hash.
+ getFragment: function(fragment) {
+ if (fragment == null) {
+ if (this._usePushState || !this._wantsHashChange) {
+ fragment = this.getPath();
+ } else {
+ fragment = this.getHash();
+ }
+ }
+ return fragment.replace(routeStripper, '');
+ },
+
+ // Start the hash change handling, returning `true` if the current URL matches
+ // an existing route, and `false` otherwise.
+ start: function(options) {
+ if (History.started) throw new Error('Backbone.history has already been started');
+ History.started = true;
+
+ // Figure out the initial configuration. Do we need an iframe?
+ // Is pushState desired ... is it available?
+ this.options = _.extend({root: '/'}, this.options, options);
+ this.root = this.options.root;
+ this._wantsHashChange = this.options.hashChange !== false;
+ this._hasHashChange = 'onhashchange' in window && (document.documentMode === void 0 || document.documentMode > 7);
+ this._useHashChange = this._wantsHashChange && this._hasHashChange;
+ this._wantsPushState = !!this.options.pushState;
+ this._hasPushState = !!(this.history && this.history.pushState);
+ this._usePushState = this._wantsPushState && this._hasPushState;
+ this.fragment = this.getFragment();
+
+ // Normalize root to always include a leading and trailing slash.
+ this.root = ('/' + this.root + '/').replace(rootStripper, '/');
+
+ // Transition from hashChange to pushState or vice versa if both are
+ // requested.
+ if (this._wantsHashChange && this._wantsPushState) {
+
+ // If we've started off with a route from a `pushState`-enabled
+ // browser, but we're currently in a browser that doesn't support it...
+ if (!this._hasPushState && !this.atRoot()) {
+ var rootPath = this.root.slice(0, -1) || '/';
+ this.location.replace(rootPath + '#' + this.getPath());
+ // Return immediately as browser will do redirect to new url
+ return true;
+
+ // Or if we've started out with a hash-based route, but we're currently
+ // in a browser where it could be `pushState`-based instead...
+ } else if (this._hasPushState && this.atRoot()) {
+ this.navigate(this.getHash(), {replace: true});
+ }
+
+ }
+
+ // Proxy an iframe to handle location events if the browser doesn't
+ // support the `hashchange` event, HTML5 history, or the user wants
+ // `hashChange` but not `pushState`.
+ if (!this._hasHashChange && this._wantsHashChange && !this._usePushState) {
+ this.iframe = document.createElement('iframe');
+ this.iframe.src = 'javascript:0';
+ this.iframe.style.display = 'none';
+ this.iframe.tabIndex = -1;
+ var body = document.body;
+ // Using `appendChild` will throw on IE < 9 if the document is not ready.
+ var iWindow = body.insertBefore(this.iframe, body.firstChild).contentWindow;
+ iWindow.document.open();
+ iWindow.document.close();
+ iWindow.location.hash = '#' + this.fragment;
+ }
+
+ // Add a cross-platform `addEventListener` shim for older browsers.
+ var addEventListener = window.addEventListener || function(eventName, listener) {
+ return attachEvent('on' + eventName, listener);
+ };
+
+ // Depending on whether we're using pushState or hashes, and whether
+ // 'onhashchange' is supported, determine how we check the URL state.
+ if (this._usePushState) {
+ addEventListener('popstate', this.checkUrl, false);
+ } else if (this._useHashChange && !this.iframe) {
+ addEventListener('hashchange', this.checkUrl, false);
+ } else if (this._wantsHashChange) {
+ this._checkUrlInterval = setInterval(this.checkUrl, this.interval);
+ }
+
+ if (!this.options.silent) return this.loadUrl();
+ },
+
+ // Disable Backbone.history, perhaps temporarily. Not useful in a real app,
+ // but possibly useful for unit testing Routers.
+ stop: function() {
+ // Add a cross-platform `removeEventListener` shim for older browsers.
+ var removeEventListener = window.removeEventListener || function(eventName, listener) {
+ return detachEvent('on' + eventName, listener);
+ };
+
+ // Remove window listeners.
+ if (this._usePushState) {
+ removeEventListener('popstate', this.checkUrl, false);
+ } else if (this._useHashChange && !this.iframe) {
+ removeEventListener('hashchange', this.checkUrl, false);
+ }
+
+ // Clean up the iframe if necessary.
+ if (this.iframe) {
+ document.body.removeChild(this.iframe);
+ this.iframe = null;
+ }
+
+ // Some environments will throw when clearing an undefined interval.
+ if (this._checkUrlInterval) clearInterval(this._checkUrlInterval);
+ History.started = false;
+ },
+
+ // Add a route to be tested when the fragment changes. Routes added later
+ // may override previous routes.
+ route: function(route, callback) {
+ this.handlers.unshift({route: route, callback: callback});
+ },
+
+ // Checks the current URL to see if it has changed, and if it has,
+ // calls `loadUrl`, normalizing across the hidden iframe.
+ checkUrl: function(e) {
+ var current = this.getFragment();
+
+ // If the user pressed the back button, the iframe's hash will have
+ // changed and we should use that for comparison.
+ if (current === this.fragment && this.iframe) {
+ current = this.getHash(this.iframe.contentWindow);
+ }
+
+ if (current === this.fragment) return false;
+ if (this.iframe) this.navigate(current);
+ this.loadUrl();
+ },
+
+ // Attempt to load the current URL fragment. If a route succeeds with a
+ // match, returns `true`. If no defined routes matches the fragment,
+ // returns `false`.
+ loadUrl: function(fragment) {
+ // If the root doesn't match, no routes can match either.
+ if (!this.matchRoot()) return false;
+ fragment = this.fragment = this.getFragment(fragment);
+ return _.some(this.handlers, function(handler) {
+ if (handler.route.test(fragment)) {
+ handler.callback(fragment);
+ return true;
+ }
+ });
+ },
+
+ // Save a fragment into the hash history, or replace the URL state if the
+ // 'replace' option is passed. You are responsible for properly URL-encoding
+ // the fragment in advance.
+ //
+ // The options object can contain `trigger: true` if you wish to have the
+ // route callback be fired (not usually desirable), or `replace: true`, if
+ // you wish to modify the current URL without adding an entry to the history.
+ navigate: function(fragment, options) {
+ if (!History.started) return false;
+ if (!options || options === true) options = {trigger: !!options};
+
+ // Normalize the fragment.
+ fragment = this.getFragment(fragment || '');
+
+ // Don't include a trailing slash on the root.
+ var rootPath = this.root;
+ if (fragment === '' || fragment.charAt(0) === '?') {
+ rootPath = rootPath.slice(0, -1) || '/';
+ }
+ var url = rootPath + fragment;
+
+ // Strip the fragment of the query and hash for matching.
+ fragment = fragment.replace(pathStripper, '');
+
+ // Decode for matching.
+ var decodedFragment = this.decodeFragment(fragment);
+
+ if (this.fragment === decodedFragment) return;
+ this.fragment = decodedFragment;
+
+ // If pushState is available, we use it to set the fragment as a real URL.
+ if (this._usePushState) {
+ this.history[options.replace ? 'replaceState' : 'pushState']({}, document.title, url);
+
+ // If hash changes haven't been explicitly disabled, update the hash
+ // fragment to store history.
+ } else if (this._wantsHashChange) {
+ this._updateHash(this.location, fragment, options.replace);
+ if (this.iframe && fragment !== this.getHash(this.iframe.contentWindow)) {
+ var iWindow = this.iframe.contentWindow;
+
+ // Opening and closing the iframe tricks IE7 and earlier to push a
+ // history entry on hash-tag change. When replace is true, we don't
+ // want this.
+ if (!options.replace) {
+ iWindow.document.open();
+ iWindow.document.close();
+ }
+
+ this._updateHash(iWindow.location, fragment, options.replace);
+ }
+
+ // If you've told us that you explicitly don't want fallback hashchange-
+ // based history, then `navigate` becomes a page refresh.
+ } else {
+ return this.location.assign(url);
+ }
+ if (options.trigger) return this.loadUrl(fragment);
+ },
+
+ // Update the hash location, either replacing the current entry, or adding
+ // a new one to the browser history.
+ _updateHash: function(location, fragment, replace) {
+ if (replace) {
+ var href = location.href.replace(/(javascript:|#).*$/, '');
+ location.replace(href + '#' + fragment);
+ } else {
+ // Some browsers require that `hash` contains a leading #.
+ location.hash = '#' + fragment;
+ }
+ }
+
+ });
+
+ // Create the default Backbone.history.
+ Backbone.history = new History;
+
+ // Helpers
+ // -------
+
+ // Helper function to correctly set up the prototype chain for subclasses.
+ // Similar to `goog.inherits`, but uses a hash of prototype properties and
+ // class properties to be extended.
+ var extend = function(protoProps, staticProps) {
+ var parent = this;
+ var child;
+
+ // The constructor function for the new subclass is either defined by you
+ // (the "constructor" property in your `extend` definition), or defaulted
+ // by us to simply call the parent constructor.
+ if (protoProps && _.has(protoProps, 'constructor')) {
+ child = protoProps.constructor;
+ } else {
+ child = function(){ return parent.apply(this, arguments); };
+ }
+
+ // Add static properties to the constructor function, if supplied.
+ _.extend(child, parent, staticProps);
+
+ // Set the prototype chain to inherit from `parent`, without calling
+ // `parent`'s constructor function and add the prototype properties.
+ child.prototype = _.create(parent.prototype, protoProps);
+ child.prototype.constructor = child;
+
+ // Set a convenience property in case the parent's prototype is needed
+ // later.
+ child.__super__ = parent.prototype;
+
+ return child;
+ };
+
+ // Set up inheritance for the model, collection, router, view and history.
+ Model.extend = Collection.extend = Router.extend = View.extend = History.extend = extend;
+
+ // Throw an error when a URL is needed, and none is supplied.
+ var urlError = function() {
+ throw new Error('A "url" property or function must be specified');
+ };
+
+ // Wrap an optional error callback with a fallback error event.
+ var wrapError = function(model, options) {
+ var error = options.error;
+ options.error = function(resp) {
+ if (error) error.call(options.context, model, resp, options);
+ model.trigger('error', model, resp, options);
+ };
+ };
+
+ return Backbone;
+});
diff --git a/static/wp-includes/js/backbone.min.js b/static/wp-includes/js/backbone.min.js
new file mode 100755
index 0000000..396f6c4
--- /dev/null
+++ b/static/wp-includes/js/backbone.min.js
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+!function(n){var s="object"==typeof self&&self.self===self&&self||"object"==typeof global&&global.global===global&&global;if("function"==typeof define&&define.amd)define(["underscore","jquery","exports"],function(t,e,i){s.Backbone=n(s,i,t,e)});else if("undefined"!=typeof exports){var t,e=require("underscore");try{t=require("jquery")}catch(t){}n(s,exports,e,t)}else s.Backbone=n(s,{},s._,s.jQuery||s.Zepto||s.ender||s.$)}(function(t,h,b,e){function a(t,e,i,n,s){var r,o=0;if(i&&"object"==typeof i){void 0!==n&&"context"in s&&void 0===s.context&&(s.context=n);for(r=b.keys(i);othis.length?this.length:n)<0&&(n+=this.length+1),[]),r=[],o=[],h=[],a={},u=e.add,c=e.merge,l=e.remove,d=!1,f=this.comparator&&null==n&&!1!==e.sort,p=b.isString(this.comparator)?this.comparator:null,g=0;g 1 && arguments[1] !== undefined ? arguments[1] : {
+ container: document.body
+ };
+ var selectedText = '';
+
+ if (typeof target === 'string') {
+ var fakeElement = createFakeElement(target);
+ options.container.appendChild(fakeElement);
+ selectedText = select_default()(fakeElement);
+ command('copy');
+ fakeElement.remove();
+ } else {
+ selectedText = select_default()(target);
+ command('copy');
+ }
+
+ return selectedText;
+};
+
+/* harmony default export */ var actions_copy = (ClipboardActionCopy);
+;// CONCATENATED MODULE: ./src/actions/default.js
+function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
+
+
+
+/**
+ * Inner function which performs selection from either `text` or `target`
+ * properties and then executes copy or cut operations.
+ * @param {Object} options
+ */
+
+var ClipboardActionDefault = function ClipboardActionDefault() {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ // Defines base properties passed from constructor.
+ var _options$action = options.action,
+ action = _options$action === void 0 ? 'copy' : _options$action,
+ container = options.container,
+ target = options.target,
+ text = options.text; // Sets the `action` to be performed which can be either 'copy' or 'cut'.
+
+ if (action !== 'copy' && action !== 'cut') {
+ throw new Error('Invalid "action" value, use either "copy" or "cut"');
+ } // Sets the `target` property using an element that will be have its content copied.
+
+
+ if (target !== undefined) {
+ if (target && _typeof(target) === 'object' && target.nodeType === 1) {
+ if (action === 'copy' && target.hasAttribute('disabled')) {
+ throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');
+ }
+
+ if (action === 'cut' && (target.hasAttribute('readonly') || target.hasAttribute('disabled'))) {
+ throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');
+ }
+ } else {
+ throw new Error('Invalid "target" value, use a valid Element');
+ }
+ } // Define selection strategy based on `text` property.
+
+
+ if (text) {
+ return actions_copy(text, {
+ container: container
+ });
+ } // Defines which selection strategy based on `target` property.
+
+
+ if (target) {
+ return action === 'cut' ? actions_cut(target) : actions_copy(target, {
+ container: container
+ });
+ }
+};
+
+/* harmony default export */ var actions_default = (ClipboardActionDefault);
+;// CONCATENATED MODULE: ./src/clipboard.js
+function clipboard_typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { clipboard_typeof = function _typeof(obj) { return typeof obj; }; } else { clipboard_typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return clipboard_typeof(obj); }
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
+
+function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
+
+function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
+
+function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
+
+function _possibleConstructorReturn(self, call) { if (call && (clipboard_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
+
+function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
+
+function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
+
+function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
+
+
+
+
+
+
+/**
+ * Helper function to retrieve attribute value.
+ * @param {String} suffix
+ * @param {Element} element
+ */
+
+function getAttributeValue(suffix, element) {
+ var attribute = "data-clipboard-".concat(suffix);
+
+ if (!element.hasAttribute(attribute)) {
+ return;
+ }
+
+ return element.getAttribute(attribute);
+}
+/**
+ * Base class which takes one or more elements, adds event listeners to them,
+ * and instantiates a new `ClipboardAction` on each click.
+ */
+
+
+var Clipboard = /*#__PURE__*/function (_Emitter) {
+ _inherits(Clipboard, _Emitter);
+
+ var _super = _createSuper(Clipboard);
+
+ /**
+ * @param {String|HTMLElement|HTMLCollection|NodeList} trigger
+ * @param {Object} options
+ */
+ function Clipboard(trigger, options) {
+ var _this;
+
+ _classCallCheck(this, Clipboard);
+
+ _this = _super.call(this);
+
+ _this.resolveOptions(options);
+
+ _this.listenClick(trigger);
+
+ return _this;
+ }
+ /**
+ * Defines if attributes would be resolved using internal setter functions
+ * or custom functions that were passed in the constructor.
+ * @param {Object} options
+ */
+
+
+ _createClass(Clipboard, [{
+ key: "resolveOptions",
+ value: function resolveOptions() {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ this.action = typeof options.action === 'function' ? options.action : this.defaultAction;
+ this.target = typeof options.target === 'function' ? options.target : this.defaultTarget;
+ this.text = typeof options.text === 'function' ? options.text : this.defaultText;
+ this.container = clipboard_typeof(options.container) === 'object' ? options.container : document.body;
+ }
+ /**
+ * Adds a click event listener to the passed trigger.
+ * @param {String|HTMLElement|HTMLCollection|NodeList} trigger
+ */
+
+ }, {
+ key: "listenClick",
+ value: function listenClick(trigger) {
+ var _this2 = this;
+
+ this.listener = listen_default()(trigger, 'click', function (e) {
+ return _this2.onClick(e);
+ });
+ }
+ /**
+ * Defines a new `ClipboardAction` on each click event.
+ * @param {Event} e
+ */
+
+ }, {
+ key: "onClick",
+ value: function onClick(e) {
+ var trigger = e.delegateTarget || e.currentTarget;
+ var action = this.action(trigger) || 'copy';
+ var text = actions_default({
+ action: action,
+ container: this.container,
+ target: this.target(trigger),
+ text: this.text(trigger)
+ }); // Fires an event based on the copy operation result.
+
+ this.emit(text ? 'success' : 'error', {
+ action: action,
+ text: text,
+ trigger: trigger,
+ clearSelection: function clearSelection() {
+ if (trigger) {
+ trigger.focus();
+ }
+
+ document.activeElement.blur();
+ window.getSelection().removeAllRanges();
+ }
+ });
+ }
+ /**
+ * Default `action` lookup function.
+ * @param {Element} trigger
+ */
+
+ }, {
+ key: "defaultAction",
+ value: function defaultAction(trigger) {
+ return getAttributeValue('action', trigger);
+ }
+ /**
+ * Default `target` lookup function.
+ * @param {Element} trigger
+ */
+
+ }, {
+ key: "defaultTarget",
+ value: function defaultTarget(trigger) {
+ var selector = getAttributeValue('target', trigger);
+
+ if (selector) {
+ return document.querySelector(selector);
+ }
+ }
+ /**
+ * Allow fire programmatically a copy action
+ * @param {String|HTMLElement} target
+ * @param {Object} options
+ * @returns Text copied.
+ */
+
+ }, {
+ key: "defaultText",
+
+ /**
+ * Default `text` lookup function.
+ * @param {Element} trigger
+ */
+ value: function defaultText(trigger) {
+ return getAttributeValue('text', trigger);
+ }
+ /**
+ * Destroy lifecycle.
+ */
+
+ }, {
+ key: "destroy",
+ value: function destroy() {
+ this.listener.destroy();
+ }
+ }], [{
+ key: "copy",
+ value: function copy(target) {
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {
+ container: document.body
+ };
+ return actions_copy(target, options);
+ }
+ /**
+ * Allow fire programmatically a cut action
+ * @param {String|HTMLElement} target
+ * @returns Text cutted.
+ */
+
+ }, {
+ key: "cut",
+ value: function cut(target) {
+ return actions_cut(target);
+ }
+ /**
+ * Returns the support of the given action, or all actions if no action is
+ * given.
+ * @param {String} [action]
+ */
+
+ }, {
+ key: "isSupported",
+ value: function isSupported() {
+ var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ['copy', 'cut'];
+ var actions = typeof action === 'string' ? [action] : action;
+ var support = !!document.queryCommandSupported;
+ actions.forEach(function (action) {
+ support = support && !!document.queryCommandSupported(action);
+ });
+ return support;
+ }
+ }]);
+
+ return Clipboard;
+}((tiny_emitter_default()));
+
+/* harmony default export */ var clipboard = (Clipboard);
+
+/***/ }),
+
+/***/ 828:
+/***/ (function(module) {
+
+var DOCUMENT_NODE_TYPE = 9;
+
+/**
+ * A polyfill for Element.matches()
+ */
+if (typeof Element !== 'undefined' && !Element.prototype.matches) {
+ var proto = Element.prototype;
+
+ proto.matches = proto.matchesSelector ||
+ proto.mozMatchesSelector ||
+ proto.msMatchesSelector ||
+ proto.oMatchesSelector ||
+ proto.webkitMatchesSelector;
+}
+
+/**
+ * Finds the closest parent that matches a selector.
+ *
+ * @param {Element} element
+ * @param {String} selector
+ * @return {Function}
+ */
+function closest (element, selector) {
+ while (element && element.nodeType !== DOCUMENT_NODE_TYPE) {
+ if (typeof element.matches === 'function' &&
+ element.matches(selector)) {
+ return element;
+ }
+ element = element.parentNode;
+ }
+}
+
+module.exports = closest;
+
+
+/***/ }),
+
+/***/ 438:
+/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
+
+var closest = __webpack_require__(828);
+
+/**
+ * Delegates event to a selector.
+ *
+ * @param {Element} element
+ * @param {String} selector
+ * @param {String} type
+ * @param {Function} callback
+ * @param {Boolean} useCapture
+ * @return {Object}
+ */
+function _delegate(element, selector, type, callback, useCapture) {
+ var listenerFn = listener.apply(this, arguments);
+
+ element.addEventListener(type, listenerFn, useCapture);
+
+ return {
+ destroy: function() {
+ element.removeEventListener(type, listenerFn, useCapture);
+ }
+ }
+}
+
+/**
+ * Delegates event to a selector.
+ *
+ * @param {Element|String|Array} [elements]
+ * @param {String} selector
+ * @param {String} type
+ * @param {Function} callback
+ * @param {Boolean} useCapture
+ * @return {Object}
+ */
+function delegate(elements, selector, type, callback, useCapture) {
+ // Handle the regular Element usage
+ if (typeof elements.addEventListener === 'function') {
+ return _delegate.apply(null, arguments);
+ }
+
+ // Handle Element-less usage, it defaults to global delegation
+ if (typeof type === 'function') {
+ // Use `document` as the first parameter, then apply arguments
+ // This is a short way to .unshift `arguments` without running into deoptimizations
+ return _delegate.bind(null, document).apply(null, arguments);
+ }
+
+ // Handle Selector-based usage
+ if (typeof elements === 'string') {
+ elements = document.querySelectorAll(elements);
+ }
+
+ // Handle Array-like based usage
+ return Array.prototype.map.call(elements, function (element) {
+ return _delegate(element, selector, type, callback, useCapture);
+ });
+}
+
+/**
+ * Finds closest match and invokes callback.
+ *
+ * @param {Element} element
+ * @param {String} selector
+ * @param {String} type
+ * @param {Function} callback
+ * @return {Function}
+ */
+function listener(element, selector, type, callback) {
+ return function(e) {
+ e.delegateTarget = closest(e.target, selector);
+
+ if (e.delegateTarget) {
+ callback.call(element, e);
+ }
+ }
+}
+
+module.exports = delegate;
+
+
+/***/ }),
+
+/***/ 879:
+/***/ (function(__unused_webpack_module, exports) {
+
+/**
+ * Check if argument is a HTML element.
+ *
+ * @param {Object} value
+ * @return {Boolean}
+ */
+exports.node = function(value) {
+ return value !== undefined
+ && value instanceof HTMLElement
+ && value.nodeType === 1;
+};
+
+/**
+ * Check if argument is a list of HTML elements.
+ *
+ * @param {Object} value
+ * @return {Boolean}
+ */
+exports.nodeList = function(value) {
+ var type = Object.prototype.toString.call(value);
+
+ return value !== undefined
+ && (type === '[object NodeList]' || type === '[object HTMLCollection]')
+ && ('length' in value)
+ && (value.length === 0 || exports.node(value[0]));
+};
+
+/**
+ * Check if argument is a string.
+ *
+ * @param {Object} value
+ * @return {Boolean}
+ */
+exports.string = function(value) {
+ return typeof value === 'string'
+ || value instanceof String;
+};
+
+/**
+ * Check if argument is a function.
+ *
+ * @param {Object} value
+ * @return {Boolean}
+ */
+exports.fn = function(value) {
+ var type = Object.prototype.toString.call(value);
+
+ return type === '[object Function]';
+};
+
+
+/***/ }),
+
+/***/ 370:
+/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
+
+var is = __webpack_require__(879);
+var delegate = __webpack_require__(438);
+
+/**
+ * Validates all params and calls the right
+ * listener function based on its target type.
+ *
+ * @param {String|HTMLElement|HTMLCollection|NodeList} target
+ * @param {String} type
+ * @param {Function} callback
+ * @return {Object}
+ */
+function listen(target, type, callback) {
+ if (!target && !type && !callback) {
+ throw new Error('Missing required arguments');
+ }
+
+ if (!is.string(type)) {
+ throw new TypeError('Second argument must be a String');
+ }
+
+ if (!is.fn(callback)) {
+ throw new TypeError('Third argument must be a Function');
+ }
+
+ if (is.node(target)) {
+ return listenNode(target, type, callback);
+ }
+ else if (is.nodeList(target)) {
+ return listenNodeList(target, type, callback);
+ }
+ else if (is.string(target)) {
+ return listenSelector(target, type, callback);
+ }
+ else {
+ throw new TypeError('First argument must be a String, HTMLElement, HTMLCollection, or NodeList');
+ }
+}
+
+/**
+ * Adds an event listener to a HTML element
+ * and returns a remove listener function.
+ *
+ * @param {HTMLElement} node
+ * @param {String} type
+ * @param {Function} callback
+ * @return {Object}
+ */
+function listenNode(node, type, callback) {
+ node.addEventListener(type, callback);
+
+ return {
+ destroy: function() {
+ node.removeEventListener(type, callback);
+ }
+ }
+}
+
+/**
+ * Add an event listener to a list of HTML elements
+ * and returns a remove listener function.
+ *
+ * @param {NodeList|HTMLCollection} nodeList
+ * @param {String} type
+ * @param {Function} callback
+ * @return {Object}
+ */
+function listenNodeList(nodeList, type, callback) {
+ Array.prototype.forEach.call(nodeList, function(node) {
+ node.addEventListener(type, callback);
+ });
+
+ return {
+ destroy: function() {
+ Array.prototype.forEach.call(nodeList, function(node) {
+ node.removeEventListener(type, callback);
+ });
+ }
+ }
+}
+
+/**
+ * Add an event listener to a selector
+ * and returns a remove listener function.
+ *
+ * @param {String} selector
+ * @param {String} type
+ * @param {Function} callback
+ * @return {Object}
+ */
+function listenSelector(selector, type, callback) {
+ return delegate(document.body, selector, type, callback);
+}
+
+module.exports = listen;
+
+
+/***/ }),
+
+/***/ 817:
+/***/ (function(module) {
+
+function select(element) {
+ var selectedText;
+
+ if (element.nodeName === 'SELECT') {
+ element.focus();
+
+ selectedText = element.value;
+ }
+ else if (element.nodeName === 'INPUT' || element.nodeName === 'TEXTAREA') {
+ var isReadOnly = element.hasAttribute('readonly');
+
+ if (!isReadOnly) {
+ element.setAttribute('readonly', '');
+ }
+
+ element.select();
+ element.setSelectionRange(0, element.value.length);
+
+ if (!isReadOnly) {
+ element.removeAttribute('readonly');
+ }
+
+ selectedText = element.value;
+ }
+ else {
+ if (element.hasAttribute('contenteditable')) {
+ element.focus();
+ }
+
+ var selection = window.getSelection();
+ var range = document.createRange();
+
+ range.selectNodeContents(element);
+ selection.removeAllRanges();
+ selection.addRange(range);
+
+ selectedText = selection.toString();
+ }
+
+ return selectedText;
+}
+
+module.exports = select;
+
+
+/***/ }),
+
+/***/ 279:
+/***/ (function(module) {
+
+function E () {
+ // Keep this empty so it's easier to inherit from
+ // (via https://github.com/lipsmack from https://github.com/scottcorgan/tiny-emitter/issues/3)
+}
+
+E.prototype = {
+ on: function (name, callback, ctx) {
+ var e = this.e || (this.e = {});
+
+ (e[name] || (e[name] = [])).push({
+ fn: callback,
+ ctx: ctx
+ });
+
+ return this;
+ },
+
+ once: function (name, callback, ctx) {
+ var self = this;
+ function listener () {
+ self.off(name, listener);
+ callback.apply(ctx, arguments);
+ };
+
+ listener._ = callback
+ return this.on(name, listener, ctx);
+ },
+
+ emit: function (name) {
+ var data = [].slice.call(arguments, 1);
+ var evtArr = ((this.e || (this.e = {}))[name] || []).slice();
+ var i = 0;
+ var len = evtArr.length;
+
+ for (i; i < len; i++) {
+ evtArr[i].fn.apply(evtArr[i].ctx, data);
+ }
+
+ return this;
+ },
+
+ off: function (name, callback) {
+ var e = this.e || (this.e = {});
+ var evts = e[name];
+ var liveEvents = [];
+
+ if (evts && callback) {
+ for (var i = 0, len = evts.length; i < len; i++) {
+ if (evts[i].fn !== callback && evts[i].fn._ !== callback)
+ liveEvents.push(evts[i]);
+ }
+ }
+
+ // Remove event from queue to prevent memory leak
+ // Suggested by https://github.com/lazd
+ // Ref: https://github.com/scottcorgan/tiny-emitter/commit/c6ebfaa9bc973b33d110a84a307742b7cf94c953#commitcomment-5024910
+
+ (liveEvents.length)
+ ? e[name] = liveEvents
+ : delete e[name];
+
+ return this;
+ }
+};
+
+module.exports = E;
+module.exports.TinyEmitter = E;
+
+
+/***/ })
+
+/******/ });
+/************************************************************************/
+/******/ // The module cache
+/******/ var __webpack_module_cache__ = {};
+/******/
+/******/ // The require function
+/******/ function __webpack_require__(moduleId) {
+/******/ // Check if module is in cache
+/******/ if(__webpack_module_cache__[moduleId]) {
+/******/ return __webpack_module_cache__[moduleId].exports;
+/******/ }
+/******/ // Create a new module (and put it into the cache)
+/******/ var module = __webpack_module_cache__[moduleId] = {
+/******/ // no module.id needed
+/******/ // no module.loaded needed
+/******/ exports: {}
+/******/ };
+/******/
+/******/ // Execute the module function
+/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
+/******/
+/******/ // Return the exports of the module
+/******/ return module.exports;
+/******/ }
+/******/
+/************************************************************************/
+/******/ /* webpack/runtime/compat get default export */
+/******/ !function() {
+/******/ // getDefaultExport function for compatibility with non-harmony modules
+/******/ __webpack_require__.n = function(module) {
+/******/ var getter = module && module.__esModule ?
+/******/ function() { return module['default']; } :
+/******/ function() { return module; };
+/******/ __webpack_require__.d(getter, { a: getter });
+/******/ return getter;
+/******/ };
+/******/ }();
+/******/
+/******/ /* webpack/runtime/define property getters */
+/******/ !function() {
+/******/ // define getter functions for harmony exports
+/******/ __webpack_require__.d = function(exports, definition) {
+/******/ for(var key in definition) {
+/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
+/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
+/******/ }
+/******/ }
+/******/ };
+/******/ }();
+/******/
+/******/ /* webpack/runtime/hasOwnProperty shorthand */
+/******/ !function() {
+/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
+/******/ }();
+/******/
+/************************************************************************/
+/******/ // module exports must be returned from runtime so entry inlining is disabled
+/******/ // startup
+/******/ // Load entry module and return exports
+/******/ return __webpack_require__(686);
+/******/ })()
+.default;
+});
\ No newline at end of file
diff --git a/static/wp-includes/js/clipboard.min.js b/static/wp-includes/js/clipboard.min.js
new file mode 100755
index 0000000..dc09154
--- /dev/null
+++ b/static/wp-includes/js/clipboard.min.js
@@ -0,0 +1,2 @@
+/*! This file is auto-generated */
+!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return v}});var e=n(279),e=n.n(e),o=n(370),i=n.n(o),o=n(817),c=n.n(o);function u(t){try{document.execCommand(t)}catch(t){return}}var a=function(t){t=c()(t);return u("cut"),t};var f=function(t){var e,n,o,r=1span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:''}span.CodeMirror-selectedtext{background:0 0}.CodeMirror-hints{position:absolute;z-index:10;overflow:hidden;list-style:none;margin:0;padding:2px;-moz-box-shadow:2px 3px 5px rgba(0,0,0,.2);box-shadow:2px 3px 5px rgba(0,0,0,.2);border-radius:3px;border:1px solid silver;background:#fff;font-size:90%;font-family:monospace;max-height:20em;overflow-y:auto}.CodeMirror-hint{margin:0;padding:0 4px;border-radius:2px;white-space:pre;color:#000;cursor:pointer}li.CodeMirror-hint-active{background:#08f;color:#fff}.CodeMirror-lint-markers{width:16px}.CodeMirror-lint-tooltip{background-color:#ffd;border:1px solid #000;border-radius:4px;color:#000;font-family:monospace;font-size:10pt;overflow:hidden;padding:2px 5px;position:fixed;white-space:pre;white-space:pre-wrap;z-index:100;max-width:600px;opacity:0;transition:opacity .4s;-moz-transition:opacity .4s;-webkit-transition:opacity .4s;-o-transition:opacity .4s;-ms-transition:opacity .4s}.CodeMirror-lint-mark-error,.CodeMirror-lint-mark-warning{background-position:left bottom;background-repeat:repeat-x}.CodeMirror-lint-mark-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==)}.CodeMirror-lint-mark-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=)}.CodeMirror-lint-marker-error,.CodeMirror-lint-marker-warning{background-position:center center;background-repeat:no-repeat;cursor:pointer;display:inline-block;height:16px;width:16px;vertical-align:middle;position:relative}.CodeMirror-lint-message-error,.CodeMirror-lint-message-warning{padding-left:18px;background-position:top left;background-repeat:no-repeat}.CodeMirror-lint-marker-error,.CodeMirror-lint-message-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=)}.CodeMirror-lint-marker-warning,.CodeMirror-lint-message-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=)}.CodeMirror-lint-marker-multiple{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:right bottom;width:100%;height:100%}.CodeMirror-dialog{position:absolute;left:0;right:0;background:inherit;z-index:15;padding:.1em .8em;overflow:hidden;color:inherit}.CodeMirror-dialog-top{border-bottom:1px solid #eee;top:0}.CodeMirror-dialog-bottom{border-top:1px solid #eee;bottom:0}.CodeMirror-dialog input{border:none;outline:0;background:0 0;width:20em;color:inherit;font-family:monospace}.CodeMirror-dialog button{font-size:70%}.CodeMirror-fullscreen{position:fixed;top:0;left:0;right:0;bottom:0;height:auto;z-index:9}.CodeMirror-foldmarker{color:#00f;text-shadow:#b9f 1px 1px 2px,#b9f -1px -1px 2px,#b9f 1px -1px 2px,#b9f -1px 1px 2px;font-family:arial;line-height:.3;cursor:pointer}.CodeMirror-foldgutter{width:.7em}.CodeMirror-foldgutter-folded,.CodeMirror-foldgutter-open{cursor:pointer}.CodeMirror-foldgutter-open:after{content:"\25BE"}.CodeMirror-foldgutter-folded:after{content:"\25B8"}.CodeMirror-merge{position:relative;border:1px solid #ddd;white-space:pre}.CodeMirror-merge,.CodeMirror-merge .CodeMirror{height:350px}.CodeMirror-merge-2pane .CodeMirror-merge-pane{width:47%}.CodeMirror-merge-2pane .CodeMirror-merge-gap{width:6%}.CodeMirror-merge-3pane .CodeMirror-merge-pane{width:31%}.CodeMirror-merge-3pane .CodeMirror-merge-gap{width:3.5%}.CodeMirror-merge-pane{display:inline-block;white-space:normal;vertical-align:top}.CodeMirror-merge-pane-rightmost{position:absolute;right:0;z-index:1}.CodeMirror-merge-gap{z-index:2;display:inline-block;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;border-left:1px solid #ddd;border-right:1px solid #ddd;position:relative;background:#f8f8f8}.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt,.CodeMirror-overlayscroll .CodeMirror-gutter-filler,.CodeMirror-overlayscroll .CodeMirror-scrollbar-filler{display:none}.CodeMirror-merge-scrolllock-wrap{position:absolute;bottom:0;left:50%}.CodeMirror-merge-scrolllock{position:relative;left:-50%;cursor:pointer;color:#555;line-height:1}.CodeMirror-merge-copy,.CodeMirror-merge-copy-reverse{color:#44c;cursor:pointer;position:absolute}.CodeMirror-merge-copybuttons-left,.CodeMirror-merge-copybuttons-right{position:absolute;left:0;top:0;right:0;bottom:0;line-height:1}.CodeMirror-merge-copy{z-index:3}.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy{left:2px}.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy{right:2px}.CodeMirror-merge-l-inserted,.CodeMirror-merge-r-inserted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);background-position:bottom left;background-repeat:repeat-x}.CodeMirror-merge-l-deleted,.CodeMirror-merge-r-deleted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);background-position:bottom left;background-repeat:repeat-x}.CodeMirror-merge-r-chunk{background:#ffffe0}.CodeMirror-merge-r-chunk-start{border-top:1px solid #ee8}.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #ee8}.CodeMirror-merge-r-connect{fill:#ffffe0;stroke:#ee8;stroke-width:1px}.CodeMirror-merge-l-chunk{background:#eef}.CodeMirror-merge-l-chunk-start{border-top:1px solid #88e}.CodeMirror-merge-l-chunk-end{border-bottom:1px solid #88e}.CodeMirror-merge-l-connect{fill:#eef;stroke:#88e;stroke-width:1px}.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk{background:#dfd}.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start{border-top:1px solid #4e4}.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #4e4}.CodeMirror-merge-collapsed-widget:before{content:"(...)"}.CodeMirror-merge-collapsed-widget{cursor:pointer;color:#88b;background:#eef;border:1px solid #ddf;font-size:90%;padding:0 3px;border-radius:4px}.CodeMirror-simplescroll-horizontal div,.CodeMirror-simplescroll-vertical div{position:absolute;background:#ccc;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #bbb;border-radius:2px}.CodeMirror-simplescroll-horizontal,.CodeMirror-simplescroll-vertical{position:absolute;z-index:6;background:#eee}.CodeMirror-simplescroll-horizontal{bottom:0;left:0;height:8px}.CodeMirror-simplescroll-horizontal div{bottom:0;height:100%}.CodeMirror-simplescroll-vertical{right:0;top:0;width:8px}.CodeMirror-simplescroll-vertical div{right:0;width:100%}.CodeMirror-overlayscroll-horizontal div,.CodeMirror-overlayscroll-vertical div{position:absolute;background:#bcd;border-radius:3px}.CodeMirror-overlayscroll-horizontal,.CodeMirror-overlayscroll-vertical{position:absolute;z-index:6}.CodeMirror-overlayscroll-horizontal{bottom:0;left:0;height:6px}.CodeMirror-overlayscroll-horizontal div{bottom:0;height:100%}.CodeMirror-overlayscroll-vertical{right:0;top:0;width:6px}.CodeMirror-overlayscroll-vertical div{right:0;width:100%}.CodeMirror-search-match{background:gold;border-top:1px solid orange;border-bottom:1px solid orange;-moz-box-sizing:border-box;box-sizing:border-box;opacity:.5}.CodeMirror-Tern-completion{padding-left:22px;position:relative;line-height:1.5}.CodeMirror-Tern-completion:before{position:absolute;left:2px;bottom:2px;border-radius:50%;font-size:12px;font-weight:700;height:15px;width:15px;line-height:16px;text-align:center;color:#fff;-moz-box-sizing:border-box;box-sizing:border-box}.CodeMirror-Tern-completion-unknown:before{content:"?";background:#4bb}.CodeMirror-Tern-completion-object:before{content:"O";background:#77c}.CodeMirror-Tern-completion-fn:before{content:"F";background:#7c7}.CodeMirror-Tern-completion-array:before{content:"A";background:#c66}.CodeMirror-Tern-completion-number:before{content:"1";background:#999}.CodeMirror-Tern-completion-string:before{content:"S";background:#999}.CodeMirror-Tern-completion-bool:before{content:"B";background:#999}.CodeMirror-Tern-completion-guess{color:#999}.CodeMirror-Tern-tooltip{border:1px solid silver;border-radius:3px;color:#444;padding:2px 5px;font-size:90%;font-family:monospace;background-color:#fff;white-space:pre-wrap;max-width:40em;position:absolute;z-index:10;-moz-box-shadow:2px 3px 5px rgba(0,0,0,.2);box-shadow:2px 3px 5px rgba(0,0,0,.2);transition:opacity 1s;-moz-transition:opacity 1s;-webkit-transition:opacity 1s;-o-transition:opacity 1s;-ms-transition:opacity 1s}.CodeMirror-Tern-hint-doc{max-width:25em;margin-top:-3px}.CodeMirror-Tern-fname{color:#000}.CodeMirror-Tern-farg{color:#70a}.CodeMirror-Tern-farg-current{text-decoration:underline}.CodeMirror-Tern-type{color:#07c}.CodeMirror-Tern-fhint-guess{opacity:.7}
\ No newline at end of file
diff --git a/static/wp-includes/js/codemirror/codemirror.min.js b/static/wp-includes/js/codemirror/codemirror.min.js
new file mode 100755
index 0000000..994abd3
--- /dev/null
+++ b/static/wp-includes/js/codemirror/codemirror.min.js
@@ -0,0 +1,29 @@
+/*! This file is auto-generated from CodeMirror - github:codemirror/CodeMirror#ee20357d279bf9edfed0047d3bf2a75b5f0a040f
+
+CodeMirror, copyright (c) by Marijn Haverbeke and others
+Distributed under an MIT license: http://codemirror.net/LICENSE
+
+This is CodeMirror (http://codemirror.net), a code editor
+implemented in JavaScript on top of the browser's DOM.
+
+You can find some technical background for some of the code below
+at http://marijnhaverbeke.nl/blog/#cm-internals .
+*/
+!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g=0;h--){var i=d[h].from(),j=d[h].to();i.line>=c||(j.line>=c&&(j=g(c,0)),c=i.line,null==f?b.uncomment(i,j,a)?f="un":(b.lineComment(i,j,a),f="line"):"un"==f?b.uncomment(i,j,a):b.lineComment(i,j,a))}}),a.defineExtension("lineComment",function(a,h,i){i||(i=e);var j=this,k=d(j,a),l=j.getLine(a.line);if(null!=l&&!c(j,a,l)){var m=i.lineComment||k.lineComment;if(!m)return void((i.blockCommentStart||k.blockCommentStart)&&(i.fullLines=!0,j.blockComment(a,h,i)));var n=Math.min(0!=h.ch||h.line==a.line?h.line+1:h.line,j.lastLine()+1),o=null==i.padding?" ":i.padding,p=i.commentBlankLines||a.line==h.line;j.operation(function(){if(i.indent){for(var c=null,d=a.line;dh.length)&&(c=h)}for(var d=a.line;dl||h.operation(function(){if(0!=c.fullLines){var d=f.test(h.getLine(l));h.replaceRange(m+k,g(l)),h.replaceRange(j+m,g(a.line,0));var e=c.blockCommentLead||i.blockCommentLead;if(null!=e)for(var n=a.line+1;n<=l;++n)(n!=l||d)&&h.replaceRange(e+m,g(n,0))}else h.replaceRange(k,b),h.replaceRange(j,a)})}}),a.defineExtension("uncomment",function(a,b,c){c||(c=e);var h,i=this,j=d(i,a),k=Math.min(0!=b.ch||b.line==a.line?b.line:b.line-1,i.lastLine()),l=Math.min(a.line,k),m=c.lineComment||j.lineComment,n=[],o=null==c.padding?" ":c.padding;a:if(m){for(var p=l;p<=k;++p){var q=i.getLine(p),r=q.indexOf(m);if(r>-1&&!/comment/.test(i.getTokenTypeAt(g(p,r+1)))&&(r=-1),r==-1&&f.test(q))break a;if(r>-1&&f.test(q.slice(0,r)))break a;n.push(q)}if(i.operation(function(){for(var a=l;a<=k;++a){var b=n[a-l],c=b.indexOf(m),d=c+m.length;c<0||(b.slice(d,d+o.length)==o&&(d+=o.length),h=!0,i.replaceRange("",g(a,c),g(a,d)))}}),h)return!0}var s=c.blockCommentStart||j.blockCommentStart,t=c.blockCommentEnd||j.blockCommentEnd;if(!s||!t)return!1;var u=c.blockCommentLead||j.blockCommentLead,v=i.getLine(l),w=v.indexOf(s);if(w==-1)return!1;var x=k==l?v:i.getLine(k),y=x.indexOf(t,k==l?w+s.length:0);y==-1&&l!=k&&(x=i.getLine(--k),y=x.indexOf(t));var z=g(l,w+1),A=g(k,y+1);if(y==-1||!/comment/.test(i.getTokenTypeAt(z))||!/comment/.test(i.getTokenTypeAt(A))||i.getRange(z,A,"\n").indexOf(t)>-1)return!1;var B=v.lastIndexOf(s,a.ch),C=B==-1?-1:v.slice(0,a.ch).indexOf(t,B+s.length);if(B!=-1&&C!=-1&&C+t.length!=a.ch)return!1;C=x.indexOf(t,b.ch);var D=x.slice(b.ch).lastIndexOf(s,C-b.ch);return B=C==-1||D==-1?-1:b.ch+D,(C==-1||B==-1||B==b.ch)&&(i.operation(function(){i.replaceRange("",g(k,y-(o&&x.slice(y-o.length,y)==o?o.length:0)),g(k,y+t.length));var a=w+s.length;if(o&&v.slice(a,a+o.length)==o&&(a+=o.length),i.replaceRange("",g(l,w),g(l,a)),u)for(var b=l+1;b<=k;++b){var c=i.getLine(b),d=c.indexOf(u);if(d!=-1&&!f.test(c.slice(0,d))){var e=d+u.length;o&&c.slice(e,e+o.length)==o&&(e+=o.length),i.replaceRange("",g(b,d),g(b,e))}}}),!0)})})},{"../../lib/codemirror":59}],2:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){function b(b){if(b.getOption("disableInput"))return a.Pass;for(var d,e=b.listSelections(),f=[],g=0;g-1){if(j=l.slice(0,k),/\S/.test(j)){j="";for(var n=0;n-1&&!/\S/.test(l.slice(0,k))&&(j=l.slice(0,k));null!=j&&(j+=d.blockCommentContinue)}if(null==j&&d.lineComment&&c(b)){var l=b.getLine(h.line),k=l.indexOf(d.lineComment);k>-1&&(j=l.slice(0,k),/\S/.test(j)?j=null:j+=d.lineComment+l.slice(k+d.lineComment.length).match(/^\s*/)[0])}if(null==j)return a.Pass;f[g]="\n"+j}b.operation(function(){for(var a=e.length-1;a>=0;a--)b.replaceRange(f[a],e[a].from(),e[a].to(),"+insert")})}function c(a){var b=a.getOption("continueComments");return!b||"object"!=typeof b||b.continueLineComment!==!1}for(var d=["clike","css","javascript"],e=0;e=0;h--){var j=g[h].head;c.replaceRange("",o(j.line,j.ch-1),o(j.line,j.ch+1),"+delete")}}function g(c){var d=e(c),f=d&&b(d,"explode");if(!f||c.getOption("disableInput"))return a.Pass;for(var g=c.listSelections(),h=0;h0;return{anchor:new o(b.anchor.line,b.anchor.ch+(c?-1:1)),head:new o(b.head.line,b.head.ch+(c?1:-1))}}function i(c,d){var f=e(c);if(!f||c.getOption("disableInput"))return a.Pass;var g=b(f,"pairs"),i=g.indexOf(d);if(i==-1)return a.Pass;for(var k,n=b(f,"triples"),p=g.charAt(i+1)==d,q=c.listSelections(),r=i%2==0,s=0;s1&&n.indexOf(d)>=0&&c.getRange(o(v.line,v.ch-2),v)==d+d&&(v.ch<=2||c.getRange(o(v.line,v.ch-3),o(v.line,v.ch-2))!=d))t="addFour";else if(p){if(a.isWordChar(w)||!l(c,v,d))return a.Pass;t="both"}else{if(!r||c.getLine(v.line).length!=v.ch&&!j(w,g)&&!/\s/.test(w))return a.Pass;t="both"}else t=p&&m(c,v)?"both":n.indexOf(d)>=0&&c.getRange(v,o(v.line,v.ch+3))==d+d+d?"skipThree":"skip";if(k){if(k!=t)return a.Pass}else k=t}var x=i%2?g.charAt(i-1):d,y=i%2?d:g.charAt(i+1);c.operation(function(){if("skip"==k)c.execCommand("goCharRight");else if("skipThree"==k)for(var a=0;a<3;a++)c.execCommand("goCharRight");else if("surround"==k){for(var b=c.getSelections(),a=0;a-1&&c%2==1}function k(a,b){var c=a.getRange(o(b.line,b.ch-1),o(b.line,b.ch+1));return 2==c.length?c:null}function l(b,c,d){var e=b.getLine(c.line),f=b.getTokenAt(c);if(/\bstring2?\b/.test(f.type)||m(b,c))return!1;var g=new a.StringStream(e.slice(0,c.ch)+d+e.slice(c.ch),4);for(g.pos=g.start=f.start;;){var h=b.getMode().token(g,f.state);if(g.pos>=c.ch+1)return/\bstring2?\b/.test(h);g.start=g.pos}}function m(a,b){var c=a.getTokenAt(o(b.line,b.ch+1));return/\bstring/.test(c.type)&&c.start==b.ch}var n={pairs:"()[]{}''\"\"",triples:"",explode:"[]{}"},o=a.Pos;a.defineOption("autoCloseBrackets",!1,function(d,e,f){f&&f!=a.Init&&(d.removeKeyMap(p),d.state.closeBrackets=null),e&&(c(b(e,"pairs")),d.state.closeBrackets=e,d.addKeyMap(p))});var p={Backspace:f,Enter:g};c(n.pairs+"`")})},{"../../lib/codemirror":59}],10:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),a("../fold/xml-fold")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","../fold/xml-fold"],d):d(CodeMirror)}(function(a){function b(b){if(b.getOption("disableInput"))return a.Pass;for(var c=b.listSelections(),d=[],i=0;ij.ch&&(r=r.slice(0,r.length-k.end+j.ch));var s=r.toLowerCase();if(!r||"string"==k.type&&(k.end!=j.ch||!/[\"\']/.test(k.string.charAt(k.string.length-1))||1==k.string.length)||"tag"==k.type&&"closeTag"==m.type||k.string.indexOf("/")==k.string.length-1||p&&e(p,s)>-1||f(b,r,j,m,!0))return a.Pass;var t=q&&e(q,s)>-1;d[i]={indent:t,text:">"+(t?"\n\n":"")+""+r+">",newPos:t?a.Pos(j.line+1,0):a.Pos(j.line,j.ch+1)}}for(var i=c.length-1;i>=0;i--){var u=d[i];b.replaceRange(u.text,c[i].head,c[i].anchor,"+insert");var v=b.listSelections().slice(0);v[i]={head:u.newPos,anchor:u.newPos},b.setSelections(v),u.indent&&(b.indentLine(u.newPos.line,null,!0),b.indentLine(u.newPos.line+1,null,!0))}}function c(b,c){for(var d=b.listSelections(),e=[],g=c?"/":"",h=0;h"!=b.getLine(i.line).charAt(j.end)&&(m+=">"),e[h]=m}b.replaceSelections(e),d=b.listSelections();for(var h=0;h'"]=function(a){return b(a)}),c.addKeyMap(g)}});var g=["area","base","br","col","command","embed","hr","img","input","keygen","link","meta","param","source","track","wbr"],h=["applet","blockquote","body","button","div","dl","fieldset","form","frameset","h1","h2","h3","h4","h5","h6","head","html","iframe","layer","legend","object","ol","p","select","table","ul"];a.commands.closeTag=function(a){return c(a)}})},{"../../lib/codemirror":59,"../fold/xml-fold":21}],11:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";var b=/^(\s*)(>[> ]*|[*+-] \[[x ]\]\s|[*+-]\s|(\d+)([.)]))(\s*)/,c=/^(\s*)(>[> ]*|[*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s*)$/,d=/[*+-]\s/;a.commands.newlineAndIndentContinueMarkdownList=function(e){if(e.getOption("disableInput"))return a.Pass;for(var f=e.listSelections(),g=[],h=0;h\s*$/.test(m)||e.replaceRange("",{line:i.line,ch:0},{line:i.line,ch:i.ch+1}),g[h]="\n";else{var o=n[1],p=n[5],q=d.test(n[2])||n[2].indexOf(">")>=0?n[2].replace("x"," "):parseInt(n[3],10)+1+n[4];g[h]="\n"+o+q+p}}e.replaceSelections(g)}})},{"../../lib/codemirror":59}],12:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){function b(a,b,d){var e=a.getLineHandle(b.line),f=b.ch-1,i=d&&d.afterCursor;null==i&&(i=/(^| )cm-fat-cursor($| )/.test(a.getWrapperElement().className));var j=!i&&f>=0&&h[e.text.charAt(f)]||h[e.text.charAt(++f)];if(!j)return null;var k=">"==j.charAt(1)?1:-1;if(d&&d.strict&&k>0!=(f==b.ch))return null;var l=a.getTokenTypeAt(g(b.line,f+1)),m=c(a,g(b.line,f+(k>0?1:0)),k,l||null,d);return null==m?null:{from:g(b.line,f),to:m&&m.pos,match:m&&m.ch==j.charAt(0),forward:k>0}}function c(a,b,c,d,e){for(var f=e&&e.maxScanLineLength||1e4,i=e&&e.maxScanLines||1e3,j=[],k=e&&e.bracketRegex?e.bracketRegex:/[(){}[\]]/,l=c>0?Math.min(b.line+i,a.lastLine()+1):Math.max(a.firstLine()-1,b.line-i),m=b.line;m!=l;m+=c){var n=a.getLine(m);if(n){var o=c>0?0:n.length-1,p=c>0?n.length:-1;if(!(n.length>f))for(m==b.line&&(o=b.ch-(c<0?1:0));o!=p;o+=c){var q=n.charAt(o);if(k.test(q)&&(void 0===d||a.getTokenTypeAt(g(m,o+1))==d)){var r=h[q];if(">"==r.charAt(1)==c>0)j.push(q);else{if(!j.length)return{pos:g(m,o),ch:q};j.pop()}}}}}return m-c!=(c>0?a.lastLine():a.firstLine())&&null}function d(a,c,d){for(var e=a.state.matchBrackets.maxHighlightLineLength||1e3,h=[],i=a.listSelections(),j=0;j",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<"},i=null;a.defineOption("matchBrackets",!1,function(b,c,d){d&&d!=a.Init&&(b.off("cursorActivity",e),i&&(i(),i=null)),c&&(b.state.matchBrackets="object"==typeof c?c:{},b.on("cursorActivity",e))}),a.defineExtension("matchBrackets",function(){d(this,!0)}),a.defineExtension("findMatchingBracket",function(a,c,d){return(d||"boolean"==typeof c)&&(d?(d.strict=c,c=d):c=c?{strict:!0}:null),b(this,a,c)}),a.defineExtension("scanForBracket",function(a,b,d,e){return c(this,a,b,d,e)})})},{"../../lib/codemirror":59}],13:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),a("../fold/xml-fold")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","../fold/xml-fold"],d):d(CodeMirror)}(function(a){"use strict";function b(a){a.state.tagHit&&a.state.tagHit.clear(),a.state.tagOther&&a.state.tagOther.clear(),a.state.tagHit=a.state.tagOther=null}function c(c){c.state.failedTagMatch=!1,c.operation(function(){if(b(c),!c.somethingSelected()){var d=c.getCursor(),e=c.getViewport();e.from=Math.min(e.from,d.line),e.to=Math.max(d.line+1,e.to);var f=a.findMatchingTag(c,d,e);if(f){if(c.state.matchBothTags){var g="open"==f.at?f.open:f.close;g&&(c.state.tagHit=c.markText(g.from,g.to,{className:"CodeMirror-matchingtag"}))}var h="close"==f.at?f.open:f.close;h?c.state.tagOther=c.markText(h.from,h.to,{className:"CodeMirror-matchingtag"}):c.state.failedTagMatch=!0}}})}function d(a){a.state.failedTagMatch&&c(a)}a.defineOption("matchTags",!1,function(e,f,g){g&&g!=a.Init&&(e.off("cursorActivity",c),e.off("viewportChange",d),b(e)),f&&(e.state.matchBothTags="object"==typeof f&&f.bothTags,e.on("cursorActivity",c),e.on("viewportChange",d),c(e))}),a.commands.toMatchingTag=function(b){var c=a.findMatchingTag(b,b.getCursor());if(c){var d="close"==c.at?c.open:c.close;d&&b.extendSelection(d.to,d.from)}}})},{"../../lib/codemirror":59,"../fold/xml-fold":21}],14:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){a.defineOption("showTrailingSpace",!1,function(b,c,d){d==a.Init&&(d=!1),d&&!c?b.removeOverlay("trailingspace"):!d&&c&&b.addOverlay({token:function(a){for(var b=a.string.length,c=b;c&&/\s/.test(a.string.charAt(c-1));--c);return c>a.pos?(a.pos=c,null):(a.pos=b,"trailingspace")},name:"trailingspace"})})})},{"../../lib/codemirror":59}],15:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";a.registerHelper("fold","brace",function(b,c){function d(d){for(var h=c.ch,i=0;;){var j=h<=0?-1:g.lastIndexOf(d,h-1);if(j!=-1){if(1==i&&jb.lastLine())return null;var d=b.getTokenAt(a.Pos(c,1));if(/\S/.test(d.string)||(d=b.getTokenAt(a.Pos(c,d.end+1))),"keyword"!=d.type||"import"!=d.string)return null;for(var e=c,f=Math.min(b.lastLine(),c+10);e<=f;++e){var g=b.getLine(e),h=g.indexOf(";");if(h!=-1)return{startCh:d.end,end:a.Pos(e,h)}}}var e,f=c.line,g=d(f);if(!g||d(f-1)||(e=d(f-2))&&e.end.line==f-1)return null;for(var h=g.end;;){var i=d(h.line+1);if(null==i)break;h=i.end}return{from:b.clipPos(a.Pos(f,g.startCh+1)),to:h}}),a.registerHelper("fold","include",function(b,c){function d(c){if(cb.lastLine())return null;var d=b.getTokenAt(a.Pos(c,1));return/\S/.test(d.string)||(d=b.getTokenAt(a.Pos(c,d.end+1))),"meta"==d.type&&"#include"==d.string.slice(0,8)?d.start+8:void 0}var e=c.line,f=d(e);if(null==f||null!=d(e-1))return null;for(var g=e;;){var h=d(g+1);if(null==h)break;++g}return{from:a.Pos(e,f+1),to:b.clipPos(a.Pos(g))}})})},{"../../lib/codemirror":59}],16:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";a.registerGlobalHelper("fold","comment",function(a){return a.blockCommentStart&&a.blockCommentEnd},function(b,c){var d=b.getModeAt(c),e=d.blockCommentStart,f=d.blockCommentEnd;if(e&&f){for(var g,h=c.line,i=b.getLine(h),j=c.ch,k=0;;){var l=j<=0?-1:i.lastIndexOf(e,j-1);if(l!=-1){if(1==k&&lb.firstLine();)e=a.Pos(e.line-1,0),k=h(!1);if(k&&!k.cleared&&"unfold"!==g){var l=c(b,f);a.on(l,"mousedown",function(b){m.clear(),a.e_preventDefault(b)});var m=b.markText(k.from,k.to,{replacedWith:l,clearOnEnter:d(b,f,"clearOnEnter"),__isFold:!0});m.on("clear",function(c,d){a.signal(b,"unfold",b,c,d)}),a.signal(b,"fold",b,k.from,k.to)}}function c(a,b){var c=d(a,b,"widget");if("string"==typeof c){var e=document.createTextNode(c);c=document.createElement("span"),c.appendChild(e),c.className="CodeMirror-foldmarker"}else c&&(c=c.cloneNode(!0));return c}function d(a,b,c){if(b&&void 0!==b[c])return b[c];var d=a.options.foldOptions;return d&&void 0!==d[c]?d[c]:e[c]}a.newFoldFunction=function(a,c){return function(d,e){b(d,e,{rangeFinder:a,
+widget:c})}},a.defineExtension("foldCode",function(a,c,d){b(this,a,c,d)}),a.defineExtension("isFolded",function(a){for(var b=this.findMarksAt(a),c=0;c=h&&(c=e(f.indicatorOpen))}a.setGutterMarker(b,f.gutter,c),++g})}function g(a){var b=a.getViewport(),c=a.state.foldGutter;c&&(a.operation(function(){f(a,b.from,b.to)}),c.from=b.from,c.to=b.to)}function h(a,b,c){var e=a.state.foldGutter;if(e){var f=e.options;if(c==f.gutter){var g=d(a,b);g?g.clear():a.foldCode(l(b,0),f.rangeFinder)}}}function i(a){var b=a.state.foldGutter;if(b){var c=b.options;b.from=b.to=0,clearTimeout(b.changeUpdate),b.changeUpdate=setTimeout(function(){g(a)},c.foldOnChangeTimeSpan||600)}}function j(a){var b=a.state.foldGutter;if(b){var c=b.options;clearTimeout(b.changeUpdate),b.changeUpdate=setTimeout(function(){var c=a.getViewport();b.from==b.to||c.from-b.to>20||b.from-c.to>20?g(a):a.operation(function(){c.fromb.to&&(f(a,b.to,c.to),b.to=c.to)})},c.updateViewportTimeSpan||400)}}function k(a,b){var c=a.state.foldGutter;if(c){var d=b.line;d>=c.from&&de))break;f=g}}return f?{from:a.Pos(d.line,c.getLine(d.line).length),to:a.Pos(f,c.getLine(f).length)}:void 0}})})},{"../../lib/codemirror":59}],20:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";a.registerHelper("fold","markdown",function(b,c){function d(c){var d=b.getTokenTypeAt(a.Pos(c,0));return d&&/\bheader\b/.test(d)}function e(a,b,c){var e=b&&b.match(/^#+/);return e&&d(a)?e[0].length:(e=c&&c.match(/^[=\-]+\s*$/),e&&d(a+1)?"="==c[0]?1:2:f)}var f=100,g=b.getLine(c.line),h=b.getLine(c.line+1),i=e(c.line,g,h);if(i!==f){for(var j=b.lastLine(),k=c.line,l=b.getLine(k+2);k=a.max))return a.ch=0,a.text=a.cm.getLine(++a.line),!0}function f(a){if(!(a.line<=a.min))return a.text=a.cm.getLine(--a.line),a.ch=a.text.length,!0}function g(a){for(;;){var b=a.text.indexOf(">",a.ch);if(b==-1){if(e(a))continue;return}{if(d(a,b+1)){var c=a.text.lastIndexOf("/",b),f=c>-1&&!/\S/.test(a.text.slice(c+1,b));return a.ch=b+1,f?"selfClose":"regular"}a.ch=b+1}}}function h(a){for(;;){var b=a.ch?a.text.lastIndexOf("<",a.ch-1):-1;if(b==-1){if(f(a))continue;return}if(d(a,b+1)){p.lastIndex=b,a.ch=b;var c=p.exec(a.text);if(c&&c.index==b)return c}else a.ch=b}}function i(a){for(;;){p.lastIndex=a.ch;var b=p.exec(a.text);if(!b){if(e(a))continue;return}{if(d(a,b.index+1))return a.ch=b.index+b[0].length,b;a.ch=b.index+1}}}function j(a){for(;;){var b=a.ch?a.text.lastIndexOf(">",a.ch-1):-1;if(b==-1){if(f(a))continue;return}{if(d(a,b+1)){var c=a.text.lastIndexOf("/",b),e=c>-1&&!/\S/.test(a.text.slice(c+1,b));return a.ch=b+1,e?"selfClose":"regular"}a.ch=b}}}function k(a,b){for(var c=[];;){var d,e=i(a),f=a.line,h=a.ch-(e?e[0].length:0);if(!e||!(d=g(a)))return;if("selfClose"!=d)if(e[1]){for(var j=c.length-1;j>=0;--j)if(c[j]==e[2]){c.length=j;break}if(j<0&&(!b||b==e[2]))return{tag:e[2],from:m(f,h),to:m(a.line,a.ch)}}else c.push(e[2])}}function l(a,b){for(var c=[];;){var d=j(a);if(!d)return;if("selfClose"!=d){var e=a.line,f=a.ch,g=h(a);if(!g)return;if(g[1])c.push(g[2]);else{for(var i=c.length-1;i>=0;--i)if(c[i]==g[2]){c.length=i;break}if(i<0&&(!b||b==g[2]))return{tag:g[2],from:m(a.line,a.ch),to:m(e,f)}}}else h(a)}}var m=a.Pos,n="A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",o=n+"-:.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",p=new RegExp("<(/?)(["+n+"]["+o+"]*)","g");a.registerHelper("fold","xml",function(a,b){for(var d=new c(a,b.line,0);;){var e,f=i(d);if(!f||d.line!=b.line||!(e=g(d)))return;if(!f[1]&&"selfClose"!=e){var h=m(d.line,d.ch),j=k(d,f[2]);return j&&{from:h,to:j.from}}}}),a.findMatchingTag=function(a,d,e){var f=new c(a,d.line,d.ch,e);if(f.text.indexOf(">")!=-1||f.text.indexOf("<")!=-1){var i=g(f),j=i&&m(f.line,f.ch),n=i&&h(f);if(i&&n&&!(b(f,d)>0)){var o={from:m(f.line,f.ch),to:j,tag:n[2]};return"selfClose"==i?{open:o,close:null,at:"open"}:n[1]?{open:l(f,n[2]),close:o,at:"close"}:(f=new c(a,j.line,j.ch,e),{open:o,close:k(f,n[2]),at:"open"})}}},a.findEnclosingTag=function(a,b,d,e){for(var f=new c(a,b.line,b.ch,d);;){var g=l(f,e);if(!g)break;var h=new c(a,b.line,b.ch,d),i=k(h,g.tag);if(i)return{open:g,close:i}}},a.scanForClosingTag=function(a,b,d,e){var f=new c(a,b.line,b.ch,e?{from:0,to:e}:null);return k(f,d)}})},{"../../lib/codemirror":59}],22:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";var b=/[\w$]+/,c=500;a.registerHelper("hint","anyword",function(d,e){for(var f=e&&e.word||b,g=e&&e.range||c,h=d.getCursor(),i=d.getLine(h.line),j=h.ch,k=j;k&&f.test(i.charAt(k-1));)--k;for(var l=k!=j&&i.slice(k,j),m=e&&e.list||[],n={},o=new RegExp(f.source,"g"),p=-1;p<=1;p+=2)for(var q=h.line,r=Math.min(Math.max(q+p*g,d.firstLine()),d.lastLine())+p;q!=r;q+=p)for(var s,t=d.getLine(q);s=o.exec(t);)q==h.line&&s[0]===l||l&&0!=s[0].lastIndexOf(l,0)||Object.prototype.hasOwnProperty.call(n,s[0])||(n[s[0]]=!0,m.push(s[0]));return{list:m,from:a.Pos(h.line,k),to:a.Pos(h.line,j)}})})},{"../../lib/codemirror":59}],23:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),a("../../mode/css/css")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","../../mode/css/css"],d):d(CodeMirror)}(function(a){"use strict";var b={link:1,visited:1,active:1,hover:1,focus:1,"first-letter":1,"first-line":1,"first-child":1,before:1,after:1,lang:1};a.registerHelper("hint","css",function(c){function d(a){for(var b in a)j&&0!=b.lastIndexOf(j,0)||l.push(b)}var e=c.getCursor(),f=c.getTokenAt(e),g=a.innerMode(c.getMode(),f.state);if("css"==g.mode.name){if("keyword"==f.type&&0=="!important".indexOf(f.string))return{list:["!important"],from:a.Pos(e.line,f.start),to:a.Pos(e.line,f.end)};var h=f.start,i=e.ch,j=f.string.slice(0,i-h);/[^\w$_-]/.test(j)&&(j="",h=i=e.ch);var k=a.resolveMode("text/css"),l=[],m=g.state.state;return"pseudo"==m||"variable-3"==f.type?d(b):"block"==m||"maybeprop"==m?d(k.propertyKeywords):"prop"==m||"parens"==m||"at"==m||"params"==m?(d(k.valueKeywords),d(k.colorKeywords)):"media"!=m&&"media_parens"!=m||(d(k.mediaTypes),d(k.mediaFeatures)),l.length?{list:l,from:a.Pos(e.line,h),to:a.Pos(e.line,i)}:void 0}})})},{"../../lib/codemirror":59,"../../mode/css/css":61}],24:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),a("./xml-hint")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","./xml-hint"],d):d(CodeMirror)}(function(a){"use strict";function b(a){for(var b in l)l.hasOwnProperty(b)&&(a.attrs[b]=l[b])}function c(b,c){var d={schemaInfo:k};if(c)for(var e in c)d[e]=c[e];return a.hint.xml(b,d)}var d="ab aa af ak sq am ar an hy as av ae ay az bm ba eu be bn bh bi bs br bg my ca ch ce ny zh cv kw co cr hr cs da dv nl dz en eo et ee fo fj fi fr ff gl ka de el gn gu ht ha he hz hi ho hu ia id ie ga ig ik io is it iu ja jv kl kn kr ks kk km ki rw ky kv kg ko ku kj la lb lg li ln lo lt lu lv gv mk mg ms ml mt mi mr mh mn na nv nb nd ne ng nn no ii nr oc oj cu om or os pa pi fa pl ps pt qu rm rn ro ru sa sc sd se sm sg sr gd sn si sk sl so st es su sw ss sv ta te tg th ti bo tk tl tn to tr ts tt tw ty ug uk ur uz ve vi vo wa cy wo fy xh yi yo za zu".split(" "),e=["_blank","_self","_top","_parent"],f=["ascii","utf-8","utf-16","latin1","latin1"],g=["get","post","put","delete"],h=["application/x-www-form-urlencoded","multipart/form-data","text/plain"],i=["all","screen","print","embossed","braille","handheld","print","projection","screen","tty","tv","speech","3d-glasses","resolution [>][<][=] [X]","device-aspect-ratio: X/Y","orientation:portrait","orientation:landscape","device-height: [X]","device-width: [X]"],j={attrs:{}},k={a:{attrs:{href:null,ping:null,type:null,media:i,target:e,hreflang:d}},abbr:j,acronym:j,address:j,applet:j,area:{attrs:{alt:null,coords:null,href:null,target:null,ping:null,media:i,hreflang:d,type:null,shape:["default","rect","circle","poly"]}},article:j,aside:j,audio:{attrs:{src:null,mediagroup:null,crossorigin:["anonymous","use-credentials"],preload:["none","metadata","auto"],autoplay:["","autoplay"],loop:["","loop"],controls:["","controls"]}},b:j,base:{attrs:{href:null,target:e}},basefont:j,bdi:j,bdo:j,big:j,blockquote:{attrs:{cite:null}},body:j,br:j,button:{attrs:{form:null,formaction:null,name:null,value:null,autofocus:["","autofocus"],disabled:["","autofocus"],formenctype:h,formmethod:g,formnovalidate:["","novalidate"],formtarget:e,type:["submit","reset","button"]}},canvas:{attrs:{width:null,height:null}},caption:j,center:j,cite:j,code:j,col:{attrs:{span:null}},colgroup:{attrs:{span:null}},command:{attrs:{type:["command","checkbox","radio"],label:null,icon:null,radiogroup:null,command:null,title:null,disabled:["","disabled"],checked:["","checked"]}},data:{attrs:{value:null}},datagrid:{attrs:{disabled:["","disabled"],multiple:["","multiple"]}},datalist:{attrs:{data:null}},dd:j,del:{attrs:{cite:null,datetime:null}},details:{attrs:{open:["","open"]}},dfn:j,dir:j,div:j,dl:j,dt:j,em:j,embed:{attrs:{src:null,type:null,width:null,height:null}},eventsource:{attrs:{src:null}},fieldset:{attrs:{disabled:["","disabled"],form:null,name:null}},figcaption:j,figure:j,font:j,footer:j,form:{attrs:{action:null,name:null,"accept-charset":f,autocomplete:["on","off"],enctype:h,method:g,novalidate:["","novalidate"],target:e}},frame:j,frameset:j,h1:j,h2:j,h3:j,h4:j,h5:j,h6:j,head:{attrs:{},children:["title","base","link","style","meta","script","noscript","command"]},header:j,hgroup:j,hr:j,html:{attrs:{manifest:null},children:["head","body"]},i:j,iframe:{attrs:{src:null,srcdoc:null,name:null,width:null,height:null,sandbox:["allow-top-navigation","allow-same-origin","allow-forms","allow-scripts"],seamless:["","seamless"]}},img:{attrs:{alt:null,src:null,ismap:null,usemap:null,width:null,height:null,crossorigin:["anonymous","use-credentials"]}},input:{attrs:{alt:null,dirname:null,form:null,formaction:null,height:null,list:null,max:null,maxlength:null,min:null,name:null,pattern:null,placeholder:null,size:null,src:null,step:null,value:null,width:null,accept:["audio/*","video/*","image/*"],autocomplete:["on","off"],autofocus:["","autofocus"],checked:["","checked"],disabled:["","disabled"],formenctype:h,formmethod:g,formnovalidate:["","novalidate"],formtarget:e,multiple:["","multiple"],readonly:["","readonly"],required:["","required"],type:["hidden","text","search","tel","url","email","password","datetime","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}},ins:{attrs:{cite:null,datetime:null}},kbd:j,keygen:{attrs:{challenge:null,form:null,name:null,autofocus:["","autofocus"],disabled:["","disabled"],keytype:["RSA"]}},label:{attrs:{"for":null,form:null}},legend:j,li:{attrs:{value:null}},link:{attrs:{href:null,type:null,hreflang:d,media:i,sizes:["all","16x16","16x16 32x32","16x16 32x32 64x64"]}},map:{attrs:{name:null}},mark:j,menu:{attrs:{label:null,type:["list","context","toolbar"]}},meta:{attrs:{content:null,charset:f,name:["viewport","application-name","author","description","generator","keywords"],"http-equiv":["content-language","content-type","default-style","refresh"]}},meter:{attrs:{value:null,min:null,low:null,high:null,max:null,optimum:null}},nav:j,noframes:j,noscript:j,object:{attrs:{data:null,type:null,name:null,usemap:null,form:null,width:null,height:null,typemustmatch:["","typemustmatch"]}},ol:{attrs:{reversed:["","reversed"],start:null,type:["1","a","A","i","I"]}},optgroup:{attrs:{disabled:["","disabled"],label:null}},option:{attrs:{disabled:["","disabled"],label:null,selected:["","selected"],value:null}},output:{attrs:{"for":null,form:null,name:null}},p:j,param:{attrs:{name:null,value:null}},pre:j,progress:{attrs:{value:null,max:null}},q:{attrs:{cite:null}},rp:j,rt:j,ruby:j,s:j,samp:j,script:{attrs:{type:["text/javascript"],src:null,async:["","async"],defer:["","defer"],charset:f}},section:j,select:{attrs:{form:null,name:null,size:null,autofocus:["","autofocus"],disabled:["","disabled"],multiple:["","multiple"]}},small:j,source:{attrs:{src:null,type:null,media:null}},span:j,strike:j,strong:j,style:{attrs:{type:["text/css"],media:i,scoped:null}},sub:j,summary:j,sup:j,table:j,tbody:j,td:{attrs:{colspan:null,rowspan:null,headers:null}},textarea:{attrs:{dirname:null,form:null,maxlength:null,name:null,placeholder:null,rows:null,cols:null,autofocus:["","autofocus"],disabled:["","disabled"],readonly:["","readonly"],required:["","required"],wrap:["soft","hard"]}},tfoot:j,th:{attrs:{colspan:null,rowspan:null,headers:null,scope:["row","col","rowgroup","colgroup"]}},thead:j,time:{attrs:{datetime:null}},title:j,tr:j,track:{attrs:{src:null,label:null,"default":null,kind:["subtitles","captions","descriptions","chapters","metadata"],srclang:d}},tt:j,u:j,ul:j,"var":j,video:{attrs:{src:null,poster:null,width:null,height:null,crossorigin:["anonymous","use-credentials"],preload:["auto","metadata","none"],autoplay:["","autoplay"],mediagroup:["movie"],muted:["","muted"],controls:["","controls"]}},wbr:j},l={accesskey:["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9"],"class":null,contenteditable:["true","false"],contextmenu:null,dir:["ltr","rtl","auto"],draggable:["true","false","auto"],dropzone:["copy","move","link","string:","file:"],hidden:["hidden"],id:null,inert:["inert"],itemid:null,itemprop:null,itemref:null,itemscope:["itemscope"],itemtype:null,lang:["en","es"],spellcheck:["true","false"],style:null,tabindex:["1","2","3","4","5","6","7","8","9"],title:null,translate:["yes","no"],onclick:null,rel:["stylesheet","alternate","author","bookmark","help","license","next","nofollow","noreferrer","prefetch","prev","search","tag"]};b(j);for(var m in k)k.hasOwnProperty(m)&&k[m]!=j&&b(k[m]);a.htmlSchema=k,a.registerHelper("hint","html",c)})},{"../../lib/codemirror":59,"./xml-hint":28}],25:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){function b(a,b){for(var c=0,d=a.length;cf.ch&&(g.end=f.ch,g.string=g.string.slice(0,f.ch-g.start)):g={start:f.ch,end:f.ch,string:"",state:g.state,type:"."==g.string?"property":null};for(var h=g;"property"==h.type;){if(h=d(b,j(f.line,h.start)),"."!=h.string)return;if(h=d(b,j(f.line,h.start)),!k)var k=[];k.push(h)}return{list:i(g,k,c,e),from:j(f.line,g.start),to:j(f.line,g.end)}}}function e(a,b){return d(a,n,function(a,b){return a.getTokenAt(b)},b)}function f(a,b){var c=a.getTokenAt(b);return b.ch==c.start+1&&"."==c.string.charAt(0)?(c.end=c.start,c.string=".",c.type="property"):/^\.[\w$_]*$/.test(c.string)&&(c.type="property",c.start++,c.string=c.string.replace(/\./,"")),c}function g(a,b){return d(a,o,f,b)}function h(a,b){if(Object.getOwnPropertyNames&&Object.getPrototypeOf)for(var c=a;c;c=Object.getPrototypeOf(c))Object.getOwnPropertyNames(c).forEach(b);else for(var d in a)b(d)}function i(a,d,e,f){function g(a){0!=a.lastIndexOf(n,0)||c(j,a)||j.push(a)}function i(a){"string"==typeof a?b(k,g):a instanceof Array?b(l,g):a instanceof Function&&b(m,g),h(a,g)}var j=[],n=a.string,o=f&&f.globalScope||window;if(d&&d.length){var p,q=d.pop();for(q.type&&0===q.type.indexOf("variable")?(f&&f.additionalContext&&(p=f.additionalContext[q.string]),f&&f.useGlobalScope===!1||(p=p||o[q.string])):"string"==q.type?p="":"atom"==q.type?p=1:"function"==q.type&&(null==o.jQuery||"$"!=q.string&&"jQuery"!=q.string||"function"!=typeof o.jQuery?null!=o._&&"_"==q.string&&"function"==typeof o._&&(p=o._()):p=o.jQuery());null!=p&&d.length;)p=p[d.pop().string];null!=p&&i(p)}else{for(var r=a.state.localVars;r;r=r.next)g(r.name);for(var r=a.state.globalVars;r;r=r.next)g(r.name);f&&f.useGlobalScope===!1||i(o),b(e,g)}return j}var j=a.Pos;a.registerHelper("hint","javascript",e),a.registerHelper("hint","coffeescript",g);var k="charAt charCodeAt indexOf lastIndexOf substring substr slice trim trimLeft trimRight toUpperCase toLowerCase split concat match replace search".split(" "),l="length concat join splice push pop shift unshift slice reverse sort indexOf lastIndexOf every some filter forEach map reduce reduceRight ".split(" "),m="prototype apply call bind".split(" "),n="break case catch continue debugger default delete do else false finally for function if in instanceof new null return switch throw true try typeof var void while with".split(" "),o="and break catch class continue delete do else extends false finally for if in instanceof isnt new no not null of off on or return switch then throw true try typeof until void while with yes".split(" ")})},{"../../lib/codemirror":59}],26:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(a,b){this.cm=a,this.options=b,this.widget=null,this.debounce=0,this.tick=0,this.startPos=this.cm.getCursor("start"),this.startLen=this.cm.getLine(this.startPos.line).length-this.cm.getSelection().length;var c=this;a.on("cursorActivity",this.activityFunc=function(){c.cursorActivity()})}function c(b,c){var d=a.cmpPos(c.from,b.from);return d>0&&b.to.ch-b.from.ch!=c.to.ch-c.from.ch}function d(a,b,c){var d=a.options.hintOptions,e={};for(var f in p)e[f]=p[f];if(d)for(var f in d)void 0!==d[f]&&(e[f]=d[f]);if(c)for(var f in c)void 0!==c[f]&&(e[f]=c[f]);return e.hint.resolve&&(e.hint=e.hint.resolve(a,b)),e}function e(a){return"string"==typeof a?a:a.text}function f(a,b){function c(a,c){var e;e="string"!=typeof c?function(a){return c(a,b)}:d.hasOwnProperty(c)?d[c]:c,f[a]=e}var d={Up:function(){b.moveFocus(-1)},Down:function(){b.moveFocus(1)},PageUp:function(){b.moveFocus(-b.menuSize()+1,!0)},PageDown:function(){b.moveFocus(b.menuSize()-1,!0)},Home:function(){b.setFocus(0)},End:function(){b.setFocus(b.length-1)},Enter:b.pick,Tab:b.pick,Esc:b.close},e=a.options.customKeys,f=e?{}:d;if(e)for(var g in e)e.hasOwnProperty(g)&&c(g,e[g]);var h=a.options.extraKeys;if(h)for(var g in h)h.hasOwnProperty(g)&&c(g,h[g]);return f}function g(a,b){for(;b&&b!=a;){if("LI"===b.nodeName.toUpperCase()&&b.parentNode==a)return b;b=b.parentNode}}function h(b,c){this.completion=b,this.data=c,this.picked=!1;var d=this,h=b.cm,i=this.hints=document.createElement("ul");i.className="CodeMirror-hints",this.selectedHint=c.selectedHint||0;for(var j=c.list,k=0;ki.clientHeight+1,z=h.getScrollInfo();if(x>0){var A=w.bottom-w.top,B=q.top-(q.bottom-w.top);if(B-A>0)i.style.top=(s=q.top-A)+"px",t=!1;else if(A>v){i.style.height=v-5+"px",i.style.top=(s=q.bottom-w.top)+"px";var C=h.getCursor();c.from.ch!=C.ch&&(q=h.cursorCoords(C),i.style.left=(r=q.left)+"px",w=i.getBoundingClientRect())}}var D=w.right-u;if(D>0&&(w.right-w.left>u&&(i.style.width=u-5+"px",D-=w.right-w.left-u),i.style.left=(r=q.left-D)+"px"),y)for(var E=i.firstChild;E;E=E.nextSibling)E.style.paddingRight=h.display.nativeBarWidth+"px";if(h.addKeyMap(this.keyMap=f(b,{moveFocus:function(a,b){d.changeActive(d.selectedHint+a,b)},setFocus:function(a){d.changeActive(a)},menuSize:function(){return d.screenAmount()},length:j.length,close:function(){b.close()},pick:function(){d.pick()},data:c})),b.options.closeOnUnfocus){var F;h.on("blur",this.onBlur=function(){F=setTimeout(function(){b.close()},100)}),h.on("focus",this.onFocus=function(){clearTimeout(F)})}return h.on("scroll",this.onScroll=function(){var a=h.getScrollInfo(),c=h.getWrapperElement().getBoundingClientRect(),d=s+z.top-a.top,e=d-(window.pageYOffset||(document.documentElement||document.body).scrollTop);return t||(e+=i.offsetHeight),e<=c.top||e>=c.bottom?b.close():(i.style.top=d+"px",void(i.style.left=r+z.left-a.left+"px"))}),a.on(i,"dblclick",function(a){var b=g(i,a.target||a.srcElement);b&&null!=b.hintId&&(d.changeActive(b.hintId),d.pick())}),a.on(i,"click",function(a){var c=g(i,a.target||a.srcElement);c&&null!=c.hintId&&(d.changeActive(c.hintId),b.options.completeOnSingleClick&&d.pick())}),a.on(i,"mousedown",function(){setTimeout(function(){h.focus()},20)}),a.signal(c,"select",j[this.selectedHint],i.childNodes[this.selectedHint]),!0}function i(a,b){if(!a.somethingSelected())return b;for(var c=[],d=0;d0?b(a):d(e+1)})}var f=i(a,e);d(0)};return f.async=!0,f.supportsSelection=!0,f}return(d=b.getHelper(b.getCursor(),"hintWords"))?function(b){return a.hint.fromList(b,{words:d})}:a.hint.anyword?function(b,c){return a.hint.anyword(b,c)}:function(){}}var l="CodeMirror-hint",m="CodeMirror-hint-active";a.showHint=function(a,b,c){if(!b)return a.showHint(c);c&&c.async&&(b.async=!0);var d={hint:b};if(c)for(var e in c)d[e]=c[e];return a.showHint(d)},a.defineExtension("showHint",function(c){c=d(this,this.getCursor("start"),c);var e=this.listSelections();if(!(e.length>1)){if(this.somethingSelected()){if(!c.hint.supportsSelection)return;for(var f=0;f=this.data.list.length?b=c?this.data.list.length-1:0:b<0&&(b=c?0:this.data.list.length-1),this.selectedHint!=b){var d=this.hints.childNodes[this.selectedHint];d.className=d.className.replace(" "+m,""),d=this.hints.childNodes[this.selectedHint=b],d.className+=" "+m,d.offsetTopthis.hints.scrollTop+this.hints.clientHeight&&(this.hints.scrollTop=d.offsetTop+d.offsetHeight-this.hints.clientHeight+3),a.signal(this.data,"select",this.data.list[this.selectedHint],d)}},screenAmount:function(){return Math.floor(this.hints.clientHeight/this.hints.firstChild.offsetHeight)||1}},a.registerHelper("hint","auto",{resolve:k}),a.registerHelper("hint","fromList",function(b,c){var d=b.getCursor(),e=b.getTokenAt(d),f=a.Pos(d.line,e.end);if(e.string&&/\w/.test(e.string[e.string.length-1]))var g=e.string,h=a.Pos(d.line,e.start);else var g="",h=f;for(var i=[],j=0;j,]/,closeOnUnfocus:!0,completeOnSingleClick:!0,container:null,customKeys:null,extraKeys:null};a.defineOption("hintOptions",null)})},{"../../lib/codemirror":59}],27:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),a("../../mode/sql/sql")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","../../mode/sql/sql"],d):d(CodeMirror)}(function(a){"use strict";function b(a){return"[object Array]"==Object.prototype.toString.call(a)}function c(b){var c=b.doc.modeOption;return"sql"===c&&(c="text/x-sql"),a.resolveMode(c).keywords}function d(b){var c=b.doc.modeOption;return"sql"===c&&(c="text/x-sql"),a.resolveMode(c).identifierQuote||"`"}function e(a){return"string"==typeof a?a:a.text}function f(a,c){return b(c)&&(c={columns:c}),c.text||(c.text=a),c}function g(a){var c={};if(b(a))for(var d=a.length-1;d>=0;d--){var g=a[d];c[e(g).toUpperCase()]=f(e(g),g)}else if(a)for(var h in a)c[h.toUpperCase()]=f(h,a[h]);return c}function h(a){return q[a.toUpperCase()]}function i(a){var b={};for(var c in a)a.hasOwnProperty(c)&&(b[c]=a[c]);return b}function j(a,b){var c=a.length,d=e(b).substr(0,c);return a.toUpperCase()===d.toUpperCase()}function k(a,c,d,e){if(b(d))for(var f=0;f0)&&w(m,i[n])<=0){j={start:l,end:i[n]};break}l=i[n]}for(var p=c.getRange(j.start,j.end,!1),n=0;nm.ch&&(u.end=m.ch,u.string=u.string.slice(0,m.ch-u.start)),u.string.match(/^[.`"\w@]\w*$/)?(l=u.string,i=u.start,j=u.end):(i=j=m.ch,l=""),"."==l.charAt(0)||l.charAt(0)==t?i=n(m,u,o,a):(k(o,l,q,function(a){return a}),k(o,l,r,function(a){return a}),f||k(o,l,s,function(a){return a.toUpperCase()})),{list:o,from:v(m.line,i),to:v(m.line,j)}})})},{"../../lib/codemirror":59,"../../mode/sql/sql":74}],28:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(b,d){var e=d&&d.schemaInfo,f=d&&d.quoteChar||'"';if(e){var g=b.getCursor(),h=b.getTokenAt(g);h.end>g.ch&&(h.end=g.ch,h.string=h.string.slice(0,g.ch-h.start));var i=a.innerMode(b.getMode(),h.state);if("xml"==i.mode.name){var j,k,l=[],m=!1,n=/\btag\b/.test(h.type)&&!/>$/.test(h.string),o=n&&/^\w/.test(h.string);if(o){var p=b.getLine(g.line).slice(Math.max(0,h.start-2),h.start),q=/<\/$/.test(p)?"close":/<$/.test(p)?"open":null;q&&(k=h.start-("close"==q?2:1))}else n&&"<"==h.string?q="open":n&&""==h.string&&(q="close");if(!n&&!i.state.tagName||q){o&&(j=h.string),m=q;var r=i.state.context,s=r&&e[r.tagName],t=r?s&&s.children:e["!top"];if(t&&"close"!=q)for(var u=0;u")}else{var s=e[i.state.tagName],w=s&&s.attrs,x=e["!attrs"];if(!w&&!x)return;if(w){if(x){var y={};for(var z in x)x.hasOwnProperty(z)&&(y[z]=x[z]);for(var z in w)w.hasOwnProperty(z)&&(y[z]=w[z]);w=y}}else w=x;if("string"==h.type||"="==h.string){var A,p=b.getRange(c(g.line,Math.max(0,g.ch-60)),c(g.line,"string"==h.type?h.start:h.end)),B=p.match(/([^\s\u00a0=<>\"\']+)=$/);if(!B||!w.hasOwnProperty(B[1])||!(A=w[B[1]]))return;if("function"==typeof A&&(A=A.call(this,b)),"string"==h.type){j=h.string;var C=0;/['"]/.test(h.string.charAt(0))&&(f=h.string.charAt(0),j=h.string.slice(1),C++);var D=h.string.length;/['"]/.test(h.string.charAt(D-1))&&(f=h.string.charAt(D-1),j=h.string.substr(C,D-2)),m=!0}for(var u=0;u0){var k=f.character;i.forEach(function(a){k>a&&(k-=1)}),f.character=k}}var l=f.character-1,m=l+1;f.evidence&&(h=f.evidence.substring(l).search(/.\b/),h>-1&&(m+=h)),f.description=f.reason,f.start=f.character,f.end=m,f=c(f),f&&d.push({message:f.description,severity:f.severity,from:a.Pos(f.line-1,l),to:a.Pos(f.line-1,m)})}}}var g=["Dangerous comment"],h=[["Expected '{'","Statement body should be inside '{ }' braces."]],i=["Missing semicolon","Extra comma","Missing property name","Unmatched "," and instead saw"," is not defined","Unclosed string","Stopping, unable to continue"];a.registerHelper("lint","javascript",b)})},{"../../lib/codemirror":59}],32:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";a.registerHelper("lint","json",function(b){var c=[];if(!window.jsonlint)return window.console&&window.console.error("Error: window.jsonlint not defined, CodeMirror JSON linting cannot run."),c;jsonlint.parseError=function(b,d){var e=d.loc;c.push({from:a.Pos(e.first_line-1,e.first_column),to:a.Pos(e.last_line-1,e.last_column),message:b})};try{jsonlint.parse(b)}catch(d){}return c})})},{"../../lib/codemirror":59}],33:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(b,c){function d(b){return e.parentNode?(e.style.top=Math.max(0,b.clientY-e.offsetHeight-5)+"px",void(e.style.left=b.clientX+5+"px")):a.off(document,"mousemove",d)}var e=document.createElement("div");return e.className="CodeMirror-lint-tooltip",e.appendChild(c.cloneNode(!0)),document.body.appendChild(e),a.on(document,"mousemove",d),d(b),null!=e.style.opacity&&(e.style.opacity=1),e}function c(a){a.parentNode&&a.parentNode.removeChild(a)}function d(a){a.parentNode&&(null==a.style.opacity&&c(a),a.style.opacity=0,setTimeout(function(){c(a)},600))}function e(c,e,f){function g(){a.off(f,"mouseout",g),h&&(d(h),h=null)}var h=b(c,e),i=setInterval(function(){if(h)for(var a=f;;a=a.parentNode){if(a&&11==a.nodeType&&(a=a.host),a==document.body)return;if(!a){g();break}}if(!h)return clearInterval(i)},400);a.on(f,"mouseout",g)}function f(a,b,c){this.marked=[],this.options=b,this.timeout=null,this.hasGutter=c,this.onMouseOver=function(b){r(a,b)},this.waitingFor=0}function g(a,b){return b instanceof Function?{getAnnotations:b}:(b&&b!==!0||(b={}),b)}function h(a){var b=a.state.lint;b.hasGutter&&a.clearGutter(s);for(var c=0;c1,c.options.tooltips))}}d.onUpdateLinting&&d.onUpdateLinting(b,e,a)}function p(a){var b=a.state.lint;b&&(clearTimeout(b.timeout),b.timeout=setTimeout(function(){n(a)},b.options.delay||500))}function q(a,b){for(var c=b.target||b.srcElement,d=document.createDocumentFragment(),f=0;fe)return!1;var f=c.getScrollInfo();if("align"==a.mv.options.connect)q=f.top;else{var h,i,j=.5*f.clientHeight,k=f.top+j,l=c.lineAtHeight(k,"local"),m=D(a.chunks,l,b),n=g(c,b?m.edit:m.orig),o=g(d,b?m.orig:m.edit),p=(k-n.top)/(n.bot-n.top),q=o.top-j+p*(o.bot-o.top);if(q>f.top&&(i=f.top/j)<1)q=q*i+f.top*(1-i);else if((h=f.height-f.clientHeight-f.top)h&&(i=h/j)<1&&(q=q*i+(r.height-r.clientHeight-h)*(1-i))}}return d.scrollTo(f.left,q),d.state.scrollSetAt=e,d.state.scrollSetBy=a,!0}function g(a,b){var c=b.after;return null==c&&(c=a.lastLine()+1),{top:a.heightAtLine(b.before||0,"local"),bot:a.heightAtLine(c,"local")}}function h(a,b,c){a.lockScroll=b,b&&0!=c&&f(a,DIFF_INSERT)&&n(a),a.lockButton.innerHTML=b?"\u21db\u21da":"\u21db \u21da"}function i(a,b,c){for(var d=c.classLocation,e=0;e20||c.from-f.to>20?(j(a,c.marked,e),m(a,b,d,c.marked,f.from,f.to,e),c.from=f.from,c.to=f.to):(f.fromc.to&&(m(a,b,d,c.marked,c.to,f.to,e),c.to=f.to))})}function l(a,b,c,d,e,f){for(var g=c.classLocation,h=a.getLineHandle(b),i=0;it&&(o&&(h(n,t),o=!1),n=u)}else if(o=!0,r==c){var v=M(i,s,!0),w=P(j,i),x=O(k,v);Q(w,x)||d.push(a.markText(w,x,{className:m})),i=v}}o&&h(n,i.line+1)}function n(a){if(a.showDifferences){if(a.svg){J(a.svg);var b=a.gap.offsetWidth;K(a.svg,"width",b,"height",a.gap.offsetHeight)}a.copyButtons&&J(a.copyButtons);for(var c=a.edit.getViewport(),d=a.orig.getViewport(),e=a.mv.wrap.getBoundingClientRect().top,f=e-a.edit.getScrollerElement().getBoundingClientRect().top+a.edit.getScrollInfo().top,g=e-a.orig.getScrollerElement().getBoundingClientRect().top+a.orig.getScrollInfo().top,h=0;h=c.from&&i.origFrom<=d.to&&i.origTo>=d.from&&v(a,i,g,f,b)}}}function o(a,b){for(var c=0,d=0,e=0;ea&&f.editFrom<=a)return null;if(f.editFrom>a)break;c=f.editTo,d=f.origTo}return d+(a-c)}function p(a,b,c){for(var d=a.state.trackAlignable,e=a.firstLine(),f=0,g=[],h=0;;h++){for(var i=b[h],j=i?c?i.origFrom:i.editFrom:1e9;fl){f++,e--;continue a}if(m.editTo>k){if(m.editFrom<=k)continue a;break}h+=m.origTo-m.origFrom-(m.editTo-m.editFrom),g++}if(k==l-h)i[d]=l,f++;else if(k1&&c.push(u(a[f],b[f],h))}}function u(a,b,c){var d=!0;b>a.lastLine()&&(b--,d=!1);var e=document.createElement("div");return e.className="CodeMirror-merge-spacer",e.style.height=c+"px",e.style.minWidth="1px",a.addLineWidget(b,e,{height:c,above:d,mergeSpacer:!0,handleMouseEvents:!0})}function v(a,b,c,d,e){var f="left"==a.type,g=a.orig.heightAtLine(b.origFrom,"local",!0)-c;if(a.svg){var h=g,i=a.edit.heightAtLine(b.editFrom,"local",!0)-d;if(f){var j=h;h=i,i=j}var k=a.orig.heightAtLine(b.origTo,"local",!0)-c,l=a.edit.heightAtLine(b.editTo,"local",!0)-d;if(f){var j=k;k=l,l=j}var m=" C "+e/2+" "+i+" "+e/2+" "+h+" "+(e+2)+" "+h,n=" C "+e/2+" "+k+" "+e/2+" "+l+" -1 "+l;K(a.svg.appendChild(document.createElementNS(V,"path")),"d","M -1 "+i+m+" L "+(e+2)+" "+k+n+" z","class",a.classes.connect)}if(a.copyButtons){var o=a.copyButtons.appendChild(I("div","left"==a.type?"\u21dd":"\u21dc","CodeMirror-merge-copy")),p=a.mv.options.allowEditingOriginals;if(o.title=p?"Push to left":"Revert chunk",o.chunk=b,o.style.top=(b.origTo>b.origFrom?g:a.edit.heightAtLine(b.editFrom,"local")-d)+"px",p){var q=a.edit.heightAtLine(b.editFrom,"local")-d,r=a.copyButtons.appendChild(I("div","right"==a.type?"\u21dd":"\u21dc","CodeMirror-merge-copy-reverse"));r.title="Push to right",r.chunk={editFrom:b.origFrom,editTo:b.origTo,origFrom:b.editFrom,origTo:b.editTo},r.style.top=q+"px","right"==a.type?r.style.left="2px":r.style.right="2px"}}}function w(a,b,c,d){if(!a.diffOutOfDate){var e=d.origTo>c.lastLine()?U(d.origFrom-1):U(d.origFrom,0),f=U(d.origTo,0),g=d.editTo>b.lastLine()?U(d.editFrom-1):U(d.editFrom,0),h=U(d.editTo,0),i=a.mv.options.revertChunk;i?i(a.mv,c,e,f,b,g,h):b.replaceRange(c.getRange(e,f),g,h)}}function x(b){var c=b.lockButton=I("div",null,"CodeMirror-merge-scrolllock");c.title="Toggle locked scrolling";var d=I("div",[c],"CodeMirror-merge-scrolllock-wrap");a.on(c,"click",function(){h(b,!b.lockScroll)});var e=[d];if(b.mv.options.revertButtons!==!1&&(b.copyButtons=I("div",null,"CodeMirror-merge-copybuttons-"+b.type),a.on(b.copyButtons,"click",function(a){var c=a.target||a.srcElement;if(c.chunk)return"CodeMirror-merge-copy-reverse"==c.className?void w(b,b.orig,b.edit,c.chunk):void w(b,b.edit,b.orig,c.chunk)}),e.unshift(b.copyButtons)),"align"!=b.mv.options.connect){var f=document.createElementNS&&document.createElementNS(V,"svg");f&&!f.createSVGRect&&(f=null),b.svg=f,f&&e.push(f)}return b.gap=I("div",e,"CodeMirror-merge-gap")}function y(a){return"string"==typeof a?a:a.getValue()}function z(a,b,c){Y||(Y=new diff_match_patch);for(var d=Y.diff_main(a,b),e=0;ek&&(g&&b.push({origFrom:d,origTo:l,editFrom:c,editTo:k}),c=n,d=o)}else M(i==DIFF_INSERT?e:f,h[1])}return(c<=e.line||d<=f.line)&&b.push({origFrom:d,origTo:f.line+1,editFrom:c,editTo:e.line+1}),b}function B(a,b){if(b==a.length-1)return!0;var c=a[b+1][1];return!(1==c.length&&b1||b==a.length-3)&&10==c.charCodeAt(0)))}function C(a,b){if(0==b)return!0;var c=a[b-1][1];return 10==c.charCodeAt(c.length-1)&&(1==b||(c=a[b-2][1],10==c.charCodeAt(c.length-1)))}function D(a,b,c){for(var d,e,f,g,h=0;hb?(e=i.editFrom,g=i.origFrom):k>b&&(e=i.editTo,g=i.origTo)),k<=b?(d=i.editTo,f=i.origTo):j<=b&&(d=i.editFrom,f=i.origFrom)}return{edit:{before:d,after:e},orig:{before:f,after:g}}}function E(b,c,d){function e(){g.clear(),b.removeLineClass(c,"wrap","CodeMirror-merge-collapsed-line")}b.addLineClass(c,"wrap","CodeMirror-merge-collapsed-line");var f=document.createElement("span");f.className="CodeMirror-merge-collapsed-widget",f.title="Identical text collapsed. Click to expand.";var g=b.markText(U(c,0),U(d-1),{inclusiveLeft:!0,inclusiveRight:!0,replacedWith:f,clearOnEnter:!0});return a.on(f,"click",e),{mark:g,clear:e}}function F(a,b){function c(){for(var a=0;a=0&&hb){var k=[{line:i,cm:d}];a.left&&k.push({line:o(i,a.left.chunks),cm:a.left.orig}),a.right&&k.push({line:o(i,a.right.chunks),cm:a.right.orig});var l=F(j,k);a.options.onCollapse&&a.options.onCollapse(a,i,j,l)}}}function I(a,b,c,d){var e=document.createElement(a);if(c&&(e.className=c),d&&(e.style.cssText=d),"string"==typeof b)e.appendChild(document.createTextNode(b));else if(b)for(var f=0;f0;--b)a.removeChild(a.firstChild)}function K(a){for(var b=1;b0?a:b}function Q(a,b){return a.line==b.line&&a.ch==b.ch}function R(a,b,c){for(var d=a.length-1;d>=0;d--){var e=a[d],f=(c?e.origTo:e.editTo)-1;if(fb)return f}}function T(b,d){var e=null,f=b.state.diffViews,g=b.getCursor().line;if(f)for(var h=0;he:k0)break}this.signal(),this.alignable.splice(c,0,a,b)},find:function(a){for(var b=0;b-1){var j=this.alignable[f+1];j==$?this.alignable.splice(f,2):this.alignable[f+1]=j&~$}g>-1&&c&&this.set(a+c,$)}},a.commands.goNextDiff=function(a){return T(a,1)},a.commands.goPrevDiff=function(a){return T(a,-1)}})},{"../../lib/codemirror":59}],35:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),"cjs"):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],function(a){d(a,"amd")}):d(CodeMirror,"plain")}(function(b,c){function d(a,b){var c=b;return function(){0==--c&&a()}}function e(a,c){var e=b.modes[a].dependencies;if(!e)return c();for(var f=[],g=0;g-1?e+b.length:e}var f=b.exec(c?a.slice(c):a);return f?f.index+c+(d?f[0].length:0):-1}var d=Array.prototype.slice.call(arguments,1);return{startState:function(){return{outer:a.startState(b),innerActive:null,inner:null}},copyState:function(c){return{outer:a.copyState(b,c.outer),innerActive:c.innerActive,inner:c.innerActive&&a.copyState(c.innerActive.mode,c.inner)}},token:function(e,f){if(f.innerActive){var g=f.innerActive,h=e.string;if(!g.close&&e.sol())return f.innerActive=f.inner=null,this.token(e,f);var i=g.close?c(h,g.close,e.pos,g.parseDelimiters):-1;if(i==e.pos&&!g.parseDelimiters)return e.match(g.close),f.innerActive=f.inner=null,g.delimStyle&&g.delimStyle+" "+g.delimStyle+"-close";i>-1&&(e.string=h.slice(0,i));var j=g.mode.token(e,f.inner);return i>-1&&(e.string=h),i==e.pos&&g.parseDelimiters&&(f.innerActive=f.inner=null),g.innerStyle&&(j=j?j+" "+g.innerStyle:g.innerStyle),j}for(var k=1/0,h=e.string,l=0;l2){d.pending=[];for(var n=2;n-1)return a.Pass;var g=d.indent.length-1,h=b[d.state];a:for(;;){for(var j=0;j=this.string.length},sol:function(){return 0==this.pos},peek:function(){return this.string.charAt(this.pos)||null},next:function(){if(this.posb},eatSpace:function(){for(var a=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>a},skipToEnd:function(){this.pos=this.string.length},skipTo:function(a){var b=this.string.indexOf(a,this.pos);if(b>-1)return this.pos=b,!0},backUp:function(a){this.pos-=a},column:function(){return this.start-this.lineStart},indentation:function(){return 0},match:function(a,b,c){if("string"!=typeof a){var d=this.string.slice(this.pos).match(a);return d&&d.index>0?null:(d&&b!==!1&&(this.pos+=d[0].length),d)}var e=function(a){return c?a.toLowerCase():a},f=this.string.substr(this.pos,a.length);if(e(f)==e(a))return b!==!1&&(this.pos+=a.length),!0},current:function(){return this.string.slice(this.start,this.pos)},hideFirstChars:function(a,b){this.lineStart+=a;try{return b()}finally{this.lineStart-=a}},lookAhead:function(){return null}},CodeMirror.StringStream=b,CodeMirror.startState=function(a,b,c){return!a.startState||a.startState(b,c)};var c=CodeMirror.modes={},d=CodeMirror.mimeModes={};CodeMirror.defineMode=function(a,b){arguments.length>2&&(b.dependencies=Array.prototype.slice.call(arguments,2)),c[a]=b},CodeMirror.defineMIME=function(a,b){d[a]=b},CodeMirror.resolveMode=function(a){return"string"==typeof a&&d.hasOwnProperty(a)?a=d[a]:a&&"string"==typeof a.name&&d.hasOwnProperty(a.name)&&(a=d[a.name]),"string"==typeof a?{name:a}:a||{name:"null"}},CodeMirror.getMode=function(a,b){b=CodeMirror.resolveMode(b);var d=c[b.name];if(!d)throw new Error("Unknown mode: "+b);return d(a,b)},CodeMirror.registerHelper=CodeMirror.registerGlobalHelper=Math.min,CodeMirror.defineMode("null",function(){return{token:function(a){a.skipToEnd()}}}),CodeMirror.defineMIME("text/plain","null"),CodeMirror.runMode=function(b,c,d,e){var f=CodeMirror.getMode({indentUnit:2},c);if(1==d.nodeType){var g=e&&e.tabSize||4,h=d,i=0;h.innerHTML="",d=function(a,b){if("\n"==a)return h.appendChild(document.createElement("br")),void(i=0);for(var c="",d=0;;){var e=a.indexOf("\t",d);if(e==-1){c+=a.slice(d),i+=a.length-d;break}i+=e-d,c+=a.slice(d,e);var f=g-i%g;i+=f;for(var j=0;jh)return c.charCoords(a,"local")[b?"top":"bottom"];var d=c.heightAtLine(j,"local");return d+(b?0:j.height)}a!==!1&&this.computeScale();var c=this.cm,d=this.hScale,e=document.createDocumentFragment(),f=this.annotations,g=c.getOption("lineWrapping"),h=g&&1.5*c.defaultTextHeight(),i=null,j=null,k=c.lastLine();if(c.display.barWidth)for(var l,m=0;mk)){for(var o=l||b(n.from,!0)*d,p=b(n.to,!1)*d;mk)&&(l=b(f[m+1].from,!0)*d,!(l>p+.9));)n=f[++m],p=b(n.to,!1)*d;if(p!=o){var q=Math.max(p-o,3),r=e.appendChild(document.createElement("div"));r.style.cssText="position: absolute; right: 0px; width: "+Math.max(c.display.barWidth-1,2)+"px; top: "+(o+this.buttonHeight)+"px; height: "+q+"px",r.className=this.options.className,n.id&&r.setAttribute("annotation-id",n.id)}}}this.div.textContent="",this.div.appendChild(e)},b.prototype.clear=function(){this.cm.off("refresh",this.resizeHandler),this.cm.off("markerAdded",this.resizeHandler),this.cm.off("markerCleared",this.resizeHandler),this.changeHandler&&this.cm.off("change",this.changeHandler),this.div.parentNode.removeChild(this.div)}})},{"../../lib/codemirror":59}],43:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(b,d){a.changeEnd(d).line==b.lastLine()&&c(b)}function c(a){var b="";if(a.lineCount()>1){var d=a.display.scroller.clientHeight-30,e=a.getLineHandle(a.lastLine()).height;b=d-e+"px"}a.state.scrollPastEndPadding!=b&&(a.state.scrollPastEndPadding=b,a.display.lineSpace.parentNode.style.paddingBottom=b,a.off("refresh",c),a.setSize(),a.on("refresh",c))}a.defineOption("scrollPastEnd",!1,function(d,e,f){f&&f!=a.Init&&(d.off("change",b),d.off("refresh",c),d.display.lineSpace.parentNode.style.paddingBottom="",d.state.scrollPastEndPadding=null),e&&(d.on("change",b),d.on("refresh",c),c(d))})})},{"../../lib/codemirror":59}],44:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(b,c,d){function e(b){var c=a.wheelEventPixels(b)["horizontal"==f.orientation?"x":"y"],d=f.pos;f.moveTo(f.pos+c),f.pos!=d&&a.e_preventDefault(b)}this.orientation=c,this.scroll=d,this.screen=this.total=this.size=1,this.pos=0,this.node=document.createElement("div"),this.node.className=b+"-"+c,this.inner=this.node.appendChild(document.createElement("div"));var f=this;a.on(this.inner,"mousedown",function(b){function c(){a.off(document,"mousemove",d),a.off(document,"mouseup",c)}function d(a){return 1!=a.which?c():void f.moveTo(h+(a[e]-g)*(f.total/f.size))}if(1==b.which){a.e_preventDefault(b);var e="horizontal"==f.orientation?"pageX":"pageY",g=b[e],h=f.pos;a.on(document,"mousemove",d),a.on(document,"mouseup",c)}}),a.on(this.node,"click",function(b){a.e_preventDefault(b);var c,d=f.inner.getBoundingClientRect();c="horizontal"==f.orientation?b.clientXd.right?1:0:b.clientYd.bottom?1:0,f.moveTo(f.pos+c*f.screen)}),a.on(this.node,"mousewheel",e),a.on(this.node,"DOMMouseScroll",e)}function c(a,c,d){this.addClass=a,this.horiz=new b(a,"horizontal",d),c(this.horiz.node),this.vert=new b(a,"vertical",d),c(this.vert.node),this.width=null}b.prototype.setPos=function(a,b){return a<0&&(a=0),a>this.total-this.screen&&(a=this.total-this.screen),!(!b&&a==this.pos)&&(this.pos=a,this.inner.style["horizontal"==this.orientation?"left":"top"]=a*(this.size/this.total)+"px",!0)},b.prototype.moveTo=function(a){this.setPos(a)&&this.scroll(a,this.orientation)};var d=10;b.prototype.update=function(a,b,c){var e=this.screen!=b||this.total!=a||this.size!=c;e&&(this.screen=b,this.total=a,this.size=c);var f=this.screen*(this.size/this.total);fa.clientWidth+1,e=a.scrollHeight>a.clientHeight+1;return this.vert.node.style.display=e?"block":"none",this.horiz.node.style.display=d?"block":"none",e&&(this.vert.update(a.scrollHeight,a.clientHeight,a.viewHeight-(d?c:0)),this.vert.node.style.bottom=d?c+"px":"0"),d&&(this.horiz.update(a.scrollWidth,a.clientWidth,a.viewWidth-(e?c:0)-a.barLeft),this.horiz.node.style.right=e?c+"px":"0",this.horiz.node.style.left=a.barLeft+"px"),{right:e?c:0,bottom:d?c:0}},c.prototype.setScrollTop=function(a){this.vert.setPos(a)},c.prototype.setScrollLeft=function(a){this.horiz.setPos(a)},c.prototype.clear=function(){var a=this.horiz.node.parentNode;a.removeChild(this.horiz.node),a.removeChild(this.vert.node)},a.scrollbarModel.simple=function(a,b){return new c("CodeMirror-simplescroll",a,b)},a.scrollbarModel.overlay=function(a,b){return new c("CodeMirror-overlayscroll",a,b)}})},{"../../lib/codemirror":59}],45:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),a("../dialog/dialog")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","../dialog/dialog"],d):d(CodeMirror)}(function(a){"use strict";function b(a,b,c,d,e){a.openDialog?a.openDialog(b,e,{value:d,selectValueOnOpen:!0}):e(prompt(c,d))}function c(a,b){var c=Number(b);return/^[-+]/.test(b)?a.getCursor().line+c:c-1}var d='Jump to line: (Use line:column or scroll% syntax)';a.commands.jumpToLine=function(a){var e=a.getCursor();b(a,d,"Jump to line:",e.line+1+":"+e.ch,function(b){if(b){var d;if(d=/^\s*([\+\-]?\d+)\s*\:\s*(\d+)\s*$/.exec(b))a.setCursor(c(a,d[1]),Number(d[2]));else if(d=/^\s*([\+\-]?\d+(\.\d+)?)\%\s*/.exec(b)){var f=Math.round(a.lineCount()*Number(d[1])/100);/^[-+]/.test(d[1])&&(f=e.line+f+1),a.setCursor(f-1,e.ch)}else(d=/^\s*\:?\s*([\+\-]?\d+)\s*/.exec(b))&&a.setCursor(c(a,d[1]),e.ch)}})},a.keyMap["default"]["Alt-G"]="jumpToLine"})},{"../../lib/codemirror":59,"../dialog/dialog":3}],46:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror"),a("./matchesonscrollbar")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","./matchesonscrollbar"],d):d(CodeMirror)}(function(a){"use strict";function b(a){this.options={};for(var b in l)this.options[b]=(a&&a.hasOwnProperty(b)?a:l)[b];this.overlay=this.timeout=null,this.matchesonscroll=null,this.active=!1}function c(a){var b=a.state.matchHighlighter;(b.active||a.hasFocus())&&e(a,b)}function d(a){var b=a.state.matchHighlighter;b.active||(b.active=!0,e(a,b))}function e(a,b){clearTimeout(b.timeout),b.timeout=setTimeout(function(){h(a)},b.options.delay)}function f(a,b,c,d){var e=a.state.matchHighlighter;if(a.addOverlay(e.overlay=k(b,c,d)),e.options.annotateScrollbar&&a.showMatchesOnScrollbar){var f=c?new RegExp("\\b"+b+"\\b"):b;e.matchesonscroll=a.showMatchesOnScrollbar(f,!1,{className:"CodeMirror-selection-highlight-scrollbar"})}}function g(a){var b=a.state.matchHighlighter;b.overlay&&(a.removeOverlay(b.overlay),b.overlay=null,b.matchesonscroll&&(b.matchesonscroll.clear(),b.matchesonscroll=null))}function h(a){a.operation(function(){var b=a.state.matchHighlighter;if(g(a),!a.somethingSelected()&&b.options.showToken){for(var c=b.options.showToken===!0?/[\w$]/:b.options.showToken,d=a.getCursor(),e=a.getLine(d.line),h=d.ch,j=h;h&&c.test(e.charAt(h-1));)--h;for(;j=b.options.minChars&&f(a,m,!1,b.options.style)}})}function i(a,b,c){var d=a.getRange(b,c);if(null!==d.match(/^\w+$/)){if(b.ch>0){var e={line:b.line,ch:b.ch-1},f=a.getRange(e,b);if(null===f.match(/\W/))return!1}if(c.ch=this.gap.to)break;c.to.line>=this.gap.from&&this.matches.splice(b--,1)}for(var e=this.cm.getSearchCursor(this.query,a.Pos(this.gap.from,0),this.caseFold),f=this.options&&this.options.maxMatches||d;e.findNext();){var c={from:e.from(),to:e.to()};if(c.from.line>=this.gap.to)break;if(this.matches.splice(b++,0,c),this.matches.length>f)break}this.gap=null}},b.prototype.onChange=function(b){var d=b.from.line,e=a.changeEnd(b).line,f=e-b.to.line;if(this.gap?(this.gap.from=Math.min(c(this.gap.from,d,f),b.from.line),this.gap.to=Math.max(c(this.gap.to,d,f),b.from.line)):this.gap={from:b.from.line,to:e+1},f)for(var g=0;gb.cursorCoords(c,"window").top&&((k=d).style.opacity=.4)}))};g(b,r,j,m,function(c,e){var f=a.keyName(c),g=b.getOption("extraKeys"),h=g&&g[f]||a.keyMap[b.getOption("keyMap")][f];"findNext"==h||"findPrev"==h||"findPersistentNext"==h||"findPersistentPrev"==h?(a.e_stop(c),l(b,d(b),e),b.execCommand(h)):"find"!=h&&"findPersistent"!=h||(a.e_stop(c),m(e,c))}),f&&j&&(l(b,i,j),n(b,c))}else h(b,r,"Search for:",j,function(a){a&&!i.query&&b.operation(function(){l(b,i,a),i.posFrom=i.posTo=b.getCursor(),n(b,c)})})}function n(b,c,e){b.operation(function(){var g=d(b),h=f(b,g.query,c?g.posFrom:g.posTo);(h.find(c)||(h=f(b,g.query,c?a.Pos(b.lastLine()):a.Pos(b.firstLine(),0)),h.find(c)))&&(b.setSelection(h.from(),h.to()),b.scrollIntoView({from:h.from(),to:h.to()},20),g.posFrom=h.from(),g.posTo=h.to(),e&&e(h.from(),h.to()))})}function o(a){a.operation(function(){var b=d(a);b.lastQuery=b.query,b.query&&(b.query=b.queryText=null,a.removeOverlay(b.overlay),b.annotate&&(b.annotate.clear(),b.annotate=null))})}function p(a,b,c){a.operation(function(){for(var d=f(a,b);d.findNext();)if("string"!=typeof b){var e=a.getRange(d.from(),d.to()).match(b);d.replace(c.replace(/\$(\d)/g,function(a,b){return e[b]}))}else d.replace(c)})}function q(a,b){if(!a.getOption("readOnly")){var c=a.getSelection()||d(a).lastQuery,e=''+(b?"Replace all:":"Replace:")+"";h(a,e+s,e,c,function(c){c&&(c=k(c),h(a,t,"Replace with:","",function(d){if(d=j(d),b)p(a,c,d);else{o(a);var e=f(a,c,a.getCursor("from")),g=function(){var b,j=e.from();!(b=e.findNext())&&(e=f(a,c),!(b=e.findNext())||j&&e.from().line==j.line&&e.from().ch==j.ch)||(a.setSelection(e.from(),e.to()),a.scrollIntoView({from:e.from(),to:e.to()}),i(a,u,"Replace?",[function(){h(b)},g,function(){p(a,c,d)}]))},h=function(a){e.replace("string"==typeof c?d:d.replace(/\$(\d)/g,function(b,c){return a[c]})),g()};g()}}))})}}var r='Search: (Use /re/ syntax for regexp search)',s=' (Use /re/ syntax for regexp search)',t='With: ',u='Replace? ';a.commands.find=function(a){o(a),m(a)},a.commands.findPersistent=function(a){o(a),m(a,!1,!0)},a.commands.findPersistentNext=function(a){m(a,!1,!0,!0)},a.commands.findPersistentPrev=function(a){m(a,!0,!0,!0)},a.commands.findNext=m,a.commands.findPrev=function(a){m(a,!0)},a.commands.clearSearch=o,a.commands.replace=q,a.commands.replaceAll=function(a){q(a,!0)}})},{"../../lib/codemirror":59,"../dialog/dialog":3,"./searchcursor":49}],49:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(a){var b=a.flags;return null!=b?b:(a.ignoreCase?"i":"")+(a.global?"g":"")+(a.multiline?"m":"")}function c(a){return a.global?a:new RegExp(a.source,b(a)+"g")}function d(a){return/\\s|\\n|\n|\\W|\\D|\[\^/.test(a.source)}function e(a,b,d){b=c(b);for(var e=d.line,f=d.ch,g=a.lastLine();e<=g;e++,f=0){b.lastIndex=f;var h=a.getLine(e),i=b.exec(h);if(i)return{from:p(e,i.index),to:p(e,i.index+i[0].length),match:i}}}function f(a,b,f){if(!d(b))return e(a,b,f);b=c(b);for(var g,h=1,i=f.line,j=a.lastLine();i<=j;){for(var k=0;k=h;e--,f=-1){var i=a.getLine(e);f>-1&&(i=i.slice(0,f));var j=g(i,b);if(j)return{from:p(e,j.index),to:p(e,j.index+j[0].length),match:j}}}function i(a,b,d){b=c(b);for(var e,f=1,h=d.line,i=a.firstLine();h>=i;){for(var j=0;j>1,h=d(a.slice(0,g)).length;if(h==c)return g;h>c?f=g:e=g+1}}function k(a,b,c,d){if(!b.length)return null;var e=d?n:o,f=e(b).split(/\r|\n\r?/);a:for(var g=c.line,h=c.ch,i=a.lastLine()+1-f.length;g<=i;g++,h=0){var k=a.getLine(g).slice(h),l=e(k);if(1==f.length){var m=l.indexOf(f[0]);if(m==-1)continue a;var c=j(k,l,m,e)+h;return{from:p(g,j(k,l,m,e)+h),to:p(g,j(k,l,m+f[0].length,e)+h)}}var q=l.length-f[0].length;if(l.slice(q)==f[0]){for(var r=1;r=i;g--,h=-1){var k=a.getLine(g);h>-1&&(k=k.slice(0,h));var l=e(k);if(1==f.length){var m=l.lastIndexOf(f[0]);if(m==-1)continue a;return{from:p(g,j(k,l,m,e)),to:p(g,j(k,l,m+f[0].length,e))}}var q=f[f.length-1];if(l.slice(0,q.length)==q){for(var r=1,c=g-f.length+1;r0);)d.push({anchor:e.from(),head:e.to()});d.length&&this.setSelections(d,0)})})},{"../../lib/codemirror":59}],50:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(a){for(var b=0;b=c.line,n=m?c:i(l,0),o=a.markText(k,n,{className:f});if(null==d?e.push(o):e.splice(d++,0,o),m)break;g=l}}function e(a){for(var b=a.state.markedSelection,c=0;c1)return f(a);var b=a.getCursor("start"),c=a.getCursor("end"),g=a.state.markedSelection;if(!g.length)return d(a,b,c);var i=g[0].find(),k=g[g.length-1].find();if(!i||!k||c.line-b.line<=h||j(b,k.to)>=0||j(c,i.from)<=0)return f(a);for(;j(b,i.from)>0;)g.shift().clear(),i=g[0].find();for(j(b,i.from)<0&&(i.to.line-b.line0&&(c.line-k.from.line=b.mouseX&&f.top<=b.mouseY&&f.bottom>=b.mouseY&&(d=!0)}var g=d?b.value:"";a.display.lineDiv.style.cursor!=g&&(a.display.lineDiv.style.cursor=g)}}a.defineOption("selectionPointer",!1,function(e,f){var g=e.state.selectionPointer;g&&(a.off(e.getWrapperElement(),"mousemove",g.mousemove),a.off(e.getWrapperElement(),"mouseout",g.mouseout),a.off(window,"scroll",g.windowScroll),e.off("cursorActivity",d),e.off("scroll",d),e.state.selectionPointer=null,e.display.lineDiv.style.cursor=""),f&&(g=e.state.selectionPointer={value:"string"==typeof f?f:"default",mousemove:function(a){b(e,a)},mouseout:function(a){c(e,a)},windowScroll:function(){d(e)},rects:null,mouseX:null,mouseY:null,willUpdate:!1},a.on(e.getWrapperElement(),"mousemove",g.mousemove),a.on(e.getWrapperElement(),"mouseout",g.mouseout),a.on(window,"scroll",g.windowScroll),e.on("cursorActivity",d),e.on("scroll",d))})})},{"../../lib/codemirror":59}],53:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(a,b,c){var d=a.docs[b];d?c(F(a,d)):a.options.getFile?a.options.getFile(b,c):c(null)}function c(a,b,c){for(var d in a.docs){var e=a.docs[d];if(e.doc==b)return e}if(!c)for(var f=0;;++f)if(d="[doc"+(f||"")+"]",!a.docs[d]){c=d;break}return a.addDoc(c,b)}function d(b,d){return"string"==typeof d?b.docs[d]:(d instanceof a&&(d=d.getDoc()),d instanceof a.Doc?c(b,d):void 0)}function e(a,b,d){var e=c(a,b),g=a.cachedArgHints;g&&g.doc==b&&L(g.start,d.to)>=0&&(a.cachedArgHints=null);var h=e.changed;null==h&&(e.changed=h={from:d.from.line,to:d.from.line});var i=d.from.line+(d.text.length-1);d.from.line=h.to&&(h.to=i+1),h.from>d.from.line&&(h.from=d.from.line),b.lineCount()>J&&d.to-h.from>100&&setTimeout(function(){e.changed&&e.changed.to-e.changed.from>100&&f(a,e)},200)}function f(a,b){a.server.request({files:[{type:"full",name:b.name,text:F(a,b)}]},function(a){a?window.console.error(a):b.changed=null})}function g(b,c,d){b.request(c,{type:"completions",types:!0,docs:!0,urls:!0},function(e,f){if(e)return D(b,c,e);var g=[],i="",j=f.start,k=f.end;'["'==c.getRange(H(j.line,j.ch-2),j)&&'"]'!=c.getRange(k,H(k.line,k.ch+2))&&(i='"]');for(var l=0;l=m;--j){for(var o=c.getLine(j),p=0,q=0;;){var r=o.indexOf("\t",q);if(r==-1)break;p+=i-(r+p)%i-1,q=r+1}if(g=f.column-p,"("==o.charAt(g)){n=!0;break}}if(n){var s=H(j,g),t=b.cachedArgHints;return t&&t.doc==c.getDoc()&&0==L(s,t.start)?k(b,c,h):void b.request(c,{type:"type",preferFunction:!0,end:s},function(a,d){!a&&d.type&&/^fn\(/.test(d.type)&&(b.cachedArgHints={start:s,type:l(d.type),name:d.exprName||d.name||"fn",guess:d.guess,doc:c.getDoc()},k(b,c,h))})}}}}}function k(a,b,c){E(a);for(var d=a.cachedArgHints,e=d.type,f=w("span",d.guess?I+"fhint-guess":null,w("span",I+"fname",d.name),"("),g=0;g\xa0":")")),e.rettype&&f.appendChild(w("span",I+"type",e.rettype));var i=b.cursorCoords(null,"page"),j=a.activeArgHints=A(i.right+1,i.bottom,f);setTimeout(function(){j.clear=z(b,function(){a.activeArgHints==j&&E(a)})},20)}function l(a){function b(b){for(var c=0,e=d;;){var f=a.charAt(d);if(b.test(f)&&!c)return a.slice(e,d);/[{\[\(]/.test(f)?++c:/[}\]\)]/.test(f)&&--c,++d}}var c=[],d=3;if(")"!=a.charAt(d))for(;;){var e=a.slice(d).match(/^([^, \(\[\{]+): /);if(e&&(d+=e[0].length,e=e[1]),c.push({name:e,type:b(/[\),]/)}),")"==a.charAt(d))break;d+=2}var f=a.slice(d).match(/^\) -> (.*)$/);return{args:c,rettype:f&&f[1]}}function m(a,b){function d(d){var e={type:"definition",variable:d||null},f=c(a,b.getDoc());a.server.request(u(a,f,e),function(c,d){if(c)return D(a,b,c);if(!d.file&&d.url)return void window.open(d.url);if(d.file){var e,g=a.docs[d.file];if(g&&(e=p(g.doc,d)))return a.jumpStack.push({file:f.name,start:b.getCursor("from"),end:b.getCursor("to")}),void o(a,f,g,e.start,e.end)}D(a,b,"Could not find a definition.")})}q(b)?d():x(b,"Jump to variable",function(a){a&&d(a)})}function n(a,b){var d=a.jumpStack.pop(),e=d&&a.docs[d.file];e&&o(a,c(a,b.getDoc()),e,d.start,d.end)}function o(a,b,c,d,e){c.doc.setSelection(d,e),b!=c&&a.options.switchToDoc&&(E(a),a.options.switchToDoc(c.name,c.doc))}function p(a,b){for(var c=b.context.slice(0,b.contextOffset).split("\n"),d=b.start.line-(c.length-1),e=H(d,(1==c.length?b.start.ch:a.getLine(d).length)-c[0].length),f=a.getLine(d).slice(e.ch),g=d+1;g=0&&L(h,j.end)<=0&&(g=f.length-1))}b.setSelections(f,g)})}function t(a,b){for(var c=Object.create(null),d=0;dJ&&g!==!1&&b.changed.to-b.changed.from<100&&b.changed.from<=h.line&&b.changed.to>c.end.line){e.push(v(b,h,c.end)),c.file="#0";var f=e[0].offsetLines;null!=c.start&&(c.start=H(c.start.line- -f,c.start.ch)),c.end=H(c.end.line-f,c.end.ch)}else e.push({type:"full",name:b.name,text:F(a,b)}),c.file=b.name,b.changed=null;else c.file=b.name;for(var i in a.docs){var j=a.docs[i];j.changed&&j!=b&&(e.push({type:"full",name:j.name,text:F(a,j)}),j.changed=null)}return{query:c,files:e}}function v(b,c,d){for(var e,f=b.doc,g=null,h=null,i=4,j=c.line-1,k=Math.max(0,j-50);j>=k;--j){var l=f.getLine(j),m=l.search(/\bfunction\b/);if(!(m<0)){var n=a.countColumn(l,null,i);null!=g&&g<=n||(g=n,h=j)}}null==h&&(h=k);var o=Math.min(f.lastLine(),d.line+20);if(null==g||g==a.countColumn(f.getLine(c.line),null,i))e=o;else for(e=d.line+1;e",c):c(prompt(b,""))}function y(b,c,d){function e(){j=!0,i||f()}function f(){b.state.ternTooltip=null,h.parentNode&&C(h),k()}b.state.ternTooltip&&B(b.state.ternTooltip);var g=b.cursorCoords(),h=b.state.ternTooltip=A(g.right+1,g.bottom,c),i=!1,j=!1;a.on(h,"mousemove",function(){i=!0}),a.on(h,"mouseout",function(b){a.contains(h,b.relatedTarget||b.toElement)||(j?f():i=!1)}),setTimeout(e,d.options.hintDelay?d.options.hintDelay:1700);var k=z(b,f)}function z(a,b){return a.on("cursorActivity",b),a.on("blur",b),a.on("scroll",b),a.on("setDoc",b),function(){a.off("cursorActivity",b),a.off("blur",b),a.off("scroll",b),a.off("setDoc",b)}}function A(a,b,c){var d=w("div",I+"tooltip",c);return d.style.left=a+"px",d.style.top=b+"px",document.body.appendChild(d),d}function B(a){var b=a&&a.parentNode;b&&b.removeChild(a)}function C(a){a.style.opacity="0",setTimeout(function(){B(a)},1100)}function D(a,b,c){a.options.showError?a.options.showError(b,c):y(b,String(c),a)}function E(a){a.activeArgHints&&(a.activeArgHints.clear&&a.activeArgHints.clear(),B(a.activeArgHints),a.activeArgHints=null)}function F(a,b){var c=b.doc.getValue();return a.options.fileFilter&&(c=a.options.fileFilter(c,b.name,b.doc)),c}function G(a){function c(a,b){b&&(a.id=++e,f[e]=b),d.postMessage(a)}var d=a.worker=new Worker(a.options.workerScript);d.postMessage({type:"init",defs:a.options.defs,plugins:a.options.plugins,scripts:a.options.workerDeps});var e=0,f={};d.onmessage=function(d){var e=d.data;"getFile"==e.type?b(a,e.name,function(a,b){c({type:"getFile",err:String(a),text:b,id:e.id})}):"debug"==e.type?window.console.log(e.message):e.id&&f[e.id]&&(f[e.id](e.err,e.body),delete f[e.id])},d.onerror=function(a){for(var b in f)f[b](a);f={}},this.addFile=function(a,b){c({type:"add",name:a,text:b})},this.delFile=function(a){c({type:"del",name:a})},this.request=function(a,b){c({type:"req",body:a},b)}}a.TernServer=function(a){var c=this;this.options=a||{};var d=this.options.plugins||(this.options.plugins={});d.doc_comment||(d.doc_comment=!0),this.docs=Object.create(null),this.options.useWorker?this.server=new G(this):this.server=new tern.Server({getFile:function(a,d){return b(c,a,d)},async:!0,defs:this.options.defs||[],plugins:d}),this.trackChange=function(a,b){e(c,a,b)},this.cachedArgHints=null,this.activeArgHints=null,this.jumpStack=[],this.getHint=function(a,b){return g(c,a,b)},this.getHint.async=!0},a.TernServer.prototype={addDoc:function(b,c){var d={doc:c,name:b,changed:null};return this.server.addFile(b,F(this,d)),a.on(c,"change",this.trackChange),this.docs[b]=d},delDoc:function(b){var c=d(this,b);c&&(a.off(c.doc,"change",this.trackChange),delete this.docs[c.name],this.server.delFile(c.name))},hideDoc:function(a){E(this);var b=d(this,a);b&&b.changed&&f(this,b)},complete:function(a){a.showHint({hint:this.getHint})},showType:function(a,b,c){i(this,a,b,"type",c)},showDocs:function(a,b,c){i(this,a,b,"documentation",c)},updateArgHints:function(a){j(this,a)},jumpToDef:function(a){m(this,a)},jumpBack:function(a){n(this,a)},rename:function(a){r(this,a)},selectName:function(a){s(this,a)},request:function(a,b,d,e){var f=this,g=c(this,a.getDoc()),h=u(this,g,b,e),i=h.query&&this.options.queryOptions&&this.options.queryOptions[h.query.type];if(i)for(var j in i)h.query[j]=i[j];this.server.request(h,function(a,c){!a&&f.options.responseFilter&&(c=f.options.responseFilter(g,b,h,a,c)),d(a,c)})},destroy:function(){E(this),this.worker&&(this.worker.terminate(),this.worker=null)}};var H=a.Pos,I="CodeMirror-Tern-",J=250,K=0,L=a.cmpPos})},{"../../lib/codemirror":59}],54:[function(a,b,c){function d(a,b){postMessage({type:"getFile",name:a,id:++g}),h[g]=b}function e(a,b,c){c&&importScripts.apply(null,c),f=new tern.Server({getFile:d,async:!0,defs:a,plugins:b})}var f;this.onmessage=function(a){var b=a.data;switch(b.type){case"init":return e(b.defs,b.plugins,b.scripts);case"add":return f.addFile(b.name,b.text);case"del":return f.delFile(b.name);case"req":return f.request(b.body,function(a,c){postMessage({id:b.id,body:c,err:a&&String(a)})});case"getFile":var c=h[b.id];return delete h[b.id],c(b.err,b.text);default:throw new Error("Unknown message type: "+b.type)}};var g=0,h={};this.console={log:function(a){postMessage({type:"debug",message:a})}}},{}],55:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(a,b,c){for(var d=c.paragraphStart||a.getHelper(b,"paragraphStart"),e=b.line,f=a.firstLine();e>f;--e){var g=a.getLine(e);if(d&&d.test(g))break;if(!/\S/.test(g)){++e;break}}for(var h=c.paragraphEnd||a.getHelper(b,"paragraphEnd"),i=b.line+1,j=a.lastLine();i<=j;++i){var g=a.getLine(i);if(h&&h.test(g)){++i;break}if(!/\S/.test(g))break}return{from:e,to:i}}function c(a,b,c,d){for(var e=b;e0&&!c.test(a.slice(e-1,e+1));--e);for(var f=!0;;f=!1){var g=e;if(d)for(;" "==a.charAt(g-1);)--g;if(0!=g||!f)return{from:g,to:e};e=b}}function d(b,d,f,g){d=b.clipPos(d),f=b.clipPos(f);var h=g.column||80,i=g.wrapOn||/\s\S|-[^\.\d]/,j=g.killTrailingSpace!==!1,k=[],l="",m=d.line,n=b.getRange(d,f,!1);if(!n.length)return null;for(var o=n[0].match(/^[ \t]*/)[0],p=0;ph&&o==t&&c(l,h,i,j);u&&u.from==r&&u.to==r+s?(l=o+q,++m):k.push({text:[s?" ":""],from:e(m,r),to:e(m+1,t.length)})}for(;l.length>h;){var v=c(l,h,i,j);k.push({text:["",o],from:e(m,v.from),to:e(m,v.to)}),l=o+l.slice(v.to),++m}}return k.length&&b.operation(function(){for(var c=0;c=0;g--){var h,i=c[g];if(i.empty()){var j=b(a,i.head,{});h={from:e(j.from,0),to:e(j.to-1)}}else h={from:i.from(),to:i.to()};h.to.line>=f||(f=h.from.line,d(a,h.from,h.to,{}))}})},a.defineExtension("wrapRange",function(a,b,c){return d(this,a,b,c||{})}),a.defineExtension("wrapParagraphsInRange",function(a,c,f){f=f||{};for(var g=this,h=[],i=a.line;i<=c.line;){var j=b(g,e(i,0),f);h.push(j),i=j.to}var k=!1;return h.length&&g.operation(function(){for(var a=h.length-1;a>=0;--a)k=k||d(g,e(h[a].from,0),e(h[a].to-1),f)}),k})})},{"../../lib/codemirror":59}],56:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../lib/codemirror")):"function"==typeof define&&define.amd?define(["../lib/codemirror"],d):d(CodeMirror)}(function(a){"use strict";function b(a,b){return a.line==b.line&&a.ch==b.ch}function c(a){I.push(a),I.length>50&&I.shift()}function d(a){return I.length?void(I[I.length-1]+=a):c(a)}function e(a){return I[I.length-(a?Math.min(a,1):1)]||""}function f(){return I.length>1&&I.pop(),e()}function g(a,e,f,g,h){null==h&&(h=a.getRange(e,f)),g&&J&&J.cm==a&&b(e,J.pos)&&a.isClean(J.gen)?d(h):c(h),a.replaceRange("",e,f,"+delete"),J=g?{cm:a,pos:e,gen:a.changeGeneration()}:null}function h(a,b,c){return a.findPosH(b,c,"char",!0)}function i(a,b,c){return a.findPosH(b,c,"word",!0)}function j(a,b,c){return a.findPosV(b,c,"line",a.doc.sel.goalColumn)}function k(a,b,c){return a.findPosV(b,c,"page",a.doc.sel.goalColumn)}function l(a,b,c){for(var d=b.line,e=a.getLine(d),f=/\S/.test(c<0?e.slice(0,b.ch):e.slice(b.ch)),g=a.firstLine(),h=a.lastLine();;){if(d+=c,dh)return a.clipPos(H(d-c,c<0?0:null));e=a.getLine(d);var i=/\S/.test(e);if(i)f=!0;else if(f)return H(d,0)}}function m(a,b,c){for(var d=b.line,e=b.ch,f=a.getLine(b.line),g=!1;;){var h=f.charAt(e+(c<0?-1:0));if(h){if(g&&/[!?.]/.test(h))return H(d,e+(c>0?1:0));g||(g=/\w/.test(h)),e+=c}else{if(d==(c<0?a.firstLine():a.lastLine()))return H(d,e);if(f=a.getLine(d+c),!/\S/.test(f))return H(d,e);d+=c,e=c<0?f.length:0}}}function n(a,c,d){var e;if(a.findMatchingBracket&&(e=a.findMatchingBracket(c,{strict:!0}))&&e.match&&(e.forward?1:-1)==d)return d>0?H(e.to.line,e.to.ch+1):e.to;for(var f=!0;;f=!1){var g=a.getTokenAt(c),h=H(c.line,d<0?g.start:g.end);if(!(f&&d>0&&g.end==c.ch)&&/\w/.test(g.string))return h;var i=a.findPosH(h,d,"char");if(b(h,i))return c;c=i}}function o(a,b){var c=a.state.emacsPrefix;return c?(w(a),"-"==c?-1:Number(c)):b?null:1}function p(a){var b="string"==typeof a?function(b){b.execCommand(a)}:a;return function(a){var c=o(a);b(a);for(var d=1;d1&&"+input"==b.origin){for(var d=b.text.join("\n"),e="",f=1;f',c,{bottom:!0}):c(prompt(b,""))}function D(a,b){var c=a.getCursor(),d=a.findPosH(c,1,"word");a.replaceRange(b(a.getRange(c,d)),c,d),a.setCursor(d)}function E(a){for(var b=a.getCursor(),c=b.line,d=b.ch,e=[];c>=a.firstLine();){for(var f=a.getLine(c),g=null==d?f.length:d;g>0;){var d=f.charAt(--g);if(")"==d)e.push("(");else if("]"==d)e.push("[");else if("}"==d)e.push("{");else if(/[\(\{\[]/.test(d)&&(!e.length||e.pop()!=d))return a.extendSelection(H(c,g))}--c,d=null}}function F(a){a.execCommand("clearSearch"),B(a)}function G(a){M[a]=function(b){u(b,a)},L["Ctrl-"+a]=function(b){u(b,a)},K["Ctrl-"+a]=!0}var H=a.Pos,I=[],J=null,K={"Alt-G":!0,"Ctrl-X":!0,"Ctrl-Q":!0,"Ctrl-U":!0};a.emacs={kill:g,killRegion:t,repeated:p};for(var L=a.keyMap.emacs=a.normalizeKeyMap({"Ctrl-W":function(a){g(a,a.getCursor("start"),a.getCursor("end"))},"Ctrl-K":p(function(a){var b=a.getCursor(),c=a.clipPos(H(b.line)),d=a.getRange(b,c);/\S/.test(d)||(d+="\n",c=H(b.line+1,0)),g(a,b,c,!0,d)}),"Alt-W":function(a){c(a.getSelection()),B(a)},"Ctrl-Y":function(a){var b=a.getCursor();a.replaceRange(e(o(a)),b,b,"paste"),a.setSelection(b,a.getCursor())},"Alt-Y":function(a){a.replaceSelection(f(),"around","paste")},"Ctrl-Space":A,"Ctrl-Shift-2":A,"Ctrl-F":r(h,1),"Ctrl-B":r(h,-1),Right:r(h,1),Left:r(h,-1),"Ctrl-D":function(a){s(a,h,1)},Delete:function(a){t(a)||s(a,h,1)},"Ctrl-H":function(a){s(a,h,-1)},Backspace:function(a){t(a)||s(a,h,-1)},"Alt-F":r(i,1),"Alt-B":r(i,-1),"Alt-D":function(a){s(a,i,1)},"Alt-Backspace":function(a){s(a,i,-1)},"Ctrl-N":r(j,1),"Ctrl-P":r(j,-1),Down:r(j,1),Up:r(j,-1),"Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd",End:"goLineEnd",Home:"goLineStart","Alt-V":r(k,-1),"Ctrl-V":r(k,1),PageUp:r(k,-1),PageDown:r(k,1),"Ctrl-Up":r(l,-1),"Ctrl-Down":r(l,1),"Alt-A":r(m,-1),"Alt-E":r(m,1),"Alt-K":function(a){s(a,m,1)},"Ctrl-Alt-K":function(a){s(a,n,1)},"Ctrl-Alt-Backspace":function(a){s(a,n,-1)},"Ctrl-Alt-F":r(n,1),"Ctrl-Alt-B":r(n,-1),"Shift-Ctrl-Alt-2":function(a){var b=a.getCursor();a.setSelection(q(a,b,n,1),b)},"Ctrl-Alt-T":function(a){var b=n(a,a.getCursor(),-1),c=n(a,b,1),d=n(a,c,1),e=n(a,d,-1);a.replaceRange(a.getRange(e,d)+a.getRange(c,e)+a.getRange(b,c),b,d)},"Ctrl-Alt-U":p(E),"Alt-Space":function(a){for(var b=a.getCursor(),c=b.ch,d=b.ch,e=a.getLine(b.line);c&&/\s/.test(e.charAt(c-1));)--c;for(;d0?a.setCursor(b-1):void C(a,"Goto line",function(b){var c;b&&!isNaN(c=Number(b))&&c==(0|c)&&c>0&&a.setCursor(c-1)})},"Ctrl-X Tab":function(a){a.indentSelection(o(a,!0)||a.getOption("indentUnit"))},"Ctrl-X Ctrl-X":function(a){a.setSelection(a.getCursor("head"),a.getCursor("anchor"))},"Ctrl-X Ctrl-S":"save","Ctrl-X Ctrl-W":"save","Ctrl-X S":"saveAll","Ctrl-X F":"open","Ctrl-X U":p("undo"),"Ctrl-X K":"close","Ctrl-X Delete":function(a){g(a,a.getCursor(),m(a,a.getCursor(),1),!0)},"Ctrl-X H":"selectAll","Ctrl-Q Tab":p("insertTab"),"Ctrl-U":y}),M={"Ctrl-G":w},N=0;N<10;++N)G(String(N));G("-")})},{"../lib/codemirror":59}],57:[function(a,b,c){!function(d){"object"==typeof c&&"object"==typeof b?d(a("../lib/codemirror"),a("../addon/search/searchcursor"),a("../addon/edit/matchbrackets")):"function"==typeof define&&define.amd?define(["../lib/codemirror","../addon/search/searchcursor","../addon/edit/matchbrackets"],d):d(CodeMirror)}(function(a){"use strict";function b(b,c,d){if(d<0&&0==c.ch)return b.clipPos(o(c.line-1));var e=b.getLine(c.line);if(d>0&&c.ch>=e.length)return b.clipPos(o(c.line+1,0));for(var f,g="start",h=c.ch,i=d<0?0:e.length,j=0;h!=i;h+=d,j++){var k=e.charAt(d<0?h-1:h),l="_"!=k&&a.isWordChar(k)?"w":"o";if("w"==l&&k.toUpperCase()==k&&(l="W"),"start"==g)"o"!=l&&(g="in",f=l);else if("in"==g&&f!=l){if("w"==f&&"W"==l&&d<0&&h--,"W"==f&&"w"==l&&d>0){f="w";continue}break}}return o(c.line,h)}function c(a,c){a.extendSelectionsBy(function(d){return a.display.shift||a.doc.extend||d.empty()?b(a.doc,d.head,c):c<0?d.from():d.to()})}function d(b,c){return b.isReadOnly()?a.Pass:(b.operation(function(){for(var a=b.listSelections().length,d=[],e=-1,f=0;f=0;h--){var i=d[f[h]];if(!(j&&a.cmpPos(i.head,j)>0)){var k=e(b,i.head);j=k.from,b.replaceRange(c(k.word),k.from,k.to)}}})}function k(b){var c=b.getCursor("from"),d=b.getCursor("to");if(0==a.cmpPos(c,d)){var f=e(b,c);if(!f.word)return;c=f.from,d=f.to}return{from:c,to:d,query:b.getRange(c,d),word:f}}function l(a,b){var c=k(a);if(c){var d=c.query,e=a.getSearchCursor(d,b?c.to:c.from);(b?e.findNext():e.findPrevious())?a.setSelection(e.from(),e.to()):(e=a.getSearchCursor(d,b?o(a.firstLine(),0):a.clipPos(o(a.lastLine()))),(b?e.findNext():e.findPrevious())?a.setSelection(e.from(),e.to()):c.word&&a.setSelection(c.from,c.to))}}var m=a.keyMap.sublime={fallthrough:"default"},n=a.commands,o=a.Pos,p=a.keyMap["default"]==a.keyMap.macDefault,q=p?"Cmd-":"Ctrl-",r=p?"Ctrl-":"Alt-";n[m[r+"Left"]="goSubwordLeft"]=function(a){c(a,-1)},n[m[r+"Right"]="goSubwordRight"]=function(a){c(a,1)},p&&(m["Cmd-Left"]="goLineStartSmart");var s=p?"Ctrl-Alt-":"Ctrl-";n[m[s+"Up"]="scrollLineUp"]=function(a){var b=a.getScrollInfo();if(!a.somethingSelected()){var c=a.lineAtHeight(b.top+b.clientHeight,"local");a.getCursor().line>=c&&a.execCommand("goLineUp")}a.scrollTo(null,b.top-a.defaultTextHeight())},n[m[s+"Down"]="scrollLineDown"]=function(a){var b=a.getScrollInfo();if(!a.somethingSelected()){var c=a.lineAtHeight(b.top,"local")+1;a.getCursor().line<=c&&a.execCommand("goLineDown")}a.scrollTo(null,b.top+a.defaultTextHeight())},n[m["Shift-"+q+"L"]="splitSelectionByLine"]=function(a){for(var b=a.listSelections(),c=[],d=0;de.line&&g==f.line&&0==f.ch||c.push({anchor:g==e.line?e:o(g,0),head:g==f.line?f:o(g)});a.setSelections(c,0)},m["Shift-Tab"]="indentLess",n[m.Esc="singleSelectionTop"]=function(a){var b=a.listSelections()[0];a.setSelection(b.anchor,b.head,{scroll:!1})},n[m[q+"L"]="selectLine"]=function(a){for(var b=a.listSelections(),c=[],d=0;de?d.push(i,j):d.length&&(d[d.length-1]=j),e=j}b.operation(function(){for(var a=0;ab.lastLine()?b.replaceRange("\n"+g,o(b.lastLine()),null,"+swapLine"):b.replaceRange(g+"\n",o(e,0),null,"+swapLine")}b.setSelections(f),b.scrollIntoView()})},n[m[v+"Down"]="swapLineDown"]=function(b){if(b.isReadOnly())return a.Pass;for(var c=b.listSelections(),d=[],e=b.lastLine()+1,f=c.length-1;f>=0;f--){var g=c[f],h=g.to().line+1,i=g.from().line;0!=g.to().ch||g.empty()||h--,h=0;a-=2){var c=d[a],e=d[a+1],f=b.getLine(c);c==b.lastLine()?b.replaceRange("",o(c-1),o(c),"+swapLine"):b.replaceRange("",o(c,0),o(c+1,0),"+swapLine"),b.replaceRange(f+"\n",o(e,0),null,"+swapLine")}b.scrollIntoView()})},n[m[q+"/"]="toggleCommentIndented"]=function(a){a.toggleComment({indent:!0})},n[m[q+"J"]="joinLines"]=function(a){for(var b=a.listSelections(),c=[],d=0;d=0;e--){var f=c[e].head,g=b.getRange({line:f.line,ch:0},f),h=a.countColumn(g,null,b.getOption("tabSize")),i=b.findPosH(f,-1,"char",!1);if(g&&!/\S/.test(g)&&h%d==0){var j=new o(f.line,a.findColumn(g,h-d,d));j.ch!=f.ch&&(i=j)}b.replaceRange("",i,f,"+delete")}})},n[m[w+q+"K"]="delLineRight"]=function(a){a.operation(function(){for(var b=a.listSelections(),c=b.length-1;c>=0;c--)a.replaceRange("",b[c].anchor,o(b[c].to().line),"+delete");a.scrollIntoView()})},n[m[w+q+"U"]="upcaseAtCursor"]=function(a){j(a,function(a){return a.toUpperCase()})},n[m[w+q+"L"]="downcaseAtCursor"]=function(a){j(a,function(a){return a.toLowerCase()})},n[m[w+q+"Space"]="setSublimeMark"]=function(a){a.state.sublimeMark&&a.state.sublimeMark.clear(),a.state.sublimeMark=a.setBookmark(a.getCursor())},n[m[w+q+"A"]="selectToSublimeMark"]=function(a){var b=a.state.sublimeMark&&a.state.sublimeMark.find();b&&a.setSelection(a.getCursor(),b)},n[m[w+q+"W"]="deleteToSublimeMark"]=function(b){var c=b.state.sublimeMark&&b.state.sublimeMark.find();if(c){var d=b.getCursor(),e=c;if(a.cmpPos(d,e)>0){var f=e;e=d,d=f}b.state.sublimeKilled=b.getRange(d,e),b.replaceRange("",d,e)}},n[m[w+q+"X"]="swapWithSublimeMark"]=function(a){var b=a.state.sublimeMark&&a.state.sublimeMark.find();b&&(a.state.sublimeMark.clear(),a.state.sublimeMark=a.setBookmark(a.getCursor()),a.setCursor(b))},n[m[w+q+"Y"]="sublimeYank"]=function(a){null!=a.state.sublimeKilled&&a.replaceSelection(a.state.sublimeKilled,null,"paste")},m[w+q+"G"]="clearBookmarks",n[m[w+q+"C"]="showInCenter"]=function(a){var b=a.cursorCoords(null,"local");a.scrollTo(null,(b.top+b.bottom)/2-a.getScrollInfo().clientHeight/2)};var x=p?"Ctrl-Shift-":"Ctrl-Alt-";n[m[x+"Up"]="selectLinesUpward"]=function(a){a.operation(function(){for(var b=a.listSelections(),c=0;ca.firstLine()&&a.addSelection(o(d.head.line-1,d.head.ch))}})},n[m[x+"Down"]="selectLinesDownward"]=function(a){a.operation(function(){for(var b=a.listSelections(),c=0;c",type:"keyToKey",toKeys:"h"},{keys:"",type:"keyToKey",toKeys:"l"},{keys:"",type:"keyToKey",toKeys:"k"},{keys:"",type:"keyToKey",toKeys:"j"},{keys:"",type:"keyToKey",toKeys:"l"},{keys:"",type:"keyToKey",toKeys:"h",context:"normal"},{keys:"",type:"keyToKey",toKeys:"W"},{keys:"",type:"keyToKey",toKeys:"B",context:"normal"},{keys:"",type:"keyToKey",toKeys:"w"},{keys:"",type:"keyToKey",toKeys:"b",context:"normal"},{keys:"",type:"keyToKey",toKeys:"j"},{keys:"",type:"keyToKey",toKeys:"k"},{keys:"",type:"keyToKey",toKeys:""},{keys:"",type:"keyToKey",toKeys:""},{keys:"",type:"keyToKey",toKeys:"",context:"insert"},{keys:"",type:"keyToKey",toKeys:"",context:"insert"},{keys:"s",type:"keyToKey",toKeys:"cl",context:"normal"},{keys:"s",type:"keyToKey",toKeys:"c",context:"visual"},{keys:"S",type:"keyToKey",toKeys:"cc",context:"normal"},{keys:"S",type:"keyToKey",toKeys:"VdO",context:"visual"},{keys:"",type:"keyToKey",toKeys:"0"},{keys:"",type:"keyToKey",toKeys:"$"},{keys:"",type:"keyToKey",toKeys:""},{keys:"",type:"keyToKey",toKeys:""},{keys:"",type:"keyToKey",toKeys:"j^",context:"normal"},{keys:"",type:"action",action:"toggleOverwrite",context:"insert"},{keys:"H",type:"motion",motion:"moveToTopLine",motionArgs:{linewise:!0,toJumplist:!0}},{keys:"M",type:"motion",motion:"moveToMiddleLine",motionArgs:{linewise:!0,toJumplist:!0}},{keys:"L",type:"motion",motion:"moveToBottomLine",motionArgs:{linewise:!0,toJumplist:!0}},{keys:"h",type:"motion",motion:"moveByCharacters",motionArgs:{forward:!1}},{keys:"l",type:"motion",motion:"moveByCharacters",motionArgs:{forward:!0}},{keys:"j",type:"motion",motion:"moveByLines",motionArgs:{forward:!0,linewise:!0}},{keys:"k",type:"motion",motion:"moveByLines",motionArgs:{forward:!1,linewise:!0}},{keys:"gj",type:"motion",motion:"moveByDisplayLines",motionArgs:{forward:!0}},{keys:"gk",type:"motion",motion:"moveByDisplayLines",motionArgs:{forward:!1}},{keys:"w",type:"motion",motion:"moveByWords",motionArgs:{forward:!0,wordEnd:!1}},{keys:"W",type:"motion",motion:"moveByWords",motionArgs:{forward:!0,wordEnd:!1,bigWord:!0}},{keys:"e",type:"motion",motion:"moveByWords",motionArgs:{forward:!0,wordEnd:!0,inclusive:!0}},{keys:"E",type:"motion",motion:"moveByWords",motionArgs:{forward:!0,wordEnd:!0,bigWord:!0,inclusive:!0}},{keys:"b",type:"motion",motion:"moveByWords",motionArgs:{forward:!1,wordEnd:!1}},{keys:"B",type:"motion",motion:"moveByWords",motionArgs:{forward:!1,wordEnd:!1,bigWord:!0}},{keys:"ge",type:"motion",motion:"moveByWords",motionArgs:{forward:!1,wordEnd:!0,inclusive:!0}},{keys:"gE",type:"motion",motion:"moveByWords",motionArgs:{forward:!1,wordEnd:!0,bigWord:!0,inclusive:!0}},{keys:"{",type:"motion",motion:"moveByParagraph",motionArgs:{forward:!1,toJumplist:!0}},{keys:"}",type:"motion",motion:"moveByParagraph",motionArgs:{forward:!0,toJumplist:!0}},{keys:"",type:"motion",motion:"moveByPage",motionArgs:{forward:!0}},{keys:"",type:"motion",motion:"moveByPage",motionArgs:{forward:!1}},{keys:"",type:"motion",motion:"moveByScroll",motionArgs:{forward:!0,explicitRepeat:!0}},{keys:"",type:"motion",motion:"moveByScroll",motionArgs:{forward:!1,explicitRepeat:!0}},{keys:"gg",type:"motion",motion:"moveToLineOrEdgeOfDocument",motionArgs:{forward:!1,explicitRepeat:!0,linewise:!0,toJumplist:!0}},{keys:"G",type:"motion",motion:"moveToLineOrEdgeOfDocument",motionArgs:{forward:!0,explicitRepeat:!0,linewise:!0,toJumplist:!0}},{keys:"0",type:"motion",motion:"moveToStartOfLine"},{keys:"^",type:"motion",motion:"moveToFirstNonWhiteSpaceCharacter"},{keys:"+",type:"motion",motion:"moveByLines",motionArgs:{forward:!0,toFirstChar:!0}},{keys:"-",type:"motion",motion:"moveByLines",motionArgs:{forward:!1,toFirstChar:!0}},{keys:"_",type:"motion",motion:"moveByLines",motionArgs:{forward:!0,toFirstChar:!0,repeatOffset:-1}},{keys:"$",type:"motion",motion:"moveToEol",motionArgs:{inclusive:!0}},{keys:"%",type:"motion",motion:"moveToMatchedSymbol",motionArgs:{inclusive:!0,toJumplist:!0}},{keys:"f",type:"motion",motion:"moveToCharacter",motionArgs:{forward:!0,inclusive:!0}},{keys:"F",type:"motion",motion:"moveToCharacter",motionArgs:{forward:!1}},{keys:"t",type:"motion",motion:"moveTillCharacter",motionArgs:{forward:!0,inclusive:!0}},{keys:"T",type:"motion",motion:"moveTillCharacter",motionArgs:{forward:!1}},{keys:";",type:"motion",motion:"repeatLastCharacterSearch",motionArgs:{forward:!0}},{keys:",",type:"motion",motion:"repeatLastCharacterSearch",motionArgs:{forward:!1}},{keys:"'",type:"motion",motion:"goToMark",motionArgs:{toJumplist:!0,linewise:!0}},{keys:"`",type:"motion",motion:"goToMark",motionArgs:{toJumplist:!0}},{keys:"]`",type:"motion",motion:"jumpToMark",motionArgs:{forward:!0}},{keys:"[`",type:"motion",motion:"jumpToMark",motionArgs:{forward:!1}},{keys:"]'",type:"motion",motion:"jumpToMark",motionArgs:{forward:!0,linewise:!0}},{keys:"['",type:"motion",motion:"jumpToMark",motionArgs:{forward:!1,linewise:!0}},{keys:"]p",type:"action",action:"paste",isEdit:!0,actionArgs:{after:!0,isEdit:!0,matchIndent:!0}},{keys:"[p",type:"action",action:"paste",isEdit:!0,actionArgs:{after:!1,isEdit:!0,matchIndent:!0}},{keys:"]",type:"motion",motion:"moveToSymbol",motionArgs:{forward:!0,toJumplist:!0}},{keys:"[",type:"motion",motion:"moveToSymbol",motionArgs:{forward:!1,toJumplist:!0}},{keys:"|",type:"motion",motion:"moveToColumn"},{keys:"o",type:"motion",motion:"moveToOtherHighlightedEnd",context:"visual"},{keys:"O",type:"motion",motion:"moveToOtherHighlightedEnd",motionArgs:{sameLine:!0},context:"visual"},{keys:"d",type:"operator",operator:"delete"},{keys:"y",type:"operator",operator:"yank"},{keys:"c",type:"operator",operator:"change"},{keys:">",type:"operator",operator:"indent",operatorArgs:{indentRight:!0}},{keys:"<",type:"operator",operator:"indent",operatorArgs:{indentRight:!1}},{keys:"g~",type:"operator",operator:"changeCase"},{keys:"gu",type:"operator",operator:"changeCase",operatorArgs:{toLower:!0},isEdit:!0},{keys:"gU",type:"operator",operator:"changeCase",operatorArgs:{toLower:!1},isEdit:!0},{keys:"n",type:"motion",motion:"findNext",motionArgs:{forward:!0,toJumplist:!0}},{keys:"N",type:"motion",motion:"findNext",motionArgs:{forward:!1,toJumplist:!0}},{keys:"x",type:"operatorMotion",operator:"delete",motion:"moveByCharacters",motionArgs:{forward:!0},operatorMotionArgs:{visualLine:!1}},{keys:"X",type:"operatorMotion",operator:"delete",motion:"moveByCharacters",motionArgs:{forward:!1},operatorMotionArgs:{visualLine:!0}},{keys:"D",type:"operatorMotion",operator:"delete",motion:"moveToEol",motionArgs:{inclusive:!0},context:"normal"},{keys:"D",type:"operator",operator:"delete",operatorArgs:{linewise:!0},context:"visual"},{keys:"Y",type:"operatorMotion",operator:"yank",motion:"expandToLine",motionArgs:{linewise:!0},context:"normal"},{keys:"Y",type:"operator",operator:"yank",operatorArgs:{linewise:!0},context:"visual"},{keys:"C",type:"operatorMotion",operator:"change",motion:"moveToEol",motionArgs:{inclusive:!0},context:"normal"},{keys:"C",type:"operator",operator:"change",operatorArgs:{linewise:!0},context:"visual"},{keys:"~",type:"operatorMotion",operator:"changeCase",motion:"moveByCharacters",motionArgs:{forward:!0},operatorArgs:{shouldMoveCursor:!0},context:"normal"},{keys:"~",type:"operator",operator:"changeCase",context:"visual"},{keys:"",type:"operatorMotion",operator:"delete",motion:"moveByWords",motionArgs:{forward:!1,wordEnd:!1},context:"insert"},{keys:"",type:"action",action:"jumpListWalk",actionArgs:{forward:!0}},{keys:"",type:"action",action:"jumpListWalk",actionArgs:{forward:!1}},{keys:"",type:"action",action:"scroll",actionArgs:{forward:!0,linewise:!0}},{keys:"",type:"action",action:"scroll",actionArgs:{forward:!1,linewise:!0}},{keys:"a",type:"action",action:"enterInsertMode",isEdit:!0,actionArgs:{insertAt:"charAfter"},context:"normal"},{keys:"A",type:"action",action:"enterInsertMode",isEdit:!0,actionArgs:{insertAt:"eol"},context:"normal"},{keys:"A",type:"action",action:"enterInsertMode",isEdit:!0,actionArgs:{insertAt:"endOfSelectedArea"},context:"visual"},{keys:"i",type:"action",action:"enterInsertMode",isEdit:!0,actionArgs:{insertAt:"inplace"},context:"normal"},{keys:"I",type:"action",action:"enterInsertMode",isEdit:!0,actionArgs:{insertAt:"firstNonBlank"},context:"normal"},{keys:"I",type:"action",action:"enterInsertMode",isEdit:!0,actionArgs:{insertAt:"startOfSelectedArea"},context:"visual"},{keys:"o",type:"action",action:"newLineAndEnterInsertMode",isEdit:!0,interlaceInsertRepeat:!0,actionArgs:{after:!0},context:"normal"},{keys:"O",type:"action",action:"newLineAndEnterInsertMode",isEdit:!0,interlaceInsertRepeat:!0,actionArgs:{after:!1},context:"normal"},{keys:"v",type:"action",action:"toggleVisualMode"},{keys:"V",type:"action",action:"toggleVisualMode",actionArgs:{linewise:!0}},{keys:"",type:"action",action:"toggleVisualMode",actionArgs:{blockwise:!0}},{keys:"",type:"action",action:"toggleVisualMode",actionArgs:{blockwise:!0}},{keys:"gv",type:"action",action:"reselectLastSelection"},{keys:"J",type:"action",action:"joinLines",isEdit:!0},{keys:"p",type:"action",action:"paste",isEdit:!0,actionArgs:{after:!0,isEdit:!0}},{keys:"P",type:"action",action:"paste",isEdit:!0,actionArgs:{after:!1,isEdit:!0}},{keys:"r",type:"action",action:"replace",isEdit:!0},{keys:"@",type:"action",action:"replayMacro"},{keys:"q",type:"action",action:"enterMacroRecordMode"},{keys:"R",type:"action",action:"enterInsertMode",isEdit:!0,actionArgs:{replace:!0}},{keys:"u",type:"action",action:"undo",context:"normal"},{keys:"u",type:"operator",operator:"changeCase",operatorArgs:{toLower:!0},context:"visual",isEdit:!0},{keys:"U",type:"operator",operator:"changeCase",operatorArgs:{toLower:!1},context:"visual",isEdit:!0},{keys:"",type:"action",action:"redo"},{keys:"m",type:"action",action:"setMark"},{keys:'"',type:"action",action:"setRegister"},{keys:"zz",type:"action",action:"scrollToCursor",actionArgs:{position:"center"}},{keys:"z.",type:"action",action:"scrollToCursor",actionArgs:{position:"center"},motion:"moveToFirstNonWhiteSpaceCharacter"},{keys:"zt",type:"action",action:"scrollToCursor",actionArgs:{position:"top"}},{keys:"z",type:"action",action:"scrollToCursor",actionArgs:{position:"top"},motion:"moveToFirstNonWhiteSpaceCharacter"},{keys:"z-",type:"action",action:"scrollToCursor",actionArgs:{position:"bottom"}},{keys:"zb",type:"action",action:"scrollToCursor",actionArgs:{position:"bottom"},motion:"moveToFirstNonWhiteSpaceCharacter"},{keys:".",type:"action",action:"repeatLastEdit"},{keys:"",type:"action",action:"incrementNumberToken",isEdit:!0,actionArgs:{increase:!0,backtrack:!1}},{keys:"",type:"action",action:"incrementNumberToken",isEdit:!0,actionArgs:{increase:!1,backtrack:!1}},{keys:"",type:"action",action:"indent",actionArgs:{indentRight:!0},context:"insert"},{keys:"",type:"action",action:"indent",actionArgs:{indentRight:!1},context:"insert"},{keys:"a",type:"motion",motion:"textObjectManipulation"},{keys:"i",type:"motion",motion:"textObjectManipulation",motionArgs:{textObjectInner:!0}},{keys:"/",type:"search",searchArgs:{forward:!0,querySrc:"prompt",toJumplist:!0}},{keys:"?",type:"search",searchArgs:{forward:!1,querySrc:"prompt",toJumplist:!0}},{keys:"*",type:"search",searchArgs:{forward:!0,querySrc:"wordUnderCursor",wholeWordOnly:!0,toJumplist:!0}},{keys:"#",type:"search",searchArgs:{forward:!1,querySrc:"wordUnderCursor",wholeWordOnly:!0,toJumplist:!0}},{keys:"g*",type:"search",searchArgs:{forward:!0,querySrc:"wordUnderCursor",toJumplist:!0}},{keys:"g#",type:"search",searchArgs:{forward:!1,querySrc:"wordUnderCursor",toJumplist:!0}},{keys:":",type:"ex"}],c=[{name:"colorscheme",shortName:"colo"},{name:"map"},{name:"imap",shortName:"im"},{name:"nmap",shortName:"nm"},{name:"vmap",shortName:"vm"},{name:"unmap"},{name:"write",shortName:"w"},{name:"undo",shortName:"u"},{name:"redo",shortName:"red"},{name:"set",shortName:"se"},{name:"set",shortName:"se"},{name:"setlocal",shortName:"setl"},{name:"setglobal",shortName:"setg"},{name:"sort",shortName:"sor"},{name:"substitute",shortName:"s",possiblyAsync:!0},{name:"nohlsearch",shortName:"noh"},{name:"yank",shortName:"y"},{name:"delmarks",shortName:"delm"},{name:"registers",shortName:"reg",excludeFromCommandHistory:!0},{name:"global",shortName:"g"}],d=a.Pos,e=function(){function e(b){b.setOption("disableInput",!0),b.setOption("showCursorWhenSelecting",!1),a.signal(b,"vim-mode-change",{mode:"normal"}),b.on("cursorActivity",bb),x(b),a.on(b.getInputField(),"paste",k(b))}function f(b){b.setOption("disableInput",!1),b.off("cursorActivity",bb),a.off(b.getInputField(),"paste",k(b)),b.state.vim=null}function g(b,c){this==a.keyMap.vim&&a.rmClass(b.getWrapperElement(),"cm-fat-cursor"),c&&c.attach==h||f(b)}function h(b,c){this==a.keyMap.vim&&a.addClass(b.getWrapperElement(),"cm-fat-cursor"),c&&c.attach==h||e(b)}function i(b,c){if(c){if(this[b])return this[b];var d=j(b);if(!d)return!1;var e=a.Vim.findKey(c,d);return"function"==typeof e&&a.signal(c,"vim-keypress",d),e}}function j(a){if("'"==a.charAt(0))return a.charAt(1);var b=a.split(/-(?!$)/),c=b[b.length-1];if(1==b.length&&1==b[0].length)return!1;if(2==b.length&&"Shift"==b[0]&&1==c.length)return!1;for(var d=!1,e=0;e")}function k(a){var b=a.state.vim;return b.onPasteFn||(b.onPasteFn=function(){b.insertMode||(a.setCursor(L(a.getCursor(),0,1)),Bb.enterInsertMode(a,{},b))}),b.onPasteFn}function l(a,b){for(var c=[],d=a;d=a.firstLine()&&b<=a.lastLine()}function n(a){return/^[a-z]$/.test(a)}function o(a){return"()[]{}".indexOf(a)!=-1}function p(a){return kb.test(a)}function q(a){return/^[A-Z]$/.test(a)}function r(a){return/^\s*$/.test(a)}function s(a,b){for(var c=0;c"==b.slice(-11)){var c=b.length-11,d=a.slice(0,c),e=b.slice(0,c);return d==e&&a.length>c?"full":0==e.indexOf(d)&&"partial"}return a==b?"full":0==b.indexOf(a)&&"partial"}function P(a){var b=/^.*(<[^>]+>)$/.exec(a),c=b?b[1]:a.slice(-1);if(c.length>1)switch(c){case"":c="\n";break;case"":c=" ";break;default:c=""}return c}function Q(a,b,c){return function(){for(var d=0;d2&&(b=U.apply(void 0,Array.prototype.slice.call(arguments,1))),T(a,b)?a:b}function V(a,b){return arguments.length>2&&(b=V.apply(void 0,Array.prototype.slice.call(arguments,1))),T(a,b)?b:a}function W(a,b,c){var d=T(a,b),e=T(b,c);return d&&e}function X(a,b){return a.getLine(b).length}function Y(a){return a.trim?a.trim():a.replace(/^\s+|\s+$/g,"")}function Z(a){return a.replace(/([.?*+$\[\]\/\\(){}|\-])/g,"\\$1")}function $(a,b,c){var e=X(a,b),f=new Array(c-e+1).join(" ");a.setCursor(d(b,e)),a.replaceRange(f,a.getCursor())}function _(a,b){var c=[],e=a.listSelections(),f=R(a.clipPos(b)),g=!S(b,f),h=a.getCursor("head"),i=ba(e,h),j=S(e[i].head,e[i].anchor),k=e.length-1,l=k-i>i?k:0,m=e[l].anchor,n=Math.min(m.line,f.line),o=Math.max(m.line,f.line),p=m.ch,q=f.ch,r=e[l].head.ch-p,s=q-p;r>0&&s<=0?(p++,g||q--):r<0&&s>=0?(p--,j||q++):r<0&&s==-1&&(p--,q++);for(var t=n;t<=o;t++){var u={anchor:new d(t,p),head:new d(t,q)};c.push(u)}return a.setSelections(c),b.ch=q,m.ch=p,m}function aa(a,b,c){for(var d=[],e=0;ej&&(f.line=j),f.ch=X(a,f.line)}return{ranges:[{anchor:g,head:f}],primary:0}}if("block"==c){for(var k=Math.min(g.line,f.line),l=Math.min(g.ch,f.ch),m=Math.max(g.line,f.line),n=Math.max(g.ch,f.ch)+1,o=m-k+1,p=f.line==k?0:o-1,q=[],r=0;r0&&f&&r(f);f=e.pop())c.line--,c.ch=0;f?(c.line--,c.ch=X(a,c.line)):c.ch=0}}function ka(a,b,c){b.ch=0,c.ch=0,c.line++}function la(a){if(!a)return 0;var b=a.search(/\S/);return b==-1?a.length:b}function ma(a,b,c,e,f){for(var g=ha(a),h=a.getLine(g.line),i=g.ch,j=f?lb[0]:mb[0];!j(h.charAt(i));)if(i++,i>=h.length)return null;e?j=mb[0]:(j=lb[0],j(h.charAt(i))||(j=lb[1]));for(var k=i,l=i;j(h.charAt(k))&&k=0;)l--;if(l++,b){for(var m=k;/\s/.test(h.charAt(k))&&k0;)l--;l||(l=n)}}return{start:d(g.line,l),end:d(g.line,k)}}function na(a,b,c){S(b,c)||vb.jumpList.add(a,b,c)}function oa(a,b){vb.lastCharacterSearch.increment=a,vb.lastCharacterSearch.forward=b.forward,vb.lastCharacterSearch.selectedCharacter=b.selectedCharacter}function pa(a,b,c,e){var f=R(a.getCursor()),g=c?1:-1,h=c?a.lineCount():-1,i=f.ch,j=f.line,k=a.getLine(j),l={lineText:k,nextCh:k.charAt(i),lastCh:null,index:i,symb:e,reverseSymb:(c?{")":"(","}":"{"}:{"(":")","{":"}"})[e],forward:c,depth:0,curMoveThrough:!1},m=Cb[e];if(!m)return f;var n=Db[m].init,o=Db[m].isComplete;for(n&&n(l);j!==h&&b;){if(l.index+=g,l.nextCh=l.lineText.charAt(l.index),!l.nextCh){if(j+=g,l.lineText=a.getLine(j)||"",g>0)l.index=0;else{var p=l.lineText.length;l.index=p>0?p-1:0}l.nextCh=l.lineText.charAt(l.index)}o(l)&&(f.line=j,f.ch=l.index,b--)}return l.nextCh||l.curMoveThrough?d(j,l.index):f}function qa(a,b,c,d,e){var f=b.line,g=b.ch,h=a.getLine(f),i=c?1:-1,j=d?mb:lb;if(e&&""==h){if(f+=i,h=a.getLine(f),!m(a,f))return null;g=c?0:h.length}for(;;){if(e&&""==h)return{from:0,to:0,line:f};for(var k=i>0?h.length:-1,l=k,n=k;g!=k;){for(var o=!1,p=0;p0?0:h.length}}function ra(a,b,c,e,f,g){var h=R(b),i=[];(e&&!f||!e&&f)&&c++;for(var j=!(e&&f),k=0;k0;)h(n,e)&&c--,n+=e;return new d(n,0)}var o=a.state.vim;if(o.visualLine&&h(k,1,!0)){var p=o.sel.anchor;h(p.line,-1,!0)&&(f&&p.line==k||(k+=1))}var q=g(k);for(n=k;n<=m&&c;n++)h(n,1,!0)&&(f&&g(n)==q||c--);for(j=new d(n,0),n>m&&!q?q=!0:f=!1,n=k;n>l&&(f&&g(n)!=q&&n!=k||!h(n,-1,!0));n--);return i=new d(n,0),{start:i,end:j}}function xa(a,b,c,e){var f,g,h=b,i={"(":/[()]/,")":/[()]/,"[":/[[\]]/,"]":/[[\]]/,"{":/[{}]/,"}":/[{}]/}[c],j={"(":"(",")":"(","[":"[","]":"[","{":"{","}":"{"}[c],k=a.getLine(h.line).charAt(h.ch),l=k===j?1:0;if(f=a.scanForBracket(d(h.line,h.ch+l),-1,null,{bracketRegex:i}),g=a.scanForBracket(d(h.line,h.ch+l),1,null,{bracketRegex:i}),!f||!g)return{start:h,end:h};if(f=f.pos,g=g.pos,f.line==g.line&&f.ch>g.ch||f.line>g.line){var m=f;f=g,g=m}return e?g.ch+=1:f.ch+=1,{start:f,end:g}}function ya(a,b,c,e){var f,g,h,i,j=R(b),k=a.getLine(j.line),l=k.split(""),m=l.indexOf(c);if(j.ch-1&&!f;h--)l[h]==c&&(f=h+1);else f=j.ch+1;if(f&&!g)for(h=f,i=l.length;h'+b+"",{bottom:!0,duration:5e3}):alert(b)}function Ja(a,b){var c=''+(a||"")+'';return b&&(c+=' '+b+""),c}function Ka(a,b){var c=(b.prefix||"")+" "+(b.desc||""),d=Ja(b.prefix,b.desc);Ba(a,d,c,b.onClose,b)}function La(a,b){if(a instanceof RegExp&&b instanceof RegExp){for(var c=["global","multiline","ignoreCase","source"],d=0;d=b&&a<=c:a==b}function Sa(a){var b=a.getScrollInfo(),c=6,d=10,e=a.coordsChar({left:0,top:c+b.top},"local"),f=b.clientHeight-d+b.top,g=a.coordsChar({left:0,top:f},"local");return{top:e.line,bottom:g.line}}function Ta(a,b,c){if("'"==c){var d=a.doc.history.done,e=d[d.length-2];return e&&e.ranges&&e.ranges[0].head}var f=b.marks[c];return f&&f.find()}function Ua(b,c,d,e,f,g,h,i,j){function k(){b.operation(function(){for(;!p;)l(),m();n()})}function l(){var a=b.getRange(g.from(),g.to()),c=a.replace(h,i);g.replace(c)}function m(){for(;g.findNext()&&Ra(g.from(),e,f);)if(d||!q||g.from().line!=q.line)return b.scrollIntoView(g.from(),30),b.setSelection(g.from(),g.to()),q=g.from(),void(p=!1);p=!0}function n(a){if(a&&a(),b.focus(),q){b.setCursor(q);var c=b.state.vim;c.exMode=!1,c.lastHPos=c.lastHSPos=q.ch}j&&j()}function o(c,d,e){a.e_stop(c);var f=a.keyName(c);switch(f){case"Y":l(),m();break;case"N":m();break;case"A":var g=j;j=void 0,b.operation(k),j=g;break;case"L":l();case"Q":case"Esc":case"Ctrl-C":case"Ctrl-[":n(e)}return p&&n(e),!0}b.state.vim.exMode=!0;var p=!1,q=g.from();return m(),p?void Ia(b,"No matches for "+h.source):c?void Ka(b,{prefix:"replace with "+i+" (y/n/a/q/l)",onKeyDown:o}):(k(),void(j&&j()))}function Va(b){var c=b.state.vim,d=vb.macroModeState,e=vb.registerController.getRegister("."),f=d.isPlaying,g=d.lastInsertModeChanges,h=[];if(!f){for(var i=g.inVisualBlock?c.lastSelection.visualBlock.height:1,j=g.changes,h=[],k=0;k1&&(gb(b,c,c.insertModeRepeat-1,!0),c.lastEditInputState.repeatOverride=c.insertModeRepeat),delete c.insertModeRepeat,c.insertMode=!1,b.setCursor(b.getCursor().line,b.getCursor().ch-1),b.setOption("keyMap","vim"),b.setOption("disableInput",!0),b.toggleOverwrite(!1),e.setText(g.changes.join("")),a.signal(b,"vim-mode-change",{mode:"normal"}),d.isRecording&&$a(d)}function Wa(a){b.unshift(a)}function Xa(a,b,c,d,e){var f={keys:a,type:b};f[b]=c,f[b+"Args"]=d;for(var g in e)f[g]=e[g];Wa(f)}function Ya(b,c,d,e){var f=vb.registerController.getRegister(e);if(":"==e)return f.keyBuffer[0]&&Jb.processCommand(b,f.keyBuffer[0]),void(d.isPlaying=!1);var g=f.keyBuffer,h=0;d.isPlaying=!0,d.replaySearchQueries=f.searchQueries.slice(0);for(var i=0;i|<\w+>|./.exec(l),k=j[0],l=l.substring(j.index+k.length),a.Vim.handleKey(b,k,"macro"),c.insertMode){var m=f.insertModeChanges[h++].changes;vb.macroModeState.lastInsertModeChanges.changes=m,hb(b,m,1),Va(b)}d.isPlaying=!1}function Za(a,b){if(!a.isPlaying){var c=a.latestRegister,d=vb.registerController.getRegister(c);d&&d.pushText(b)}}function $a(a){if(!a.isPlaying){var b=a.latestRegister,c=vb.registerController.getRegister(b);c&&c.pushInsertModeChanges&&c.pushInsertModeChanges(a.lastInsertModeChanges)}}function _a(a,b){if(!a.isPlaying){var c=a.latestRegister,d=vb.registerController.getRegister(c);d&&d.pushSearchQuery&&d.pushSearchQuery(b)}}function ab(a,b){var c=vb.macroModeState,d=c.lastInsertModeChanges;if(!c.isPlaying)for(;b;){if(d.expectCursorActivityForChange=!0,"+input"==b.origin||"paste"==b.origin||void 0===b.origin){var e=b.text.join("\n");d.maybeReset&&(d.changes=[],d.maybeReset=!1),a.state.overwrite&&!/\n/.test(e)?d.changes.push([e]):d.changes.push(e)}b=b.next}}function bb(a){var b=a.state.vim;if(b.insertMode){var c=vb.macroModeState;if(c.isPlaying)return;var d=c.lastInsertModeChanges;d.expectCursorActivityForChange?d.expectCursorActivityForChange=!1:d.maybeReset=!0}else a.curOp.isVimOp||db(a,b);b.visualMode&&cb(a)}function cb(a){var b=a.state.vim,c=J(a,R(b.sel.head)),d=L(c,0,1);b.fakeCursor&&b.fakeCursor.clear(),b.fakeCursor=a.markText(c,d,{className:"cm-animate-fat-cursor"})}function db(b,c){var d=b.getCursor("anchor"),e=b.getCursor("head");if(c.visualMode&&!b.somethingSelected()?ia(b,!1):c.visualMode||c.insertMode||!b.somethingSelected()||(c.visualMode=!0,c.visualLine=!1,a.signal(b,"vim-mode-change",{mode:"visual"})),c.visualMode){var f=T(e,d)?0:-1,g=T(e,d)?-1:0;e=L(e,0,f),d=L(d,0,g),c.sel={anchor:d,head:e},ua(b,c,"<",U(e,d)),ua(b,c,">",V(e,d))}else c.insertMode||(c.lastHPos=b.getCursor().ch)}function eb(a){this.keyName=a}function fb(b){function c(){return e.maybeReset&&(e.changes=[],e.maybeReset=!1),e.changes.push(new eb(f)),!0}var d=vb.macroModeState,e=d.lastInsertModeChanges,f=a.keyName(b);f&&(f.indexOf("Delete")==-1&&f.indexOf("Backspace")==-1||a.lookupKey(f,"vim-insert",c))}function gb(a,b,c,d){function e(){h?yb.processAction(a,b,b.lastEditActionCommand):yb.evalInput(a,b)}function f(c){if(g.lastInsertModeChanges.changes.length>0){c=b.lastEditActionCommand?c:1;var d=g.lastInsertModeChanges;hb(a,d.changes,c)}}var g=vb.macroModeState;g.isPlaying=!0;var h=!!b.lastEditActionCommand,i=b.inputState;if(b.inputState=b.lastEditInputState,h&&b.lastEditActionCommand.interlaceInsertRepeat)for(var j=0;j"]),rb=[].concat(nb,ob,pb,["-",'"',".",":","/"]),sb={};t("filetype",void 0,"string",["ft"],function(a,b){if(void 0!==b){if(void 0===a){var c=b.getOption("mode");return"null"==c?"":c}var c=""==a?"null":a;b.setOption("mode",c)}});var tb=function(){function a(a,b,h){function i(b){var e=++d%c,f=g[e];f&&f.clear(),g[e]=a.setBookmark(b)}var j=d%c,k=g[j];if(k){var l=k.find();l&&!S(l,b)&&i(b)}else i(b);i(h),e=d,f=d-c+1,f<0&&(f=0)}function b(a,b){d+=b,d>e?d=e:d0?1:-1,k=a.getCursor();do if(d+=j,h=g[(c+d)%c],h&&(i=h.find())&&!S(k,i))break;while(df)}return h}var c=100,d=-1,e=0,f=0,g=new Array(c);return{cachedCursor:void 0,add:a,move:b}},ub=function(a){return a?{changes:a.changes,expectCursorActivityForChange:a.expectCursorActivityForChange}:{changes:[],expectCursorActivityForChange:!1}};w.prototype={exitMacroRecordMode:function(){var a=vb.macroModeState;a.onRecordingDone&&a.onRecordingDone(),a.onRecordingDone=void 0,a.isRecording=!1},enterMacroRecordMode:function(a,b){var c=vb.registerController.getRegister(b);c&&(c.clear(),this.latestRegister=b,a.openDialog&&(this.onRecordingDone=a.openDialog("(recording)["+b+"]",null,{bottom:!0})),this.isRecording=!0)}};var vb,wb,xb={buildKeyMap:function(){},getRegisterController:function(){return vb.registerController},resetVimGlobalState_:y,getVimGlobalState_:function(){return vb},maybeInitVimState_:x,suppressErrorLogging:!1,InsertModeKey:eb,map:function(a,b,c){Jb.map(a,b,c)},unmap:function(a,b){Jb.unmap(a,b)},setOption:u,getOption:v,defineOption:t,defineEx:function(a,b,c){if(b){if(0!==a.indexOf(b))throw new Error('(Vim.defineEx) "'+b+'" is not a prefix of "'+a+'", command not registered')}else b=a;Ib[a]=c,Jb.commandMap_[b]={name:a,shortName:b,type:"api"}},handleKey:function(a,b,c){var d=this.findKey(a,b,c);if("function"==typeof d)return d()},findKey:function(c,d,e){function f(){var a=vb.macroModeState;if(a.isRecording){if("q"==d)return a.exitMacroRecordMode(),A(c),!0;"mapping"!=e&&Za(a,d)}}function g(){if(""==d)return A(c),l.visualMode?ia(c):l.insertMode&&Va(c),!0}function h(b){for(var e;b;)e=/<\w+-.+?>|<\w+>|./.exec(b),d=e[0],b=b.substring(e.index+d.length),a.Vim.handleKey(c,d,"mapping")}function i(){if(g())return!0;for(var a=l.inputState.keyBuffer=l.inputState.keyBuffer+d,e=1==d.length,f=yb.matchCommand(a,b,l.inputState,"insert");a.length>1&&"full"!=f.type;){var a=l.inputState.keyBuffer=a.slice(1),h=yb.matchCommand(a,b,l.inputState,"insert");"none"!=h.type&&(f=h)}if("none"==f.type)return A(c),!1;if("partial"==f.type)return wb&&window.clearTimeout(wb),wb=window.setTimeout(function(){l.insertMode&&l.inputState.keyBuffer&&A(c)},v("insertModeEscKeysTimeout")),!e;if(wb&&window.clearTimeout(wb),e){for(var i=c.listSelections(),j=0;j0||this.motionRepeat.length>0)&&(a=1,this.prefixRepeat.length>0&&(a*=parseInt(this.prefixRepeat.join(""),10)),this.motionRepeat.length>0&&(a*=parseInt(this.motionRepeat.join(""),10))),a},B.prototype={setText:function(a,b,c){this.keyBuffer=[a||""],this.linewise=!!b,this.blockwise=!!c},pushText:function(a,b){b&&(this.linewise||this.keyBuffer.push("\n"),this.linewise=!0),this.keyBuffer.push(a)},pushInsertModeChanges:function(a){this.insertModeChanges.push(ub(a))},pushSearchQuery:function(a){this.searchQueries.push(a)},clear:function(){this.keyBuffer=[],this.insertModeChanges=[],this.searchQueries=[],this.linewise=!1},toString:function(){return this.keyBuffer.join("")}},D.prototype={pushText:function(a,b,c,d,e){d&&"\n"!==c.charAt(c.length-1)&&(c+="\n");var f=this.isValidRegister(a)?this.getRegister(a):null;if(!f){switch(b){case"yank":this.registers[0]=new B(c,d,e);break;case"delete":case"change":c.indexOf("\n")==-1?this.registers["-"]=new B(c,d):(this.shiftNumericRegisters_(),this.registers[1]=new B(c,d))}return void this.unnamedRegister.setText(c,d,e)}var g=q(a);g?f.pushText(c,d):f.setText(c,d,e),this.unnamedRegister.setText(f.toString(),d)},getRegister:function(a){return this.isValidRegister(a)?(a=a.toLowerCase(),this.registers[a]||(this.registers[a]=new B),this.registers[a]):this.unnamedRegister},isValidRegister:function(a){return a&&s(a,rb)},shiftNumericRegisters_:function(){for(var a=9;a>=2;a--)this.registers[a]=this.getRegister(""+(a-1))}},E.prototype={nextMatch:function(a,b){var c=this.historyBuffer,d=b?-1:1;null===this.initialPrefix&&(this.initialPrefix=a);for(var e=this.iterator+d;b?e>=0:e=c.length?(this.iterator=c.length,this.initialPrefix):e<0?a:void 0},pushInput:function(a){var b=this.historyBuffer.indexOf(a);b>-1&&this.historyBuffer.splice(b,1),a.length&&this.historyBuffer.push(a)},reset:function(){this.initialPrefix=null,this.iterator=this.historyBuffer.length}};var yb={matchCommand:function(a,b,c,d){var e=N(a,b,d,c);if(!e.full&&!e.partial)return{type:"none"};if(!e.full&&e.partial)return{type:"partial"};for(var f,g=0;g"==f.keys.slice(-11)){var i=P(a);if(!i)return{type:"none"};c.selectedCharacter=i}return{type:"full",command:f}},processCommand:function(a,b,c){switch(b.inputState.repeatOverride=c.repeatOverride,c.type){case"motion":this.processMotion(a,b,c);break;case"operator":this.processOperator(a,b,c);break;case"operatorMotion":this.processOperatorMotion(a,b,c);break;case"action":this.processAction(a,b,c);break;case"search":this.processSearch(a,b,c);break;case"ex":case"keyToEx":this.processEx(a,b,c)}},processMotion:function(a,b,c){b.inputState.motion=c.motion,b.inputState.motionArgs=K(c.motionArgs),this.evalInput(a,b)},processOperator:function(a,b,c){var d=b.inputState;if(d.operator){if(d.operator==c.operator)return d.motion="expandToLine",d.motionArgs={linewise:!0},void this.evalInput(a,b);A(a)}d.operator=c.operator,d.operatorArgs=K(c.operatorArgs),b.visualMode&&this.evalInput(a,b)},processOperatorMotion:function(a,b,c){var d=b.visualMode,e=K(c.operatorMotionArgs);e&&d&&e.visualLine&&(b.visualLine=!0),this.processOperator(a,b,c),d||this.processMotion(a,b,c)},processAction:function(a,b,c){var d=b.inputState,e=d.getRepeat(),f=!!e,g=K(c.actionArgs)||{};d.selectedCharacter&&(g.selectedCharacter=d.selectedCharacter),c.operator&&this.processOperator(a,b,c),c.motion&&this.processMotion(a,b,c),(c.motion||c.operator)&&this.evalInput(a,b),g.repeat=e||1,g.repeatIsExplicit=f,g.registerName=d.registerName,A(a),b.lastMotion=null,c.isEdit&&this.recordLastEdit(b,d,c),Bb[c.action](a,g,b)},processSearch:function(b,c,d){function e(a,e,f){vb.searchHistoryController.pushInput(a),vb.searchHistoryController.reset();try{Ma(b,a,e,f)}catch(g){return Ia(b,"Invalid regex: "+a),void A(b)}yb.processMotion(b,c,{type:"motion",motion:"findNext",motionArgs:{forward:!0,toJumplist:d.searchArgs.toJumplist}})}function f(a){b.scrollTo(m.left,m.top),e(a,!0,!0);var c=vb.macroModeState;c.isRecording&&_a(c,a)}function g(c,d,e){var f,g,h=a.keyName(c);"Up"==h||"Down"==h?(f="Up"==h,g=c.target?c.target.selectionEnd:0,d=vb.searchHistoryController.nextMatch(d,f)||"",e(d),g&&c.target&&(c.target.selectionEnd=c.target.selectionStart=Math.min(g,c.target.value.length))):"Left"!=h&&"Right"!=h&&"Ctrl"!=h&&"Alt"!=h&&"Shift"!=h&&vb.searchHistoryController.reset();var j;try{j=Ma(b,d,!0,!0)}catch(c){}j?b.scrollIntoView(Pa(b,!i,j),30):(Qa(b),b.scrollTo(m.left,m.top))}function h(c,d,e){var f=a.keyName(c);"Esc"==f||"Ctrl-C"==f||"Ctrl-["==f||"Backspace"==f&&""==d?(vb.searchHistoryController.pushInput(d),vb.searchHistoryController.reset(),Ma(b,l),Qa(b),b.scrollTo(m.left,m.top),a.e_stop(c),A(b),e(),b.focus()):"Up"==f||"Down"==f?a.e_stop(c):"Ctrl-U"==f&&(a.e_stop(c),e(""))}if(b.getSearchCursor){var i=d.searchArgs.forward,j=d.searchArgs.wholeWordOnly;Aa(b).setReversed(!i);var k=i?"/":"?",l=Aa(b).getQuery(),m=b.getScrollInfo();switch(d.searchArgs.querySrc){case"prompt":var n=vb.macroModeState;if(n.isPlaying){var o=n.replaySearchQueries.shift();e(o,!0,!1)}else Ka(b,{onClose:f,prefix:k,desc:Gb,onKeyUp:g,onKeyDown:h});break;case"wordUnderCursor":var p=ma(b,!1,!0,!1,!0),q=!0;if(p||(p=ma(b,!1,!0,!1,!1),q=!1),!p)return;var o=b.getLine(p.start.line).substring(p.start.ch,p.end.ch);o=q&&j?"\\b"+o+"\\b":Z(o),vb.jumpList.cachedCursor=b.getCursor(),b.setCursor(p.start),e(o,!0,!1)}}},processEx:function(b,c,d){function e(a){vb.exCommandHistoryController.pushInput(a),vb.exCommandHistoryController.reset(),Jb.processCommand(b,a)}function f(c,d,e){var f,g,h=a.keyName(c);("Esc"==h||"Ctrl-C"==h||"Ctrl-["==h||"Backspace"==h&&""==d)&&(vb.exCommandHistoryController.pushInput(d),vb.exCommandHistoryController.reset(),a.e_stop(c),A(b),e(),b.focus()),"Up"==h||"Down"==h?(a.e_stop(c),f="Up"==h,g=c.target?c.target.selectionEnd:0,d=vb.exCommandHistoryController.nextMatch(d,f)||"",e(d),g&&c.target&&(c.target.selectionEnd=c.target.selectionStart=Math.min(g,c.target.value.length))):"Ctrl-U"==h?(a.e_stop(c),e("")):"Left"!=h&&"Right"!=h&&"Ctrl"!=h&&"Alt"!=h&&"Shift"!=h&&vb.exCommandHistoryController.reset()}"keyToEx"==d.type?Jb.processCommand(b,d.exArgs.input):c.visualMode?Ka(b,{onClose:e,prefix:":",value:"'<,'>",onKeyDown:f}):Ka(b,{onClose:e,prefix:":",onKeyDown:f})},evalInput:function(a,b){var c,e,f,g=b.inputState,h=g.motion,i=g.motionArgs||{},j=g.operator,k=g.operatorArgs||{},l=g.registerName,m=b.sel,n=R(b.visualMode?J(a,m.head):a.getCursor("head")),o=R(b.visualMode?J(a,m.anchor):a.getCursor("anchor")),p=R(n),q=R(o);if(j&&this.recordLastEdit(b,g),f=void 0!==g.repeatOverride?g.repeatOverride:g.getRepeat(),f>0&&i.explicitRepeat?i.repeatIsExplicit=!0:(i.noRepeat||!i.explicitRepeat&&0===f)&&(f=1,i.repeatIsExplicit=!1),g.selectedCharacter&&(i.selectedCharacter=k.selectedCharacter=g.selectedCharacter),i.repeat=f,A(a),h){var r=zb[h](a,n,i,b);if(b.lastMotion=zb[h],!r)return;if(i.toJumplist){var s=vb.jumpList,t=s.cachedCursor;t?(na(a,t,r),delete s.cachedCursor):na(a,n,r)}r instanceof Array?(e=r[0],c=r[1]):c=r,c||(c=R(n)),b.visualMode?(b.visualBlock&&c.ch===1/0||(c=J(a,c,b.visualBlock)),e&&(e=J(a,e,!0)),e=e||q,m.anchor=e,m.head=c,fa(a),ua(a,b,"<",T(e,c)?e:c),ua(a,b,">",T(e,c)?c:e)):j||(c=J(a,c),a.setCursor(c.line,c.ch))}if(j){if(k.lastSel){e=q;var u=k.lastSel,v=Math.abs(u.head.line-u.anchor.line),w=Math.abs(u.head.ch-u.anchor.ch);c=u.visualLine?d(q.line+v,q.ch):u.visualBlock?d(q.line+v,q.ch+w):u.head.line==u.anchor.line?d(q.line,q.ch+w):d(q.line+v,q.ch),b.visualMode=!0,b.visualLine=u.visualLine,b.visualBlock=u.visualBlock,m=b.sel={anchor:e,head:c},fa(a)}else b.visualMode&&(k.lastSel={anchor:R(m.anchor),head:R(m.head),visualBlock:b.visualBlock,visualLine:b.visualLine});var x,y,z,B,C;if(b.visualMode){if(x=U(m.head,m.anchor),y=V(m.head,m.anchor),z=b.visualLine||k.linewise,B=b.visualBlock?"block":z?"line":"char",C=ga(a,{anchor:x,head:y},B),z){var D=C.ranges;if("block"==B)for(var E=0;Ek&&f.line==k?this.moveToEol(a,b,c,e):(c.toFirstChar&&(g=la(a.getLine(i)),e.lastHPos=g),e.lastHSPos=a.charCoords(d(i,g),"div").left,d(i,g))},moveByDisplayLines:function(a,b,c,e){var f=b;switch(e.lastMotion){case this.moveByDisplayLines:case this.moveByScroll:case this.moveByLines:case this.moveToColumn:case this.moveToEol:break;default:e.lastHSPos=a.charCoords(f,"div").left}var g=c.repeat,h=a.findPosV(f,c.forward?g:-g,"line",e.lastHSPos);if(h.hitSide)if(c.forward)var i=a.charCoords(h,"div"),j={top:i.top+8,left:e.lastHSPos},h=a.coordsChar(j,"div");else{var k=a.charCoords(d(a.firstLine(),0),"div");k.left=e.lastHSPos,h=a.coordsChar(k,"div")}return e.lastHPos=h.ch,h},moveByPage:function(a,b,c){var d=b,e=c.repeat;return a.findPosV(d,c.forward?e:-e,"page")},moveByParagraph:function(a,b,c){var d=c.forward?1:-1;return wa(a,b,c.repeat,d)},moveByScroll:function(a,b,c,d){var e=a.getScrollInfo(),f=null,g=c.repeat;g||(g=e.clientHeight/(2*a.defaultTextHeight()));var h=a.charCoords(b,"local");c.repeat=g;var f=zb.moveByDisplayLines(a,b,c,d);if(!f)return null;var i=a.charCoords(f,"local");return a.scrollTo(null,e.top+i.top-h.top),f},moveByWords:function(a,b,c){return ra(a,b,c.repeat,!!c.forward,!!c.wordEnd,!!c.bigWord)},moveTillCharacter:function(a,b,c){var d=c.repeat,e=sa(a,d,c.forward,c.selectedCharacter),f=c.forward?-1:1;return oa(f,c),e?(e.ch+=f,e):null},moveToCharacter:function(a,b,c){var d=c.repeat;return oa(0,c),sa(a,d,c.forward,c.selectedCharacter)||b},moveToSymbol:function(a,b,c){var d=c.repeat;return pa(a,d,c.forward,c.selectedCharacter)||b},moveToColumn:function(a,b,c,d){var e=c.repeat;return d.lastHPos=e-1,d.lastHSPos=a.charCoords(b,"div").left,ta(a,e)},moveToEol:function(a,b,c,e){var f=b;e.lastHPos=1/0;var g=d(f.line+c.repeat-1,1/0),h=a.clipPos(g);return h.ch--,e.lastHSPos=a.charCoords(h,"div").left,g},moveToFirstNonWhiteSpaceCharacter:function(a,b){var c=b;return d(c.line,la(a.getLine(c.line)))},moveToMatchedSymbol:function(a,b){for(var c,e=b,f=e.line,g=e.ch,h=a.getLine(f);gb.lastLine()&&c.linewise&&!o?b.replaceRange("",n,k):b.replaceRange("",j,k),c.linewise&&(o||(b.setCursor(n),a.commands.newlineAndIndent(b)),j.ch=Number.MAX_VALUE),f=j}vb.registerController.pushText(c.registerName,"change",g,c.linewise,e.length>1),Bb.enterInsertMode(b,{head:f},b.state.vim)},"delete":function(a,b,c){var e,f,g=a.state.vim;if(g.visualBlock){f=a.getSelection();var h=G("",c.length);a.replaceSelections(h),e=c[0].anchor}else{var i=c[0].anchor,j=c[0].head;b.linewise&&j.line!=a.firstLine()&&i.line==a.lastLine()&&i.line==j.line-1&&(i.line==a.firstLine()?i.ch=0:i=d(i.line-1,X(a,i.line-1))),f=a.getRange(i,j),a.replaceRange("",i,j),e=i,b.linewise&&(e=zb.moveToFirstNonWhiteSpaceCharacter(a,i))}return vb.registerController.pushText(b.registerName,"delete",f,b.linewise,g.visualBlock),J(a,e)},indent:function(a,b,c){var d=a.state.vim,e=c[0].anchor.line,f=d.visualBlock?c[c.length-1].anchor.line:c[0].head.line,g=d.visualMode?b.repeat:1;b.linewise&&f--;for(var h=e;h<=f;h++)for(var i=0;ij.top?(i.line+=(h-j.top)/e,i.line=Math.ceil(i.line),a.setCursor(i),j=a.charCoords(i,"local"),a.scrollTo(null,j.top)):a.scrollTo(null,h);else{var k=h+a.getScrollInfo().clientHeight;k=g.anchor.line?L(g.head,0,1):d(g.anchor.line,0);else if("inplace"==f&&e.visualMode)return;b.setOption("disableInput",!1),c&&c.replace?(b.toggleOverwrite(!0),b.setOption("keyMap","vim-replace"),a.signal(b,"vim-mode-change",{mode:"replace"})):(b.toggleOverwrite(!1),b.setOption("keyMap","vim-insert"),a.signal(b,"vim-mode-change",{mode:"insert"})),vb.macroModeState.isPlaying||(b.on("change",ab),a.on(b.getInputField(),"keydown",fb)),e.visualMode&&ia(b),aa(b,h,i)}},toggleVisualMode:function(b,c,e){var f,g=c.repeat,h=b.getCursor();e.visualMode?e.visualLine^c.linewise||e.visualBlock^c.blockwise?(e.visualLine=!!c.linewise,e.visualBlock=!!c.blockwise,a.signal(b,"vim-mode-change",{mode:"visual",subMode:e.visualLine?"linewise":e.visualBlock?"blockwise":""}),fa(b)):ia(b):(e.visualMode=!0,e.visualLine=!!c.linewise,e.visualBlock=!!c.blockwise,f=J(b,d(h.line,h.ch+g-1),!0),e.sel={anchor:h,head:f},a.signal(b,"vim-mode-change",{mode:"visual",subMode:e.visualLine?"linewise":e.visualBlock?"blockwise":""}),fa(b),ua(b,e,"<",U(h,f)),ua(b,e,">",V(h,f)))},reselectLastSelection:function(b,c,d){var e=d.lastSelection;if(d.visualMode&&da(b,d),e){var f=e.anchorMark.find(),g=e.headMark.find();if(!f||!g)return;d.sel={anchor:f,head:g},d.visualMode=!0,d.visualLine=e.visualLine,d.visualBlock=e.visualBlock,fa(b),ua(b,d,"<",U(f,g)),ua(b,d,">",V(f,g)),a.signal(b,"vim-mode-change",{mode:"visual",subMode:d.visualLine?"linewise":d.visualBlock?"blockwise":""})}},joinLines:function(a,b,c){var e,f;if(c.visualMode){if(e=a.getCursor("anchor"),f=a.getCursor("head"),T(f,e)){var g=f;f=e,e=g}f.ch=X(a,f.line)-1}else{var h=Math.max(b.repeat,2);e=a.getCursor(),f=J(a,d(e.line+h-1,1/0))}for(var i=0,j=e.line;j1)var g=Array(b.repeat+1).join(g);var o=f.linewise,p=f.blockwise;if(o)c.visualMode?g=c.visualLine?g.slice(0,-1):"\n"+g.slice(0,g.length-1)+"\n":b.after?(g="\n"+g.slice(0,g.length-1),e.ch=X(a,e.line)):e.ch=0;else{if(p){g=g.split("\n");for(var q=0;qa.lastLine()&&a.replaceRange("\n",d(A,0));var B=X(a,A);Bk.length&&(f=k.length),g=d(i.line,f)}if("\n"==h)e.visualMode||b.replaceRange("",i,g),(a.commands.newlineAndIndentContinueComment||a.commands.newlineAndIndent)(b);else{var l=b.getRange(i,g);if(l=l.replace(/[^\n]/g,h),e.visualBlock){var m=new Array(b.getOption("tabSize")+1).join(" ");l=b.getSelection(),l=l.replace(/\t/g,m).replace(/[^\n]/g,h).split("\n"),b.replaceSelections(l)}else b.replaceRange(l,i,g);e.visualMode?(i=T(j[0].anchor,j[0].head)?j[0].anchor:j[0].head,b.setCursor(i),ia(b,!1)):b.setCursor(L(g,0,-1))}},incrementNumberToken:function(a,b){for(var c,e,f,g,h,i=a.getCursor(),j=a.getLine(i.line),k=/-?\d+/g;null!==(c=k.exec(j))&&(h=c[0],e=c.index,f=e+h.length,!(i.ch=1)return!0}else a.nextCh===a.reverseSymb&&a.depth--;return!1}},section:{init:function(a){a.curMoveThrough=!0,a.symb=(a.forward?"]":"[")===a.symb?"{":"}"},isComplete:function(a){return 0===a.index&&a.nextCh===a.symb}},comment:{isComplete:function(a){var b="*"===a.lastCh&&"/"===a.nextCh;return a.lastCh=a.nextCh,b}},method:{init:function(a){a.symb="m"===a.symb?"{":"}",a.reverseSymb="{"===a.symb?"}":"{"},isComplete:function(a){return a.nextCh===a.symb}},preprocess:{init:function(a){a.index=0},isComplete:function(a){if("#"===a.nextCh){var b=a.lineText.match(/#(\w+)/)[1];if("endif"===b){if(a.forward&&0===a.depth)return!0;a.depth++}else if("if"===b){if(!a.forward&&0===a.depth)return!0;a.depth--}if("else"===b&&0===a.depth)return!0}return!1}}};t("pcre",!0,"boolean"),za.prototype={getQuery:function(){return vb.query},setQuery:function(a){vb.query=a},getOverlay:function(){return this.searchOverlay},setOverlay:function(a){this.searchOverlay=a},isReversed:function(){return vb.isReversed},setReversed:function(a){vb.isReversed=a},getScrollbarAnnotate:function(){return this.annotate},setScrollbarAnnotate:function(a){this.annotate=a}};var Eb={"\\n":"\n","\\r":"\r","\\t":"\t"},Fb={"\\/":"/","\\\\":"\\","\\n":"\n","\\r":"\r","\\t":"\t"},Gb="(Javascript regexp)",Hb=function(){this.buildCommandMap_()};Hb.prototype={processCommand:function(a,b,c){var d=this;a.operation(function(){a.curOp.isVimOp=!0,d._processCommand(a,b,c)})},_processCommand:function(b,c,d){var e=b.state.vim,f=vb.registerController.getRegister(":"),g=f.toString();e.visualMode&&ia(b);var h=new a.StringStream(c);f.setText(c);var i=d||{};i.input=c;try{this.parseInput_(b,h,i)}catch(j){throw Ia(b,j),j}var k,l;if(i.commandName){if(k=this.matchCommand_(i.commandName)){if(l=k.name,k.excludeFromCommandHistory&&f.setText(g),this.parseCommandArgs_(h,i,k),"exToKey"==k.type){for(var m=0;m0;b--){var c=a.substring(0,b);if(this.commandMap_[c]){var d=this.commandMap_[c];if(0===d.name.indexOf(a))return d}}return null},buildCommandMap_:function(){this.commandMap_={};for(var a=0;a
";if(c){var f;c=c.join("");for(var g=0;g"}}else for(var f in d){var i=d[f].toString();i.length&&(e+='"'+f+" "+i+"
")}Ia(a,e)},sort:function(b,c){function e(){if(c.argString){var b=new a.StringStream(c.argString);if(b.eat("!")&&(h=!0),b.eol())return;if(!b.eatSpace())return"Invalid arguments";var d=b.match(/([dinuox]+)?\s*(\/.+\/)?\s*/);if(!d&&!b.eol())return"Invalid arguments";if(d[1]){i=d[1].indexOf("i")!=-1,j=d[1].indexOf("u")!=-1;var e=d[1].indexOf("d")!=-1||d[1].indexOf("n")!=-1&&1,f=d[1].indexOf("x")!=-1&&1,g=d[1].indexOf("o")!=-1&&1;if(e+f+g>1)return"Invalid arguments";k=e&&"decimal"||f&&"hex"||g&&"octal"}d[2]&&(l=new RegExp(d[2].substr(1,d[2].length-2),i?"i":""))}}function f(a,b){if(h){var c;c=a,a=b,b=c}i&&(a=a.toLowerCase(),b=b.toLowerCase());var d=k&&s.exec(a),e=k&&s.exec(b);return d?(d=parseInt((d[1]+d[2]).toLowerCase(),t),e=parseInt((e[1]+e[2]).toLowerCase(),t),d-e):a")}if(!d)return void Ia(a,l);var o=0,p=function(){if(o=k)return void Ia(b,"Invalid argument: "+c.argString.substring(f));for(var l=0;l<=k-j;l++){var m=String.fromCharCode(j+l);delete d.marks[m]}}else delete d.marks[g]}}},Jb=new Hb;return a.keyMap.vim={attach:h,detach:g,call:i},t("insertModeEscKeysTimeout",200,"number"),a.keyMap["vim-insert"]={fallthrough:["default"],attach:h,detach:g,call:i},a.keyMap["vim-replace"]={Backspace:"goCharLeft",fallthrough:["vim-insert"],attach:h,detach:g,call:i},y(),xb};a.Vim=e()})},{"../addon/dialog/dialog":3,"../addon/edit/matchbrackets.js":12,"../addon/search/searchcursor":49,"../lib/codemirror":59}],59:[function(a,b,c){!function(a,d){"object"==typeof c&&"undefined"!=typeof b?b.exports=d():"function"==typeof define&&define.amd?define(d):a.CodeMirror=d()}(this,function(){"use strict";function a(a){return new RegExp("(^|\\s)"+a+"(?:$|\\s)\\s*")}function b(a){for(var b=a.childNodes.length;b>0;--b)a.removeChild(a.firstChild);return a}function c(a,c){return b(a).appendChild(c)}function d(a,b,c,d){var e=document.createElement(a);if(c&&(e.className=c),d&&(e.style.cssText=d),"string"==typeof b)e.appendChild(document.createTextNode(b));else if(b)for(var f=0;f=b)return g+(b-f);g+=h-f,g+=c-g%c,f=h+1}}function m(a,b){for(var c=0;c=b)return d+Math.min(g,b-e);if(e+=f-d,e+=c-e%c,d=f+1,e>=b)return d}}function o(a){for(;Qg.length<=a;)Qg.push(p(Qg)+" ");return Qg[a]}function p(a){return a[a.length-1]}function q(a,b){for(var c=[],d=0;d"\x80"&&(a.toUpperCase()!=a.toLowerCase()||Rg.test(a))}function v(a,b){return b?!!(b.source.indexOf("\\w")>-1&&u(a))||b.test(a):u(a)}function w(a){for(var b in a)if(a.hasOwnProperty(b)&&a[b])return!1;return!0}function x(a){return a.charCodeAt(0)>=768&&Sg.test(a)}function y(a,b,c){for(;(c<0?b>0:b=a.size)throw new Error("There is no line "+(b+a.first)+" in the document.");for(var c=a;!c.lines;)for(var d=0;;++d){var e=c.children[d],f=e.chunkSize();if(b=a.first&&bc?J(c,B(a,c).text.length):R(b,B(a,b.line).text.length)}function R(a,b){var c=a.ch;return null==c||c>b?J(a.line,b):c<0?J(a.line,0):a}function S(a,b){for(var c=[],d=0;d=b:f.to>b);(d||(d=[])).push(new V(g,f.from,i?null:f.to))}}return d}function $(a,b,c){var d;if(a)for(var e=0;e=b:f.to>b);if(h||f.from==b&&"bookmark"==g.type&&(!c||f.marker.insertLeft)){var i=null==f.from||(g.inclusiveLeft?f.from<=b:f.from0&&h)for(var v=0;v0)){var k=[i,1],l=K(j.from,h.from),n=K(j.to,h.to);(l<0||!g.inclusiveLeft&&!l)&&k.push({from:j.from,to:h.from}),(n>0||!g.inclusiveRight&&!n)&&k.push({from:h.to,to:j.to}),e.splice.apply(e,k),i+=k.length-3}}return e}function ca(a){var b=a.markedSpans;if(b){for(var c=0;c=0&&l<=0||k<=0&&l>=0)&&(k<=0&&(i.marker.inclusiveRight&&e.inclusiveLeft?K(j.to,c)>=0:K(j.to,c)>0)||k>=0&&(i.marker.inclusiveRight&&e.inclusiveLeft?K(j.from,d)<=0:K(j.from,d)<0)))return!0}}}function la(a){for(var b;b=ia(a);)a=b.find(-1,!0).line;return a}function ma(a){for(var b;b=ja(a);)a=b.find(1,!0).line;return a}function na(a){for(var b,c;b=ja(a);)a=b.find(1,!0).line,(c||(c=[])).push(a);return c}function oa(a,b){var c=B(a,b),d=la(c);return c==d?b:F(d)}function pa(a,b){if(b>a.lastLine())return b;var c,d=B(a,b);if(!qa(a,d))return b;for(;c=ja(d);)d=c.find(1,!0).line;return F(d)+1}function qa(a,b){var c=Ug&&b.markedSpans;if(c)for(var d=void 0,e=0;eb.maxLineLength&&(b.maxLineLength=c,b.maxLine=a)})}function va(a,b,c,d){if(!a)return d(b,c,"ltr");for(var e=!1,f=0;fb||b==c&&g.to==b)&&(d(Math.max(g.from,b),Math.min(g.to,c),1==g.level?"rtl":"ltr"),e=!0)}e||d(b,c,"ltr")}function wa(a,b,c){var d;Vg=null;for(var e=0;eb)return e;f.to==b&&(f.from!=f.to&&"before"==c?d=e:Vg=e),f.from==b&&(f.from!=f.to&&"before"!=c?d=e:Vg=e)}return null!=d?d:Vg}function xa(a,b){var c=a.order;return null==c&&(c=a.order=Wg(a.text,b)),c}function ya(a,b,c){var d=y(a.text,b+c,c);return d<0||d>a.text.length?null:d}function za(a,b,c){var d=ya(a,b.ch,c);return null==d?null:new J(b.line,d,c<0?"after":"before")}function Aa(a,b,c,d,e){if(a){var f=xa(c,b.doc.direction);if(f){var g,h=e<0?p(f):f[0],i=e<0==(1==h.level),j=i?"after":"before";if(h.level>0){var k=Zb(b,c);g=e<0?c.text.length-1:0;var l=$b(b,k,g).top;g=z(function(a){return $b(b,k,a).top==l},e<0==(1==h.level)?h.from:h.to-1,g),"before"==j&&(g=ya(c,g,1))}else g=e<0?h.to:h.from;return new J(d,g,j)}}return new J(d,e<0?c.text.length:0,e<0?"before":"after")}function Ba(a,b,c,d){var e=xa(b,a.doc.direction);if(!e)return za(b,c,d);c.ch>=b.text.length?(c.ch=b.text.length,c.sticky="before"):c.ch<=0&&(c.ch=0,c.sticky="after");var f=wa(e,c.ch,c.sticky),g=e[f];if("ltr"==a.doc.direction&&g.level%2==0&&(d>0?g.to>c.ch:g.from=g.from&&m>=k.begin)){var n=l?"before":"after";return new J(c.line,m,n)}}var o=function(a,b,d){for(var f=function(a,b){return b?new J(c.line,i(a,1),"before"):new J(c.line,a,"after")};a>=0&&a0==(1!=g.level),j=h?d.begin:i(d.end,-1);if(g.from<=j&&j0?k.end:i(k.begin,-1);return null==q||d>0&&q==b.text.length||!(p=o(d>0?0:e.length-1,d,j(q)))?null:p}function Ca(a,b){return a._handlers&&a._handlers[b]||Xg}function Da(a,b,c){if(a.removeEventListener)a.removeEventListener(b,c,!1);else if(a.detachEvent)a.detachEvent("on"+b,c);else{var d=a._handlers,e=d&&d[b];if(e){var f=m(e,c);f>-1&&(d[b]=e.slice(0,f).concat(e.slice(f+1)))}}}function Ea(a,b){var c=Ca(a,b);if(c.length)for(var d=Array.prototype.slice.call(arguments,2),e=0;e0}function Ia(a){a.prototype.on=function(a,b){Yg(this,a,b)},a.prototype.off=function(a,b){Da(this,a,b)}}function Ja(a){a.preventDefault?a.preventDefault():a.returnValue=!1}function Ka(a){a.stopPropagation?a.stopPropagation():a.cancelBubble=!0}function La(a){return null!=a.defaultPrevented?a.defaultPrevented:0==a.returnValue}function Ma(a){Ja(a),Ka(a)}function Na(a){return a.target||a.srcElement}function Oa(a){var b=a.which;return null==b&&(1&a.button?b=1:2&a.button?b=3:4&a.button&&(b=2)),zg&&a.ctrlKey&&1==b&&(b=3),b}function Pa(a){if(null==Jg){var b=d("span","\u200b");c(a,d("span",[b,document.createTextNode("x")])),0!=a.firstChild.offsetHeight&&(Jg=b.offsetWidth<=1&&b.offsetHeight>2&&!(ng&&og<8))}var e=Jg?d("span","\u200b"):d("span","\xa0",null,"display: inline-block; width: 1px; margin-right: -1px");return e.setAttribute("cm-text",""),e}function Qa(a){if(null!=Kg)return Kg;var d=c(a,document.createTextNode("A\u062eA")),e=Dg(d,0,1).getBoundingClientRect(),f=Dg(d,1,2).getBoundingClientRect();return b(a),!(!e||e.left==e.right)&&(Kg=f.right-e.right<3)}function Ra(a){if(null!=bh)return bh;var b=c(a,d("span","x")),e=b.getBoundingClientRect(),f=Dg(b,0,1).getBoundingClientRect();return bh=Math.abs(e.left-f.left)>1}function Sa(a,b){arguments.length>2&&(b.dependencies=Array.prototype.slice.call(arguments,2)),ch[a]=b}function Ta(a,b){dh[a]=b}function Ua(a){if("string"==typeof a&&dh.hasOwnProperty(a))a=dh[a];else if(a&&"string"==typeof a.name&&dh.hasOwnProperty(a.name)){var b=dh[a.name];"string"==typeof b&&(b={name:b}),a=t(b,a),a.name=b.name}else{if("string"==typeof a&&/^[\w\-]+\/[\w\-]+\+xml$/.test(a))return Ua("application/xml");if("string"==typeof a&&/^[\w\-]+\/[\w\-]+\+json$/.test(a))return Ua("application/json")}return"string"==typeof a?{name:a}:a||{name:"null"}}function Va(a,b){b=Ua(b);var c=ch[b.name];if(!c)return Va(a,"text/plain");var d=c(a,b);if(eh.hasOwnProperty(b.name)){var e=eh[b.name];for(var f in e)e.hasOwnProperty(f)&&(d.hasOwnProperty(f)&&(d["_"+f]=d[f]),d[f]=e[f])}if(d.name=b.name,b.helperType&&(d.helperType=b.helperType),b.modeProps)for(var g in b.modeProps)d[g]=b.modeProps[g];return d}function Wa(a,b){var c=eh.hasOwnProperty(a)?eh[a]:eh[a]={};k(b,c)}function Xa(a,b){if(b===!0)return b;if(a.copyState)return a.copyState(b);var c={};for(var d in b){var e=b[d];e instanceof Array&&(e=e.concat([])),c[d]=e}return c}function Ya(a,b){for(var c;a.innerMode&&(c=a.innerMode(b),c&&c.mode!=a);)b=c.state,a=c.mode;return c||{mode:a,state:b}}function Za(a,b,c){return!a.startState||a.startState(b,c)}function $a(a,b,c,d){var e=[a.state.modeGen],f={};gb(a,b.text,a.doc.mode,c,function(a,b){return e.push(a,b)},f,d);for(var g=c.state,h=function(d){var g=a.state.overlays[d],h=1,i=0;c.state=!0,gb(a,b.text,g.mode,c,function(a,b){for(var c=h;ia&&e.splice(h,1,a,e[h+1],d),h+=2,i=Math.min(a,d)}if(b)if(g.opaque)e.splice(c,h-c,a,"overlay "+b),h=c+2;else for(;ca.options.maxHighlightLength&&Xa(a.doc.mode,d.state),f=$a(a,b,d);e&&(d.state=e),b.stateAfter=d.save(!e),b.styles=f.styles,f.classes?b.styleClasses=f.classes:b.styleClasses&&(b.styleClasses=null),c===a.doc.highlightFrontier&&(a.doc.modeFrontier=Math.max(a.doc.modeFrontier,++a.doc.highlightFrontier))}return b.styles}function ab(a,b,c){var d=a.doc,e=a.display;if(!d.mode.startState)return new hh(d,!0,b);var f=hb(a,b,c),g=f>d.first&&B(d,f-1).stateAfter,h=g?hh.fromSaved(d,g,f):new hh(d,Za(d.mode),f);return d.iter(f,b,function(c){bb(a,c.text,h);var d=h.line;c.stateAfter=d==b-1||d%5==0||d>=e.viewFrom&&db.start)return f}throw new Error("Mode "+a.name+" failed to advance stream.")}function eb(a,b,c,d){var e,f=a.doc,g=f.mode;b=Q(f,b);var h,i=B(f,b.line),j=ab(a,b.line,c),k=new fh(i.text,a.options.tabSize,j);for(d&&(h=[]);(d||k.posa.options.maxHighlightLength?(h=!1,g&&bb(a,b,d,l.pos),l.pos=b.length,i=null):i=fb(db(c,l,d.state,m),f),m){var n=m[0].name;n&&(i="m-"+(i?n+" "+i:n))}if(!h||k!=i){for(;jg;--h){if(h<=f.first)return f.first;var i=B(f,h-1),j=i.stateAfter;if(j&&(!c||h+(j instanceof gh?j.lookAhead:0)<=f.modeFrontier))return h;var k=l(i.text,null,a.options.tabSize);(null==e||d>k)&&(e=h-1,d=k)}return e}function ib(a,b){if(a.modeFrontier=Math.min(a.modeFrontier,b),!(a.highlightFrontierc;d--){var e=B(a,d).stateAfter;if(e&&(!(e instanceof gh)||d+e.lookAhead1&&!/ /.test(a))return a;for(var c=b,d="",e=0;ej&&l.from<=j));m++);if(l.to>=k)return a(c,d,e,f,g,h,i);a(c,d.slice(0,l.to-j),e,f,null,h,i),f=null,d=d.slice(l.to-j),j=l.to}}}function rb(a,b,c,d){var e=!d&&c.widgetNode;e&&a.map.push(a.pos,a.pos+b,e),!d&&a.cm.display.input.needsContentAttribute&&(e||(e=a.content.appendChild(document.createElement("span"))),e.setAttribute("cm-marker",c.id)),e&&(a.cm.display.input.setUneditable(e),a.content.appendChild(e)),a.pos+=b,a.trailingSpace=!1}function sb(a,b,c){var d=a.markedSpans,e=a.text,f=0;if(d)for(var g,h,i,j,k,l,m,n=e.length,o=0,p=1,q="",r=0;;){if(r==o){i=j=k=l=h="",m=null,r=1/0;for(var s=[],t=void 0,u=0;uo||w.collapsed&&v.to==o&&v.from==o)?(null!=v.to&&v.to!=o&&r>v.to&&(r=v.to,j=""),w.className&&(i+=" "+w.className),w.css&&(h=(h?h+";":"")+w.css),w.startStyle&&v.from==o&&(k+=" "+w.startStyle),w.endStyle&&v.to==r&&(t||(t=[])).push(w.endStyle,v.to),w.title&&!l&&(l=w.title),w.collapsed&&(!m||ga(m.marker,w)<0)&&(m=v)):v.from>o&&r>v.from&&(r=v.from)}if(t)for(var x=0;x=n)break;for(var z=Math.min(n,r);;){if(q){var A=o+q.length;if(!m){var B=A>z?q.slice(0,z-o):q;b.addToken(b,B,g?g+i:i,k,o+B.length==r?j:"",l,h)}if(A>=z){q=q.slice(z-o),o=z;break}o=A,k=""}q=e.slice(f,f=c[p++]),g=lb(c[p++],b.cm.options)}}else for(var C=1;C2&&f.push((i.bottom+j.top)/2-c.top)}}f.push(c.bottom-c.top)}}function Vb(a,b,c){if(a.line==b)return{map:a.measure.map,cache:a.measure.cache};for(var d=0;dc)return{map:a.measure.maps[e],cache:a.measure.caches[e],before:!0}}function Wb(a,b){b=la(b);var d=F(b),e=a.display.externalMeasured=new tb(a.doc,b,d);e.lineN=d;var f=e.built=mb(a,e);return e.text=f.pre,c(a.display.lineMeasure,f.pre),e}function Xb(a,b,c,d){return $b(a,Zb(a,b),c,d)}function Yb(a,b){if(b>=a.display.viewFrom&&b=c.lineN&&bb)&&(f=i-h,e=f-1,b>=i&&(g="right")),null!=e){if(d=a[j+2],h==i&&c==(d.insertLeft?"left":"right")&&(g=c),"left"==c&&0==e)for(;j&&a[j-2]==a[j-3]&&a[j-1].insertLeft;)d=a[(j-=3)+2],g="left";if("right"==c&&e==i-h)for(;j=0&&(c=a[e]).left==c.right;e--);return c}function bc(a,b,c,d){var e,f=_b(b.map,c,d),g=f.node,h=f.start,i=f.end,j=f.collapse;if(3==g.nodeType){for(var k=0;k<4;k++){for(;h&&x(b.line.text.charAt(f.coverStart+h));)--h;for(;f.coverStart+i0&&(j=d="right");var l;e=a.options.lineWrapping&&(l=g.getClientRects()).length>1?l["right"==d?l.length-1:0]:g.getBoundingClientRect()}if(ng&&og<9&&!h&&(!e||!e.left&&!e.right)){var m=g.parentNode.getClientRects()[0];e=m?{left:m.left,right:m.left+tc(a.display),top:m.top,bottom:m.bottom}:ph}for(var n=e.top-b.rect.top,o=e.bottom-b.rect.top,p=(n+o)/2,q=b.view.measure.heights,r=0;r=d.text.length?(j=d.text.length,k="before"):j<=0&&(j=0,k="after"),!i)return g("before"==k?j-1:j,"before"==k);var l=wa(i,j,k),m=Vg,n=h(j,l,"before"==k);return null!=m&&(n.other=h(j,m,"before"!=k)),n}function mc(a,b){var c=0;b=Q(a.doc,b),a.options.lineWrapping||(c=tc(a.display)*b.ch);var d=B(a.doc,b.line),e=sa(d)+Ob(a.display);return{left:c,right:c,top:e,bottom:e+d.height}}function nc(a,b,c,d,e){var f=J(a,b,c);return f.xRel=e,d&&(f.outside=!0),f}function oc(a,b,c){var d=a.doc;if(c+=a.display.viewOffset,c<0)return nc(d.first,0,null,!0,-1);var e=G(d,c),f=d.first+d.size-1;if(e>f)return nc(d.first+d.size-1,B(d,f).text.length,null,!0,1);b<0&&(b=0);for(var g=B(d,e);;){var h=rc(a,g,e,b,c),i=ja(g),j=i&&i.find(0,!0);if(!i||!(h.ch>j.from.ch||h.ch==j.from.ch&&h.xRel>0))return h;e=F(g=j.to.line)}}function pc(a,b,c,d){var e=function(d){return ic(a,b,$b(a,c,d),"line")},f=b.text.length,g=z(function(a){return e(a-1).bottom<=d},f,0);return f=z(function(a){return e(a).top>d},g,f),{begin:g,end:f}}function qc(a,b,c,d){var e=ic(a,b,$b(a,c,d),"line").top;return pc(a,b,c,e)}function rc(a,b,c,d,e){e-=sa(b);var f,g=0,h=b.text.length,i=Zb(a,b),j=xa(b,a.doc.direction);if(j){if(a.options.lineWrapping){var k;k=pc(a,b,i,e),g=k.begin,h=k.end}f=new J(c,Math.floor(g+(h-g)/2));var l,m,n=lc(a,f,"line",b,i).left,o=n1){var t=Math.abs(p-l)/q;q=Math.min(q,Math.ceil(Math.abs(p)/t)),o=p<0?1:-1}}while(0!=p&&(q>1||o<0!=p<0&&Math.abs(p)<=Math.abs(l)));if(Math.abs(p)>Math.abs(l)){if(p<0==l<0)throw new Error("Broke out of infinite loop in coordsCharInner");f=m}}else{var u=z(function(c){var f=ic(a,b,$b(a,i,c),"line");return f.top>e?(h=Math.min(c,h),!0):!(f.bottom<=e)&&(f.left>d||!(f.rightv.right?1:0,f}function sc(a){if(null!=a.cachedTextHeight)return a.cachedTextHeight;if(null==kh){kh=d("pre");for(var e=0;e<49;++e)kh.appendChild(document.createTextNode("x")),kh.appendChild(d("br"));kh.appendChild(document.createTextNode("x"))}c(a.measure,kh);var f=kh.offsetHeight/50;return f>3&&(a.cachedTextHeight=f),b(a.measure),f||1}function tc(a){if(null!=a.cachedCharWidth)return a.cachedCharWidth;var b=d("span","xxxxxxxxxx"),e=d("pre",[b]);c(a.measure,e);var f=b.getBoundingClientRect(),g=(f.right-f.left)/10;return g>2&&(a.cachedCharWidth=g),g||10}function uc(a){for(var b=a.display,c={},d={},e=b.gutters.clientLeft,f=b.gutters.firstChild,g=0;f;f=f.nextSibling,++g)c[a.options.gutters[g]]=f.offsetLeft+f.clientLeft+e,d[a.options.gutters[g]]=f.clientWidth;return{fixedPos:vc(b),gutterTotalWidth:b.gutters.offsetWidth,gutterLeft:c,gutterWidth:d,wrapperWidth:b.wrapper.clientWidth}}function vc(a){return a.scroller.getBoundingClientRect().left-a.sizer.getBoundingClientRect().left}function wc(a){var b=sc(a.display),c=a.options.lineWrapping,d=c&&Math.max(5,a.display.scroller.clientWidth/tc(a.display)-3);return function(e){if(qa(a.doc,e))return 0;var f=0;if(e.widgets)for(var g=0;g=a.display.viewTo)return null;if(b-=a.display.viewFrom,b<0)return null;for(var c=a.display.view,d=0;d=a.display.viewTo||h.to().line0?b.blinker=setInterval(function(){return b.cursorDiv.style.visibility=(c=!c)?"":"hidden"},a.options.cursorBlinkRate):a.options.cursorBlinkRate<0&&(b.cursorDiv.style.visibility="hidden")}}function Gc(a){a.state.focused||(a.display.input.focus(),Ic(a))}function Hc(a){a.state.delayingBlurEvent=!0,setTimeout(function(){a.state.delayingBlurEvent&&(a.state.delayingBlurEvent=!1,Jc(a))},100)}function Ic(a,b){a.state.delayingBlurEvent&&(a.state.delayingBlurEvent=!1),"nocursor"!=a.options.readOnly&&(a.state.focused||(Ea(a,"focus",a,b),a.state.focused=!0,h(a.display.wrapper,"CodeMirror-focused"),a.curOp||a.display.selForContextMenu==a.doc.sel||(a.display.input.reset(),pg&&setTimeout(function(){return a.display.input.reset(!0)},20)),a.display.input.receivedFocus()),Fc(a))}function Jc(a,b){a.state.delayingBlurEvent||(a.state.focused&&(Ea(a,"blur",a,b),a.state.focused=!1,Gg(a.display.wrapper,"CodeMirror-focused")),clearInterval(a.display.blinker),setTimeout(function(){a.state.focused||(a.display.shift=!1)},150))}function Kc(a){for(var b=a.display,c=b.lineDiv.offsetTop,d=0;d.005||i<-.005)&&(E(e.line,f),Lc(e.line),e.rest))for(var j=0;j=g&&(f=G(b,sa(B(b,i))-a.wrapper.clientHeight),g=i)}return{from:f,to:Math.max(g,f+1)}}function Nc(a){var b=a.display,c=b.view;if(b.alignWidgets||b.gutters.firstChild&&a.options.fixedGutter){for(var d=vc(b)-b.scroller.scrollLeft+a.doc.scrollLeft,e=b.gutters.offsetWidth,f=d+"px",g=0;g(window.innerHeight||document.documentElement.clientHeight)&&(f=!1),null!=f&&!vg){var g=d("div","\u200b",null,"position: absolute;\n top: "+(b.top-c.viewOffset-Ob(a.display))+"px;\n height: "+(b.bottom-b.top+Rb(a)+c.barHeight)+"px;\n left: "+b.left+"px; width: "+Math.max(2,b.right-b.left)+"px;");a.display.lineSpace.appendChild(g),g.scrollIntoView(f),a.display.lineSpace.removeChild(g)}}}function Qc(a,b,c,d){null==d&&(d=0);var e;a.options.lineWrapping||b!=c||(b=b.ch?J(b.line,"before"==b.sticky?b.ch-1:b.ch,"after"):b,c="before"==b.sticky?J(b.line,b.ch+1,"before"):b);for(var f=0;f<5;f++){var g=!1,h=lc(a,b),i=c&&c!=b?lc(a,c):h;e={left:Math.min(h.left,i.left),top:Math.min(h.top,i.top)-d,right:Math.max(h.left,i.left),bottom:Math.max(h.bottom,i.bottom)+d};var j=Sc(a,e),k=a.doc.scrollTop,l=a.doc.scrollLeft;if(null!=j.scrollTop&&(Zc(a,j.scrollTop),Math.abs(a.doc.scrollTop-k)>1&&(g=!0)),null!=j.scrollLeft&&(_c(a,j.scrollLeft),Math.abs(a.doc.scrollLeft-l)>1&&(g=!0)),!g)break}return e}function Rc(a,b){var c=Sc(a,b);null!=c.scrollTop&&Zc(a,c.scrollTop),null!=c.scrollLeft&&_c(a,c.scrollLeft)}function Sc(a,b){var c=a.display,d=sc(a.display);b.top<0&&(b.top=0);var e=a.curOp&&null!=a.curOp.scrollTop?a.curOp.scrollTop:c.scroller.scrollTop,f=Tb(a),g={};b.bottom-b.top>f&&(b.bottom=b.top+f);var h=a.doc.height+Pb(c),i=b.toph-d;if(b.tope+f){var k=Math.min(b.top,(j?h:b.bottom)-f);k!=e&&(g.scrollTop=k)}var l=a.curOp&&null!=a.curOp.scrollLeft?a.curOp.scrollLeft:c.scroller.scrollLeft,m=Sb(a)-(a.options.fixedGutter?c.gutters.offsetWidth:0),n=b.right-b.left>m;return n&&(b.right=b.left+m),b.left<10?g.scrollLeft=0:b.leftm+l-3&&(g.scrollLeft=b.right+(n?0:10)-m),g}function Tc(a,b){null!=b&&(Xc(a),a.curOp.scrollTop=(null==a.curOp.scrollTop?a.doc.scrollTop:a.curOp.scrollTop)+b)}function Uc(a){Xc(a);var b=a.getCursor();a.curOp.scrollToPos={from:b,to:b,margin:a.options.cursorScrollMargin}}function Vc(a,b,c){null==b&&null==c||Xc(a),null!=b&&(a.curOp.scrollLeft=b),null!=c&&(a.curOp.scrollTop=c)}function Wc(a,b){Xc(a),a.curOp.scrollToPos=b}function Xc(a){var b=a.curOp.scrollToPos;if(b){a.curOp.scrollToPos=null;var c=mc(a,b.from),d=mc(a,b.to);Yc(a,c,d,b.margin)}}function Yc(a,b,c,d){var e=Sc(a,{left:Math.min(b.left,c.left),top:Math.min(b.top,c.top)-d,right:Math.max(b.right,c.right),bottom:Math.max(b.bottom,c.bottom)+d});Vc(a,e.scrollLeft,e.scrollTop)}function Zc(a,b){Math.abs(a.doc.scrollTop-b)<2||(jg||Dd(a,{top:b}),$c(a,b,!0),jg&&Dd(a),wd(a,100))}function $c(a,b,c){b=Math.min(a.display.scroller.scrollHeight-a.display.scroller.clientHeight,b),(a.display.scroller.scrollTop!=b||c)&&(a.doc.scrollTop=b,a.display.scrollbars.setScrollTop(b),a.display.scroller.scrollTop!=b&&(a.display.scroller.scrollTop=b))}function _c(a,b,c,d){b=Math.min(b,a.display.scroller.scrollWidth-a.display.scroller.clientWidth),(c?b==a.doc.scrollLeft:Math.abs(a.doc.scrollLeft-b)<2)&&!d||(a.doc.scrollLeft=b,Nc(a),a.display.scroller.scrollLeft!=b&&(a.display.scroller.scrollLeft=b),a.display.scrollbars.setScrollLeft(b))}function ad(a){var b=a.display,c=b.gutters.offsetWidth,d=Math.round(a.doc.height+Pb(a.display));return{clientHeight:b.scroller.clientHeight,viewHeight:b.wrapper.clientHeight,scrollWidth:b.scroller.scrollWidth,clientWidth:b.scroller.clientWidth,viewWidth:b.wrapper.clientWidth,barLeft:a.options.fixedGutter?c:0,docHeight:d,scrollHeight:d+Rb(a)+b.barHeight,nativeBarWidth:b.nativeBarWidth,gutterWidth:c}}function bd(a,b){b||(b=ad(a));var c=a.display.barWidth,d=a.display.barHeight;cd(a,b);for(var e=0;e<4&&c!=a.display.barWidth||d!=a.display.barHeight;e++)c!=a.display.barWidth&&a.options.lineWrapping&&Kc(a),cd(a,ad(a)),c=a.display.barWidth,d=a.display.barHeight}function cd(a,b){var c=a.display,d=c.scrollbars.update(b);c.sizer.style.paddingRight=(c.barWidth=d.right)+"px",c.sizer.style.paddingBottom=(c.barHeight=d.bottom)+"px",c.heightForcer.style.borderBottom=d.bottom+"px solid transparent",d.right&&d.bottom?(c.scrollbarFiller.style.display="block",c.scrollbarFiller.style.height=d.bottom+"px",c.scrollbarFiller.style.width=d.right+"px"):c.scrollbarFiller.style.display="",d.bottom&&a.options.coverGutterNextToScrollbar&&a.options.fixedGutter?(c.gutterFiller.style.display="block",c.gutterFiller.style.height=d.bottom+"px",c.gutterFiller.style.width=b.gutterWidth+"px"):c.gutterFiller.style.display=""}function dd(a){a.display.scrollbars&&(a.display.scrollbars.clear(),a.display.scrollbars.addClass&&Gg(a.display.wrapper,a.display.scrollbars.addClass)),a.display.scrollbars=new sh[a.options.scrollbarStyle](function(b){a.display.wrapper.insertBefore(b,a.display.scrollbarFiller),Yg(b,"mousedown",function(){a.state.focused&&setTimeout(function(){return a.display.input.focus()},0)}),b.setAttribute("cm-not-content","true")},function(b,c){"horizontal"==c?_c(a,b):Zc(a,b)},a),a.display.scrollbars.addClass&&h(a.display.wrapper,a.display.scrollbars.addClass)}function ed(a){a.curOp={cm:a,viewChanged:!1,startHeight:a.doc.height,forceUpdate:!1,updateInput:null,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++th},vb(a.curOp)}function fd(a){var b=a.curOp;xb(b,function(a){for(var b=0;b=c.viewTo)||c.maxLineChanged&&b.options.lineWrapping,a.update=a.mustUpdate&&new uh(b,a.mustUpdate&&{top:a.scrollTop,ensure:a.scrollToPos},a.forceUpdate)}function id(a){a.updatedDisplay=a.mustUpdate&&Bd(a.cm,a.update)}function jd(a){var b=a.cm,c=b.display;a.updatedDisplay&&Kc(b),a.barMeasure=ad(b),c.maxLineChanged&&!b.options.lineWrapping&&(a.adjustWidthTo=Xb(b,c.maxLine,c.maxLine.text.length).left+3,b.display.sizerWidth=a.adjustWidthTo,a.barMeasure.scrollWidth=Math.max(c.scroller.clientWidth,c.sizer.offsetLeft+a.adjustWidthTo+Rb(b)+b.display.barWidth),a.maxScrollLeft=Math.max(0,c.sizer.offsetLeft+a.adjustWidthTo-Sb(b))),(a.updatedDisplay||a.selectionChanged)&&(a.preparedSelection=c.input.prepareSelection(a.focus))}function kd(a){var b=a.cm;null!=a.adjustWidthTo&&(b.display.sizer.style.minWidth=a.adjustWidthTo+"px",a.maxScrollLeftb)&&(e.updateLineNumbers=b),a.curOp.viewChanged=!0,b>=e.viewTo)Ug&&oa(a.doc,b)e.viewFrom?sd(a):(e.viewFrom+=d,e.viewTo+=d);else if(b<=e.viewFrom&&c>=e.viewTo)sd(a);else if(b<=e.viewFrom){var f=td(a,c,c+d,1);f?(e.view=e.view.slice(f.index),e.viewFrom=f.lineN,e.viewTo+=d):sd(a)}else if(c>=e.viewTo){var g=td(a,b,b,-1);g?(e.view=e.view.slice(0,g.index),e.viewTo=g.lineN):sd(a)}else{var h=td(a,b,b,-1),i=td(a,c,c+d,1);h&&i?(e.view=e.view.slice(0,h.index).concat(ub(a,h.lineN,i.lineN)).concat(e.view.slice(i.index)),e.viewTo+=d):sd(a)}var j=e.externalMeasured;j&&(c=e.lineN&&b=d.viewTo)){var f=d.view[zc(a,b)];if(null!=f.node){var g=f.changes||(f.changes=[]);m(g,c)==-1&&g.push(c)}}}function sd(a){a.display.viewFrom=a.display.viewTo=a.doc.first,a.display.view=[],a.display.viewOffset=0}function td(a,b,c,d){var e,f=zc(a,b),g=a.display.view;if(!Ug||c==a.doc.first+a.doc.size)return{index:f,lineN:c};for(var h=a.display.viewFrom,i=0;i0){if(f==g.length-1)return null;e=h+g[f].size-b,f++}else e=h-b;b+=e,c+=e}for(;oa(a.doc,c)!=c;){if(f==(d<0?0:g.length-1))return null;c+=d*g[f-(d<0?1:0)].size,f+=d}return{index:f,lineN:c}}function ud(a,b,c){var d=a.display,e=d.view;0==e.length||b>=d.viewTo||c<=d.viewFrom?(d.view=ub(a,b,c),d.viewFrom=b):(d.viewFrom>b?d.view=ub(a,b,d.viewFrom).concat(d.view):d.viewFromc&&(d.view=d.view.slice(0,zc(a,c)))),d.viewTo=c}function vd(a){for(var b=a.display.view,c=0,d=0;d=a.display.viewTo)){var c=+new Date+a.options.workTime,d=ab(a,b.highlightFrontier),e=[];b.iter(d.line,Math.min(b.first+b.size,a.display.viewTo+500),function(f){if(d.line>=a.display.viewFrom){var g=f.styles,h=f.text.length>a.options.maxHighlightLength?Xa(b.mode,d.state):null,i=$a(a,f,d,!0);h&&(d.state=h),f.styles=i.styles;var j=f.styleClasses,k=i.classes;k?f.styleClasses=k:j&&(f.styleClasses=null);for(var l=!g||g.length!=f.styles.length||j!=k&&(!j||!k||j.bgClass!=k.bgClass||j.textClass!=k.textClass),m=0;!l&&mc)return wd(a,a.options.workDelay),!0}),b.highlightFrontier=d.line,b.modeFrontier=Math.max(b.modeFrontier,d.line),e.length&&md(a,function(){for(var b=0;b