Commit 7b7e6346 authored by Simonas's avatar Simonas

Search main functionality complete

parent 36742b59
...@@ -17,10 +17,10 @@ ...@@ -17,10 +17,10 @@
- check if dev.biuro.lt, dev.biuro.lv, dev.biuro.ee works - check if dev.biuro.lt, dev.biuro.lv, dev.biuro.ee works
### DB backup ### DB backup
- `C:\web\dev.biuro> docker exec -i mysql mysqldump -uroot -pIiIjnsLi2wR9i1kWVbVpUAzP --default-character-set=utf8 wordpress > docker/mariadb/db_010.sql` - `C:\web\dev.biuro> docker exec -i mysql mysqldump -uroot -pIiIjnsLi2wR9i1kWVbVpUAzP --default-character-set=utf8 wordpress > docker/mariadb/db_011.sql`
### DB restore ### DB restore
- `C:\web\dev.biuro> docker exec -i mysql mysql -uroot -pIiIjnsLi2wR9i1kWVbVpUAzP --default-character-set=utf8 wordpress < docker/mariadb/db_009.sql` - `C:\web\dev.biuro> docker exec -i mysql mysql -uroot -pIiIjnsLi2wR9i1kWVbVpUAzP --default-character-set=utf8 wordpress < docker/mariadb/db_010.sql`
## Development ## Development
- `C:\web\dev.biuro\wordpress>npm install` - `C:\web\dev.biuro\wordpress>npm install`
...@@ -35,14 +35,18 @@ ...@@ -35,14 +35,18 @@
### Plugins ### Plugins
#### Akismet Anti-Spam #### Akismet Anti-Spam
#### Gutenberg #### Cookies warning
#### Data controller
#### Gutenberg (not yet)
#### Permalink Manager Lite
#### Pods - Custom Content Types and Fields
#### Polylang #### Polylang
#### Yoast SEO #### Yoast SEO
### SEO ### SEO
- https://docs.google.com/document/d/1FiwVoiLvGGmi9V-HPBgJ3gsh3wGswt27csgvfdTU24w/edit?usp=sharing - [Biuro SEO auditas](https://docs.google.com/document/d/1FiwVoiLvGGmi9V-HPBgJ3gsh3wGswt27csgvfdTU24w/edit?usp=sharing)
- https://docs.google.com/spreadsheets/d/1ggnqKuGxFFkLgI6NDZq4PXpRY_whdHX0kjZj7pCP_fk/edit?ts=5b5eaa62#gid=0 - [Biuro raktinių žodžių analizė](https://docs.google.com/spreadsheets/d/1ggnqKuGxFFkLgI6NDZq4PXpRY_whdHX0kjZj7pCP_fk/edit?ts=5b5eaa62#gid=0)
- https://docs.google.com/spreadsheets/d/1dXP0dh_v2sFajrcwR2_9HONMadCdZQW4Y2dVXvhxG3E/edit?ts=5b5eaa6b#gid=748245000 - [Biuro.lt SEO issues](https://docs.google.com/spreadsheets/d/1dXP0dh_v2sFajrcwR2_9HONMadCdZQW4Y2dVXvhxG3E/edit?ts=5b5eaa6b#gid=748245000)
p.s. might not be shared with everyone p.s. might not be shared with everyone
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -216,3 +216,10 @@ function init_biuro_theme() { ...@@ -216,3 +216,10 @@ function init_biuro_theme() {
pll_register_string('biuro-job-search', 'Job search', 'Biuro'); pll_register_string('biuro-job-search', 'Job search', 'Biuro');
} }
add_action('init', 'init_biuro_theme'); add_action('init', 'init_biuro_theme');
$l = get_nav_menu_locations();
$m = $l ? wp_get_nav_menu_object( $l[ 'main-menu' ] ) : null;
$items = $m ? wp_get_nav_menu_items( $m->term_id, array( 'order' => 'DESC' ) ) : array();
$searchPageURL = $items[0] ? $items[0]->url : '/';
...@@ -36,8 +36,6 @@ ...@@ -36,8 +36,6 @@
</symbol> </symbol>
</svg> </svg>
<div id="main" class="main"> <div id="main" class="main">
<div id="top"> <div id="top">
...@@ -51,13 +49,13 @@ ...@@ -51,13 +49,13 @@
</div> </div>
<div id="topsearch"> <div id="topsearch">
<form role="form" id="top-search-form" action="/darbo-pasiulymai/" method="get" enctype="application/x-www-form-urlencoded"> <?php
<label for="search"><?php pll_e('Job search'); ?></label> global $searchPageURL;
<div id="search-input-block">
<input type="text" name="search" id="search" value="" class="input text nolabel" /> if ( get_permalink() != $searchPageURL ):
<input aria-label="Ieškoti" type="submit" id="filter-action" name="action_results" value="" class="submit action" /> get_search_form();
</div> endif;
</form> ?>
</div> </div>
<?php <?php
......
...@@ -19,9 +19,6 @@ get_header(); ?> ...@@ -19,9 +19,6 @@ get_header(); ?>
<?php <?php
// Use for search
// https://pods.io/docs/code/pods/find/
while ( have_posts() ) : while ( have_posts() ) :
the_post(); the_post();
......
<?php
/**
* Template Name: Search Page
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Biuro
* @since 1.0
* @version 1.0
*/
?>
<?php
get_header();
$search = get_query_var('search');
$cityID = get_query_var('city');
$periodID = get_query_var('period');
$fieldID = get_query_var('field');
$typeID = get_query_var('type');
// function print()
// $cities = get_terms( 'city', array(
// 'hide_empty' => false,
// ));
// debug($cityID)
// if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
// echo '<ul>';
// foreach ( $terms as $term ) {
// echo '<li>' . $term->name . '</li>';
// }
// echo '</ul>';
// }
?>
<form id="filter-form" action="<?php echo esc_url( $searchPageURL ); ?>" method="get" enctype="application/x-www-form-urlencoded">
<ul class="search_box">
<li>
<label for="label">Paieška:</label>
<div id="search-input-block">
<input type="text" name="search" id="search" value="<?php echo $search; ?>" class="input text nolabel" />
<button aria-label="Ieškoti" type="submit" id="filter-action" class="submit action" ></button>
</div>
<a href="/darbo-pasiulymai/#" id="filter-expand" class="url close">Išplėstinė paieška</a></li>
<li class="filter-additional">
<label for="city">Miestas:</label>
<select name="city" id="city" class="el_130">
<option value="">Visi miestai</option>
<?php
$cities = get_terms( 'city', array(
'hide_empty' => false,
));
if ( ! empty( $cities ) && ! is_wp_error( $cities ) ):
foreach ( $cities as $city ):
$name = $city->name;
$termID = $city->term_id;
$selected = ($cityID == $termID) ? 'selected="selected"' : '';
?>
<option value="<?php echo $termID; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
<?php
endforeach;
endif;
?>
</select>
<label for="period" style="opacity: 0.45">Laikotarpis:</label>
<select name="period" id="period" class="el_130" style="opacity: 0.45">
<option value="">Nesvarbu</option>
<option value="1">Šiandienos</option>
<option value="7">Savaitės</option>
<option value="30">Mėnesio</option>
</select>
</li>
<li class="filter-additional">
<label for="field">Darbo sritis:</label>
<select name="field" id="field" class="el_130">
<option value="">Visos sritys</option>
<?php
$fields = get_terms( 'field', array(
'hide_empty' => false,
));
if ( ! empty( $fields ) && ! is_wp_error( $fields ) ):
foreach ( $fields as $field ):
$name = $field->name;
$termID = $field->term_id;
$selected = ($fieldID == $termID) ? 'selected="selected"' : '';
?>
<option value="<?php echo $termID; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
<?php
endforeach;
endif;
?>
</select>
<label for="type">Darbo rūšis:</label>
<select name="type" id="type" class="el_130">
<option value="">Visos rūšys</option>
<?php
$types = get_terms( 'type', array(
'hide_empty' => false,
));
if ( ! empty( $types ) && ! is_wp_error( $types ) ):
foreach ( $types as $type ):
$name = $type->name;
$termID = $type->term_id;
$selected = ($typeID == $termID) ? 'selected="selected"' : '';
?>
<option value="<?php echo $termID; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
<?php
endforeach;
endif;
?>
</select>
<input type="button" value="Ieškoti" name="find" id="find" class="filter-button">
<input type="button" value="Išvalyti" name="find" data-href="<?php echo esc_url( $searchPageURL ); ?>" id="reset-filter" class="filter-button">
</li>
</ul>
</form>
<?php
// Use for search
// https://pods.io/docs/code/pods/find/
$where = 't.post_title LIKE "%' . $search . '%"';
// 'where' => 't.post_title LIKE "%' . $keyword . '%" OR my_field.meta_value LIKE "%' . $keyword . '%"'
if ($cityID):
$where = $where . ' AND city.term_id = ' . $cityID;
endif;
if ($fieldID):
$where = $where . ' AND field.term_id = ' . $fieldID;
endif;
if ($typeID):
$where = $where . ' AND type.term_id = ' . $typeID;
endif;
$params = array(
'where' => $where,
'limit' => -1
);
$jobs = pods( 'job', $params );
if ( 0 < $jobs->total() ):
$i = 0;
?>
<table cellspacing="0" cellpadding="0" class="advert_table">
<tr>
<th>Pozicija </th>
<th>Vietovė</th>
<th>Data</th>
<th>Rūšis</th>
</tr>
<?php
while ( $jobs->fetch() ) :
$i++;
?>
<tr <?php if ( $i % 2 == 0 ) { echo 'class="bg"'; } ?>>
<td>
<a href="<?php echo get_post_permalink( $jobs->display( 'ID' ) ); ?>" target="_blank" title="<?php echo $jobs->display( 'name' ); ?>">
<strong><?php echo $jobs->display( 'name' ); ?></strong>
</a>
</td>
<td>
<span style="opacity: 0.25;">Šiauliai</span>
</td>
<td>
<span style="opacity: 0.25;">Paskelbta: 2018 11 30 <br> Galioja iki: 2018 12 28</span>
</td>
<td>
<span style="opacity: 0.25;">Nuolatinis darbas</span>
</td>
</tr>
<?php
endwhile;
?>
</table>
<?php
endif;
?>
<?php get_footer();
<?php
/**
* Template for displaying search form in Biuro
*
* @package WordPress
* @subpackage Biuro
* @since 1.0
* @version 1.0
*/
global $searchPageURL
?>
<form role="search" id="top-search-form" action="<?php echo esc_url( $searchPageURL ); ?>" method="get">
<label for="search"><?php pll_e('Job search'); ?></label>
<div id="search-input-block">
<input type="text" name="search" id="search" value="" class="input text nolabel" />
<button aria-label="Ieškoti" type="submit" id="filter-action" class="submit action" ></button>
</div>
</form>
...@@ -28,8 +28,6 @@ get_header('job'); ?> ...@@ -28,8 +28,6 @@ get_header('job'); ?>
<p>BIURO - padedame, kai labiausiai reikia. Paprastas ir greitas laikinasis įdarbinimas.</p> <p>BIURO - padedame, kai labiausiai reikia. Paprastas ir greitas laikinasis įdarbinimas.</p>
</div><!-- .biuro-header --> </div><!-- .biuro-header -->
<?php <?php
while ( have_posts() ) : while ( have_posts() ) :
?> ?>
......
import gulp from 'gulp' import gulp from 'gulp';
import browser from 'browser-sync' import browser from 'browser-sync';
import webpack from 'webpack' import webpack from 'webpack';
import webpackDevMiddleware from 'webpack-dev-middleware' import webpackDevMiddleware from 'webpack-dev-middleware';
import webpackHotMiddleware from 'webpack-hot-middleware' import webpackHotMiddleware from 'webpack-hot-middleware';
import { config } from './webpack' import { config } from './webpack';
const bs = browser.create() import { serveHTML } from './serve-html';
const bundler = webpack(config) import { servePHP } from './serve-php';
import { serveHTML } from './serve-html' import { serveImages } from './serve-images';
import { servePHP } from './serve-php' import { serveOur, serveRoot } from './serve-source';
import { serveImages } from './serve-images' import { serveCoreCSS } from './serve-css--core';
import { serveOur, serveRoot } from './serve-source' import { serveMainCSS } from './serve-css--main';
import { serveCoreCSS } from './serve-css--core' const bs = browser.create();
import { serveMainCSS } from './serve-css--main'
const bundler = webpack(config);
// import modRewrite from 'connect-modrewrite'; // import modRewrite from 'connect-modrewrite';
export function server() { export function server () {
// "browserSync": "browser-sync start --proxy 'local.dev:3000' --open 'external' --host 'local.dev' --port 3001 --files 'source' 'admin' 'public' --color"
bs.init({ bs.init({
// server: '../wp-content/themes/biuro', // server: '../wp-content/themes/biuro',
proxy: 'https://dev.biuro.lt', proxy: 'https://dev.biuro.lt',
...@@ -41,44 +36,39 @@ export function server() { ...@@ -41,44 +36,39 @@ export function server() {
// // cert: '../../certs/live/dev.biuro.lt/certificate.pem' // // cert: '../../certs/live/dev.biuro.lt/certificate.pem'
// cert: '../../certs/dev/fullchain.crt' // cert: '../../certs/dev/fullchain.crt'
// }, // },
host: 'dev.biuro.lt', host: 'dev.biuro.lt',
open: false, open: false,
port: 2000, port: 2000,
ui: false, ui: false,
middleware: [ middleware: [
webpackDevMiddleware(bundler, { /* options */ webpackDevMiddleware(bundler, { /* options */
publicPath: '../wp-content/themes/biuro', publicPath: '../wp-content/themes/biuro'
}), }),
webpackHotMiddleware(bundler), webpackHotMiddleware(bundler)
// modRewrite([ // modRewrite([
// '^[^\\.]*$ /index.html [L]', // '^[^\\.]*$ /index.html [L]',
// // '^/wp-json/our-wp-api/v1/(.*)$ https://town.ourdemo.eu/wp-json/our-wp-api/v1/$1 [P]', // // '^/wp-json/our-wp-api/v1/(.*)$ https://town.ourdemo.eu/wp-json/our-wp-api/v1/$1 [P]',
// // '^http://town.loc.al/wp-content/uploads/2018/03/(.*)$ https://town.ourdemo.eu/wp-content/uploads/2018/03/$1 [P]', // // '^http://town.loc.al/wp-content/uploads/2018/03/(.*)$ https://town.ourdemo.eu/wp-content/uploads/2018/03/$1 [P]',
// ]), // ]),
] ]
}) });
// http://town.loc.al/wp-json/our-wp-api/v1/menus
gulp.watch('./i/**/*.*', gulp.series(serveImages)); gulp.watch('./i/**/*.*', { usePolling: true }, gulp.series(serveImages));
gulp.watch(['./source/biuro/**/*.*', './source/root/**/*.*'], gulp.series(serveOur, serveRoot)); gulp.watch(['./source/biuro/**/*.*', './source/root/**/*.*'], { usePolling: true }, gulp.series(serveOur, serveRoot));
gulp.watch('./php/**/*.php', gulp.series(servePHP)); gulp.watch('./php/**/*.php', { usePolling: true }, gulp.series(servePHP));
// gulp.watch(['./*.html', './source/**/*.*', '!./source/biuro/**/*.*', '!./source/root/**/*.*', '../wp-content/themes/biuro/css/core.min.css'], gulp.series(serveHTML)); // gulp.watch(['./*.html', './source/**/*.*', '!./source/biuro/**/*.*', '!./source/root/**/*.*', '../wp-content/themes/biuro/css/core.min.css'], gulp.series(serveHTML));
gulp.watch(['./source/**/*.*', '!./source/biuro/**/*.*', '!./source/root/**/*.*', '../wp-content/themes/biuro/css/core.min.css'], gulp.series(servePHP)); gulp.watch(['./source/**/*.*', '!./source/biuro/**/*.*', '!./source/root/**/*.*', '../wp-content/themes/biuro/css/core.min.css'], { usePolling: true }, gulp.series(servePHP));
gulp.watch(['./*.html', './source/content/*.*', '../wp-content/themes/biuro/css/core.min.css'], gulp.series(serveHTML)); gulp.watch(['./*.html', './source/content/*.*', '../wp-content/themes/biuro/css/core.min.css'], { usePolling: true }, gulp.series(serveHTML));
gulp.watch(['./css/**/*.css'], gulp.parallel(serveCoreCSS, serveMainCSS)); gulp.watch(['./css/**/*.css'], { usePolling: true }, gulp.parallel(serveCoreCSS, serveMainCSS));
gulp.watch('../wp-content/themes/biuro/**/*.php').on('change', () => bs.reload() ); gulp.watch('../wp-content/themes/biuro/**/*.php').on('change', () => bs.reload());
gulp.watch('../wp-content/themes/biuro/js/*.js').on('change', () => bs.reload() ); gulp.watch('../wp-content/themes/biuro/js/*.js').on('change', () => bs.reload());
gulp.watch('../wp-content/themes/biuro/css/main.min.css').on('change', () => bs.reload('*.css')); gulp.watch('../wp-content/themes/biuro/css/main.min.css').on('change', () => bs.reload('*.css'));
} }
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# This file is distributed under the same license as the WordPress - 4.9.x - Administration package. # This file is distributed under the same license as the WordPress - 4.9.x - Administration package.
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2018-10-28 16:21:25+0000\n" "PO-Revision-Date: 2018-11-28 22:44:21+0000\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
...@@ -8421,10 +8421,6 @@ msgstr "Если посетитель оставляет комментарий ...@@ -8421,10 +8421,6 @@ msgstr "Если посетитель оставляет комментарий
msgid "Cookies" msgid "Cookies"
msgstr "Куки" msgstr "Куки"
#: wp-admin/includes/misc.php:1726
msgid "In this subsection you should list the cookies your web site uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default."
msgstr "В этом подразделе вам нужно перечислить куки используемые вашим сайтом, включая устанавливыемые плагинами, социальными сетями и аналитикой. Мы предоставили список куки используемых WordPress по умолчанию."
#: wp-admin/includes/misc.php:1733 #: wp-admin/includes/misc.php:1733
msgid "Embedded content from other websites" msgid "Embedded content from other websites"
msgstr "Встраиваемое содержимое других вебсайтов" msgstr "Встраиваемое содержимое других вебсайтов"
...@@ -8433,6 +8429,10 @@ msgstr "Встраиваемое содержимое других вебсай ...@@ -8433,6 +8429,10 @@ msgstr "Встраиваемое содержимое других вебсай
msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website."
msgstr "Статьи на этом сайте могут включать встраиваемое содержимое (например видео, изображения, статьи и др.), подобное содержимое ведет себя так же, как если бы посетитель зашел на другой сайт." msgstr "Статьи на этом сайте могут включать встраиваемое содержимое (например видео, изображения, статьи и др.), подобное содержимое ведет себя так же, как если бы посетитель зашел на другой сайт."
#: wp-admin/includes/misc.php:1740
msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here."
msgstr "WordPress самостоятельно не собирает никаких аналитических данных. Тем не менее, многие хостинги совершают сбор анонимных данных. Вы также могли установить плагин предоставляющий возможности веб-аналитики. В таком случае добавьте информацию из этого плагина сюда."
#: wp-admin/includes/misc.php:1743 #: wp-admin/includes/misc.php:1743
msgid "Who we share your data with" msgid "Who we share your data with"
msgstr "С кем мы делимся вашими данными" msgstr "С кем мы делимся вашими данными"
...@@ -8461,10 +8461,6 @@ msgstr "В этом разделе нужно объяснить какие пр ...@@ -8461,10 +8461,6 @@ msgstr "В этом разделе нужно объяснить какие пр
msgid "Where we send your data" msgid "Where we send your data"
msgstr "Куда мы отправляем ваши данные" msgstr "Куда мы отправляем ваши данные"
#: wp-admin/includes/misc.php:1740
msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here."
msgstr "WordPress самостоятельно не собирает никаких аналитических данных. Тем не менее, многие хостинги совершают сбор анонимных данных. Вы также могли установить плагин предоставляющий возможности веб-аналитики. В таком случае добавьте информацию из этого плагина сюда."
#: wp-admin/includes/misc.php:1745 #: wp-admin/includes/misc.php:1745
msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible."
msgstr "Тут следует назвать и перечислить все третьи стороны с кем вы делитесь данными сайта, включая партнеров, облачные сервисы, платежные шлюзы и другие провайдеры услуг. Укажите какие данные вы предоставляете им и зачем. Дайте ссылки на их уведомления о конфиденциальности, если возможно." msgstr "Тут следует назвать и перечислить все третьи стороны с кем вы делитесь данными сайта, включая партнеров, облачные сервисы, платежные шлюзы и другие провайдеры услуг. Укажите какие данные вы предоставляете им и зачем. Дайте ссылки на их уведомления о конфиденциальности, если возможно."
...@@ -8501,10 +8497,6 @@ msgstr "Как мы защищаем ваши данные" ...@@ -8501,10 +8497,6 @@ msgstr "Как мы защищаем ваши данные"
msgid "What data breach procedures we have in place" msgid "What data breach procedures we have in place"
msgstr "Какие принимаются процедуры против взлома данных" msgstr "Какие принимаются процедуры против взлома данных"
#: wp-admin/includes/misc.php:1781
msgid "In this section you should explain what measures you have taken to protect your users&#8217; data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too."
msgstr "В этом разделе нужно объяснить меры, принимаемые для защиты данных ваших пользователей. Это включает технические меры, такие как шифрование, меры безопасности типа 2-факторной авторизации и меры на стороне персонала (пройденные ими курсы по защите данных). Если вы проводили оценку воздействия (Privacy Impact Assessment (PIA)), вы также можете упомянуть это."
#: wp-admin/includes/misc.php:1786 #: wp-admin/includes/misc.php:1786
msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties."
msgstr "Тут следует перечислить какие процедуры принимаются для защиты от взлома, возможного или реального, например внутренние системы обнаружения, механизм контактов или программы поощрения за поиск ошибок." msgstr "Тут следует перечислить какие процедуры принимаются для защиты от взлома, возможного или реального, например внутренние системы обнаружения, механизм контактов или программы поощрения за поиск ошибок."
...@@ -8513,6 +8505,10 @@ msgstr "Тут следует перечислить какие процедур ...@@ -8513,6 +8505,10 @@ msgstr "Тут следует перечислить какие процедур
msgid "What third parties we receive data from" msgid "What third parties we receive data from"
msgstr "От каких третьих сторон мы получаем данные" msgstr "От каких третьих сторон мы получаем данные"
#: wp-admin/includes/misc.php:1781
msgid "In this section you should explain what measures you have taken to protect your users&#8217; data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too."
msgstr "В этом разделе нужно объяснить меры, принимаемые для защиты данных ваших пользователей. Это включает технические меры, такие как шифрование, меры безопасности типа 2-факторной авторизации и меры на стороне персонала (пройденные ими курсы по защите данных). Если вы проводили оценку воздействия (Privacy Impact Assessment (PIA)), вы также можете упомянуть это."
#: wp-admin/includes/misc.php:1791 #: wp-admin/includes/misc.php:1791
msgid "If your web site receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data." msgid "If your web site receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data."
msgstr "Если ваш сайт получает данные о пользователях от третьей стороны, включая рекламодателей, эта информация должна быть включена в раздел уведомления о конфиденциальности по обработке данных третьей стороны." msgstr "Если ваш сайт получает данные о пользователях от третьей стороны, включая рекламодателей, эта информация должна быть включена в раздел уведомления о конфиденциальности по обработке данных третьей стороны."
...@@ -8545,14 +8541,14 @@ msgstr "В этом разделе вам следует добавить адр ...@@ -8545,14 +8541,14 @@ msgstr "В этом разделе вам следует добавить адр
msgid "It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate." msgid "It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate."
msgstr "Это на вашей ответственности написать всеобъемлющую политику конфиденциальности, с уверенностью, что она охватывает все национальные и международные требования, а также поддерживать её точной и актуальной." msgstr "Это на вашей ответственности написать всеобъемлющую политику конфиденциальности, с уверенностью, что она охватывает все национальные и международные требования, а также поддерживать её точной и актуальной."
#: wp-admin/includes/misc.php:1711
msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment."
msgstr "Анонимизированная строка создаваемая из вашего адреса email (\"хеш\") может предоставляться сервису Gravatar, чтобы определить используете ли вы его. Политика конфиденциальности Gravatar доступна здесь: https://automattic.com/privacy/ . После одобрения комментария ваше изображение профиля будет видимым публично в контексте вашего комментария."
#: wp-admin/includes/misc.php:1729 #: wp-admin/includes/misc.php:1729
msgid "If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." msgid "If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser."
msgstr "Если у вас есть учетная запись на сайте и вы войдете в неё, мы установим временный куки для определения поддержки куки вашим браузером, куки не содержит никакой личной информации и удаляется при закрытии вашего браузера." msgstr "Если у вас есть учетная запись на сайте и вы войдете в неё, мы установим временный куки для определения поддержки куки вашим браузером, куки не содержит никакой личной информации и удаляется при закрытии вашего браузера."
#: wp-admin/includes/misc.php:1711
msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment."
msgstr "Анонимизированная строка создаваемая из вашего адреса email (\"хеш\") может предоставляться сервису Gravatar, чтобы определить используете ли вы его. Политика конфиденциальности Gravatar доступна здесь: https://automattic.com/privacy/ . После одобрения комментария ваше изображение профиля будет видимым публично в контексте вашего комментария."
#: wp-admin/includes/misc.php:1767 #: wp-admin/includes/misc.php:1767
msgid "Visitor comments may be checked through an automated spam detection service." msgid "Visitor comments may be checked through an automated spam detection service."
msgstr "Комментарии пользователей могут проверяться автоматическим сервисом определения спама." msgstr "Комментарии пользователей могут проверяться автоматическим сервисом определения спама."
...@@ -8828,6 +8824,10 @@ msgctxt "personal data group label" ...@@ -8828,6 +8824,10 @@ msgctxt "personal data group label"
msgid "About" msgid "About"
msgstr "Детали" msgstr "Детали"
#: wp-admin/includes/misc.php:1726
msgid "In this subsection you should list the cookies your web site uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default."
msgstr "В этом подразделе вам нужно перечислить куки используемые вашим сайтом, включая устанавливаемые плагинами, социальными сетями и аналитикой. Мы предоставили список куки используемых WordPress по умолчанию."
#: wp-admin/includes/ajax-actions.php:1320 #: wp-admin/includes/ajax-actions.php:1320
#: wp-admin/includes/ajax-actions.php:1325 #: wp-admin/includes/ajax-actions.php:1325
#: wp-admin/includes/ajax-actions.php:1345 #: wp-admin/includes/ajax-actions.php:1345
......
...@@ -11,1636 +11,1834 @@ msgstr "" ...@@ -11,1636 +11,1834 @@ msgstr ""
"Language: ru\n" "Language: ru\n"
"Project-Id-Version: WordPress - 4.9.x - Continents & Cities\n" "Project-Id-Version: WordPress - 4.9.x - Continents & Cities\n"
#: wp-admin/includes/continents-cities.php:152 #: wp-admin/includes/continents-cities.php:554
msgid "Inuvik" msgid "Yap"
msgstr "Инувик" msgstr "Яп"
#: wp-admin/includes/continents-cities.php:153 #: wp-admin/includes/continents-cities.php:553
msgid "Iqaluit" msgid "Wallis"
msgstr "Икаилут" msgstr "Уоллис"
#: wp-admin/includes/continents-cities.php:154 #: wp-admin/includes/continents-cities.php:552
msgid "Jamaica" msgid "Wake"
msgstr "Ямайка" msgstr "Уэйк"
#: wp-admin/includes/continents-cities.php:156 #: wp-admin/includes/continents-cities.php:551
msgid "Juneau" msgid "Truk"
msgstr "Джуно" msgstr "Трук"
#: wp-admin/includes/continents-cities.php:157 #: wp-admin/includes/continents-cities.php:550
msgid "Kentucky" msgid "Tongatapu"
msgstr "Кентукки" msgstr "Тонгатапу"
#: wp-admin/includes/continents-cities.php:158 #: wp-admin/includes/continents-cities.php:549
#: wp-admin/includes/continents-cities.php:165 msgid "Tarawa"
msgid "Louisville" msgstr "Тарава"
msgstr "Луисвилл"
#: wp-admin/includes/continents-cities.php:159 #: wp-admin/includes/continents-cities.php:548
msgid "Monticello" msgid "Tahiti"
msgstr "Монтичелло" msgstr "Таити"
#: wp-admin/includes/continents-cities.php:160 #: wp-admin/includes/continents-cities.php:547
msgid "Knox IN" msgid "Samoa"
msgstr "Нокс (Индиана)" msgstr "Самоа"
#: wp-admin/includes/continents-cities.php:162 #: wp-admin/includes/continents-cities.php:546
msgid "La Paz" msgid "Saipan"
msgstr "Ла-Пас" msgstr "Сайпан"
#: wp-admin/includes/continents-cities.php:163 #: wp-admin/includes/continents-cities.php:545
msgid "Lima" msgid "Rarotonga"
msgstr "Лима" msgstr "Раротонга"
#: wp-admin/includes/continents-cities.php:164 #: wp-admin/includes/continents-cities.php:544
msgid "Los Angeles" msgid "Port Moresby"
msgstr "Лос-Анджелес" msgstr "Порт-Морсби"
#: wp-admin/includes/continents-cities.php:167 #: wp-admin/includes/continents-cities.php:543
msgid "Maceio" msgid "Ponape"
msgstr "Масейо" msgstr "Понапе"
#: wp-admin/includes/continents-cities.php:168 #: wp-admin/includes/continents-cities.php:542
msgid "Managua" msgid "Pohnpei"
msgstr "Манагуа" msgstr "Понпеи"
#: wp-admin/includes/continents-cities.php:169 #: wp-admin/includes/continents-cities.php:541
msgid "Manaus" msgid "Pitcairn"
msgstr "Манаус" msgstr "Питкэрн"
#: wp-admin/includes/continents-cities.php:170 #: wp-admin/includes/continents-cities.php:540
msgid "Marigot" msgid "Palau"
msgstr "Маригот" msgstr "Палау"
#: wp-admin/includes/continents-cities.php:171 #: wp-admin/includes/continents-cities.php:539
msgid "Martinique" msgid "Pago Pago"
msgstr "Мартиника" msgstr "Паго-Паго"
#: wp-admin/includes/continents-cities.php:173 #: wp-admin/includes/continents-cities.php:538
msgid "Mazatlan" msgid "Noumea"
msgstr "Масатлан" msgstr "Нумеа"
#: wp-admin/includes/continents-cities.php:175 #: wp-admin/includes/continents-cities.php:537
msgid "Menominee" msgid "Norfolk"
msgstr "Меномине" msgstr "Норфолк"
#: wp-admin/includes/continents-cities.php:176 #: wp-admin/includes/continents-cities.php:536
msgid "Merida" msgid "Niue"
msgstr "Мерида" msgstr "Ниуэ"
#: wp-admin/includes/continents-cities.php:178 #: wp-admin/includes/continents-cities.php:535
msgid "Mexico City" msgid "Nauru"
msgstr "Мехико" msgstr "Науру"
#: wp-admin/includes/continents-cities.php:179 #: wp-admin/includes/continents-cities.php:534
msgid "Miquelon" msgid "Midway"
msgstr "Микелон" msgstr "Миндуэй"
#: wp-admin/includes/continents-cities.php:180 #: wp-admin/includes/continents-cities.php:533
msgid "Moncton" msgid "Marquesas"
msgstr "Монктон" msgstr "Маркизы"
#: wp-admin/includes/continents-cities.php:532
msgid "Majuro"
msgstr "Маджуро"
#: wp-admin/includes/continents-cities.php:531
msgid "Kwajalein"
msgstr "Кваджалейн"
#: wp-admin/includes/continents-cities.php:530
msgid "Kosrae"
msgstr "Кусаие"
#: wp-admin/includes/continents-cities.php:529
msgid "Kiritimati"
msgstr "Киритимати"
#: wp-admin/includes/continents-cities.php:528
msgid "Johnston"
msgstr "Джонсон"
#: wp-admin/includes/continents-cities.php:527
msgid "Honolulu"
msgstr "Гонолулу"
#: wp-admin/includes/continents-cities.php:526
msgid "Guam"
msgstr "Гуам"
#: wp-admin/includes/continents-cities.php:525
msgid "Guadalcanal"
msgstr "Гуадалканал"
#: wp-admin/includes/continents-cities.php:524
msgid "Gambier"
msgstr "Остров Гамбье"
#: wp-admin/includes/continents-cities.php:523
msgid "Galapagos"
msgstr "Галапагос"
#: wp-admin/includes/continents-cities.php:522
msgid "Funafuti"
msgstr "Фунафути"
#: wp-admin/includes/continents-cities.php:521
msgid "Fiji"
msgstr "Фиджи"
#: wp-admin/includes/continents-cities.php:520
msgid "Fakaofo"
msgstr "Факаофо"
#: wp-admin/includes/continents-cities.php:519
msgid "Enderbury"
msgstr "Эндербери"
#: wp-admin/includes/continents-cities.php:518
msgid "Efate"
msgstr "Эфате"
#: wp-admin/includes/continents-cities.php:517
msgid "Easter"
msgstr "Пасха"
#: wp-admin/includes/continents-cities.php:516
msgid "Chuuk"
msgstr "Трук"
#: wp-admin/includes/continents-cities.php:515
msgid "Chatham"
msgstr "Чатэм"
#: wp-admin/includes/continents-cities.php:514
msgid "Bougainville"
msgstr "Бугенвиль"
#: wp-admin/includes/continents-cities.php:513
msgid "Auckland"
msgstr "Окленд"
#: wp-admin/includes/continents-cities.php:512
msgid "Apia"
msgstr "Апия"
#: wp-admin/includes/continents-cities.php:511
msgid "Pacific"
msgstr "Тихоокеанский регион"
#: wp-admin/includes/continents-cities.php:509
msgid "Reunion"
msgstr "Реюньон"
#: wp-admin/includes/continents-cities.php:508
msgid "Mayotte"
msgstr "Майотта"
#: wp-admin/includes/continents-cities.php:507
msgid "Mauritius"
msgstr "Маврикий"
#: wp-admin/includes/continents-cities.php:506
msgid "Maldives"
msgstr "Мальдивы"
#: wp-admin/includes/continents-cities.php:505
msgid "Mahe"
msgstr "Маэ"
#: wp-admin/includes/continents-cities.php:504
msgid "Kerguelen"
msgstr "Кергелен"
#: wp-admin/includes/continents-cities.php:503
msgid "Comoro"
msgstr "Коморские острова"
#: wp-admin/includes/continents-cities.php:502
msgid "Cocos"
msgstr "Кокосовые острова"
#: wp-admin/includes/continents-cities.php:501
msgid "Christmas"
msgstr "Остров Рождества"
#: wp-admin/includes/continents-cities.php:500
msgid "Chagos"
msgstr "Чагос"
#: wp-admin/includes/continents-cities.php:499
msgid "Antananarivo"
msgstr "Антананариву"
#: wp-admin/includes/continents-cities.php:498
msgid "Indian"
msgstr "Индиан"
#: wp-admin/includes/continents-cities.php:496
msgid "Zurich"
msgstr "Цюрих"
#: wp-admin/includes/continents-cities.php:495
msgid "Zaporozhye"
msgstr "Запорожье"
#: wp-admin/includes/continents-cities.php:494
msgid "Zagreb"
msgstr "Загреб"
#: wp-admin/includes/continents-cities.php:493
msgid "Warsaw"
msgstr "Варшава"
#: wp-admin/includes/continents-cities.php:492
msgid "Volgograd"
msgstr "Волгоград"
#: wp-admin/includes/continents-cities.php:491
msgid "Vilnius"
msgstr "Вильнюс"
#: wp-admin/includes/continents-cities.php:490
msgid "Vienna"
msgstr "Вена"
#: wp-admin/includes/continents-cities.php:181 #: wp-admin/includes/continents-cities.php:489
msgid "Monterrey" msgid "Vatican"
msgstr "Монтеррей" msgstr "Ватикан"
#: wp-admin/includes/continents-cities.php:182 #: wp-admin/includes/continents-cities.php:488
msgid "Montevideo" msgid "Vaduz"
msgstr "Монтевидео" msgstr "Вадуц"
#: wp-admin/includes/continents-cities.php:183 #: wp-admin/includes/continents-cities.php:487
msgid "Montreal" msgid "Uzhgorod"
msgstr "Монреаль" msgstr "Ужгород"
#: wp-admin/includes/continents-cities.php:184 #: wp-admin/includes/continents-cities.php:486
msgid "Montserrat" msgid "Ulyanovsk"
msgstr "Монсеррат" msgstr "Ульяновск"
#: wp-admin/includes/continents-cities.php:185 #: wp-admin/includes/continents-cities.php:485
msgid "Nassau" msgid "Tiraspol"
msgstr "Нассау" msgstr "Тирасполь"
#: wp-admin/includes/continents-cities.php:186 #: wp-admin/includes/continents-cities.php:484
msgid "New York" msgid "Tirane"
msgstr "Нью-Йорк" msgstr "Тирана"
#: wp-admin/includes/continents-cities.php:187 #: wp-admin/includes/continents-cities.php:483
msgid "Nipigon" msgid "Tallinn"
msgstr "Нипигон" msgstr "Таллин"
#: wp-admin/includes/continents-cities.php:188 #: wp-admin/includes/continents-cities.php:482
msgid "Nome" msgid "Stockholm"
msgstr "Ном" msgstr "Стокгольм"
#: wp-admin/includes/continents-cities.php:189 #: wp-admin/includes/continents-cities.php:481
msgid "Noronha" msgid "Sofia"
msgstr "Норонха" msgstr "София"
#: wp-admin/includes/continents-cities.php:190 #: wp-admin/includes/continents-cities.php:480
msgid "North Dakota" msgid "Skopje"
msgstr "Северная Дакота" msgstr "Скопье"
#: wp-admin/includes/continents-cities.php:192 #: wp-admin/includes/continents-cities.php:479
msgid "Center" msgid "Simferopol"
msgstr "Центр" msgstr "Симферополь"
#: wp-admin/includes/continents-cities.php:193 #: wp-admin/includes/continents-cities.php:478
msgid "New Salem" msgid "Saratov"
msgstr "Нью-Салем" msgstr "Саратов"
#: wp-admin/includes/continents-cities.php:195 #: wp-admin/includes/continents-cities.php:477
msgid "Panama" msgid "Sarajevo"
msgstr "Панама" msgstr "Сараево"
#: wp-admin/includes/continents-cities.php:196 #: wp-admin/includes/continents-cities.php:476
msgid "Pangnirtung" msgid "San Marino"
msgstr "Пангниртунг" msgstr "Сан-Марино"
#: wp-admin/includes/continents-cities.php:197 #: wp-admin/includes/continents-cities.php:475
msgid "Paramaribo" msgid "Samara"
msgstr "Парамарибо" msgstr "Самара"
#: wp-admin/includes/continents-cities.php:198 #: wp-admin/includes/continents-cities.php:474
msgid "Phoenix" msgid "Rome"
msgstr "Феникс" msgstr "Рим"
#: wp-admin/includes/continents-cities.php:200 #: wp-admin/includes/continents-cities.php:473
msgid "Port-au-Prince" msgid "Riga"
msgstr "Порт-о-Пренс" msgstr "Рига"
#: wp-admin/includes/continents-cities.php:199 #: wp-admin/includes/continents-cities.php:472
msgid "Port of Spain" msgid "Prague"
msgstr "Порт-оф-Спейн" msgstr "Прага"
#: wp-admin/includes/continents-cities.php:201 #: wp-admin/includes/continents-cities.php:471
msgid "Porto Acre" msgid "Podgorica"
msgstr "Порту-Акри" msgstr "Подгорица"
#: wp-admin/includes/continents-cities.php:202 #: wp-admin/includes/continents-cities.php:470
msgid "Porto Velho" msgid "Paris"
msgstr "Порту-Велью" msgstr "Париж"
#: wp-admin/includes/continents-cities.php:203 #: wp-admin/includes/continents-cities.php:469
msgid "Puerto Rico" msgid "Oslo"
msgstr "Пуэрто-Рико" msgstr "Осло"
#: wp-admin/includes/continents-cities.php:205 #: wp-admin/includes/continents-cities.php:467
msgid "Rainy River" msgid "Moscow"
msgstr "Рейни-Ривер" msgstr "Москва"
#: wp-admin/includes/continents-cities.php:206 #: wp-admin/includes/continents-cities.php:466
msgid "Rankin Inlet" msgid "Monaco"
msgstr "Ранкин-Инлет" msgstr "Монако"
#: wp-admin/includes/continents-cities.php:207 #: wp-admin/includes/continents-cities.php:465
msgid "Recife" msgid "Minsk"
msgstr "Ресифи" msgstr "Минск"
#: wp-admin/includes/continents-cities.php:208 #: wp-admin/includes/continents-cities.php:464
msgid "Regina" msgid "Mariehamn"
msgstr "Риджайна" msgstr "Мариехамн"
#: wp-admin/includes/continents-cities.php:209 #: wp-admin/includes/continents-cities.php:463
msgid "Resolute" msgid "Malta"
msgstr "Резольют" msgstr "Мальта"
#: wp-admin/includes/continents-cities.php:210 #: wp-admin/includes/continents-cities.php:462
msgid "Rio Branco" msgid "Madrid"
msgstr "Рио-Бранко" msgstr "Мадрид"
#: wp-admin/includes/continents-cities.php:211 #: wp-admin/includes/continents-cities.php:461
msgid "Rosario" msgid "Luxembourg"
msgstr "Росарио" msgstr "Люксембург"
#: wp-admin/includes/continents-cities.php:214 #: wp-admin/includes/continents-cities.php:460
msgid "Santiago" msgid "London"
msgstr "Сантьяго" msgstr "Лондон"
#: wp-admin/includes/continents-cities.php:215 #: wp-admin/includes/continents-cities.php:459
msgid "Santo Domingo" msgid "Ljubljana"
msgstr "Санто Доминго" msgstr "Любляна"
#: wp-admin/includes/continents-cities.php:216 #: wp-admin/includes/continents-cities.php:458
msgid "Sao Paulo" msgid "Lisbon"
msgstr "Сан-Паулу" msgstr "Лиссабон"
#: wp-admin/includes/continents-cities.php:217 #: wp-admin/includes/continents-cities.php:457
msgid "Scoresbysund" msgid "Kirov"
msgstr "Скорсби" msgstr "Киров"
#: wp-admin/includes/continents-cities.php:218 #: wp-admin/includes/continents-cities.php:456
msgid "Shiprock" msgid "Kiev"
msgstr "Шипрок" msgstr "Киев"
#: wp-admin/includes/continents-cities.php:220 #: wp-admin/includes/continents-cities.php:455
msgid "St Barthelemy" msgid "Kaliningrad"
msgstr "Сент-Бартелеми" msgstr "Калининград"
#: wp-admin/includes/continents-cities.php:221 #: wp-admin/includes/continents-cities.php:454
msgid "St Johns" msgid "Jersey"
msgstr "Сент-Джонс" msgstr "Джерси"
#: wp-admin/includes/continents-cities.php:222 #: wp-admin/includes/continents-cities.php:452
msgid "St Kitts" msgid "Isle of Man"
msgstr "Сент-Китс" msgstr "Остров Мэн"
#: wp-admin/includes/continents-cities.php:223 #: wp-admin/includes/continents-cities.php:451
msgid "St Lucia" msgid "Helsinki"
msgstr "Сент-Люсия" msgstr "Хельсинки"
#: wp-admin/includes/continents-cities.php:224 #: wp-admin/includes/continents-cities.php:450
msgid "St Thomas" msgid "Guernsey"
msgstr "Санкт-Томас" msgstr "Гернси"
#: wp-admin/includes/continents-cities.php:225 #: wp-admin/includes/continents-cities.php:449
msgid "St Vincent" msgid "Gibraltar"
msgstr "Сент-Винсент" msgstr "Гибралтар"
#: wp-admin/includes/continents-cities.php:226 #: wp-admin/includes/continents-cities.php:448
msgid "Swift Current" msgid "Dublin"
msgstr "Свифт-Каррент" msgstr "Дублин"
#: wp-admin/includes/continents-cities.php:227 #: wp-admin/includes/continents-cities.php:447
msgid "Tegucigalpa" msgid "Copenhagen"
msgstr "Тегусигальпа" msgstr "Копенгаген"
#: wp-admin/includes/continents-cities.php:228 #: wp-admin/includes/continents-cities.php:446
msgid "Thule" msgid "Chisinau"
msgstr "Тула" msgstr "Кишинев"
#: wp-admin/includes/continents-cities.php:445
msgid "Busingen"
msgstr "Бюзинген"
#: wp-admin/includes/continents-cities.php:229 #: wp-admin/includes/continents-cities.php:444
msgid "Thunder Bay" msgid "Budapest"
msgstr "Тандер-Бей" msgstr "Будапешт"
#: wp-admin/includes/continents-cities.php:230 #: wp-admin/includes/continents-cities.php:443
msgid "Tijuana" msgid "Bucharest"
msgstr "Тихуана" msgstr "Бухарест"
#: wp-admin/includes/continents-cities.php:231 #: wp-admin/includes/continents-cities.php:442
msgid "Toronto" msgid "Brussels"
msgstr "Торонто" msgstr "Брюссель"
#: wp-admin/includes/continents-cities.php:232 #: wp-admin/includes/continents-cities.php:441
msgid "Tortola" msgid "Bratislava"
msgstr "Тортола" msgstr "Братислава"
#: wp-admin/includes/continents-cities.php:233 #: wp-admin/includes/continents-cities.php:440
msgid "Vancouver" msgid "Berlin"
msgstr "Ванкувер" msgstr "Берлин"
#: wp-admin/includes/continents-cities.php:234 #: wp-admin/includes/continents-cities.php:439
msgid "Virgin" msgid "Belgrade"
msgstr "Вирджин" msgstr "Белград"
#: wp-admin/includes/continents-cities.php:235 #: wp-admin/includes/continents-cities.php:438
msgid "Whitehorse" msgid "Belfast"
msgstr "Уайтхорс" msgstr "Белфаст"
#: wp-admin/includes/continents-cities.php:236 #: wp-admin/includes/continents-cities.php:437
msgid "Winnipeg" msgid "Athens"
msgstr "Виннипег" msgstr "Афины"
#: wp-admin/includes/continents-cities.php:237 #: wp-admin/includes/continents-cities.php:436
msgid "Yakutat" msgid "Astrakhan"
msgstr "Якутат" msgstr "Астрахань"
#: wp-admin/includes/continents-cities.php:238 #: wp-admin/includes/continents-cities.php:435
msgid "Yellowknife" msgid "Andorra"
msgstr "Йеллоунайф" msgstr "Андорра"
#: wp-admin/includes/continents-cities.php:240 #: wp-admin/includes/continents-cities.php:434
msgid "Antarctica" msgid "Amsterdam"
msgstr "Антарктика" msgstr "Амстердам"
#: wp-admin/includes/continents-cities.php:241 #: wp-admin/includes/continents-cities.php:433
msgid "Casey" msgid "Europe"
msgstr "Кейси" msgstr "Европа"
#: wp-admin/includes/continents-cities.php:242 #: wp-admin/includes/continents-cities.php:431
msgid "Davis" msgid "Zulu"
msgstr "Дэвис" msgstr "Зулу"
#: wp-admin/includes/continents-cities.php:243 #: wp-admin/includes/continents-cities.php:430
msgid "DumontDUrville" msgid "Universal"
msgstr "Дюмон-Дюрвиль" msgstr "Универсальное координированное время"
#: wp-admin/includes/continents-cities.php:245 #: wp-admin/includes/continents-cities.php:429
msgid "Mawson" msgid "UTC"
msgstr "Моусон" msgstr "UTC"
#: wp-admin/includes/continents-cities.php:246 #: wp-admin/includes/continents-cities.php:428
msgid "McMurdo" msgid "UCT"
msgstr "Мак-Мердо" msgstr "UCT"
#: wp-admin/includes/continents-cities.php:247 #: wp-admin/includes/continents-cities.php:427
msgid "Palmer" msgid "Greenwich"
msgstr "Палмер" msgstr "Гринвич"
#: wp-admin/includes/continents-cities.php:248 #: wp-admin/includes/continents-cities.php:426
msgid "Rothera" msgid "GMT0"
msgstr "Ротера" msgstr "GMT0"
#: wp-admin/includes/continents-cities.php:249 #: wp-admin/includes/continents-cities.php:425
msgid "South Pole" msgid "GMT-9"
msgstr "Южный полюс" msgstr "GMT-9"
#: wp-admin/includes/continents-cities.php:250 #: wp-admin/includes/continents-cities.php:424
msgid "Syowa" msgid "GMT-8"
msgstr "Сиова" msgstr "GMT-8"
#: wp-admin/includes/continents-cities.php:252 #: wp-admin/includes/continents-cities.php:423
msgid "Vostok" msgid "GMT-7"
msgstr "Восток" msgstr "GMT-7"
#: wp-admin/includes/continents-cities.php:254 #: wp-admin/includes/continents-cities.php:422
msgid "Arctic" msgid "GMT-6"
msgstr "Арктика" msgstr "GMT-6"
#: wp-admin/includes/continents-cities.php:255 #: wp-admin/includes/continents-cities.php:421
msgid "Longyearbyen" msgid "GMT-5"
msgstr "Лонгйир" msgstr "GMT-5"
#: wp-admin/includes/continents-cities.php:257 #: wp-admin/includes/continents-cities.php:420
msgid "Asia" msgid "GMT-4"
msgstr "Азия" msgstr "GMT-4"
#: wp-admin/includes/continents-cities.php:258 #: wp-admin/includes/continents-cities.php:419
msgid "Aden" msgid "GMT-3"
msgstr "Аден" msgstr "GMT-3"
#: wp-admin/includes/continents-cities.php:259 #: wp-admin/includes/continents-cities.php:418
msgid "Almaty" msgid "GMT-2"
msgstr "Алматы" msgstr "GMT-2"
#: wp-admin/includes/continents-cities.php:260 #: wp-admin/includes/continents-cities.php:417
msgid "Amman" msgid "GMT-14"
msgstr "Амман" msgstr "GMT-14"
#: wp-admin/includes/continents-cities.php:261 #: wp-admin/includes/continents-cities.php:416
msgid "Anadyr" msgid "GMT-13"
msgstr "Анадырь" msgstr "GMT-13"
#: wp-admin/includes/continents-cities.php:262 #: wp-admin/includes/continents-cities.php:415
msgid "Aqtau" msgid "GMT-12"
msgstr "Актау" msgstr "GMT-12"
#: wp-admin/includes/continents-cities.php:263 #: wp-admin/includes/continents-cities.php:414
msgid "Aqtobe" msgid "GMT-11"
msgstr "Актобе" msgstr "GMT-11"
#: wp-admin/includes/continents-cities.php:264 #: wp-admin/includes/continents-cities.php:413
msgid "Ashgabat" msgid "GMT-10"
msgstr "Ашхабат" msgstr "GMT-10"
#: wp-admin/includes/continents-cities.php:265 #: wp-admin/includes/continents-cities.php:412
msgid "Ashkhabad" msgid "GMT-1"
msgstr "Ашхабат" msgstr "GMT-1"
#: wp-admin/includes/continents-cities.php:267 #: wp-admin/includes/continents-cities.php:411
msgid "Baghdad" msgid "GMT-0"
msgstr "Багдад" msgstr "GMT-0"
#: wp-admin/includes/continents-cities.php:268 #: wp-admin/includes/continents-cities.php:410
msgid "Bahrain" msgid "GMT+9"
msgstr "Бахрейн" msgstr "GMT+9"
#: wp-admin/includes/continents-cities.php:269 #: wp-admin/includes/continents-cities.php:409
msgid "Baku" msgid "GMT+8"
msgstr "Баку" msgstr "GMT+8"
#: wp-admin/includes/continents-cities.php:270 #: wp-admin/includes/continents-cities.php:408
msgid "Bangkok" msgid "GMT+7"
msgstr "Бангкок" msgstr "GMT+7"
#: wp-admin/includes/continents-cities.php:272 #: wp-admin/includes/continents-cities.php:407
msgid "Beirut" msgid "GMT+6"
msgstr "Бейрут" msgstr "GMT+6"
#: wp-admin/includes/continents-cities.php:273 #: wp-admin/includes/continents-cities.php:406
msgid "Bishkek" msgid "GMT+5"
msgstr "Бишкек" msgstr "GMT+5"
#: wp-admin/includes/continents-cities.php:274 #: wp-admin/includes/continents-cities.php:405
msgid "Brunei" msgid "GMT+4"
msgstr "Бруней" msgstr "GMT+4"
#: wp-admin/includes/continents-cities.php:275 #: wp-admin/includes/continents-cities.php:404
msgid "Calcutta" msgid "GMT+3"
msgstr "Калькутта" msgstr "GMT+3"
#: wp-admin/includes/continents-cities.php:277 #: wp-admin/includes/continents-cities.php:403
msgid "Choibalsan" msgid "GMT+2"
msgstr "Чойбалсан" msgstr "GMT+2"
#: wp-admin/includes/continents-cities.php:278 #: wp-admin/includes/continents-cities.php:402
msgid "Chongqing" msgid "GMT+12"
msgstr "Чунцин" msgstr "GMT+12"
#: wp-admin/includes/continents-cities.php:401
msgid "GMT+11"
msgstr "GMT+11"
#: wp-admin/includes/continents-cities.php:279 #: wp-admin/includes/continents-cities.php:400
msgid "Chungking" msgid "GMT+10"
msgstr "Чунцин" msgstr "GMT+10"
#: wp-admin/includes/continents-cities.php:280 #: wp-admin/includes/continents-cities.php:399
msgid "Colombo" msgid "GMT+1"
msgstr "Коломбо" msgstr "GMT+1"
#: wp-admin/includes/continents-cities.php:281 #: wp-admin/includes/continents-cities.php:398
msgid "Dacca" msgid "GMT+0"
msgstr "Дакка" msgstr "GMT+0"
#: wp-admin/includes/continents-cities.php:282 #: wp-admin/includes/continents-cities.php:397
msgid "Damascus" msgid "GMT"
msgstr "Дамаск" msgstr "GMT"
#: wp-admin/includes/continents-cities.php:283 #: wp-admin/includes/continents-cities.php:396
msgid "Dhaka" msgid "Etc"
msgstr "Дакка" msgstr "Другое"
#: wp-admin/includes/continents-cities.php:284 #: wp-admin/includes/continents-cities.php:394
msgid "Dili" msgid "Yancowinna"
msgstr "Дили" msgstr "Янковинна"
#: wp-admin/includes/continents-cities.php:285 #: wp-admin/includes/continents-cities.php:393
msgid "Dubai" msgid "West"
msgstr "Дубай" msgstr "Запад"
#: wp-admin/includes/continents-cities.php:286 #: wp-admin/includes/continents-cities.php:392
msgid "Dushanbe" msgid "Victoria"
msgstr "Душанбе" msgstr "Виктория"
#: wp-admin/includes/continents-cities.php:288 #: wp-admin/includes/continents-cities.php:391
msgid "Gaza" msgid "Tasmania"
msgstr "Газа" msgstr "Тасмания"
#: wp-admin/includes/continents-cities.php:289 #: wp-admin/includes/continents-cities.php:390
msgid "Harbin" msgid "Sydney"
msgstr "Харбин" msgstr "Сидней"
#: wp-admin/includes/continents-cities.php:291 #: wp-admin/includes/continents-cities.php:389
msgid "Ho Chi Minh" msgid "South"
msgstr "Хошимин" msgstr "Юг"
#: wp-admin/includes/continents-cities.php:292 #: wp-admin/includes/continents-cities.php:388
msgid "Hong Kong" msgid "Queensland"
msgstr "Гонг Конг" msgstr "Квинсленд"
#: wp-admin/includes/continents-cities.php:293 #: wp-admin/includes/continents-cities.php:387
msgid "Hovd" msgid "Perth"
msgstr "Ховд" msgstr "Перт"
#: wp-admin/includes/continents-cities.php:294 #: wp-admin/includes/continents-cities.php:386
msgid "Irkutsk" msgid "North"
msgstr "Иркутск" msgstr "Север"
#: wp-admin/includes/continents-cities.php:295 #: wp-admin/includes/continents-cities.php:385
#: wp-admin/includes/continents-cities.php:453 msgid "NSW"
msgid "Istanbul" msgstr "NSW"
msgstr "Стамбул"
#: wp-admin/includes/continents-cities.php:296 #: wp-admin/includes/continents-cities.php:384
msgid "Jakarta" msgid "Melbourne"
msgstr "Джакарта" msgstr "Мельбурн"
#: wp-admin/includes/continents-cities.php:297 #: wp-admin/includes/continents-cities.php:383
msgid "Jayapura" msgid "Lord Howe"
msgstr "Джаяпура" msgstr "Лорд-Хау"
#: wp-admin/includes/continents-cities.php:298 #: wp-admin/includes/continents-cities.php:382
msgid "Jerusalem" msgid "Lindeman"
msgstr "Иерусалим" msgstr "Линдеман"
#: wp-admin/includes/continents-cities.php:299 #: wp-admin/includes/continents-cities.php:381
msgid "Kabul" msgid "LHI"
msgstr "Кабул" msgstr "LHI"
#: wp-admin/includes/continents-cities.php:300 #: wp-admin/includes/continents-cities.php:380
msgid "Kamchatka" msgid "Hobart"
msgstr "Камчатка" msgstr "Хобарт"
#: wp-admin/includes/continents-cities.php:301 #: wp-admin/includes/continents-cities.php:379
msgid "Karachi" msgid "Eucla"
msgstr "Карачи" msgstr "Эукла"
#: wp-admin/includes/continents-cities.php:302 #: wp-admin/includes/continents-cities.php:378
msgid "Kashgar" msgid "Darwin"
msgstr "Кашгар" msgstr "Дарвин"
#: wp-admin/includes/continents-cities.php:304 #: wp-admin/includes/continents-cities.php:377
msgid "Katmandu" msgid "Currie"
msgstr "Катманду" msgstr "Карри"
#: wp-admin/includes/continents-cities.php:306 #: wp-admin/includes/continents-cities.php:376
msgid "Kolkata" msgid "Canberra"
msgstr "Калькутта" msgstr "Канберра"
#: wp-admin/includes/continents-cities.php:307 #: wp-admin/includes/continents-cities.php:375
msgid "Krasnoyarsk" msgid "Broken Hill"
msgstr "Красноярск" msgstr "Броукен-Хил"
#: wp-admin/includes/continents-cities.php:308 #: wp-admin/includes/continents-cities.php:374
msgid "Kuala Lumpur" msgid "Brisbane"
msgstr "Куала-Лумпур" msgstr "Брисбен"
#: wp-admin/includes/continents-cities.php:309 #: wp-admin/includes/continents-cities.php:373
msgid "Kuching" msgid "Adelaide"
msgstr "Кучинг" msgstr "Аделаида"
#: wp-admin/includes/continents-cities.php:310 #: wp-admin/includes/continents-cities.php:372
msgid "Kuwait" msgid "ACT"
msgstr "Кувейт" msgstr "АСТ"
#: wp-admin/includes/continents-cities.php:311 #: wp-admin/includes/continents-cities.php:371
msgid "Macao" msgid "Australia"
msgstr "Макао" msgstr "Австралия"
#: wp-admin/includes/continents-cities.php:312 #: wp-admin/includes/continents-cities.php:369
msgid "Macau" msgid "Stanley"
msgstr "Макао" msgstr "Стэнли"
#: wp-admin/includes/continents-cities.php:313 #: wp-admin/includes/continents-cities.php:368
msgid "Magadan" msgid "St Helena"
msgstr "Магадан" msgstr "Св. Елены"
#: wp-admin/includes/continents-cities.php:314 #: wp-admin/includes/continents-cities.php:367
msgid "Makassar" msgid "South Georgia"
msgstr "Макассар" msgstr "Южная Георгия"
#: wp-admin/includes/continents-cities.php:315 #: wp-admin/includes/continents-cities.php:366
msgid "Manila" msgid "Reykjavik"
msgstr "Манила" msgstr "Рейкьявик"
#: wp-admin/includes/continents-cities.php:316 #: wp-admin/includes/continents-cities.php:365
msgid "Muscat" msgid "Madeira"
msgstr "Маскат" msgstr "Мадейра"
#: wp-admin/includes/continents-cities.php:317 #: wp-admin/includes/continents-cities.php:364
#: wp-admin/includes/continents-cities.php:468 msgid "Jan Mayen"
msgid "Nicosia" msgstr "Ян-Марен"
msgstr "Никосия"
#: wp-admin/includes/continents-cities.php:319 #: wp-admin/includes/continents-cities.php:363
msgid "Novosibirsk" msgid "Faroe"
msgstr "Новосибирск" msgstr "Фарер"
#: wp-admin/includes/continents-cities.php:320 #: wp-admin/includes/continents-cities.php:362
msgid "Omsk" msgid "Faeroe"
msgstr "Омск" msgstr "Фарерские острова"
#: wp-admin/includes/continents-cities.php:321 #: wp-admin/includes/continents-cities.php:361
msgid "Oral" msgid "Cape Verde"
msgstr "Орал" msgstr "Кабо-Верде"
#: wp-admin/includes/continents-cities.php:322 #: wp-admin/includes/continents-cities.php:360
msgid "Phnom Penh" msgid "Canary"
msgstr "Пномпень" msgstr "Канары"
#: wp-admin/includes/continents-cities.php:323 #: wp-admin/includes/continents-cities.php:359
msgid "Pontianak" msgid "Bermuda"
msgstr "Понтианаке" msgstr "Бермудские острова"
#: wp-admin/includes/continents-cities.php:324 #: wp-admin/includes/continents-cities.php:358
msgid "Pyongyang" msgid "Azores"
msgstr "Пхеньян" msgstr "Азорские острова"
#: wp-admin/includes/continents-cities.php:325 #: wp-admin/includes/continents-cities.php:357
msgid "Qatar" msgid "Atlantic"
msgstr "Катар" msgstr "Атлантика"
#: wp-admin/includes/continents-cities.php:355
msgid "Yerevan"
msgstr "Ереван"
#: wp-admin/includes/continents-cities.php:326 #: wp-admin/includes/continents-cities.php:354
msgid "Qyzylorda" msgid "Yekaterinburg"
msgstr "Кызылорда" msgstr "Екатеринбург"
#: wp-admin/includes/continents-cities.php:327 #: wp-admin/includes/continents-cities.php:353
msgid "Rangoon" msgid "Yangon"
msgstr "Янгон" msgstr "Янгон"
#: wp-admin/includes/continents-cities.php:328 #: wp-admin/includes/continents-cities.php:352
msgid "Riyadh" msgid "Yakutsk"
msgstr "Эр-Рияд" msgstr "Якутск"
#: wp-admin/includes/continents-cities.php:329 #: wp-admin/includes/continents-cities.php:351
msgid "Saigon" msgid "Vladivostok"
msgstr "Сайгон" msgstr "Владивосток"
#: wp-admin/includes/continents-cities.php:330 #: wp-admin/includes/continents-cities.php:350
msgid "Sakhalin" msgid "Vientiane"
msgstr "Сахалин" msgstr "Вьентьян"
#: wp-admin/includes/continents-cities.php:331 #: wp-admin/includes/continents-cities.php:349
msgid "Samarkand" msgid "Ust-Nera"
msgstr "Самарканд" msgstr "Усть-Нера"
#: wp-admin/includes/continents-cities.php:332 #: wp-admin/includes/continents-cities.php:348
msgid "Seoul" msgid "Urumqi"
msgstr "Сеул" msgstr "Урумчи"
#: wp-admin/includes/continents-cities.php:333 #: wp-admin/includes/continents-cities.php:347
msgid "Shanghai" msgid "Ulan Bator"
msgstr "Шанхай" msgstr "Улан-Батор"
#: wp-admin/includes/continents-cities.php:334 #: wp-admin/includes/continents-cities.php:346
msgid "Singapore" msgid "Ulaanbaatar"
msgstr "Сингапур" msgstr "Улан-Батор"
#: wp-admin/includes/continents-cities.php:336 #: wp-admin/includes/continents-cities.php:345
msgid "Taipei" msgid "Ujung Pandang"
msgstr "Тайбэй" msgstr "Уджунг Панданга"
#: wp-admin/includes/continents-cities.php:337 #: wp-admin/includes/continents-cities.php:344
msgid "Tashkent" msgid "Tomsk"
msgstr "Ташкент" msgstr "Томск"
#: wp-admin/includes/continents-cities.php:338 #: wp-admin/includes/continents-cities.php:343
msgid "Tbilisi" msgid "Tokyo"
msgstr "Тбилиси" msgstr "Токио"
#: wp-admin/includes/continents-cities.php:339 #: wp-admin/includes/continents-cities.php:342
msgid "Tehran" msgid "Thimphu"
msgstr "Тегеран" msgstr "Тхимпху"
#: wp-admin/includes/continents-cities.php:341
msgid "Thimbu"
msgstr "Тхимпху"
#: wp-admin/includes/continents-cities.php:340 #: wp-admin/includes/continents-cities.php:340
msgid "Tel Aviv" msgid "Tel Aviv"
msgstr "Тель-Авив" msgstr "Тель-Авив"
#: wp-admin/includes/continents-cities.php:341 #: wp-admin/includes/continents-cities.php:339
msgid "Thimbu" msgid "Tehran"
msgstr "Тхимпху" msgstr "Тегеран"
#: wp-admin/includes/continents-cities.php:342 #: wp-admin/includes/continents-cities.php:338
msgid "Thimphu" msgid "Tbilisi"
msgstr "Тхимпху" msgstr "Тбилиси"
#: wp-admin/includes/continents-cities.php:343 #: wp-admin/includes/continents-cities.php:337
msgid "Tokyo" msgid "Tashkent"
msgstr "Токио" msgstr "Ташкент"
#: wp-admin/includes/continents-cities.php:345 #: wp-admin/includes/continents-cities.php:336
msgid "Ujung Pandang" msgid "Taipei"
msgstr "Уджунг Панданга" msgstr "Тайбэй"
#: wp-admin/includes/continents-cities.php:346 #: wp-admin/includes/continents-cities.php:335
msgid "Ulaanbaatar" msgid "Srednekolymsk"
msgstr "Улан-Батор" msgstr "Среднеколымск"
#: wp-admin/includes/continents-cities.php:347 #: wp-admin/includes/continents-cities.php:334
msgid "Ulan Bator" msgid "Singapore"
msgstr "Улан-Батор" msgstr "Сингапур"
#: wp-admin/includes/continents-cities.php:348 #: wp-admin/includes/continents-cities.php:333
msgid "Urumqi" msgid "Shanghai"
msgstr "Урумчи" msgstr "Шанхай"
#: wp-admin/includes/continents-cities.php:350 #: wp-admin/includes/continents-cities.php:332
msgid "Vientiane" msgid "Seoul"
msgstr "Вьентьян" msgstr "Сеул"
#: wp-admin/includes/continents-cities.php:351 #: wp-admin/includes/continents-cities.php:331
msgid "Vladivostok" msgid "Samarkand"
msgstr "Владивосток" msgstr "Самарканд"
#: wp-admin/includes/continents-cities.php:352 #: wp-admin/includes/continents-cities.php:330
msgid "Yakutsk" msgid "Sakhalin"
msgstr "Якутск" msgstr "Сахалин"
#: wp-admin/includes/continents-cities.php:354 #: wp-admin/includes/continents-cities.php:329
msgid "Yekaterinburg" msgid "Saigon"
msgstr "Екатеринбург" msgstr "Сайгон"
#: wp-admin/includes/continents-cities.php:355 #: wp-admin/includes/continents-cities.php:328
msgid "Yerevan" msgid "Riyadh"
msgstr "Ереван" msgstr "Эр-Рияд"
#: wp-admin/includes/continents-cities.php:357 #: wp-admin/includes/continents-cities.php:327
msgid "Atlantic" msgid "Rangoon"
msgstr "Атлантика" msgstr "Янгон"
#: wp-admin/includes/continents-cities.php:358 #: wp-admin/includes/continents-cities.php:326
msgid "Azores" msgid "Qyzylorda"
msgstr "Азорские острова" msgstr "Кызылорда"
#: wp-admin/includes/continents-cities.php:359 #: wp-admin/includes/continents-cities.php:325
msgid "Bermuda" msgid "Qatar"
msgstr "Бермудские острова" msgstr "Катар"
#: wp-admin/includes/continents-cities.php:360 #: wp-admin/includes/continents-cities.php:324
msgid "Canary" msgid "Pyongyang"
msgstr "Канары" msgstr "Пхеньян"
#: wp-admin/includes/continents-cities.php:361 #: wp-admin/includes/continents-cities.php:323
msgid "Cape Verde" msgid "Pontianak"
msgstr "Кабо-Верде" msgstr "Понтианаке"
#: wp-admin/includes/continents-cities.php:362 #: wp-admin/includes/continents-cities.php:322
msgid "Faeroe" msgid "Phnom Penh"
msgstr "Фарерские острова" msgstr "Пномпень"
#: wp-admin/includes/continents-cities.php:363 #: wp-admin/includes/continents-cities.php:321
msgid "Faroe" msgid "Oral"
msgstr "Фарер" msgstr "Орал"
#: wp-admin/includes/continents-cities.php:364 #: wp-admin/includes/continents-cities.php:320
msgid "Jan Mayen" msgid "Omsk"
msgstr "Ян-Марен" msgstr "Омск"
#: wp-admin/includes/continents-cities.php:365 #: wp-admin/includes/continents-cities.php:319
msgid "Madeira" msgid "Novosibirsk"
msgstr "Мадейра" msgstr "Новосибирск"
#: wp-admin/includes/continents-cities.php:366 #: wp-admin/includes/continents-cities.php:318
msgid "Reykjavik" msgid "Novokuznetsk"
msgstr "Рейкьявик" msgstr "Новокузнецк"
#: wp-admin/includes/continents-cities.php:367 #: wp-admin/includes/continents-cities.php:317
msgid "South Georgia" #: wp-admin/includes/continents-cities.php:468
msgstr "Южная Георгия" msgid "Nicosia"
msgstr "Никосия"
#: wp-admin/includes/continents-cities.php:368 #: wp-admin/includes/continents-cities.php:316
msgid "St Helena" msgid "Muscat"
msgstr "Св. Елены" msgstr "Маскат"
#: wp-admin/includes/continents-cities.php:369 #: wp-admin/includes/continents-cities.php:315
msgid "Stanley" msgid "Manila"
msgstr "Стэнли" msgstr "Манила"
#: wp-admin/includes/continents-cities.php:371 #: wp-admin/includes/continents-cities.php:314
msgid "Australia" msgid "Makassar"
msgstr "Австралия" msgstr "Макассар"
#: wp-admin/includes/continents-cities.php:372 #: wp-admin/includes/continents-cities.php:313
msgid "ACT" msgid "Magadan"
msgstr "АСТ" msgstr "Магадан"
#: wp-admin/includes/continents-cities.php:373 #: wp-admin/includes/continents-cities.php:312
msgid "Adelaide" msgid "Macau"
msgstr "Аделаида" msgstr "Макао"
#: wp-admin/includes/continents-cities.php:311
msgid "Macao"
msgstr "Макао"
#: wp-admin/includes/continents-cities.php:374 #: wp-admin/includes/continents-cities.php:310
msgid "Brisbane" msgid "Kuwait"
msgstr "Брисбен" msgstr "Кувейт"
#: wp-admin/includes/continents-cities.php:375 #: wp-admin/includes/continents-cities.php:309
msgid "Broken Hill" msgid "Kuching"
msgstr "Броукен-Хил" msgstr "Кучинг"
#: wp-admin/includes/continents-cities.php:376 #: wp-admin/includes/continents-cities.php:308
msgid "Canberra" msgid "Kuala Lumpur"
msgstr "Канберра" msgstr "Куала-Лумпур"
#: wp-admin/includes/continents-cities.php:377 #: wp-admin/includes/continents-cities.php:307
msgid "Currie" msgid "Krasnoyarsk"
msgstr "Карри" msgstr "Красноярск"
#: wp-admin/includes/continents-cities.php:378 #: wp-admin/includes/continents-cities.php:306
msgid "Darwin" msgid "Kolkata"
msgstr "Дарвин" msgstr "Калькутта"
#: wp-admin/includes/continents-cities.php:379 #: wp-admin/includes/continents-cities.php:305
msgid "Eucla" msgid "Khandyga"
msgstr "Эукла" msgstr "Хандыга"
#: wp-admin/includes/continents-cities.php:380 #: wp-admin/includes/continents-cities.php:304
msgid "Hobart" msgid "Katmandu"
msgstr "Хобарт" msgstr "Катманду"
#: wp-admin/includes/continents-cities.php:381 #: wp-admin/includes/continents-cities.php:303
msgid "LHI" msgid "Kathmandu"
msgstr "LHI" msgstr "Катманду"
#: wp-admin/includes/continents-cities.php:382 #: wp-admin/includes/continents-cities.php:302
msgid "Lindeman" msgid "Kashgar"
msgstr "Линдеман" msgstr "Кашгар"
#: wp-admin/includes/continents-cities.php:383 #: wp-admin/includes/continents-cities.php:301
msgid "Lord Howe" msgid "Karachi"
msgstr "Лорд-Хау" msgstr "Карачи"
#: wp-admin/includes/continents-cities.php:384 #: wp-admin/includes/continents-cities.php:300
msgid "Melbourne" msgid "Kamchatka"
msgstr "Мельбурн" msgstr "Камчатка"
#: wp-admin/includes/continents-cities.php:386 #: wp-admin/includes/continents-cities.php:299
msgid "North" msgid "Kabul"
msgstr "Север" msgstr "Кабул"
#: wp-admin/includes/continents-cities.php:385 #: wp-admin/includes/continents-cities.php:298
msgid "NSW" msgid "Jerusalem"
msgstr "NSW" msgstr "Иерусалим"
#: wp-admin/includes/continents-cities.php:387 #: wp-admin/includes/continents-cities.php:297
msgid "Perth" msgid "Jayapura"
msgstr "Перт" msgstr "Джаяпура"
#: wp-admin/includes/continents-cities.php:388 #: wp-admin/includes/continents-cities.php:296
msgid "Queensland" msgid "Jakarta"
msgstr "Квинсленд" msgstr "Джакарта"
#: wp-admin/includes/continents-cities.php:389 #: wp-admin/includes/continents-cities.php:295
msgid "South" #: wp-admin/includes/continents-cities.php:453
msgstr "Юг" msgid "Istanbul"
msgstr "Стамбул"
#: wp-admin/includes/continents-cities.php:390 #: wp-admin/includes/continents-cities.php:294
msgid "Sydney" msgid "Irkutsk"
msgstr "Сидней" msgstr "Иркутск"
#: wp-admin/includes/continents-cities.php:391 #: wp-admin/includes/continents-cities.php:293
msgid "Tasmania" msgid "Hovd"
msgstr "Тасмания" msgstr "Ховд"
#: wp-admin/includes/continents-cities.php:392 #: wp-admin/includes/continents-cities.php:292
msgid "Victoria" msgid "Hong Kong"
msgstr "Виктория" msgstr "Гонг Конг"
#: wp-admin/includes/continents-cities.php:393 #: wp-admin/includes/continents-cities.php:291
msgid "West" msgid "Ho Chi Minh"
msgstr "Запад" msgstr "Хошимин"
#: wp-admin/includes/continents-cities.php:394 #: wp-admin/includes/continents-cities.php:290
msgid "Yancowinna" msgid "Hebron"
msgstr "Янковинна" msgstr "Хеврон"
#: wp-admin/includes/continents-cities.php:396 #: wp-admin/includes/continents-cities.php:289
msgid "Etc" msgid "Harbin"
msgstr "Другое" msgstr "Харбин"
#: wp-admin/includes/continents-cities.php:397 #: wp-admin/includes/continents-cities.php:288
msgid "GMT" msgid "Gaza"
msgstr "GMT" msgstr "Газа"
#: wp-admin/includes/continents-cities.php:398 #: wp-admin/includes/continents-cities.php:287
msgid "GMT+0" msgid "Famagusta"
msgstr "GMT+0" msgstr "Фамагуста"
#: wp-admin/includes/continents-cities.php:399 #: wp-admin/includes/continents-cities.php:286
msgid "GMT+1" msgid "Dushanbe"
msgstr "GMT+1" msgstr "Душанбе"
#: wp-admin/includes/continents-cities.php:400 #: wp-admin/includes/continents-cities.php:285
msgid "GMT+10" msgid "Dubai"
msgstr "GMT+10" msgstr "Дубай"
#: wp-admin/includes/continents-cities.php:401 #: wp-admin/includes/continents-cities.php:284
msgid "GMT+11" msgid "Dili"
msgstr "GMT+11" msgstr "Дили"
#: wp-admin/includes/continents-cities.php:402 #: wp-admin/includes/continents-cities.php:283
msgid "GMT+12" msgid "Dhaka"
msgstr "GMT+12" msgstr "Дакка"
#: wp-admin/includes/continents-cities.php:403 #: wp-admin/includes/continents-cities.php:282
msgid "GMT+2" msgid "Damascus"
msgstr "GMT+2" msgstr "Дамаск"
#: wp-admin/includes/continents-cities.php:404 #: wp-admin/includes/continents-cities.php:281
msgid "GMT+3" msgid "Dacca"
msgstr "GMT+3" msgstr "Дакка"
#: wp-admin/includes/continents-cities.php:405 #: wp-admin/includes/continents-cities.php:280
msgid "GMT+4" msgid "Colombo"
msgstr "GMT+4" msgstr "Коломбо"
#: wp-admin/includes/continents-cities.php:406 #: wp-admin/includes/continents-cities.php:279
msgid "GMT+5" msgid "Chungking"
msgstr "GMT+5" msgstr "Чунцин"
#: wp-admin/includes/continents-cities.php:407 #: wp-admin/includes/continents-cities.php:278
msgid "GMT+6" msgid "Chongqing"
msgstr "GMT+6" msgstr "Чунцин"
#: wp-admin/includes/continents-cities.php:408 #: wp-admin/includes/continents-cities.php:277
msgid "GMT+7" msgid "Choibalsan"
msgstr "GMT+7" msgstr "Чойбалсан"
#: wp-admin/includes/continents-cities.php:409 #: wp-admin/includes/continents-cities.php:276
msgid "GMT+8" msgid "Chita"
msgstr "GMT+8" msgstr "Чита"
#: wp-admin/includes/continents-cities.php:410 #: wp-admin/includes/continents-cities.php:275
msgid "GMT+9" msgid "Calcutta"
msgstr "GMT+9" msgstr "Калькутта"
#: wp-admin/includes/continents-cities.php:411 #: wp-admin/includes/continents-cities.php:274
msgid "GMT-0" msgid "Brunei"
msgstr "GMT-0" msgstr "Бруней"
#: wp-admin/includes/continents-cities.php:412 #: wp-admin/includes/continents-cities.php:273
msgid "GMT-1" msgid "Bishkek"
msgstr "GMT-1" msgstr "Бишкек"
#: wp-admin/includes/continents-cities.php:413 #: wp-admin/includes/continents-cities.php:272
msgid "GMT-10" msgid "Beirut"
msgstr "GMT-10" msgstr "Бейрут"
#: wp-admin/includes/continents-cities.php:414 #: wp-admin/includes/continents-cities.php:271
msgid "GMT-11" msgid "Barnaul"
msgstr "GMT-11" msgstr "Барнаул"
#: wp-admin/includes/continents-cities.php:415 #: wp-admin/includes/continents-cities.php:270
msgid "GMT-12" msgid "Bangkok"
msgstr "GMT-12" msgstr "Бангкок"
#: wp-admin/includes/continents-cities.php:416 #: wp-admin/includes/continents-cities.php:269
msgid "GMT-13" msgid "Baku"
msgstr "GMT-13" msgstr "Баку"
#: wp-admin/includes/continents-cities.php:268
msgid "Bahrain"
msgstr "Бахрейн"
#: wp-admin/includes/continents-cities.php:417 #: wp-admin/includes/continents-cities.php:267
msgid "GMT-14" msgid "Baghdad"
msgstr "GMT-14" msgstr "Багдад"
#: wp-admin/includes/continents-cities.php:418 #: wp-admin/includes/continents-cities.php:266
msgid "GMT-2" msgid "Atyrau"
msgstr "GMT-2" msgstr "Атырау"
#: wp-admin/includes/continents-cities.php:419 #: wp-admin/includes/continents-cities.php:265
msgid "GMT-3" msgid "Ashkhabad"
msgstr "GMT-3" msgstr "Ашхабат"
#: wp-admin/includes/continents-cities.php:420 #: wp-admin/includes/continents-cities.php:264
msgid "GMT-4" msgid "Ashgabat"
msgstr "GMT-4" msgstr "Ашхабат"
#: wp-admin/includes/continents-cities.php:421 #: wp-admin/includes/continents-cities.php:263
msgid "GMT-5" msgid "Aqtobe"
msgstr "GMT-5" msgstr "Актобе"
#: wp-admin/includes/continents-cities.php:422 #: wp-admin/includes/continents-cities.php:262
msgid "GMT-6" msgid "Aqtau"
msgstr "GMT-6" msgstr "Актау"
#: wp-admin/includes/continents-cities.php:423 #: wp-admin/includes/continents-cities.php:261
msgid "GMT-7" msgid "Anadyr"
msgstr "GMT-7" msgstr "Анадырь"
#: wp-admin/includes/continents-cities.php:424 #: wp-admin/includes/continents-cities.php:260
msgid "GMT-8" msgid "Amman"
msgstr "GMT-8" msgstr "Амман"
#: wp-admin/includes/continents-cities.php:425 #: wp-admin/includes/continents-cities.php:259
msgid "GMT-9" msgid "Almaty"
msgstr "GMT-9" msgstr "Алматы"
#: wp-admin/includes/continents-cities.php:426 #: wp-admin/includes/continents-cities.php:258
msgid "GMT0" msgid "Aden"
msgstr "GMT0" msgstr "Аден"
#: wp-admin/includes/continents-cities.php:427 #: wp-admin/includes/continents-cities.php:257
msgid "Greenwich" msgid "Asia"
msgstr "Гринвич" msgstr "Азия"
#: wp-admin/includes/continents-cities.php:428 #: wp-admin/includes/continents-cities.php:255
msgid "UCT" msgid "Longyearbyen"
msgstr "UCT" msgstr "Лонгйир"
#: wp-admin/includes/continents-cities.php:430 #: wp-admin/includes/continents-cities.php:254
msgid "Universal" msgid "Arctic"
msgstr "Универсальное координированное время" msgstr "Арктика"
#: wp-admin/includes/continents-cities.php:429 #: wp-admin/includes/continents-cities.php:252
msgid "UTC" msgid "Vostok"
msgstr "UTC" msgstr "Восток"
#: wp-admin/includes/continents-cities.php:431 #: wp-admin/includes/continents-cities.php:251
msgid "Zulu" msgid "Troll"
msgstr "Зулу" msgstr "Тролль"
#: wp-admin/includes/continents-cities.php:433 #: wp-admin/includes/continents-cities.php:250
msgid "Europe" msgid "Syowa"
msgstr "Европа" msgstr "Сиова"
#: wp-admin/includes/continents-cities.php:434 #: wp-admin/includes/continents-cities.php:249
msgid "Amsterdam" msgid "South Pole"
msgstr "Амстердам" msgstr "Южный полюс"
#: wp-admin/includes/continents-cities.php:435 #: wp-admin/includes/continents-cities.php:248
msgid "Andorra" msgid "Rothera"
msgstr "Андорра" msgstr "Ротера"
#: wp-admin/includes/continents-cities.php:437 #: wp-admin/includes/continents-cities.php:247
msgid "Athens" msgid "Palmer"
msgstr "Афины" msgstr "Палмер"
#: wp-admin/includes/continents-cities.php:438 #: wp-admin/includes/continents-cities.php:246
msgid "Belfast" msgid "McMurdo"
msgstr "Белфаст" msgstr "Мак-Мердо"
#: wp-admin/includes/continents-cities.php:439 #: wp-admin/includes/continents-cities.php:245
msgid "Belgrade" msgid "Mawson"
msgstr "Белград" msgstr "Моусон"
#: wp-admin/includes/continents-cities.php:440 #: wp-admin/includes/continents-cities.php:244
msgid "Berlin" msgid "Macquarie"
msgstr "Берлин" msgstr "Маккуори"
#: wp-admin/includes/continents-cities.php:441 #: wp-admin/includes/continents-cities.php:243
msgid "Bratislava" msgid "DumontDUrville"
msgstr "Братислава" msgstr "Дюмон-Дюрвиль"
#: wp-admin/includes/continents-cities.php:442 #: wp-admin/includes/continents-cities.php:242
msgid "Brussels" msgid "Davis"
msgstr "Брюссель" msgstr "Дэвис"
#: wp-admin/includes/continents-cities.php:443 #: wp-admin/includes/continents-cities.php:241
msgid "Bucharest" msgid "Casey"
msgstr "Бухарест" msgstr "Кейси"
#: wp-admin/includes/continents-cities.php:444 #: wp-admin/includes/continents-cities.php:240
msgid "Budapest" msgid "Antarctica"
msgstr "Будапешт" msgstr "Антарктика"
#: wp-admin/includes/continents-cities.php:446 #: wp-admin/includes/continents-cities.php:238
msgid "Chisinau" msgid "Yellowknife"
msgstr "Кишинев" msgstr "Йеллоунайф"
#: wp-admin/includes/continents-cities.php:447 #: wp-admin/includes/continents-cities.php:237
msgid "Copenhagen" msgid "Yakutat"
msgstr "Копенгаген" msgstr "Якутат"
#: wp-admin/includes/continents-cities.php:448 #: wp-admin/includes/continents-cities.php:236
msgid "Dublin" msgid "Winnipeg"
msgstr "Дублин" msgstr "Виннипег"
#: wp-admin/includes/continents-cities.php:449 #: wp-admin/includes/continents-cities.php:235
msgid "Gibraltar" msgid "Whitehorse"
msgstr "Гибралтар" msgstr "Уайтхорс"
#: wp-admin/includes/continents-cities.php:450 #: wp-admin/includes/continents-cities.php:234
msgid "Guernsey" msgid "Virgin"
msgstr "Гернси" msgstr "Вирджин"
#: wp-admin/includes/continents-cities.php:451 #: wp-admin/includes/continents-cities.php:233
msgid "Helsinki" msgid "Vancouver"
msgstr "Хельсинки" msgstr "Ванкувер"
#: wp-admin/includes/continents-cities.php:452 #: wp-admin/includes/continents-cities.php:232
msgid "Isle of Man" msgid "Tortola"
msgstr "Остров Мэн" msgstr "Тортола"
#: wp-admin/includes/continents-cities.php:454 #: wp-admin/includes/continents-cities.php:231
msgid "Jersey" msgid "Toronto"
msgstr "Джерси" msgstr "Торонто"
#: wp-admin/includes/continents-cities.php:455 #: wp-admin/includes/continents-cities.php:230
msgid "Kaliningrad" msgid "Tijuana"
msgstr "Калининград" msgstr "Тихуана"
#: wp-admin/includes/continents-cities.php:456 #: wp-admin/includes/continents-cities.php:229
msgid "Kiev" msgid "Thunder Bay"
msgstr "Киев" msgstr "Тандер-Бей"
#: wp-admin/includes/continents-cities.php:458 #: wp-admin/includes/continents-cities.php:228
msgid "Lisbon" msgid "Thule"
msgstr "Лиссабон" msgstr "Тула"
#: wp-admin/includes/continents-cities.php:459 #: wp-admin/includes/continents-cities.php:227
msgid "Ljubljana" msgid "Tegucigalpa"
msgstr "Любляна" msgstr "Тегусигальпа"
#: wp-admin/includes/continents-cities.php:460 #: wp-admin/includes/continents-cities.php:226
msgid "London" msgid "Swift Current"
msgstr "Лондон" msgstr "Свифт-Каррент"
#: wp-admin/includes/continents-cities.php:461 #: wp-admin/includes/continents-cities.php:225
msgid "Luxembourg" msgid "St Vincent"
msgstr "Люксембург" msgstr "Сент-Винсент"
#: wp-admin/includes/continents-cities.php:462 #: wp-admin/includes/continents-cities.php:224
msgid "Madrid" msgid "St Thomas"
msgstr "Мадрид" msgstr "Санкт-Томас"
#: wp-admin/includes/continents-cities.php:463 #: wp-admin/includes/continents-cities.php:223
msgid "Malta" msgid "St Lucia"
msgstr "Мальта" msgstr "Сент-Люсия"
#: wp-admin/includes/continents-cities.php:222
msgid "St Kitts"
msgstr "Сент-Китс"
#: wp-admin/includes/continents-cities.php:464 #: wp-admin/includes/continents-cities.php:221
msgid "Mariehamn" msgid "St Johns"
msgstr "Мариехамн" msgstr "Сент-Джонс"
#: wp-admin/includes/continents-cities.php:465 #: wp-admin/includes/continents-cities.php:220
msgid "Minsk" msgid "St Barthelemy"
msgstr "Минск" msgstr "Сент-Бартелеми"
#: wp-admin/includes/continents-cities.php:466 #: wp-admin/includes/continents-cities.php:219
msgid "Monaco" msgid "Sitka"
msgstr "Монако" msgstr "Ситка"
#: wp-admin/includes/continents-cities.php:467 #: wp-admin/includes/continents-cities.php:218
msgid "Moscow" msgid "Shiprock"
msgstr "Москва" msgstr "Шипрок"
#: wp-admin/includes/continents-cities.php:469 #: wp-admin/includes/continents-cities.php:217
msgid "Oslo" msgid "Scoresbysund"
msgstr "Осло" msgstr "Скорсби"
#: wp-admin/includes/continents-cities.php:470 #: wp-admin/includes/continents-cities.php:216
msgid "Paris" msgid "Sao Paulo"
msgstr "Париж" msgstr "Сан-Паулу"
#: wp-admin/includes/continents-cities.php:471 #: wp-admin/includes/continents-cities.php:215
msgid "Podgorica" msgid "Santo Domingo"
msgstr "Подгорица" msgstr "Санто Доминго"
#: wp-admin/includes/continents-cities.php:472 #: wp-admin/includes/continents-cities.php:214
msgid "Prague" msgid "Santiago"
msgstr "Прага" msgstr "Сантьяго"
#: wp-admin/includes/continents-cities.php:473 #: wp-admin/includes/continents-cities.php:213
msgid "Riga" msgid "Santarem"
msgstr "Рига" msgstr "Сантарен"
#: wp-admin/includes/continents-cities.php:474 #: wp-admin/includes/continents-cities.php:212
msgid "Rome" msgid "Santa Isabel"
msgstr "Рим" msgstr "Санта-Исабель"
#: wp-admin/includes/continents-cities.php:475 #: wp-admin/includes/continents-cities.php:211
msgid "Samara" msgid "Rosario"
msgstr "Самара" msgstr "Росарио"
#: wp-admin/includes/continents-cities.php:476 #: wp-admin/includes/continents-cities.php:210
msgid "San Marino" msgid "Rio Branco"
msgstr "Сан-Марино" msgstr "Рио-Бранко"
#: wp-admin/includes/continents-cities.php:477 #: wp-admin/includes/continents-cities.php:209
msgid "Sarajevo" msgid "Resolute"
msgstr "Сараево" msgstr "Резольют"
#: wp-admin/includes/continents-cities.php:479 #: wp-admin/includes/continents-cities.php:208
msgid "Simferopol" msgid "Regina"
msgstr "Симферополь" msgstr "Риджайна"
#: wp-admin/includes/continents-cities.php:480 #: wp-admin/includes/continents-cities.php:207
msgid "Skopje" msgid "Recife"
msgstr "Скопье" msgstr "Ресифи"
#: wp-admin/includes/continents-cities.php:481 #: wp-admin/includes/continents-cities.php:206
msgid "Sofia" msgid "Rankin Inlet"
msgstr "София" msgstr "Ранкин-Инлет"
#: wp-admin/includes/continents-cities.php:482 #: wp-admin/includes/continents-cities.php:205
msgid "Stockholm" msgid "Rainy River"
msgstr "Стокгольм" msgstr "Рейни-Ривер"
#: wp-admin/includes/continents-cities.php:483 #: wp-admin/includes/continents-cities.php:204
msgid "Tallinn" msgid "Punta Arenas"
msgstr "Таллин" msgstr "Пунта-Аренас"
#: wp-admin/includes/continents-cities.php:484 #: wp-admin/includes/continents-cities.php:203
msgid "Tirane" msgid "Puerto Rico"
msgstr "Тирана" msgstr "Пуэрто-Рико"
#: wp-admin/includes/continents-cities.php:485 #: wp-admin/includes/continents-cities.php:202
msgid "Tiraspol" msgid "Porto Velho"
msgstr "Тирасполь" msgstr "Порту-Велью"
#: wp-admin/includes/continents-cities.php:487 #: wp-admin/includes/continents-cities.php:201
msgid "Uzhgorod" msgid "Porto Acre"
msgstr "Ужгород" msgstr "Порту-Акри"
#: wp-admin/includes/continents-cities.php:488 #: wp-admin/includes/continents-cities.php:200
msgid "Vaduz" msgid "Port-au-Prince"
msgstr "Вадуц" msgstr "Порт-о-Пренс"
#: wp-admin/includes/continents-cities.php:489 #: wp-admin/includes/continents-cities.php:199
msgid "Vatican" msgid "Port of Spain"
msgstr "Ватикан" msgstr "Порт-оф-Спейн"
#: wp-admin/includes/continents-cities.php:490 #: wp-admin/includes/continents-cities.php:198
msgid "Vienna" msgid "Phoenix"
msgstr "Вена" msgstr "Феникс"
#: wp-admin/includes/continents-cities.php:491 #: wp-admin/includes/continents-cities.php:197
msgid "Vilnius" msgid "Paramaribo"
msgstr "Вильнюс" msgstr "Парамарибо"
#: wp-admin/includes/continents-cities.php:492 #: wp-admin/includes/continents-cities.php:196
msgid "Volgograd" msgid "Pangnirtung"
msgstr "Волгоград" msgstr "Пангниртунг"
#: wp-admin/includes/continents-cities.php:493 #: wp-admin/includes/continents-cities.php:195
msgid "Warsaw" msgid "Panama"
msgstr "Варшава" msgstr "Панама"
#: wp-admin/includes/continents-cities.php:494 #: wp-admin/includes/continents-cities.php:194
msgid "Zagreb" msgid "Ojinaga"
msgstr "Загреб" msgstr "Охинага"
#: wp-admin/includes/continents-cities.php:495 #: wp-admin/includes/continents-cities.php:193
msgid "Zaporozhye" msgid "New Salem"
msgstr "Запорожье" msgstr "Нью-Салем"
#: wp-admin/includes/continents-cities.php:496 #: wp-admin/includes/continents-cities.php:192
msgid "Zurich" msgid "Center"
msgstr "Цюрих" msgstr "Центр"
#: wp-admin/includes/continents-cities.php:498 #: wp-admin/includes/continents-cities.php:191
msgid "Indian" msgid "Beulah"
msgstr "Индиан" msgstr "Бьюла"
#: wp-admin/includes/continents-cities.php:499 #: wp-admin/includes/continents-cities.php:190
msgid "Antananarivo" msgid "North Dakota"
msgstr "Антананариву" msgstr "Северная Дакота"
#: wp-admin/includes/continents-cities.php:500 #: wp-admin/includes/continents-cities.php:189
msgid "Chagos" msgid "Noronha"
msgstr "Чагос" msgstr "Норонха"
#: wp-admin/includes/continents-cities.php:501 #: wp-admin/includes/continents-cities.php:188
msgid "Christmas" msgid "Nome"
msgstr "Остров Рождества" msgstr "Ном"
#: wp-admin/includes/continents-cities.php:502 #: wp-admin/includes/continents-cities.php:187
msgid "Cocos" msgid "Nipigon"
msgstr "Кокосовые острова" msgstr "Нипигон"
#: wp-admin/includes/continents-cities.php:503 #: wp-admin/includes/continents-cities.php:186
msgid "Comoro" msgid "New York"
msgstr "Коморские острова" msgstr "Нью-Йорк"
#: wp-admin/includes/continents-cities.php:504 #: wp-admin/includes/continents-cities.php:185
msgid "Kerguelen" msgid "Nassau"
msgstr "Кергелен" msgstr "Нассау"
#: wp-admin/includes/continents-cities.php:505 #: wp-admin/includes/continents-cities.php:184
msgid "Mahe" msgid "Montserrat"
msgstr "Маэ" msgstr "Монсеррат"
#: wp-admin/includes/continents-cities.php:506 #: wp-admin/includes/continents-cities.php:183
msgid "Maldives" msgid "Montreal"
msgstr "Мальдивы" msgstr "Монреаль"
#: wp-admin/includes/continents-cities.php:507 #: wp-admin/includes/continents-cities.php:182
msgid "Mauritius" msgid "Montevideo"
msgstr "Маврикий" msgstr "Монтевидео"
#: wp-admin/includes/continents-cities.php:508 #: wp-admin/includes/continents-cities.php:181
msgid "Mayotte" msgid "Monterrey"
msgstr "Майотта" msgstr "Монтеррей"
#: wp-admin/includes/continents-cities.php:509 #: wp-admin/includes/continents-cities.php:180
msgid "Reunion" msgid "Moncton"
msgstr "Реюньон" msgstr "Монктон"
#: wp-admin/includes/continents-cities.php:511 #: wp-admin/includes/continents-cities.php:179
msgid "Pacific" msgid "Miquelon"
msgstr "Тихоокеанский регион" msgstr "Микелон"
#: wp-admin/includes/continents-cities.php:512 #: wp-admin/includes/continents-cities.php:178
msgid "Apia" msgid "Mexico City"
msgstr "Апия" msgstr "Мехико"
#: wp-admin/includes/continents-cities.php:513 #: wp-admin/includes/continents-cities.php:177
msgid "Auckland" msgid "Metlakatla"
msgstr "Окленд" msgstr "Метлакатла"
#: wp-admin/includes/continents-cities.php:515 #: wp-admin/includes/continents-cities.php:176
msgid "Chatham" msgid "Merida"
msgstr "Чатэм" msgstr "Мерида"
#: wp-admin/includes/continents-cities.php:517 #: wp-admin/includes/continents-cities.php:175
msgid "Easter" msgid "Menominee"
msgstr "Пасха" msgstr "Меномине"
#: wp-admin/includes/continents-cities.php:518 #: wp-admin/includes/continents-cities.php:173
msgid "Efate" msgid "Mazatlan"
msgstr "Эфате" msgstr "Масатлан"
#: wp-admin/includes/continents-cities.php:519 #: wp-admin/includes/continents-cities.php:172
msgid "Enderbury" msgid "Matamoros"
msgstr "Эндербери" msgstr "Матаморос"
#: wp-admin/includes/continents-cities.php:520 #: wp-admin/includes/continents-cities.php:171
msgid "Fakaofo" msgid "Martinique"
msgstr "Факаофо" msgstr "Мартиника"
#: wp-admin/includes/continents-cities.php:521 #: wp-admin/includes/continents-cities.php:170
msgid "Fiji" msgid "Marigot"
msgstr "Фиджи" msgstr "Маригот"
#: wp-admin/includes/continents-cities.php:522 #: wp-admin/includes/continents-cities.php:169
msgid "Funafuti" msgid "Manaus"
msgstr "Фунафути" msgstr "Манаус"
#: wp-admin/includes/continents-cities.php:523 #: wp-admin/includes/continents-cities.php:168
msgid "Galapagos" msgid "Managua"
msgstr "Галапагос" msgstr "Манагуа"
#: wp-admin/includes/continents-cities.php:524 #: wp-admin/includes/continents-cities.php:167
msgid "Gambier" msgid "Maceio"
msgstr "Остров Гамбье" msgstr "Масейо"
#: wp-admin/includes/continents-cities.php:525 #: wp-admin/includes/continents-cities.php:166
msgid "Guadalcanal" msgid "Lower Princes"
msgstr "Гуадалканал" msgstr "Лоуэр-Принсес"
#: wp-admin/includes/continents-cities.php:526 #: wp-admin/includes/continents-cities.php:164
msgid "Guam" msgid "Los Angeles"
msgstr "Гуам" msgstr "Лос-Анджелес"
#: wp-admin/includes/continents-cities.php:527 #: wp-admin/includes/continents-cities.php:163
msgid "Honolulu" msgid "Lima"
msgstr "Гонолулу" msgstr "Лима"
#: wp-admin/includes/continents-cities.php:528 #: wp-admin/includes/continents-cities.php:162
msgid "Johnston" msgid "La Paz"
msgstr "Джонсон" msgstr "Ла-Пас"
#: wp-admin/includes/continents-cities.php:529 #: wp-admin/includes/continents-cities.php:161
msgid "Kiritimati" msgid "Kralendijk"
msgstr "Киритимати" msgstr "Кралендейк"
#: wp-admin/includes/continents-cities.php:530 #: wp-admin/includes/continents-cities.php:160
msgid "Kosrae" msgid "Knox IN"
msgstr "Кусаие" msgstr "Нокс (Индиана)"
#: wp-admin/includes/continents-cities.php:531 #: wp-admin/includes/continents-cities.php:159
msgid "Kwajalein" msgid "Monticello"
msgstr "Кваджалейн" msgstr "Монтичелло"
#: wp-admin/includes/continents-cities.php:532 #: wp-admin/includes/continents-cities.php:158
msgid "Majuro" #: wp-admin/includes/continents-cities.php:165
msgstr "Маджуро" msgid "Louisville"
msgstr "Луисвилл"
#: wp-admin/includes/continents-cities.php:533 #: wp-admin/includes/continents-cities.php:157
msgid "Marquesas" msgid "Kentucky"
msgstr "Маркизы" msgstr "Кентукки"
#: wp-admin/includes/continents-cities.php:534 #: wp-admin/includes/continents-cities.php:156
msgid "Midway" msgid "Juneau"
msgstr "Миндуэй" msgstr "Джуно"
#: wp-admin/includes/continents-cities.php:535 #: wp-admin/includes/continents-cities.php:154
msgid "Nauru" msgid "Jamaica"
msgstr "Науру" msgstr "Ямайка"
#: wp-admin/includes/continents-cities.php:536 #: wp-admin/includes/continents-cities.php:153
msgid "Niue" msgid "Iqaluit"
msgstr "Ниуэ" msgstr "Икаилут"
#: wp-admin/includes/continents-cities.php:537 #: wp-admin/includes/continents-cities.php:152
msgid "Norfolk" msgid "Inuvik"
msgstr "Норфолк" msgstr "Инувик"
#: wp-admin/includes/continents-cities.php:538 #: wp-admin/includes/continents-cities.php:150
msgid "Noumea" msgid "Winamac"
msgstr "Нумеа" msgstr "Винамак"
#: wp-admin/includes/continents-cities.php:539 #: wp-admin/includes/continents-cities.php:149
msgid "Pago Pago" msgid "Vincennes"
msgstr "Паго-Паго" msgstr "Венсен"
#: wp-admin/includes/continents-cities.php:540 #: wp-admin/includes/continents-cities.php:148
msgid "Palau" msgid "Vevay"
msgstr "Палау" msgstr "Вевей"
#: wp-admin/includes/continents-cities.php:541 #: wp-admin/includes/continents-cities.php:147
msgid "Pitcairn" msgid "Tell City"
msgstr "Питкэрн" msgstr "Телл Сити"
#: wp-admin/includes/continents-cities.php:543 #: wp-admin/includes/continents-cities.php:146
msgid "Ponape" msgid "Petersburg"
msgstr "Понапе" msgstr "Петербург"
#: wp-admin/includes/continents-cities.php:544 #: wp-admin/includes/continents-cities.php:145
msgid "Port Moresby" msgid "Marengo"
msgstr "Порт-Морсби" msgstr "Маренго"
#: wp-admin/includes/continents-cities.php:545 #: wp-admin/includes/continents-cities.php:144
msgid "Rarotonga" msgid "Knox"
msgstr "Раротонга" msgstr "Нокс"
#: wp-admin/includes/continents-cities.php:546 #: wp-admin/includes/continents-cities.php:143
msgid "Saipan" #: wp-admin/includes/continents-cities.php:151
msgstr "Сайпан" msgid "Indianapolis"
msgstr "Индианаполис"
#: wp-admin/includes/continents-cities.php:547 #: wp-admin/includes/continents-cities.php:142
msgid "Samoa" msgid "Indiana"
msgstr "Самоа" msgstr "Индиана"
#: wp-admin/includes/continents-cities.php:548 #: wp-admin/includes/continents-cities.php:141
msgid "Tahiti" msgid "Hermosillo"
msgstr "Таити" msgstr "Эрмосильо"
#: wp-admin/includes/continents-cities.php:549 #: wp-admin/includes/continents-cities.php:140
msgid "Tarawa" msgid "Havana"
msgstr "Тарава" msgstr "Гавана"
#: wp-admin/includes/continents-cities.php:550 #: wp-admin/includes/continents-cities.php:139
msgid "Tongatapu" msgid "Halifax"
msgstr "Тонгатапу" msgstr "Галифакс"
#: wp-admin/includes/continents-cities.php:551 #: wp-admin/includes/continents-cities.php:138
msgid "Truk" msgid "Guyana"
msgstr "Трук" msgstr "Гайана"
#: wp-admin/includes/continents-cities.php:552 #: wp-admin/includes/continents-cities.php:137
msgid "Wake" msgid "Guayaquil"
msgstr "Уэйк" msgstr "Гуаякиль"
#: wp-admin/includes/continents-cities.php:553 #: wp-admin/includes/continents-cities.php:136
msgid "Wallis" msgid "Guatemala"
msgstr "Уоллис" msgstr "Гватемала"
#: wp-admin/includes/continents-cities.php:554 #: wp-admin/includes/continents-cities.php:135
msgid "Yap" msgid "Guadeloupe"
msgstr "Яп" msgstr "Гваделупа"
#: wp-admin/includes/continents-cities.php:161 #: wp-admin/includes/continents-cities.php:134
msgid "Kralendijk" msgid "Grenada"
msgstr "Кралендейк" msgstr "Гренада"
#: wp-admin/includes/continents-cities.php:166 #: wp-admin/includes/continents-cities.php:133
msgid "Lower Princes" msgid "Grand Turk"
msgstr "Лоуэр-Принсес" msgstr "Гранд-Терк"
#: wp-admin/includes/continents-cities.php:172 #: wp-admin/includes/continents-cities.php:132
msgid "Matamoros" msgid "Goose Bay"
msgstr "Матаморос" msgstr "Гус-Бей"
#: wp-admin/includes/continents-cities.php:177 #: wp-admin/includes/continents-cities.php:131
msgid "Metlakatla" msgid "Godthab"
msgstr "Метлакатла" msgstr "Готхоб"
#: wp-admin/includes/continents-cities.php:191 #: wp-admin/includes/continents-cities.php:130
msgid "Beulah" msgid "Glace Bay"
msgstr "Бьюла" msgstr "Глейс Бэй"
#: wp-admin/includes/continents-cities.php:194 #: wp-admin/includes/continents-cities.php:129
msgid "Ojinaga" msgid "Fortaleza"
msgstr "Охинага" msgstr "Форталеза"
#: wp-admin/includes/continents-cities.php:212 #: wp-admin/includes/continents-cities.php:128
msgid "Santa Isabel" msgid "Fort Wayne"
msgstr "Санта-Исабель" msgstr "Форт Уэйн"
#: wp-admin/includes/continents-cities.php:213 #: wp-admin/includes/continents-cities.php:127
msgid "Santarem" msgid "Fort Nelson"
msgstr "Сантарен" msgstr "Форт-Нельсон"
#: wp-admin/includes/continents-cities.php:219 #: wp-admin/includes/continents-cities.php:126
msgid "Sitka" msgid "Ensenada"
msgstr "Ситка" msgstr "Энсенада"
#: wp-admin/includes/continents-cities.php:244 #: wp-admin/includes/continents-cities.php:125
msgid "Macquarie" msgid "El Salvador"
msgstr "Маккуори" msgstr "Сальвадор"
#: wp-admin/includes/continents-cities.php:251 #: wp-admin/includes/continents-cities.php:124
msgid "Troll" msgid "Eirunepe"
msgstr "Тролль" msgstr "Эйрунепе"
#: wp-admin/includes/continents-cities.php:271 #: wp-admin/includes/continents-cities.php:123
msgid "Barnaul" msgid "Edmonton"
msgstr "Барнаул" msgstr "Эдмонтон"
#: wp-admin/includes/continents-cities.php:276 #: wp-admin/includes/continents-cities.php:122
msgid "Chita" msgid "Dominica"
msgstr "Чита" msgstr "Доминика"
#: wp-admin/includes/continents-cities.php:290 #: wp-admin/includes/continents-cities.php:121
msgid "Hebron" msgid "Detroit"
msgstr "Хеврон" msgstr "Детройт"
#: wp-admin/includes/continents-cities.php:303 #: wp-admin/includes/continents-cities.php:120
msgid "Kathmandu" msgid "Denver"
msgstr "Катманду" msgstr "Денвер"
#: wp-admin/includes/continents-cities.php:305 #: wp-admin/includes/continents-cities.php:119
msgid "Khandyga" msgid "Dawson Creek"
msgstr "Хандыга" msgstr "Бухта Доусона"
#: wp-admin/includes/continents-cities.php:318 #: wp-admin/includes/continents-cities.php:118
msgid "Novokuznetsk" msgid "Dawson"
msgstr "Новокузнецк" msgstr "Доусон"
#: wp-admin/includes/continents-cities.php:335 #: wp-admin/includes/continents-cities.php:117
msgid "Srednekolymsk" msgid "Danmarkshavn"
msgstr "Среднеколымск" msgstr "Данмаркшавн"
#: wp-admin/includes/continents-cities.php:344 #: wp-admin/includes/continents-cities.php:116
msgid "Tomsk" msgid "Curacao"
msgstr "Томск" msgstr "Кюрасао"
#: wp-admin/includes/continents-cities.php:349 #: wp-admin/includes/continents-cities.php:115
msgid "Ust-Nera" msgid "Cuiaba"
msgstr "Усть-Нера" msgstr "Куяба"
#: wp-admin/includes/continents-cities.php:436 #: wp-admin/includes/continents-cities.php:114
msgid "Astrakhan" msgid "Creston"
msgstr "Астрахань" msgstr "Крестон"
#: wp-admin/includes/continents-cities.php:445 #: wp-admin/includes/continents-cities.php:113
msgid "Busingen" msgid "Costa Rica"
msgstr "Бюзинген" msgstr "Коста-Рика"
#: wp-admin/includes/continents-cities.php:457 #: wp-admin/includes/continents-cities.php:111
msgid "Kirov" msgid "Coral Harbour"
msgstr "Киров" msgstr "Корал-Харбор"
#: wp-admin/includes/continents-cities.php:486 #: wp-admin/includes/continents-cities.php:110
msgid "Ulyanovsk" msgid "Chihuahua"
msgstr "Ульяновск" msgstr "Чиуауа"
#: wp-admin/includes/continents-cities.php:514 #: wp-admin/includes/continents-cities.php:109
msgid "Bougainville" msgid "Chicago"
msgstr "Бугенвиль" msgstr "Чикаго"
#: wp-admin/includes/continents-cities.php:516 #: wp-admin/includes/continents-cities.php:108
msgid "Chuuk" msgid "Cayman"
msgstr "Трук" msgstr "Кайман"
#: wp-admin/includes/continents-cities.php:542 #: wp-admin/includes/continents-cities.php:107
msgid "Pohnpei" msgid "Cayenne"
msgstr "Понпеи" msgstr "Кайенна"
#: wp-admin/includes/continents-cities.php:204 #: wp-admin/includes/continents-cities.php:105
msgid "Punta Arenas" msgid "Caracas"
msgstr "Пунта-Аренас" msgstr "Каракас"
#: wp-admin/includes/continents-cities.php:266 #: wp-admin/includes/continents-cities.php:104
msgid "Atyrau" msgid "Cancun"
msgstr "Атырау" msgstr "Канкун"
#: wp-admin/includes/continents-cities.php:287 #: wp-admin/includes/continents-cities.php:103
msgid "Famagusta" msgid "Campo Grande"
msgstr "Фамагуста" msgstr "Кампо Гранде"
#: wp-admin/includes/continents-cities.php:353 #: wp-admin/includes/continents-cities.php:102
msgid "Yangon" msgid "Cambridge Bay"
msgstr "Янгон" msgstr "Кеймбридж-Бей"
#: wp-admin/includes/continents-cities.php:478 #: wp-admin/includes/continents-cities.php:100
msgid "Saratov" msgid "Boise"
msgstr "Саратов" msgstr "Бойсе"
#: wp-admin/includes/continents-cities.php:42 #: wp-admin/includes/continents-cities.php:99
msgid "Kigali" msgid "Bogota"
msgstr "Кигали" msgstr "Богота"
#: wp-admin/includes/continents-cities.php:43 #: wp-admin/includes/continents-cities.php:98
msgid "Kinshasa" msgid "Boa Vista"
msgstr "Киншаса" msgstr "Боа-Виста"
#: wp-admin/includes/continents-cities.php:38 #: wp-admin/includes/continents-cities.php:97
msgid "Johannesburg" msgid "Blanc-Sablon"
msgstr "Йоханнесбург" msgstr "Бланк-Саблон"
#: wp-admin/includes/continents-cities.php:40 #: wp-admin/includes/continents-cities.php:96
msgid "Kampala" msgid "Belize"
msgstr "Кампала" msgstr "Белиз"
#: wp-admin/includes/continents-cities.php:48 #: wp-admin/includes/continents-cities.php:95
msgid "Lubumbashi" msgid "Belem"
msgstr "Лубумбаши" msgstr "Белем"
#: wp-admin/includes/continents-cities.php:47 #: wp-admin/includes/continents-cities.php:94
msgid "Luanda" msgid "Barbados"
msgstr "Луанда" msgstr "Барбадос"
#: wp-admin/includes/continents-cities.php:46 #: wp-admin/includes/continents-cities.php:93
msgid "Lome" msgid "Bahia Banderas"
msgstr "Ломе" msgstr "Баия-де-Бандерас"
#: wp-admin/includes/continents-cities.php:45 #: wp-admin/includes/continents-cities.php:92
msgid "Libreville" msgid "Bahia"
msgstr "Либревиль" msgstr "Баия"
#: wp-admin/includes/continents-cities.php:44 #: wp-admin/includes/continents-cities.php:91
msgid "Lagos" msgid "Atka"
msgstr "Лагос" msgstr "Атка"
#: wp-admin/includes/continents-cities.php:51 #: wp-admin/includes/continents-cities.php:90
msgid "Maputo" msgid "Atikokan"
msgstr "Мапуту" msgstr "Атикокан"
#: wp-admin/includes/continents-cities.php:50 #: wp-admin/includes/continents-cities.php:89
msgid "Malabo" msgid "Asuncion"
msgstr "Малабо" msgstr "Асунсьон"
#: wp-admin/includes/continents-cities.php:49 #: wp-admin/includes/continents-cities.php:88
msgid "Lusaka" msgid "Aruba"
msgstr "Лусака" msgstr "Аруба"
#: wp-admin/includes/continents-cities.php:87
msgid "Ushuaia"
msgstr "Ушуайя"
#: wp-admin/includes/continents-cities.php:57 #: wp-admin/includes/continents-cities.php:86
msgid "Ndjamena" msgid "Tucuman"
msgstr "Нджамена" msgstr "Тукумане"
#: wp-admin/includes/continents-cities.php:56 #: wp-admin/includes/continents-cities.php:85
msgid "Nairobi" msgid "San Luis"
msgstr "Найроби" msgstr "Сан-Луис"
#: wp-admin/includes/continents-cities.php:52 #: wp-admin/includes/continents-cities.php:84
msgid "Maseru" msgid "San Juan"
msgstr "Масеру" msgstr "Сан-Хуан"
#: wp-admin/includes/continents-cities.php:53 #: wp-admin/includes/continents-cities.php:83
msgid "Mbabane" msgid "Salta"
msgstr "Мбабане" msgstr "Сальта"
#: wp-admin/includes/continents-cities.php:54 #: wp-admin/includes/continents-cities.php:82
msgid "Mogadishu" msgid "Rio Gallegos"
msgstr "Могадишо" msgstr "Рио-Гальегос"
#: wp-admin/includes/continents-cities.php:55 #: wp-admin/includes/continents-cities.php:81
msgid "Monrovia" #: wp-admin/includes/continents-cities.php:174
msgstr "Монровия" msgid "Mendoza"
msgstr "Мендоса"
#: wp-admin/includes/continents-cities.php:80 #: wp-admin/includes/continents-cities.php:80
msgid "La Rioja" msgid "La Rioja"
...@@ -1734,384 +1932,186 @@ msgstr "Нуакшот" ...@@ -1734,384 +1932,186 @@ msgstr "Нуакшот"
msgid "Niamey" msgid "Niamey"
msgstr "Ниамэй" msgstr "Ниамэй"
#: wp-admin/includes/continents-cities.php:34 #: wp-admin/includes/continents-cities.php:57
msgid "El Aaiun" msgid "Ndjamena"
msgstr "Эль-Аюн" msgstr "Нджамена"
#: wp-admin/includes/continents-cities.php:33
msgid "Douala"
msgstr "Дуала"
#: wp-admin/includes/continents-cities.php:37
msgid "Harare"
msgstr "Хараре"
#: wp-admin/includes/continents-cities.php:35
msgid "Freetown"
msgstr "Фритаун"
#: wp-admin/includes/continents-cities.php:36
msgid "Gaborone"
msgstr "Габороне"
#: wp-admin/includes/continents-cities.php:41
msgid "Khartoum"
msgstr "Хартум"
#: wp-admin/includes/continents-cities.php:32
msgid "Djibouti"
msgstr "Джибути"
#: wp-admin/includes/continents-cities.php:31
msgid "Dar es Salaam"
msgstr "Дар-эс-Салам"
#: wp-admin/includes/continents-cities.php:30
msgid "Dakar"
msgstr "Дакар"
#: wp-admin/includes/continents-cities.php:29
msgid "Conakry"
msgstr "Конакри"
#: wp-admin/includes/continents-cities.php:28
msgid "Ceuta"
msgstr "Сеута"
#: wp-admin/includes/continents-cities.php:27
msgid "Casablanca"
msgstr "Касабланка"
#: wp-admin/includes/continents-cities.php:26
msgid "Cairo"
msgstr "Каир"
#: wp-admin/includes/continents-cities.php:25
msgid "Bujumbura"
msgstr "Бужумбура"
#: wp-admin/includes/continents-cities.php:24
msgid "Brazzaville"
msgstr "Браззавиль"
#: wp-admin/includes/continents-cities.php:23
msgid "Blantyre"
msgstr "Блантайр"
#: wp-admin/includes/continents-cities.php:22
msgid "Bissau"
msgstr "Бисау"
#: wp-admin/includes/continents-cities.php:21
msgid "Banjul"
msgstr "Банжул"
#: wp-admin/includes/continents-cities.php:20
msgid "Bangui"
msgstr "Банги"
#: wp-admin/includes/continents-cities.php:19
msgid "Bamako"
msgstr "Бамако"
#: wp-admin/includes/continents-cities.php:18
msgid "Asmera"
msgstr "Асмера"
#: wp-admin/includes/continents-cities.php:16
msgid "Algiers"
msgstr "Алжир"
#: wp-admin/includes/continents-cities.php:17
msgid "Asmara"
msgstr "Асмэра"
#: wp-admin/includes/continents-cities.php:15
msgid "Addis Ababa"
msgstr "Аддис-Абеба"
#: wp-admin/includes/continents-cities.php:13
msgid "Abidjan"
msgstr "Абиджан"
#: wp-admin/includes/continents-cities.php:12
msgid "Africa"
msgstr "Африка"
#: wp-admin/includes/continents-cities.php:14
msgid "Accra"
msgstr "Аккра"
#: wp-admin/includes/continents-cities.php:81
#: wp-admin/includes/continents-cities.php:174
msgid "Mendoza"
msgstr "Мендоса"
#: wp-admin/includes/continents-cities.php:82
msgid "Rio Gallegos"
msgstr "Рио-Гальегос"
#: wp-admin/includes/continents-cities.php:84
msgid "San Juan"
msgstr "Сан-Хуан"
#: wp-admin/includes/continents-cities.php:85
msgid "San Luis"
msgstr "Сан-Луис"
#: wp-admin/includes/continents-cities.php:86
msgid "Tucuman"
msgstr "Тукумане"
#: wp-admin/includes/continents-cities.php:87
msgid "Ushuaia"
msgstr "Ушуайя"
#: wp-admin/includes/continents-cities.php:88
msgid "Aruba"
msgstr "Аруба"
#: wp-admin/includes/continents-cities.php:89
msgid "Asuncion"
msgstr "Асунсьон"
#: wp-admin/includes/continents-cities.php:90
msgid "Atikokan"
msgstr "Атикокан"
#: wp-admin/includes/continents-cities.php:91
msgid "Atka"
msgstr "Атка"
#: wp-admin/includes/continents-cities.php:92
msgid "Bahia"
msgstr "Баия"
#: wp-admin/includes/continents-cities.php:94
msgid "Barbados"
msgstr "Барбадос"
#: wp-admin/includes/continents-cities.php:95
msgid "Belem"
msgstr "Белем"
#: wp-admin/includes/continents-cities.php:96
msgid "Belize"
msgstr "Белиз"
#: wp-admin/includes/continents-cities.php:97
msgid "Blanc-Sablon"
msgstr "Бланк-Саблон"
#: wp-admin/includes/continents-cities.php:98
msgid "Boa Vista"
msgstr "Боа-Виста"
#: wp-admin/includes/continents-cities.php:99
msgid "Bogota"
msgstr "Богота"
#: wp-admin/includes/continents-cities.php:100
msgid "Boise"
msgstr "Бойсе"
#: wp-admin/includes/continents-cities.php:102
msgid "Cambridge Bay"
msgstr "Кеймбридж-Бей"
#: wp-admin/includes/continents-cities.php:103
msgid "Campo Grande"
msgstr "Кампо Гранде"
#: wp-admin/includes/continents-cities.php:104
msgid "Cancun"
msgstr "Канкун"
#: wp-admin/includes/continents-cities.php:105
msgid "Caracas"
msgstr "Каракас"
#: wp-admin/includes/continents-cities.php:107
msgid "Cayenne"
msgstr "Кайенна"
#: wp-admin/includes/continents-cities.php:108 #: wp-admin/includes/continents-cities.php:56
msgid "Cayman" msgid "Nairobi"
msgstr "Кайман" msgstr "Найроби"
#: wp-admin/includes/continents-cities.php:109 #: wp-admin/includes/continents-cities.php:55
msgid "Chicago" msgid "Monrovia"
msgstr "Чикаго" msgstr "Монровия"
#: wp-admin/includes/continents-cities.php:110 #: wp-admin/includes/continents-cities.php:54
msgid "Chihuahua" msgid "Mogadishu"
msgstr "Чиуауа" msgstr "Могадишо"
#: wp-admin/includes/continents-cities.php:111 #: wp-admin/includes/continents-cities.php:53
msgid "Coral Harbour" msgid "Mbabane"
msgstr "Корал-Харбор" msgstr "Мбабане"
#: wp-admin/includes/continents-cities.php:113 #: wp-admin/includes/continents-cities.php:52
msgid "Costa Rica" msgid "Maseru"
msgstr "Коста-Рика" msgstr "Масеру"
#: wp-admin/includes/continents-cities.php:115 #: wp-admin/includes/continents-cities.php:51
msgid "Cuiaba" msgid "Maputo"
msgstr "Куяба" msgstr "Мапуту"
#: wp-admin/includes/continents-cities.php:116 #: wp-admin/includes/continents-cities.php:50
msgid "Curacao" msgid "Malabo"
msgstr "Кюрасао" msgstr "Малабо"
#: wp-admin/includes/continents-cities.php:117 #: wp-admin/includes/continents-cities.php:49
msgid "Danmarkshavn" msgid "Lusaka"
msgstr "Данмаркшавн" msgstr "Лусака"
#: wp-admin/includes/continents-cities.php:118 #: wp-admin/includes/continents-cities.php:48
msgid "Dawson" msgid "Lubumbashi"
msgstr "Доусон" msgstr "Лубумбаши"
#: wp-admin/includes/continents-cities.php:119 #: wp-admin/includes/continents-cities.php:47
msgid "Dawson Creek" msgid "Luanda"
msgstr "Бухта Доусона" msgstr "Луанда"
#: wp-admin/includes/continents-cities.php:120 #: wp-admin/includes/continents-cities.php:46
msgid "Denver" msgid "Lome"
msgstr "Денвер" msgstr "Ломе"
#: wp-admin/includes/continents-cities.php:121 #: wp-admin/includes/continents-cities.php:45
msgid "Detroit" msgid "Libreville"
msgstr "Детройт" msgstr "Либревиль"
#: wp-admin/includes/continents-cities.php:122 #: wp-admin/includes/continents-cities.php:44
msgid "Dominica" msgid "Lagos"
msgstr "Доминика" msgstr "Лагос"
#: wp-admin/includes/continents-cities.php:123 #: wp-admin/includes/continents-cities.php:43
msgid "Edmonton" msgid "Kinshasa"
msgstr "Эдмонтон" msgstr "Киншаса"
#: wp-admin/includes/continents-cities.php:124 #: wp-admin/includes/continents-cities.php:42
msgid "Eirunepe" msgid "Kigali"
msgstr "Эйрунепе" msgstr "Кигали"
#: wp-admin/includes/continents-cities.php:125 #: wp-admin/includes/continents-cities.php:41
msgid "El Salvador" msgid "Khartoum"
msgstr "Сальвадор" msgstr "Хартум"
#: wp-admin/includes/continents-cities.php:126 #: wp-admin/includes/continents-cities.php:40
msgid "Ensenada" msgid "Kampala"
msgstr "Энсенада" msgstr "Кампала"
#: wp-admin/includes/continents-cities.php:128 #: wp-admin/includes/continents-cities.php:39
msgid "Fort Wayne" msgid "Juba"
msgstr "Форт Уэйн" msgstr "Джуба"
#: wp-admin/includes/continents-cities.php:129 #: wp-admin/includes/continents-cities.php:38
msgid "Fortaleza" msgid "Johannesburg"
msgstr "Форталеза" msgstr "Йоханнесбург"
#: wp-admin/includes/continents-cities.php:130 #: wp-admin/includes/continents-cities.php:37
msgid "Glace Bay" msgid "Harare"
msgstr "Глейс Бэй" msgstr "Хараре"
#: wp-admin/includes/continents-cities.php:131 #: wp-admin/includes/continents-cities.php:36
msgid "Godthab" msgid "Gaborone"
msgstr "Готхоб" msgstr "Габороне"
#: wp-admin/includes/continents-cities.php:132 #: wp-admin/includes/continents-cities.php:35
msgid "Goose Bay" msgid "Freetown"
msgstr "Гус-Бей" msgstr "Фритаун"
#: wp-admin/includes/continents-cities.php:133 #: wp-admin/includes/continents-cities.php:34
msgid "Grand Turk" msgid "El Aaiun"
msgstr "Гранд-Терк" msgstr "Эль-Аюн"
#: wp-admin/includes/continents-cities.php:134 #: wp-admin/includes/continents-cities.php:33
msgid "Grenada" msgid "Douala"
msgstr "Гренада" msgstr "Дуала"
#: wp-admin/includes/continents-cities.php:135 #: wp-admin/includes/continents-cities.php:32
msgid "Guadeloupe" msgid "Djibouti"
msgstr "Гваделупа" msgstr "Джибути"
#: wp-admin/includes/continents-cities.php:136 #: wp-admin/includes/continents-cities.php:31
msgid "Guatemala" msgid "Dar es Salaam"
msgstr "Гватемала" msgstr "Дар-эс-Салам"
#: wp-admin/includes/continents-cities.php:137 #: wp-admin/includes/continents-cities.php:30
msgid "Guayaquil" msgid "Dakar"
msgstr "Гуаякиль" msgstr "Дакар"
#: wp-admin/includes/continents-cities.php:138 #: wp-admin/includes/continents-cities.php:29
msgid "Guyana" msgid "Conakry"
msgstr "Гайана" msgstr "Конакри"
#: wp-admin/includes/continents-cities.php:139 #: wp-admin/includes/continents-cities.php:28
msgid "Halifax" msgid "Ceuta"
msgstr "Галифакс" msgstr "Сеута"
#: wp-admin/includes/continents-cities.php:140 #: wp-admin/includes/continents-cities.php:27
msgid "Havana" msgid "Casablanca"
msgstr "Гавана" msgstr "Касабланка"
#: wp-admin/includes/continents-cities.php:141 #: wp-admin/includes/continents-cities.php:26
msgid "Hermosillo" msgid "Cairo"
msgstr "Эрмосильо" msgstr "Каир"
#: wp-admin/includes/continents-cities.php:142 #: wp-admin/includes/continents-cities.php:25
msgid "Indiana" msgid "Bujumbura"
msgstr "Индиана" msgstr "Бужумбура"
#: wp-admin/includes/continents-cities.php:143 #: wp-admin/includes/continents-cities.php:24
#: wp-admin/includes/continents-cities.php:151 msgid "Brazzaville"
msgid "Indianapolis" msgstr "Браззавиль"
msgstr "Индианаполис"
#: wp-admin/includes/continents-cities.php:144 #: wp-admin/includes/continents-cities.php:23
msgid "Knox" msgid "Blantyre"
msgstr "Нокс" msgstr "Блантайр"
#: wp-admin/includes/continents-cities.php:145 #: wp-admin/includes/continents-cities.php:22
msgid "Marengo" msgid "Bissau"
msgstr "Маренго" msgstr "Бисау"
#: wp-admin/includes/continents-cities.php:146 #: wp-admin/includes/continents-cities.php:21
msgid "Petersburg" msgid "Banjul"
msgstr "Петербург" msgstr "Банжул"
#: wp-admin/includes/continents-cities.php:147 #: wp-admin/includes/continents-cities.php:20
msgid "Tell City" msgid "Bangui"
msgstr "Телл Сити" msgstr "Банги"
#: wp-admin/includes/continents-cities.php:148 #: wp-admin/includes/continents-cities.php:19
msgid "Vevay" msgid "Bamako"
msgstr "Вевей" msgstr "Бамако"
#: wp-admin/includes/continents-cities.php:149 #: wp-admin/includes/continents-cities.php:18
msgid "Vincennes" msgid "Asmera"
msgstr "Венсен" msgstr "Асмера"
#: wp-admin/includes/continents-cities.php:150 #: wp-admin/includes/continents-cities.php:17
msgid "Winamac" msgid "Asmara"
msgstr "Винамак" msgstr "Асмэра"
#: wp-admin/includes/continents-cities.php:39 #: wp-admin/includes/continents-cities.php:16
msgid "Juba" msgid "Algiers"
msgstr "Джуба" msgstr "Алжир"
#: wp-admin/includes/continents-cities.php:83 #: wp-admin/includes/continents-cities.php:15
msgid "Salta" msgid "Addis Ababa"
msgstr "Сальта" msgstr "Аддис-Абеба"
#: wp-admin/includes/continents-cities.php:93 #: wp-admin/includes/continents-cities.php:14
msgid "Bahia Banderas" msgid "Accra"
msgstr "Баия-де-Бандерас" msgstr "Аккра"
#: wp-admin/includes/continents-cities.php:114 #: wp-admin/includes/continents-cities.php:13
msgid "Creston" msgid "Abidjan"
msgstr "Крестон" msgstr "Абиджан"
#: wp-admin/includes/continents-cities.php:127 #: wp-admin/includes/continents-cities.php:12
msgid "Fort Nelson" msgid "Africa"
msgstr "Форт-Нельсон" msgstr "Африка"
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# This file is distributed under the same license as the Plugins - Yoast SEO - Stable (latest release) package. # This file is distributed under the same license as the Plugins - Yoast SEO - Stable (latest release) package.
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2018-11-20 09:16:32+0000\n" "PO-Revision-Date: 2018-11-30 15:45:30+0000\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
...@@ -2442,7 +2442,7 @@ msgstr "Активирован" ...@@ -2442,7 +2442,7 @@ msgstr "Активирован"
#. translators: %1$s expands to Yoast #. translators: %1$s expands to Yoast
#: admin/views/sidebar.php:16 #: admin/views/sidebar.php:16
msgid "%1$s recommendations for you" msgid "%1$s recommendations for you"
msgstr "%1s рекомендаций для вас" msgstr "%1$s рекомендует"
#: admin/class-meta-columns.php:231 #: admin/class-meta-columns.php:231
msgid "All Readability Scores" msgid "All Readability Scores"
......
.block-editor ul.wp-block-archives{padding-right:2.5em}.wp-block-audio{margin:0}.editor-block-list__block[data-type="core/button"][data-align=center]{text-align:center}.editor-block-list__block[data-type="core/button"][data-align=right]{text-align:right}.wp-block-button{display:inline-block;margin-bottom:0;position:relative}.wp-block-button .editor-rich-text__tinymce.mce-content-body{cursor:text;line-height:24px}.wp-block-button:not(.has-text-color):not(.is-style-outline) .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{color:#fff}.wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{opacity:.8}.wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]{height:auto}.editor-block-preview__content .wp-block-button{max-width:100%}.editor-block-preview__content .wp-block-button .wp-block-button__link{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.block-library-button__inline-link{align-items:center;background:#fff;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4;width:374px}.block-library-button__inline-link .editor-url-input{width:auto}.block-library-button__inline-link .editor-url-input__suggestions{width:302px;z-index:6}.block-library-button__inline-link>.dashicon{width:36px}.block-library-button__inline-link .dashicon{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-webkit-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]:-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::placeholder{color:#8f98a1}[data-align=center] .block-library-button__inline-link{margin-left:auto;margin-right:auto}[data-align=right] .block-library-button__inline-link{margin-left:0;margin-right:auto}.block-editor .wp-block-categories ul{padding-right:2.5em}.block-editor .wp-block-categories ul ul{margin-top:6px}.wp-block-code .editor-plain-text{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px}.wp-block-code .editor-plain-text:focus{box-shadow:none}.components-tab-button{align-items:flex-end;background:none;border:0;color:#555d66;cursor:pointer;display:inline-flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:500;height:36px;margin:0;outline:none;padding:3px;position:relative}.components-tab-button.is-active,.components-tab-button.is-active:hover{color:#fff}.components-tab-button:disabled{cursor:default}.components-tab-button>span{border:1px solid transparent;box-sizing:content-box;height:28px;line-height:28px;padding:0 6px}.components-tab-button:focus>span,.components-tab-button:hover>span{color:#555d66}.components-tab-button:not(:disabled).is-active>span,.components-tab-button:not(:disabled):focus>span,.components-tab-button:not(:disabled):hover>span{border:1px solid #555d66}.components-tab-button.is-active:hover>span,.components-tab-button.is-active>span{background-color:#555d66;color:#fff}.wp-block-columns .editor-block-list__layout{margin-left:0;margin-right:0}.wp-block-columns .editor-block-list__layout .editor-block-list__block{max-width:none}.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:14px;padding-right:14px}@media (min-width:600px){.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:60px;padding-right:60px}}.wp-block-columns{display:block}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{display:flex;flex-wrap:wrap}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{flex-wrap:nowrap}}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{display:flex;flex:1;flex-basis:100%;flex-direction:column;margin-left:-14px;margin-right:-14px;min-width:0;overflow-wrap:break-word;padding-left:0;padding-right:0;word-break:break-word}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>div>.editor-inner-blocks{margin-bottom:-28px;margin-top:-28px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit{margin-bottom:0;margin-top:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit:before{left:0;right:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-right:-1px}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{flex-basis:50%;flex-grow:0;margin-left:14px;margin-right:14px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(odd){margin-left:32px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:first-child),.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(2n){margin-right:32px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:last-child){margin-left:32px}}.wp-block-columns [data-type="core/column"]{pointer-events:none}.wp-block-columns [data-type="core/column"].is-hovered>.editor-block-list__block-edit:before{content:none}.wp-block-columns [data-type="core/column"].is-hovered .editor-block-list__breadcrumb{display:none}:not(.components-disabled)>.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit .editor-block-list__layout>*{pointer-events:all}.wp-block-cover-image .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-cover .editor-rich-text__tinymce[data-is-empty=true]:before{position:inherit}.wp-block-cover-image .editor-rich-text__tinymce:focus a[data-mce-selected],.wp-block-cover .editor-rich-text__tinymce:focus a[data-mce-selected]{background:hsla(0,0%,100%,.3);border-radius:2px;box-shadow:none;margin:0 -2px;padding:0 2px}.wp-block-cover-image.components-placeholder h2,.wp-block-cover.components-placeholder h2{color:inherit}.wp-block-cover-image.has-left-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-left-content .editor-rich-text__inline-toolbar{justify-content:flex-start}.wp-block-cover-image.has-right-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-right-content .editor-rich-text__inline-toolbar{justify-content:flex-end}.wp-block-embed{clear:both;margin:0}@media (min-width:600px){.wp-block-embed{min-width:360px}}.wp-block-embed.is-loading{align-items:center;background:#f8f9f9;display:flex;flex-direction:column;justify-content:center;min-height:200px;padding:1em;text-align:center}.wp-block-embed.is-loading p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.wp-block-file{align-items:center;display:flex;justify-content:space-between;margin-bottom:0}.wp-block-file.is-transient{animation:edit-post__loading-fade-animation 1.6s ease-in-out infinite}.wp-block-file .wp-block-file__content-wrapper{flex-grow:1}.wp-block-file .wp-block-file__textlink{display:inline-block;min-width:1em}.wp-block-file .wp-block-file__textlink:focus{box-shadow:none}.wp-block-file .wp-block-file__button-richtext-wrapper{display:inline-block;margin-right:.75em}.wp-block-file .wp-block-file__copy-url-button{margin-right:1em}.wp-block-freeform.block-library-rich-text__tinymce{overflow:hidden}.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{margin-right:0;padding-right:2.5em}.wp-block-freeform.block-library-rich-text__tinymce blockquote{border-right:4px solid #000;box-shadow:inset 0 0 0 0 #e2e4e7;margin:0;padding-right:1em}.wp-block-freeform.block-library-rich-text__tinymce pre{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;white-space:pre-wrap}.wp-block-freeform.block-library-rich-text__tinymce h1{font-size:2em}.wp-block-freeform.block-library-rich-text__tinymce h2{font-size:1.6em}.wp-block-freeform.block-library-rich-text__tinymce h3{font-size:1.4em}.wp-block-freeform.block-library-rich-text__tinymce h4{font-size:1.2em}.wp-block-freeform.block-library-rich-text__tinymce h5{font-size:1.1em}.wp-block-freeform.block-library-rich-text__tinymce h6{font-size:1em}.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:#007fac}.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected]{background:#e5f5fa;border-radius:2px;box-shadow:0 0 0 1px #e5f5fa;margin:0 -2px;padding:0 2px}.wp-block-freeform.block-library-rich-text__tinymce code{background:#f3f4f5;border-radius:2px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:2px}.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected]{background:#e8eaeb}.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{border:2px dashed #bababa;cursor:default;display:block;height:0;margin:15px auto;outline:0;width:96%}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover i,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active i{color:#23282d}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn i{font-style:normal}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-toolbar-grp>div{padding:1px 3px}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .editor-block-list__block-edit:before{outline:1px solid #e2e4e7}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"].is-hovered .editor-block-list__breadcrumb{display:none}div[data-type="core/freeform"] .editor-block-contextual-toolbar+div{margin-top:0;padding-top:0}.block-library-classic__toolbar{margin:0 -14px;padding:0 14px;position:-webkit-sticky;position:sticky;top:14px;transform:translateY(-14px);width:auto;z-index:10}@media (min-width:600px){.block-library-classic__toolbar{padding:0}}.block-library-classic__toolbar:empty{background:#f5f5f5;border-bottom:1px solid #e2e4e7;height:37px}.block-library-classic__toolbar:empty:before{color:#555d66;content:attr(data-placeholder);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:37px;padding:14px}.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 .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar{display:block}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-switcher__no-switcher-icon{display:none}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar{float:left;margin-left:23px;top:14px;transform:translateY(-13px)}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{border:none;margin-top:3px}}@media (min-width:600px) and (min-width:782px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{margin-top:0}}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar:before{border-right:1px solid #e2e4e7;content:"";display:block;margin-bottom:4px;margin-top:4px}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .components-toolbar{background:transparent;border:none}.editor-block-list__block[data-type="core/freeform"] .mce-container.mce-toolbar.mce-stack-layout-item{padding-left:36px}}ul.wp-block-gallery li{list-style-type:none}.blocks-gallery-item figure:not(.is-selected):focus{outline:none}.blocks-gallery-item .is-selected,.blocks-gallery-item img:focus{outline:4px solid #0085ba}body.admin-color-sunrise .blocks-gallery-item .is-selected,body.admin-color-sunrise .blocks-gallery-item img:focus{outline:4px solid #d1864a}body.admin-color-ocean .blocks-gallery-item .is-selected,body.admin-color-ocean .blocks-gallery-item img:focus{outline:4px solid #a3b9a2}body.admin-color-midnight .blocks-gallery-item .is-selected,body.admin-color-midnight .blocks-gallery-item img:focus{outline:4px solid #e14d43}body.admin-color-ectoplasm .blocks-gallery-item .is-selected,body.admin-color-ectoplasm .blocks-gallery-item img:focus{outline:4px solid #a7b656}body.admin-color-coffee .blocks-gallery-item .is-selected,body.admin-color-coffee .blocks-gallery-item img:focus{outline:4px solid #c2a68c}body.admin-color-blue .blocks-gallery-item .is-selected,body.admin-color-blue .blocks-gallery-item img:focus{outline:4px solid #82b4cb}body.admin-color-light .blocks-gallery-item .is-selected,body.admin-color-light .blocks-gallery-item img:focus{outline:4px solid #0085ba}.blocks-gallery-item .is-transient img{opacity:.3}.blocks-gallery-item .editor-rich-text{bottom:0;max-height:100%;overflow-y:auto;position:absolute;width:100%}.blocks-gallery-item .editor-rich-text figcaption:not([data-is-placeholder-visible=true]){overflow:hidden;position:relative}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-item .is-selected .editor-rich-text{left:0;margin-top:-4px;right:0}}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__inline-toolbar{top:0}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__tinymce{padding-top:48px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button,.blocks-gallery-item .components-form-file-upload{height:100%;width:100%}.blocks-gallery-item .components-button.block-library-gallery-add-item-button{border:none;border-radius:0;box-shadow:none;display:flex;flex-direction:column;justify-content:center;min-height:100px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button .dashicon{margin-top:10px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button:focus,.blocks-gallery-item .components-button.block-library-gallery-add-item-button:hover{border:1px solid #555d66}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce a{color:#fff}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce:focus a[data-mce-selected]{color:rgba(0,0,0,.2)}.block-library-gallery-item__inline-menu{background-color:#0085ba;display:inline-flex;left:-2px;padding:2px;position:absolute;top:-2px;z-index:20}body.admin-color-sunrise .block-library-gallery-item__inline-menu{background-color:#d1864a}body.admin-color-ocean .block-library-gallery-item__inline-menu{background-color:#a3b9a2}body.admin-color-midnight .block-library-gallery-item__inline-menu{background-color:#e14d43}body.admin-color-ectoplasm .block-library-gallery-item__inline-menu{background-color:#a7b656}body.admin-color-coffee .block-library-gallery-item__inline-menu{background-color:#c2a68c}body.admin-color-blue .block-library-gallery-item__inline-menu{background-color:#82b4cb}body.admin-color-light .block-library-gallery-item__inline-menu{background-color:#0085ba}.block-library-gallery-item__inline-menu .components-button,.block-library-gallery-item__inline-menu .components-button:focus,.block-library-gallery-item__inline-menu .components-button:hover{color:#fff}.blocks-gallery-item__remove{padding:0}.blocks-gallery-item__remove.components-button:focus{color:inherit}.blocks-gallery-item .components-spinner{margin-right:-9px;margin-top:-9px;position:absolute;right:50%;top:50%}.is-selected .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-selected .wp-block-gallery .blocks-gallery-item:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-item:nth-last-child(2){margin-left:0}.wp-block-heading h1,.wp-block-heading h2,.wp-block-heading h3,.wp-block-heading h4,.wp-block-heading h5,.wp-block-heading h6{color:inherit;margin:0}.wp-block-heading h1{font-size:2.44em}.wp-block-heading h2{font-size:1.95em}.wp-block-heading h3{font-size:1.56em}.wp-block-heading h4{font-size:1.25em}.wp-block-heading h5{font-size:1em}.wp-block-heading h6{font-size:.8em}.wp-block-heading h1.editor-rich-text__tinymce,.wp-block-heading h2.editor-rich-text__tinymce,.wp-block-heading h3.editor-rich-text__tinymce{line-height:1.4}.wp-block-heading h4.editor-rich-text__tinymce{line-height:1.5}.wp-block-html .editor-plain-text{border:1px solid #e2e4e7;border-radius:4px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:.8em 1em}.wp-block-html .editor-plain-text:focus{box-shadow:none}.wp-block-image{position:relative}.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{margin-right:-9px;margin-top:-9px;position:absolute;right:50%;top:50%}.wp-block-image .components-resizable-box__container{display:inline-block}.wp-block-image .components-resizable-box__container img{display:block;width:100%}.wp-block-image.is-focused .components-resizable-box__handle{display:block;z-index:1}.editor-block-list__block[data-type="core/image"][data-align=center] .wp-block-image,.editor-block-list__block[data-type="core/image"][data-align=center][data-resized=false] .wp-block-image>div{margin-left:auto;margin-right:auto}.edit-post-sidebar .block-library-image__dimensions{margin-bottom:1em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row{display:flex;justify-content:space-between}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-bottom:.5em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height input,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width input{line-height:1.25}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-left:5px}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height{margin-right:5px}.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{left:0;margin:-1px 0;position:absolute;right:0}@media (min-width:600px){.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{margin:-1px}}[data-type="core/image"][data-align=center] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=left] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=right] .editor-block-list__block-edit figure{display:table;margin:0}[data-type="core/image"][data-align=center] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=left] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=right] .editor-block-list__block-edit .editor-rich-text{caption-side:bottom;display:table-caption}[data-type="core/image"][data-align=full] figure img,[data-type="core/image"][data-align=wide] figure img{width:100%}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized{display:table;margin:0}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized .editor-rich-text{caption-side:bottom;display:table-caption}.wp-block-latest-comments.has-avatars .avatar{margin-left:10px}.wp-block-latest-comments__comment-excerpt p{font-size:14px;line-height:1.8;margin:5px 0 20px;padding-top:0}.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment{min-height:36px}.block-editor .wp-block-latest-posts{padding-right:2.5em}.block-editor .wp-block-latest-posts.is-grid{padding-right:0}.wp-block-media-text{grid-template-areas:"media-text-media media-text-content" "resizer resizer"}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media" "resizer resizer"}.wp-block-media-text .__resizable_base__{grid-area:resizer}.wp-block-media-text .editor-media-container__resizer{align-self:center;grid-area:media-text-media;width:100%!important}.wp-block-media-text .editor-inner-blocks{grid-area:media-text-content;padding:0 8%;text-align:initial;word-break:break-word}.wp-block-media-text>.editor-inner-blocks>.editor-block-list__layout>.editor-block-list__block{max-width:unset}figure.block-library-media-text__media-container{height:100%;margin:0;width:100%}.wp-block-media-text .block-library-media-text__media-container img,.wp-block-media-text .block-library-media-text__media-container video{vertical-align:middle;width:100%}.editor-media-container__resizer .components-resizable-box__handle{display:none}.wp-block-media-text.is-selected:not(.is-stacked-on-mobile) .editor-media-container__resizer .components-resizable-box__handle{display:block}@media (min-width:600px){.wp-block-media-text.is-selected.is-stacked-on-mobile .editor-media-container__resizer .components-resizable-box__handle{display:block}}.block-library-list .editor-rich-text__tinymce,.block-library-list .editor-rich-text__tinymce ol,.block-library-list .editor-rich-text__tinymce ul{margin-right:1.3em;padding-right:1.3em}.editor-block-list__block[data-type="core/more"]{max-width:100%;text-align:center}.block-editor .wp-block-more{display:block;text-align:center;white-space:nowrap}.block-editor .wp-block-more input[type=text]{background:#fff;border:none;border-radius:4px;box-shadow:none;color:#6c7781;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;margin:0;padding:6px 8px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap}.block-editor .wp-block-more input[type=text]:focus{box-shadow:none}.block-editor .wp-block-more:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.editor-visual-editor__block[data-type="core/nextpage"]{max-width:100%}.wp-block-nextpage{display:block;text-align:center;white-space:nowrap}.wp-block-nextpage>span{background:#fff;border-radius:4px;color:#6c7781;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;padding:6px 8px;position:relative;text-transform:uppercase}.wp-block-nextpage:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.wp-block-preformatted pre{white-space:pre-wrap}.editor-block-list__block[data-type="core/pullquote"][data-align=left] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=left] .editor-rich-text p,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .editor-rich-text p{font-size:20px}.wp-block-pullquote cite .editor-rich-text__tinymce[data-is-empty=true]:before{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px}.wp-block-pullquote .editor-rich-text__tinymce[data-is-empty=true]:before{right:50%;transform:translateX(50%);width:100%}.wp-block-pullquote blockquote>.block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-pullquote blockquote>.editor-rich-text p{font-size:28px;line-height:1.6}.wp-block-pullquote.is-style-solid-color{margin-left:0;margin-right:0}.wp-block-pullquote.is-style-solid-color blockquote>.editor-rich-text p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{font-style:normal;text-transform:none}.wp-block-pullquote .wp-block-pullquote__citation{color:inherit}.wp-block-quote{margin:0}.wp-block-quote__citation{font-size:13px}.wp-block-shortcode{background-color:#f8f9f9;display:flex;flex-direction:row;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:14px}.wp-block-shortcode label{align-items:center;display:flex;flex-shrink:0;font-weight:600;margin-left:8px;white-space:nowrap}.wp-block-shortcode .editor-plain-text{flex-grow:1}.wp-block-shortcode .dashicon{margin-left:8px}.block-library-spacer__resize-container.is-selected{background:#f3f4f5}.edit-post-visual-editor p.wp-block-subhead{color:#6c7781;font-size:1.1em;font-style:italic}.editor-block-list__block[data-type="core/table"][data-align=center] table,.editor-block-list__block[data-type="core/table"][data-align=left] table,.editor-block-list__block[data-type="core/table"][data-align=right] table{width:auto}.editor-block-list__block[data-type="core/table"][data-align=center]{text-align:initial}.editor-block-list__block[data-type="core/table"][data-align=center] table{margin:0 auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table td,.wp-block-table th{border:1px solid;padding:0}.wp-block-table td.is-selected,.wp-block-table th.is-selected{border-color:#00a0d2;border-style:double;box-shadow:inset 0 0 0 1px #00a0d2}.wp-block-table__cell-content{padding:.5em}.wp-block-text-columns .editor-rich-text__tinymce:focus{outline:1px solid #e2e4e7}.wp-block-verse pre,pre.wp-block-verse{color:#191e23;font-family:inherit;font-size:inherit;overflow:auto;padding:1em;white-space:nowrap}.editor-block-list__block[data-align=center]{text-align:center}.editor-video-poster-control .components-button{margin-left:8px}.editor-video-poster-control .components-button+.components-button{margin-top:1em} .block-editor ul.wp-block-archives{padding-right:2.5em}.wp-block-audio{margin:0}.editor-block-list__block[data-type="core/button"][data-align=center]{text-align:center}.editor-block-list__block[data-type="core/button"][data-align=right]{text-align:right}.wp-block-button{display:inline-block;margin-bottom:0;position:relative}.wp-block-button .editor-rich-text__tinymce.mce-content-body{cursor:text}.wp-block-button:not(.has-text-color):not(.is-style-outline) .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{color:#fff}.wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{opacity:.8}.editor-block-preview__content .wp-block-button{max-width:100%}.editor-block-preview__content .wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]{height:auto}.editor-block-preview__content .wp-block-button .wp-block-button__link{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.block-library-button__inline-link{align-items:center;background:#fff;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4;width:374px}.block-library-button__inline-link .editor-url-input{width:auto}.block-library-button__inline-link .editor-url-input__suggestions{width:302px;z-index:6}.block-library-button__inline-link>.dashicon{width:36px}.block-library-button__inline-link .dashicon{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-webkit-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]:-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::placeholder{color:#8f98a1}[data-align=center] .block-library-button__inline-link{margin-left:auto;margin-right:auto}[data-align=right] .block-library-button__inline-link{margin-left:0;margin-right:auto}.block-editor .wp-block-categories ul{padding-right:2.5em}.block-editor .wp-block-categories ul ul{margin-top:6px}.wp-block-code .editor-plain-text{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px}.wp-block-code .editor-plain-text:focus{box-shadow:none}.components-tab-button{align-items:flex-end;background:none;border:0;color:#555d66;cursor:pointer;display:inline-flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:500;height:36px;margin:0;outline:none;padding:3px;position:relative}.components-tab-button.is-active,.components-tab-button.is-active:hover{color:#fff}.components-tab-button:disabled{cursor:default}.components-tab-button>span{border:1px solid transparent;box-sizing:content-box;height:28px;line-height:28px;padding:0 6px}.components-tab-button:focus>span,.components-tab-button:hover>span{color:#555d66}.components-tab-button:not(:disabled).is-active>span,.components-tab-button:not(:disabled):focus>span,.components-tab-button:not(:disabled):hover>span{border:1px solid #555d66}.components-tab-button.is-active:hover>span,.components-tab-button.is-active>span{background-color:#555d66;color:#fff}.wp-block-columns .editor-block-list__layout{margin-left:0;margin-right:0}.wp-block-columns .editor-block-list__layout .editor-block-list__block{max-width:none}.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:14px;padding-right:14px}@media (min-width:600px){.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:60px;padding-right:60px}}.wp-block-columns{display:block}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{display:flex;flex-wrap:wrap}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{flex-wrap:nowrap}}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{display:flex;flex:1;flex-basis:100%;flex-direction:column;margin-left:-14px;margin-right:-14px;min-width:0;overflow-wrap:break-word;padding-left:0;padding-right:0;word-break:break-word}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>div>.editor-inner-blocks{margin-bottom:-28px;margin-top:-28px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit{margin-bottom:0;margin-top:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit:before{left:0;right:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-right:-1px}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{flex-basis:50%;flex-grow:0;margin-left:14px;margin-right:14px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(odd){margin-left:32px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:first-child),.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(2n){margin-right:32px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:last-child){margin-left:32px}}.wp-block-columns [data-type="core/column"]{pointer-events:none}.wp-block-columns [data-type="core/column"].is-hovered>.editor-block-list__block-edit:before{content:none}.wp-block-columns [data-type="core/column"].is-hovered .editor-block-list__breadcrumb{display:none}:not(.components-disabled)>.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>*{pointer-events:all}.wp-block-cover-image .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-cover .editor-rich-text__tinymce[data-is-empty=true]:before{position:inherit}.wp-block-cover-image .editor-rich-text__tinymce:focus a[data-mce-selected],.wp-block-cover .editor-rich-text__tinymce:focus a[data-mce-selected]{background:hsla(0,0%,100%,.3);border-radius:2px;box-shadow:none;margin:0 -2px;padding:0 2px}.wp-block-cover-image.components-placeholder h2,.wp-block-cover.components-placeholder h2{color:inherit}.wp-block-cover-image.has-left-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-left-content .editor-rich-text__inline-toolbar{justify-content:flex-start}.wp-block-cover-image.has-right-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-right-content .editor-rich-text__inline-toolbar{justify-content:flex-end}.wp-block-cover-image.components-placeholder,.wp-block-cover.components-placeholder{background:rgba(139,139,150,.1);min-height:200px}.is-dark-theme .wp-block-cover-image.components-placeholder,.is-dark-theme .wp-block-cover.components-placeholder{background:hsla(0,0%,100%,.15)}[data-align=left] .wp-block-cover,[data-align=left] .wp-block-cover-image,[data-align=right] .wp-block-cover,[data-align=right] .wp-block-cover-image{max-width:305px;width:100%}.wp-block-embed{clear:both;margin:0}@media (min-width:600px){.wp-block-embed{min-width:360px}}.wp-block-embed.is-loading{align-items:center;background:#f8f9f9;display:flex;flex-direction:column;justify-content:center;min-height:200px;padding:1em;text-align:center}.wp-block-embed.is-loading p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.wp-block-file{align-items:center;display:flex;justify-content:space-between;margin-bottom:0}.wp-block-file.is-transient{animation:edit-post__loading-fade-animation 1.6s ease-in-out infinite}.wp-block-file .wp-block-file__content-wrapper{flex-grow:1}.wp-block-file .wp-block-file__textlink{display:inline-block;min-width:1em}.wp-block-file .wp-block-file__textlink:focus{box-shadow:none}.wp-block-file .wp-block-file__button-richtext-wrapper{display:inline-block;margin-right:.75em}.wp-block-file .wp-block-file__copy-url-button{margin-right:1em}.wp-block-freeform.block-library-rich-text__tinymce{overflow:hidden}.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{margin-right:0;padding-right:2.5em}.wp-block-freeform.block-library-rich-text__tinymce blockquote{border-right:4px solid #000;box-shadow:inset 0 0 0 0 #e2e4e7;margin:0;padding-right:1em}.wp-block-freeform.block-library-rich-text__tinymce pre{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;white-space:pre-wrap}.wp-block-freeform.block-library-rich-text__tinymce h1{font-size:2em}.wp-block-freeform.block-library-rich-text__tinymce h2{font-size:1.6em}.wp-block-freeform.block-library-rich-text__tinymce h3{font-size:1.4em}.wp-block-freeform.block-library-rich-text__tinymce h4{font-size:1.2em}.wp-block-freeform.block-library-rich-text__tinymce h5{font-size:1.1em}.wp-block-freeform.block-library-rich-text__tinymce h6{font-size:1em}.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:#007fac}.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected]{background:#e5f5fa;border-radius:2px;box-shadow:0 0 0 1px #e5f5fa;margin:0 -2px;padding:0 2px}.wp-block-freeform.block-library-rich-text__tinymce code{background:#f3f4f5;border-radius:2px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:2px}.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected]{background:#e8eaeb}.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{border:2px dashed #bababa;cursor:default;display:block;height:0;margin:15px auto;outline:0;width:96%}.wp-block-freeform.block-library-rich-text__tinymce .wpview-type-gallery:after{clear:both;content:"";display:table}.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{line-height:1;margin:auto -6px;overflow-x:hidden;padding:6px 0}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item{box-sizing:border-box;float:right;margin:0;padding:6px;text-align:center}.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.33333%}.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.66667%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item{width:14.28571%}.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.11111%}.wp-block-freeform.block-library-rich-text__tinymce .gallery img{border:none;height:auto;max-width:100%;padding:0}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover i,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active i{color:#23282d}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn i{font-style:normal}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-toolbar-grp>div{padding:1px 3px}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .editor-block-list__block-edit:before{outline:1px solid #e2e4e7}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"].is-hovered .editor-block-list__breadcrumb{display:none}div[data-type="core/freeform"] .editor-block-contextual-toolbar+div{margin-top:0;padding-top:0}.block-library-classic__toolbar{margin:0 -14px;padding:0 14px;position:-webkit-sticky;position:sticky;top:14px;transform:translateY(-14px);width:auto;z-index:10}@media (min-width:600px){.block-library-classic__toolbar{padding:0}}.block-library-classic__toolbar:empty{background:#f5f5f5;border-bottom:1px solid #e2e4e7;height:37px}.block-library-classic__toolbar:empty:before{color:#555d66;content:attr(data-placeholder);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:37px;padding:14px}.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 .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar{display:block}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-switcher__no-switcher-icon{display:none}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar{float:left;margin-left:23px;top:14px;transform:translateY(-13px)}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{border:none;margin-top:3px}}@media (min-width:600px) and (min-width:782px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{margin-top:0}}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar:before{border-right:1px solid #e2e4e7;content:"";display:block;margin-bottom:4px;margin-top:4px}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .components-toolbar{background:transparent;border:none}.editor-block-list__block[data-type="core/freeform"] .mce-container.mce-toolbar.mce-stack-layout-item{padding-left:36px}}ul.wp-block-gallery li{list-style-type:none}.blocks-gallery-item figure:not(.is-selected):focus{outline:none}.blocks-gallery-item .is-selected,.blocks-gallery-item img:focus{outline:4px solid #0085ba}body.admin-color-sunrise .blocks-gallery-item .is-selected,body.admin-color-sunrise .blocks-gallery-item img:focus{outline:4px solid #d1864a}body.admin-color-ocean .blocks-gallery-item .is-selected,body.admin-color-ocean .blocks-gallery-item img:focus{outline:4px solid #a3b9a2}body.admin-color-midnight .blocks-gallery-item .is-selected,body.admin-color-midnight .blocks-gallery-item img:focus{outline:4px solid #e14d43}body.admin-color-ectoplasm .blocks-gallery-item .is-selected,body.admin-color-ectoplasm .blocks-gallery-item img:focus{outline:4px solid #a7b656}body.admin-color-coffee .blocks-gallery-item .is-selected,body.admin-color-coffee .blocks-gallery-item img:focus{outline:4px solid #c2a68c}body.admin-color-blue .blocks-gallery-item .is-selected,body.admin-color-blue .blocks-gallery-item img:focus{outline:4px solid #82b4cb}body.admin-color-light .blocks-gallery-item .is-selected,body.admin-color-light .blocks-gallery-item img:focus{outline:4px solid #0085ba}.blocks-gallery-item .is-transient img{opacity:.3}.blocks-gallery-item .editor-rich-text{bottom:0;max-height:100%;overflow-y:auto;position:absolute;width:100%}.blocks-gallery-item .editor-rich-text figcaption:not([data-is-placeholder-visible=true]){overflow:hidden;position:relative}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-item .is-selected .editor-rich-text{left:0;margin-top:-4px;right:0}}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__inline-toolbar{top:0}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__tinymce{padding-top:48px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button,.blocks-gallery-item .components-form-file-upload{height:100%;width:100%}.blocks-gallery-item .components-button.block-library-gallery-add-item-button{border:none;border-radius:0;box-shadow:none;display:flex;flex-direction:column;justify-content:center;min-height:100px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button .dashicon{margin-top:10px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button:focus,.blocks-gallery-item .components-button.block-library-gallery-add-item-button:hover{border:1px solid #555d66}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce a{color:#fff}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce:focus a[data-mce-selected]{color:rgba(0,0,0,.2)}.block-library-gallery-item__inline-menu{background-color:#0085ba;display:inline-flex;left:-2px;padding:2px;position:absolute;top:-2px;z-index:20}body.admin-color-sunrise .block-library-gallery-item__inline-menu{background-color:#d1864a}body.admin-color-ocean .block-library-gallery-item__inline-menu{background-color:#a3b9a2}body.admin-color-midnight .block-library-gallery-item__inline-menu{background-color:#e14d43}body.admin-color-ectoplasm .block-library-gallery-item__inline-menu{background-color:#a7b656}body.admin-color-coffee .block-library-gallery-item__inline-menu{background-color:#c2a68c}body.admin-color-blue .block-library-gallery-item__inline-menu{background-color:#82b4cb}body.admin-color-light .block-library-gallery-item__inline-menu{background-color:#0085ba}.block-library-gallery-item__inline-menu .components-button,.block-library-gallery-item__inline-menu .components-button:focus,.block-library-gallery-item__inline-menu .components-button:hover{color:#fff}.blocks-gallery-item__remove{padding:0}.blocks-gallery-item__remove.components-button:focus{color:inherit}.blocks-gallery-item .components-spinner{margin-right:-9px;margin-top:-9px;position:absolute;right:50%;top:50%}.is-selected .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-selected .wp-block-gallery .blocks-gallery-item:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-item:nth-last-child(2){margin-left:0}.wp-block-heading h1,.wp-block-heading h2,.wp-block-heading h3,.wp-block-heading h4,.wp-block-heading h5,.wp-block-heading h6{color:inherit;margin:0}.wp-block-heading h1{font-size:2.44em}.wp-block-heading h2{font-size:1.95em}.wp-block-heading h3{font-size:1.56em}.wp-block-heading h4{font-size:1.25em}.wp-block-heading h5{font-size:1em}.wp-block-heading h6{font-size:.8em}.wp-block-heading h1.editor-rich-text__tinymce,.wp-block-heading h2.editor-rich-text__tinymce,.wp-block-heading h3.editor-rich-text__tinymce{line-height:1.4}.wp-block-heading h4.editor-rich-text__tinymce{line-height:1.5}.wp-block-html .editor-plain-text{border:1px solid #e2e4e7;border-radius:4px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:.8em 1em}.wp-block-html .editor-plain-text:focus{box-shadow:none}.wp-block-image{position:relative}.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{margin-right:-9px;margin-top:-9px;position:absolute;right:50%;top:50%}.wp-block-image .components-resizable-box__container{display:inline-block}.wp-block-image .components-resizable-box__container img{display:block;width:100%}.wp-block-image.is-focused .components-resizable-box__handle{display:block;z-index:1}.editor-block-list__block[data-type="core/image"][data-align=center] .wp-block-image,.editor-block-list__block[data-type="core/image"][data-align=center][data-resized=false] .wp-block-image>div{margin-left:auto;margin-right:auto}.edit-post-sidebar .block-library-image__dimensions{margin-bottom:1em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row{display:flex;justify-content:space-between}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-bottom:.5em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height input,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width input{line-height:1.25}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-left:5px}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height{margin-right:5px}.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{left:0;margin:-1px 0;position:absolute;right:0}@media (min-width:600px){.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{margin:-1px}}[data-type="core/image"][data-align=center] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=left] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=right] .editor-block-list__block-edit figure{display:table;margin:0}[data-type="core/image"][data-align=center] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=left] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=right] .editor-block-list__block-edit .editor-rich-text{caption-side:bottom;display:table-caption}[data-type="core/image"][data-align=full] figure img,[data-type="core/image"][data-align=wide] figure img{width:100%}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized{display:table;margin:0}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized .editor-rich-text{caption-side:bottom;display:table-caption}.wp-block-latest-comments.has-avatars .avatar{margin-left:10px}.wp-block-latest-comments__comment-excerpt p{font-size:14px;line-height:1.8;margin:5px 0 20px;padding-top:0}.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment{min-height:36px}.block-editor .wp-block-latest-posts{padding-right:2.5em}.block-editor .wp-block-latest-posts.is-grid{padding-right:0}.wp-block-media-text{grid-template-areas:"media-text-media media-text-content" "resizer resizer"}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media" "resizer resizer"}.wp-block-media-text .__resizable_base__{grid-area:resizer}.wp-block-media-text .editor-media-container__resizer{align-self:center;grid-area:media-text-media;width:100%!important}.wp-block-media-text .editor-inner-blocks{grid-area:media-text-content;padding:0 8%;text-align:initial;word-break:break-word}.wp-block-media-text>.editor-inner-blocks>.editor-block-list__layout>.editor-block-list__block{max-width:unset}figure.block-library-media-text__media-container{height:100%;margin:0;width:100%}.wp-block-media-text .block-library-media-text__media-container img,.wp-block-media-text .block-library-media-text__media-container video{vertical-align:middle;width:100%}.editor-media-container__resizer .components-resizable-box__handle{display:none}.wp-block-media-text.is-selected:not(.is-stacked-on-mobile) .editor-media-container__resizer .components-resizable-box__handle{display:block}@media (min-width:600px){.wp-block-media-text.is-selected.is-stacked-on-mobile .editor-media-container__resizer .components-resizable-box__handle{display:block}}.block-library-list .editor-rich-text__tinymce,.block-library-list .editor-rich-text__tinymce ol,.block-library-list .editor-rich-text__tinymce ul{margin-right:1.3em;padding-right:1.3em}.editor-block-list__block[data-type="core/more"]{max-width:100%;text-align:center}.block-editor .wp-block-more{display:block;text-align:center;white-space:nowrap}.block-editor .wp-block-more input[type=text]{background:#fff;border:none;border-radius:4px;box-shadow:none;color:#6c7781;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;margin:0;padding:6px 8px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap}.block-editor .wp-block-more input[type=text]:focus{box-shadow:none}.block-editor .wp-block-more:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.editor-visual-editor__block[data-type="core/nextpage"]{max-width:100%}.wp-block-nextpage{display:block;text-align:center;white-space:nowrap}.wp-block-nextpage>span{background:#fff;border-radius:4px;color:#6c7781;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;padding:6px 8px;position:relative;text-transform:uppercase}.wp-block-nextpage:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce.wp-block-paragraph{padding-left:36px}.wp-block-preformatted pre{white-space:pre-wrap}.editor-block-list__block[data-type="core/pullquote"][data-align=left] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=left] .editor-rich-text p,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .editor-rich-text p{font-size:20px}.wp-block-pullquote cite .editor-rich-text__tinymce[data-is-empty=true]:before{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px}.wp-block-pullquote .editor-rich-text__tinymce[data-is-empty=true]:before{right:50%;transform:translateX(50%);width:100%}.wp-block-pullquote blockquote>.block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-pullquote blockquote>.editor-rich-text p{font-size:28px;line-height:1.6}.wp-block-pullquote.is-style-solid-color{margin-left:0;margin-right:0}.wp-block-pullquote.is-style-solid-color blockquote>.editor-rich-text p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{font-style:normal;text-transform:none}.wp-block-pullquote .wp-block-pullquote__citation{color:inherit}.wp-block-quote{margin:0}.wp-block-quote__citation{font-size:13px}.wp-block-shortcode{background-color:#f8f9f9;display:flex;flex-direction:row;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:14px}.wp-block-shortcode label{align-items:center;display:flex;flex-shrink:0;font-weight:600;margin-left:8px;white-space:nowrap}.wp-block-shortcode .editor-plain-text{flex-grow:1}.wp-block-shortcode .dashicon{margin-left:8px}.block-library-spacer__resize-container.is-selected{background:#f3f4f5}.edit-post-visual-editor p.wp-block-subhead{color:#6c7781;font-size:1.1em;font-style:italic}.editor-block-list__block[data-type="core/table"][data-align=center] table,.editor-block-list__block[data-type="core/table"][data-align=left] table,.editor-block-list__block[data-type="core/table"][data-align=right] table{width:auto}.editor-block-list__block[data-type="core/table"][data-align=center]{text-align:initial}.editor-block-list__block[data-type="core/table"][data-align=center] table{margin:0 auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table td,.wp-block-table th{border:1px solid;padding:0}.wp-block-table td.is-selected,.wp-block-table th.is-selected{border-color:#00a0d2;border-style:double;box-shadow:inset 0 0 0 1px #00a0d2}.wp-block-table__cell-content{padding:.5em}.wp-block-text-columns .editor-rich-text__tinymce:focus{outline:1px solid #e2e4e7}.wp-block-verse pre,pre.wp-block-verse{color:#191e23;font-family:inherit;font-size:inherit;overflow:auto;padding:1em;white-space:nowrap}.editor-block-list__block[data-align=center]{text-align:center}.editor-video-poster-control .components-button{margin-left:8px}.editor-video-poster-control .components-button+.components-button{margin-top:1em}
\ No newline at end of file \ No newline at end of file
.block-editor ul.wp-block-archives{padding-left:2.5em}.wp-block-audio{margin:0}.editor-block-list__block[data-type="core/button"][data-align=center]{text-align:center}.editor-block-list__block[data-type="core/button"][data-align=right]{text-align:right}.wp-block-button{display:inline-block;margin-bottom:0;position:relative}.wp-block-button .editor-rich-text__tinymce.mce-content-body{cursor:text;line-height:24px}.wp-block-button:not(.has-text-color):not(.is-style-outline) .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{color:#fff}.wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{opacity:.8}.wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]{height:auto}.editor-block-preview__content .wp-block-button{max-width:100%}.editor-block-preview__content .wp-block-button .wp-block-button__link{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.block-library-button__inline-link{align-items:center;background:#fff;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4;width:374px}.block-library-button__inline-link .editor-url-input{width:auto}.block-library-button__inline-link .editor-url-input__suggestions{width:302px;z-index:6}.block-library-button__inline-link>.dashicon{width:36px}.block-library-button__inline-link .dashicon{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-webkit-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]:-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::placeholder{color:#8f98a1}[data-align=center] .block-library-button__inline-link{margin-left:auto;margin-right:auto}[data-align=right] .block-library-button__inline-link{margin-left:auto;margin-right:0}.block-editor .wp-block-categories ul{padding-left:2.5em}.block-editor .wp-block-categories ul ul{margin-top:6px}.wp-block-code .editor-plain-text{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px}.wp-block-code .editor-plain-text:focus{box-shadow:none}.components-tab-button{align-items:flex-end;background:none;border:0;color:#555d66;cursor:pointer;display:inline-flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:500;height:36px;margin:0;outline:none;padding:3px;position:relative}.components-tab-button.is-active,.components-tab-button.is-active:hover{color:#fff}.components-tab-button:disabled{cursor:default}.components-tab-button>span{border:1px solid transparent;box-sizing:content-box;height:28px;line-height:28px;padding:0 6px}.components-tab-button:focus>span,.components-tab-button:hover>span{color:#555d66}.components-tab-button:not(:disabled).is-active>span,.components-tab-button:not(:disabled):focus>span,.components-tab-button:not(:disabled):hover>span{border:1px solid #555d66}.components-tab-button.is-active:hover>span,.components-tab-button.is-active>span{background-color:#555d66;color:#fff}.wp-block-columns .editor-block-list__layout{margin-left:0;margin-right:0}.wp-block-columns .editor-block-list__layout .editor-block-list__block{max-width:none}.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:14px;padding-right:14px}@media (min-width:600px){.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:60px;padding-right:60px}}.wp-block-columns{display:block}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{display:flex;flex-wrap:wrap}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{flex-wrap:nowrap}}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{display:flex;flex:1;flex-basis:100%;flex-direction:column;margin-left:-14px;margin-right:-14px;min-width:0;overflow-wrap:break-word;padding-left:0;padding-right:0;word-break:break-word}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>div>.editor-inner-blocks{margin-bottom:-28px;margin-top:-28px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit{margin-bottom:0;margin-top:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit:before{left:0;right:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-left:-1px}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{flex-basis:50%;flex-grow:0;margin-left:14px;margin-right:14px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(odd){margin-right:32px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:first-child),.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(2n){margin-left:32px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:last-child){margin-right:32px}}.wp-block-columns [data-type="core/column"]{pointer-events:none}.wp-block-columns [data-type="core/column"].is-hovered>.editor-block-list__block-edit:before{content:none}.wp-block-columns [data-type="core/column"].is-hovered .editor-block-list__breadcrumb{display:none}:not(.components-disabled)>.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit .editor-block-list__layout>*{pointer-events:all}.wp-block-cover-image .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-cover .editor-rich-text__tinymce[data-is-empty=true]:before{position:inherit}.wp-block-cover-image .editor-rich-text__tinymce:focus a[data-mce-selected],.wp-block-cover .editor-rich-text__tinymce:focus a[data-mce-selected]{background:hsla(0,0%,100%,.3);border-radius:2px;box-shadow:none;margin:0 -2px;padding:0 2px}.wp-block-cover-image.components-placeholder h2,.wp-block-cover.components-placeholder h2{color:inherit}.wp-block-cover-image.has-left-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-left-content .editor-rich-text__inline-toolbar{justify-content:flex-start}.wp-block-cover-image.has-right-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-right-content .editor-rich-text__inline-toolbar{justify-content:flex-end}.wp-block-embed{clear:both;margin:0}@media (min-width:600px){.wp-block-embed{min-width:360px}}.wp-block-embed.is-loading{align-items:center;background:#f8f9f9;display:flex;flex-direction:column;justify-content:center;min-height:200px;padding:1em;text-align:center}.wp-block-embed.is-loading p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.wp-block-file{align-items:center;display:flex;justify-content:space-between;margin-bottom:0}.wp-block-file.is-transient{animation:edit-post__loading-fade-animation 1.6s ease-in-out infinite}.wp-block-file .wp-block-file__content-wrapper{flex-grow:1}.wp-block-file .wp-block-file__textlink{display:inline-block;min-width:1em}.wp-block-file .wp-block-file__textlink:focus{box-shadow:none}.wp-block-file .wp-block-file__button-richtext-wrapper{display:inline-block;margin-left:.75em}.wp-block-file .wp-block-file__copy-url-button{margin-left:1em}.wp-block-freeform.block-library-rich-text__tinymce{overflow:hidden}.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{margin-left:0;padding-left:2.5em}.wp-block-freeform.block-library-rich-text__tinymce blockquote{border-left:4px solid #000;box-shadow:inset 0 0 0 0 #e2e4e7;margin:0;padding-left:1em}.wp-block-freeform.block-library-rich-text__tinymce pre{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;white-space:pre-wrap}.wp-block-freeform.block-library-rich-text__tinymce h1{font-size:2em}.wp-block-freeform.block-library-rich-text__tinymce h2{font-size:1.6em}.wp-block-freeform.block-library-rich-text__tinymce h3{font-size:1.4em}.wp-block-freeform.block-library-rich-text__tinymce h4{font-size:1.2em}.wp-block-freeform.block-library-rich-text__tinymce h5{font-size:1.1em}.wp-block-freeform.block-library-rich-text__tinymce h6{font-size:1em}.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:#007fac}.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected]{background:#e5f5fa;border-radius:2px;box-shadow:0 0 0 1px #e5f5fa;margin:0 -2px;padding:0 2px}.wp-block-freeform.block-library-rich-text__tinymce code{background:#f3f4f5;border-radius:2px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:2px}.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected]{background:#e8eaeb}.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{border:2px dashed #bababa;cursor:default;display:block;height:0;margin:15px auto;outline:0;width:96%}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover i,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active i{color:#23282d}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn i{font-style:normal}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-toolbar-grp>div{padding:1px 3px}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .editor-block-list__block-edit:before{outline:1px solid #e2e4e7}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"].is-hovered .editor-block-list__breadcrumb{display:none}div[data-type="core/freeform"] .editor-block-contextual-toolbar+div{margin-top:0;padding-top:0}.block-library-classic__toolbar{margin:0 -14px;padding:0 14px;position:-webkit-sticky;position:sticky;top:14px;transform:translateY(-14px);width:auto;z-index:10}@media (min-width:600px){.block-library-classic__toolbar{padding:0}}.block-library-classic__toolbar:empty{background:#f5f5f5;border-bottom:1px solid #e2e4e7;height:37px}.block-library-classic__toolbar:empty:before{color:#555d66;content:attr(data-placeholder);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:37px;padding:14px}.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 .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar{display:block}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-switcher__no-switcher-icon{display:none}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar{float:right;margin-right:23px;top:14px;transform:translateY(-13px)}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{border:none;margin-top:3px}}@media (min-width:600px) and (min-width:782px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{margin-top:0}}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar:before{border-left:1px solid #e2e4e7;content:"";display:block;margin-bottom:4px;margin-top:4px}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .components-toolbar{background:transparent;border:none}.editor-block-list__block[data-type="core/freeform"] .mce-container.mce-toolbar.mce-stack-layout-item{padding-right:36px}}ul.wp-block-gallery li{list-style-type:none}.blocks-gallery-item figure:not(.is-selected):focus{outline:none}.blocks-gallery-item .is-selected,.blocks-gallery-item img:focus{outline:4px solid #0085ba}body.admin-color-sunrise .blocks-gallery-item .is-selected,body.admin-color-sunrise .blocks-gallery-item img:focus{outline:4px solid #d1864a}body.admin-color-ocean .blocks-gallery-item .is-selected,body.admin-color-ocean .blocks-gallery-item img:focus{outline:4px solid #a3b9a2}body.admin-color-midnight .blocks-gallery-item .is-selected,body.admin-color-midnight .blocks-gallery-item img:focus{outline:4px solid #e14d43}body.admin-color-ectoplasm .blocks-gallery-item .is-selected,body.admin-color-ectoplasm .blocks-gallery-item img:focus{outline:4px solid #a7b656}body.admin-color-coffee .blocks-gallery-item .is-selected,body.admin-color-coffee .blocks-gallery-item img:focus{outline:4px solid #c2a68c}body.admin-color-blue .blocks-gallery-item .is-selected,body.admin-color-blue .blocks-gallery-item img:focus{outline:4px solid #82b4cb}body.admin-color-light .blocks-gallery-item .is-selected,body.admin-color-light .blocks-gallery-item img:focus{outline:4px solid #0085ba}.blocks-gallery-item .is-transient img{opacity:.3}.blocks-gallery-item .editor-rich-text{bottom:0;max-height:100%;overflow-y:auto;position:absolute;width:100%}.blocks-gallery-item .editor-rich-text figcaption:not([data-is-placeholder-visible=true]){overflow:hidden;position:relative}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-item .is-selected .editor-rich-text{left:0;margin-top:-4px;right:0}}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__inline-toolbar{top:0}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__tinymce{padding-top:48px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button,.blocks-gallery-item .components-form-file-upload{height:100%;width:100%}.blocks-gallery-item .components-button.block-library-gallery-add-item-button{border:none;border-radius:0;box-shadow:none;display:flex;flex-direction:column;justify-content:center;min-height:100px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button .dashicon{margin-top:10px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button:focus,.blocks-gallery-item .components-button.block-library-gallery-add-item-button:hover{border:1px solid #555d66}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce a{color:#fff}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce:focus a[data-mce-selected]{color:rgba(0,0,0,.2)}.block-library-gallery-item__inline-menu{background-color:#0085ba;display:inline-flex;padding:2px;position:absolute;right:-2px;top:-2px;z-index:20}body.admin-color-sunrise .block-library-gallery-item__inline-menu{background-color:#d1864a}body.admin-color-ocean .block-library-gallery-item__inline-menu{background-color:#a3b9a2}body.admin-color-midnight .block-library-gallery-item__inline-menu{background-color:#e14d43}body.admin-color-ectoplasm .block-library-gallery-item__inline-menu{background-color:#a7b656}body.admin-color-coffee .block-library-gallery-item__inline-menu{background-color:#c2a68c}body.admin-color-blue .block-library-gallery-item__inline-menu{background-color:#82b4cb}body.admin-color-light .block-library-gallery-item__inline-menu{background-color:#0085ba}.block-library-gallery-item__inline-menu .components-button,.block-library-gallery-item__inline-menu .components-button:focus,.block-library-gallery-item__inline-menu .components-button:hover{color:#fff}.blocks-gallery-item__remove{padding:0}.blocks-gallery-item__remove.components-button:focus{color:inherit}.blocks-gallery-item .components-spinner{left:50%;margin-left:-9px;margin-top:-9px;position:absolute;top:50%}.is-selected .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-selected .wp-block-gallery .blocks-gallery-item:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-item:nth-last-child(2){margin-right:0}.wp-block-heading h1,.wp-block-heading h2,.wp-block-heading h3,.wp-block-heading h4,.wp-block-heading h5,.wp-block-heading h6{color:inherit;margin:0}.wp-block-heading h1{font-size:2.44em}.wp-block-heading h2{font-size:1.95em}.wp-block-heading h3{font-size:1.56em}.wp-block-heading h4{font-size:1.25em}.wp-block-heading h5{font-size:1em}.wp-block-heading h6{font-size:.8em}.wp-block-heading h1.editor-rich-text__tinymce,.wp-block-heading h2.editor-rich-text__tinymce,.wp-block-heading h3.editor-rich-text__tinymce{line-height:1.4}.wp-block-heading h4.editor-rich-text__tinymce{line-height:1.5}.wp-block-html .editor-plain-text{border:1px solid #e2e4e7;border-radius:4px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:.8em 1em}.wp-block-html .editor-plain-text:focus{box-shadow:none}.wp-block-image{position:relative}.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{left:50%;margin-left:-9px;margin-top:-9px;position:absolute;top:50%}.wp-block-image .components-resizable-box__container{display:inline-block}.wp-block-image .components-resizable-box__container img{display:block;width:100%}.wp-block-image.is-focused .components-resizable-box__handle{display:block;z-index:1}.editor-block-list__block[data-type="core/image"][data-align=center] .wp-block-image,.editor-block-list__block[data-type="core/image"][data-align=center][data-resized=false] .wp-block-image>div{margin-left:auto;margin-right:auto}.edit-post-sidebar .block-library-image__dimensions{margin-bottom:1em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row{display:flex;justify-content:space-between}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-bottom:.5em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height input,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width input{line-height:1.25}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-right:5px}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height{margin-left:5px}.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{left:0;margin:-1px 0;position:absolute;right:0}@media (min-width:600px){.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{margin:-1px}}[data-type="core/image"][data-align=center] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=left] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=right] .editor-block-list__block-edit figure{display:table;margin:0}[data-type="core/image"][data-align=center] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=left] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=right] .editor-block-list__block-edit .editor-rich-text{caption-side:bottom;display:table-caption}[data-type="core/image"][data-align=full] figure img,[data-type="core/image"][data-align=wide] figure img{width:100%}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized{display:table;margin:0}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized .editor-rich-text{caption-side:bottom;display:table-caption}.wp-block-latest-comments.has-avatars .avatar{margin-right:10px}.wp-block-latest-comments__comment-excerpt p{font-size:14px;line-height:1.8;margin:5px 0 20px;padding-top:0}.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment{min-height:36px}.block-editor .wp-block-latest-posts{padding-left:2.5em}.block-editor .wp-block-latest-posts.is-grid{padding-left:0}.wp-block-media-text{grid-template-areas:"media-text-media media-text-content" "resizer resizer"}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media" "resizer resizer"}.wp-block-media-text .__resizable_base__{grid-area:resizer}.wp-block-media-text .editor-media-container__resizer{align-self:center;grid-area:media-text-media;width:100%!important}.wp-block-media-text .editor-inner-blocks{grid-area:media-text-content;padding:0 8%;text-align:initial;word-break:break-word}.wp-block-media-text>.editor-inner-blocks>.editor-block-list__layout>.editor-block-list__block{max-width:unset}figure.block-library-media-text__media-container{height:100%;margin:0;width:100%}.wp-block-media-text .block-library-media-text__media-container img,.wp-block-media-text .block-library-media-text__media-container video{vertical-align:middle;width:100%}.editor-media-container__resizer .components-resizable-box__handle{display:none}.wp-block-media-text.is-selected:not(.is-stacked-on-mobile) .editor-media-container__resizer .components-resizable-box__handle{display:block}@media (min-width:600px){.wp-block-media-text.is-selected.is-stacked-on-mobile .editor-media-container__resizer .components-resizable-box__handle{display:block}}.block-library-list .editor-rich-text__tinymce,.block-library-list .editor-rich-text__tinymce ol,.block-library-list .editor-rich-text__tinymce ul{margin-left:1.3em;padding-left:1.3em}.editor-block-list__block[data-type="core/more"]{max-width:100%;text-align:center}.block-editor .wp-block-more{display:block;text-align:center;white-space:nowrap}.block-editor .wp-block-more input[type=text]{background:#fff;border:none;border-radius:4px;box-shadow:none;color:#6c7781;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;margin:0;padding:6px 8px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap}.block-editor .wp-block-more input[type=text]:focus{box-shadow:none}.block-editor .wp-block-more:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.editor-visual-editor__block[data-type="core/nextpage"]{max-width:100%}.wp-block-nextpage{display:block;text-align:center;white-space:nowrap}.wp-block-nextpage>span{background:#fff;border-radius:4px;color:#6c7781;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;padding:6px 8px;position:relative;text-transform:uppercase}.wp-block-nextpage:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.wp-block-preformatted pre{white-space:pre-wrap}.editor-block-list__block[data-type="core/pullquote"][data-align=left] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=left] .editor-rich-text p,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .editor-rich-text p{font-size:20px}.wp-block-pullquote cite .editor-rich-text__tinymce[data-is-empty=true]:before{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px}.wp-block-pullquote .editor-rich-text__tinymce[data-is-empty=true]:before{left:50%;transform:translateX(-50%);width:100%}.wp-block-pullquote blockquote>.block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-pullquote blockquote>.editor-rich-text p{font-size:28px;line-height:1.6}.wp-block-pullquote.is-style-solid-color{margin-left:0;margin-right:0}.wp-block-pullquote.is-style-solid-color blockquote>.editor-rich-text p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{font-style:normal;text-transform:none}.wp-block-pullquote .wp-block-pullquote__citation{color:inherit}.wp-block-quote{margin:0}.wp-block-quote__citation{font-size:13px}.wp-block-shortcode{background-color:#f8f9f9;display:flex;flex-direction:row;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:14px}.wp-block-shortcode label{align-items:center;display:flex;flex-shrink:0;font-weight:600;margin-right:8px;white-space:nowrap}.wp-block-shortcode .editor-plain-text{flex-grow:1}.wp-block-shortcode .dashicon{margin-right:8px}.block-library-spacer__resize-container.is-selected{background:#f3f4f5}.edit-post-visual-editor p.wp-block-subhead{color:#6c7781;font-size:1.1em;font-style:italic}.editor-block-list__block[data-type="core/table"][data-align=center] table,.editor-block-list__block[data-type="core/table"][data-align=left] table,.editor-block-list__block[data-type="core/table"][data-align=right] table{width:auto}.editor-block-list__block[data-type="core/table"][data-align=center]{text-align:initial}.editor-block-list__block[data-type="core/table"][data-align=center] table{margin:0 auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table td,.wp-block-table th{border:1px solid;padding:0}.wp-block-table td.is-selected,.wp-block-table th.is-selected{border-color:#00a0d2;border-style:double;box-shadow:inset 0 0 0 1px #00a0d2}.wp-block-table__cell-content{padding:.5em}.wp-block-text-columns .editor-rich-text__tinymce:focus{outline:1px solid #e2e4e7}.wp-block-verse pre,pre.wp-block-verse{color:#191e23;font-family:inherit;font-size:inherit;overflow:auto;padding:1em;white-space:nowrap}.editor-block-list__block[data-align=center]{text-align:center}.editor-video-poster-control .components-button{margin-right:8px}.editor-video-poster-control .components-button+.components-button{margin-top:1em} .block-editor ul.wp-block-archives{padding-left:2.5em}.wp-block-audio{margin:0}.editor-block-list__block[data-type="core/button"][data-align=center]{text-align:center}.editor-block-list__block[data-type="core/button"][data-align=right]{text-align:right}.wp-block-button{display:inline-block;margin-bottom:0;position:relative}.wp-block-button .editor-rich-text__tinymce.mce-content-body{cursor:text}.wp-block-button:not(.has-text-color):not(.is-style-outline) .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{color:#fff}.wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce{opacity:.8}.editor-block-preview__content .wp-block-button{max-width:100%}.editor-block-preview__content .wp-block-button .editor-rich-text__tinymce[data-is-placeholder-visible=true]{height:auto}.editor-block-preview__content .wp-block-button .wp-block-button__link{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.block-library-button__inline-link{align-items:center;background:#fff;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4;width:374px}.block-library-button__inline-link .editor-url-input{width:auto}.block-library-button__inline-link .editor-url-input__suggestions{width:302px;z-index:6}.block-library-button__inline-link>.dashicon{width:36px}.block-library-button__inline-link .dashicon{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-webkit-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]:-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::-ms-input-placeholder{color:#8f98a1}.block-library-button__inline-link .editor-url-input input[type=text]::placeholder{color:#8f98a1}[data-align=center] .block-library-button__inline-link{margin-left:auto;margin-right:auto}[data-align=right] .block-library-button__inline-link{margin-left:auto;margin-right:0}.block-editor .wp-block-categories ul{padding-left:2.5em}.block-editor .wp-block-categories ul ul{margin-top:6px}.wp-block-code .editor-plain-text{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px}.wp-block-code .editor-plain-text:focus{box-shadow:none}.components-tab-button{align-items:flex-end;background:none;border:0;color:#555d66;cursor:pointer;display:inline-flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:500;height:36px;margin:0;outline:none;padding:3px;position:relative}.components-tab-button.is-active,.components-tab-button.is-active:hover{color:#fff}.components-tab-button:disabled{cursor:default}.components-tab-button>span{border:1px solid transparent;box-sizing:content-box;height:28px;line-height:28px;padding:0 6px}.components-tab-button:focus>span,.components-tab-button:hover>span{color:#555d66}.components-tab-button:not(:disabled).is-active>span,.components-tab-button:not(:disabled):focus>span,.components-tab-button:not(:disabled):hover>span{border:1px solid #555d66}.components-tab-button.is-active:hover>span,.components-tab-button.is-active>span{background-color:#555d66;color:#fff}.wp-block-columns .editor-block-list__layout{margin-left:0;margin-right:0}.wp-block-columns .editor-block-list__layout .editor-block-list__block{max-width:none}.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:14px;padding-right:14px}@media (min-width:600px){.editor-block-list__block[data-align=full] .wp-block-columns>.editor-inner-blocks{padding-left:60px;padding-right:60px}}.wp-block-columns{display:block}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{display:flex;flex-wrap:wrap}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout{flex-wrap:nowrap}}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{display:flex;flex:1;flex-basis:100%;flex-direction:column;margin-left:-14px;margin-right:-14px;min-width:0;overflow-wrap:break-word;padding-left:0;padding-right:0;word-break:break-word}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>div>.editor-inner-blocks{margin-bottom:-28px;margin-top:-28px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit{margin-bottom:0;margin-top:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit:before{left:0;right:0}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-left:-1px}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]{flex-basis:50%;flex-grow:0;margin-left:14px;margin-right:14px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(odd){margin-right:32px}}@media (min-width:600px){.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:first-child),.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:nth-child(2n){margin-left:32px}.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]:not(:last-child){margin-right:32px}}.wp-block-columns [data-type="core/column"]{pointer-events:none}.wp-block-columns [data-type="core/column"].is-hovered>.editor-block-list__block-edit:before{content:none}.wp-block-columns [data-type="core/column"].is-hovered .editor-block-list__breadcrumb{display:none}:not(.components-disabled)>.wp-block-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="core/column"]>.editor-block-list__block-edit>*{pointer-events:all}.wp-block-cover-image .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-cover .editor-rich-text__tinymce[data-is-empty=true]:before{position:inherit}.wp-block-cover-image .editor-rich-text__tinymce:focus a[data-mce-selected],.wp-block-cover .editor-rich-text__tinymce:focus a[data-mce-selected]{background:hsla(0,0%,100%,.3);border-radius:2px;box-shadow:none;margin:0 -2px;padding:0 2px}.wp-block-cover-image.components-placeholder h2,.wp-block-cover.components-placeholder h2{color:inherit}.wp-block-cover-image.has-left-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-left-content .editor-rich-text__inline-toolbar{justify-content:flex-start}.wp-block-cover-image.has-right-content .editor-rich-text__inline-toolbar,.wp-block-cover.has-right-content .editor-rich-text__inline-toolbar{justify-content:flex-end}.wp-block-cover-image.components-placeholder,.wp-block-cover.components-placeholder{background:rgba(139,139,150,.1);min-height:200px}.is-dark-theme .wp-block-cover-image.components-placeholder,.is-dark-theme .wp-block-cover.components-placeholder{background:hsla(0,0%,100%,.15)}[data-align=left] .wp-block-cover,[data-align=left] .wp-block-cover-image,[data-align=right] .wp-block-cover,[data-align=right] .wp-block-cover-image{max-width:305px;width:100%}.wp-block-embed{clear:both;margin:0}@media (min-width:600px){.wp-block-embed{min-width:360px}}.wp-block-embed.is-loading{align-items:center;background:#f8f9f9;display:flex;flex-direction:column;justify-content:center;min-height:200px;padding:1em;text-align:center}.wp-block-embed.is-loading p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.wp-block-file{align-items:center;display:flex;justify-content:space-between;margin-bottom:0}.wp-block-file.is-transient{animation:edit-post__loading-fade-animation 1.6s ease-in-out infinite}.wp-block-file .wp-block-file__content-wrapper{flex-grow:1}.wp-block-file .wp-block-file__textlink{display:inline-block;min-width:1em}.wp-block-file .wp-block-file__textlink:focus{box-shadow:none}.wp-block-file .wp-block-file__button-richtext-wrapper{display:inline-block;margin-left:.75em}.wp-block-file .wp-block-file__copy-url-button{margin-left:1em}.wp-block-freeform.block-library-rich-text__tinymce{overflow:hidden}.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{margin-left:0;padding-left:2.5em}.wp-block-freeform.block-library-rich-text__tinymce blockquote{border-left:4px solid #000;box-shadow:inset 0 0 0 0 #e2e4e7;margin:0;padding-left:1em}.wp-block-freeform.block-library-rich-text__tinymce pre{color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;white-space:pre-wrap}.wp-block-freeform.block-library-rich-text__tinymce h1{font-size:2em}.wp-block-freeform.block-library-rich-text__tinymce h2{font-size:1.6em}.wp-block-freeform.block-library-rich-text__tinymce h3{font-size:1.4em}.wp-block-freeform.block-library-rich-text__tinymce h4{font-size:1.2em}.wp-block-freeform.block-library-rich-text__tinymce h5{font-size:1.1em}.wp-block-freeform.block-library-rich-text__tinymce h6{font-size:1em}.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:#007fac}.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected]{background:#e5f5fa;border-radius:2px;box-shadow:0 0 0 1px #e5f5fa;margin:0 -2px;padding:0 2px}.wp-block-freeform.block-library-rich-text__tinymce code{background:#f3f4f5;border-radius:2px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:2px}.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected]{background:#e8eaeb}.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{border:2px dashed #bababa;cursor:default;display:block;height:0;margin:15px auto;outline:0;width:96%}.wp-block-freeform.block-library-rich-text__tinymce .wpview-type-gallery:after{clear:both;content:"";display:table}.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{line-height:1;margin:auto -6px;overflow-x:hidden;padding:6px 0}.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item{box-sizing:border-box;float:left;margin:0;padding:6px;text-align:center}.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.33333%}.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.66667%}.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item{width:14.28571%}.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.11111%}.wp-block-freeform.block-library-rich-text__tinymce .gallery img{border:none;height:auto;max-width:100%;padding:0}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active:hover i,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active button,.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn.mce-active i{color:#23282d}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-btn i{font-style:normal}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .mce-toolbar-grp>div{padding:1px 3px}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"] .editor-block-list__block-edit:before{outline:1px solid #e2e4e7}.editor-block-list__layout .editor-block-list__block[data-type="core/freeform"].is-hovered .editor-block-list__breadcrumb{display:none}div[data-type="core/freeform"] .editor-block-contextual-toolbar+div{margin-top:0;padding-top:0}.block-library-classic__toolbar{margin:0 -14px;padding:0 14px;position:-webkit-sticky;position:sticky;top:14px;transform:translateY(-14px);width:auto;z-index:10}@media (min-width:600px){.block-library-classic__toolbar{padding:0}}.block-library-classic__toolbar:empty{background:#f5f5f5;border-bottom:1px solid #e2e4e7;height:37px}.block-library-classic__toolbar:empty:before{color:#555d66;content:attr(data-placeholder);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:37px;padding:14px}.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 .mce-toolbar:not(:first-child){display:none}.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar{display:block}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-switcher__no-switcher-icon{display:none}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar{float:right;margin-right:23px;top:14px;transform:translateY(-13px)}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{border:none;margin-top:3px}}@media (min-width:600px) and (min-width:782px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar{margin-top:0}}@media (min-width:600px){.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .editor-block-toolbar:before{border-left:1px solid #e2e4e7;content:"";display:block;margin-bottom:4px;margin-top:4px}.editor-block-list__block[data-type="core/freeform"] .editor-block-contextual-toolbar .components-toolbar{background:transparent;border:none}.editor-block-list__block[data-type="core/freeform"] .mce-container.mce-toolbar.mce-stack-layout-item{padding-right:36px}}ul.wp-block-gallery li{list-style-type:none}.blocks-gallery-item figure:not(.is-selected):focus{outline:none}.blocks-gallery-item .is-selected,.blocks-gallery-item img:focus{outline:4px solid #0085ba}body.admin-color-sunrise .blocks-gallery-item .is-selected,body.admin-color-sunrise .blocks-gallery-item img:focus{outline:4px solid #d1864a}body.admin-color-ocean .blocks-gallery-item .is-selected,body.admin-color-ocean .blocks-gallery-item img:focus{outline:4px solid #a3b9a2}body.admin-color-midnight .blocks-gallery-item .is-selected,body.admin-color-midnight .blocks-gallery-item img:focus{outline:4px solid #e14d43}body.admin-color-ectoplasm .blocks-gallery-item .is-selected,body.admin-color-ectoplasm .blocks-gallery-item img:focus{outline:4px solid #a7b656}body.admin-color-coffee .blocks-gallery-item .is-selected,body.admin-color-coffee .blocks-gallery-item img:focus{outline:4px solid #c2a68c}body.admin-color-blue .blocks-gallery-item .is-selected,body.admin-color-blue .blocks-gallery-item img:focus{outline:4px solid #82b4cb}body.admin-color-light .blocks-gallery-item .is-selected,body.admin-color-light .blocks-gallery-item img:focus{outline:4px solid #0085ba}.blocks-gallery-item .is-transient img{opacity:.3}.blocks-gallery-item .editor-rich-text{bottom:0;max-height:100%;overflow-y:auto;position:absolute;width:100%}.blocks-gallery-item .editor-rich-text figcaption:not([data-is-placeholder-visible=true]){overflow:hidden;position:relative}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-item .is-selected .editor-rich-text{left:0;margin-top:-4px;right:0}}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__inline-toolbar{top:0}.blocks-gallery-item .is-selected .editor-rich-text .editor-rich-text__tinymce{padding-top:48px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button,.blocks-gallery-item .components-form-file-upload{height:100%;width:100%}.blocks-gallery-item .components-button.block-library-gallery-add-item-button{border:none;border-radius:0;box-shadow:none;display:flex;flex-direction:column;justify-content:center;min-height:100px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button .dashicon{margin-top:10px}.blocks-gallery-item .components-button.block-library-gallery-add-item-button:focus,.blocks-gallery-item .components-button.block-library-gallery-add-item-button:hover{border:1px solid #555d66}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce a{color:#fff}.blocks-gallery-item .editor-rich-text .editor-rich-text__tinymce:focus a[data-mce-selected]{color:rgba(0,0,0,.2)}.block-library-gallery-item__inline-menu{background-color:#0085ba;display:inline-flex;padding:2px;position:absolute;right:-2px;top:-2px;z-index:20}body.admin-color-sunrise .block-library-gallery-item__inline-menu{background-color:#d1864a}body.admin-color-ocean .block-library-gallery-item__inline-menu{background-color:#a3b9a2}body.admin-color-midnight .block-library-gallery-item__inline-menu{background-color:#e14d43}body.admin-color-ectoplasm .block-library-gallery-item__inline-menu{background-color:#a7b656}body.admin-color-coffee .block-library-gallery-item__inline-menu{background-color:#c2a68c}body.admin-color-blue .block-library-gallery-item__inline-menu{background-color:#82b4cb}body.admin-color-light .block-library-gallery-item__inline-menu{background-color:#0085ba}.block-library-gallery-item__inline-menu .components-button,.block-library-gallery-item__inline-menu .components-button:focus,.block-library-gallery-item__inline-menu .components-button:hover{color:#fff}.blocks-gallery-item__remove{padding:0}.blocks-gallery-item__remove.components-button:focus{color:inherit}.blocks-gallery-item .components-spinner{left:50%;margin-left:-9px;margin-top:-9px;position:absolute;top:50%}.is-selected .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-selected .wp-block-gallery .blocks-gallery-item:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-image:nth-last-child(2),.is-typing .wp-block-gallery .blocks-gallery-item:nth-last-child(2){margin-right:0}.wp-block-heading h1,.wp-block-heading h2,.wp-block-heading h3,.wp-block-heading h4,.wp-block-heading h5,.wp-block-heading h6{color:inherit;margin:0}.wp-block-heading h1{font-size:2.44em}.wp-block-heading h2{font-size:1.95em}.wp-block-heading h3{font-size:1.56em}.wp-block-heading h4{font-size:1.25em}.wp-block-heading h5{font-size:1em}.wp-block-heading h6{font-size:.8em}.wp-block-heading h1.editor-rich-text__tinymce,.wp-block-heading h2.editor-rich-text__tinymce,.wp-block-heading h3.editor-rich-text__tinymce{line-height:1.4}.wp-block-heading h4.editor-rich-text__tinymce{line-height:1.5}.wp-block-html .editor-plain-text{border:1px solid #e2e4e7;border-radius:4px;color:#23282d;font-family:Menlo,Consolas,monaco,monospace;font-size:14px;padding:.8em 1em}.wp-block-html .editor-plain-text:focus{box-shadow:none}.wp-block-image{position:relative}.wp-block-image.is-transient img{opacity:.3}.wp-block-image figcaption img{display:inline}.wp-block-image .components-spinner{left:50%;margin-left:-9px;margin-top:-9px;position:absolute;top:50%}.wp-block-image .components-resizable-box__container{display:inline-block}.wp-block-image .components-resizable-box__container img{display:block;width:100%}.wp-block-image.is-focused .components-resizable-box__handle{display:block;z-index:1}.editor-block-list__block[data-type="core/image"][data-align=center] .wp-block-image,.editor-block-list__block[data-type="core/image"][data-align=center][data-resized=false] .wp-block-image>div{margin-left:auto;margin-right:auto}.edit-post-sidebar .block-library-image__dimensions{margin-bottom:1em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row{display:flex;justify-content:space-between}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-bottom:.5em}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height input,.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width input{line-height:1.25}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width{margin-right:5px}.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height{margin-left:5px}.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{left:0;margin:-1px 0;position:absolute;right:0}@media (min-width:600px){.editor-block-list__block[data-type="core/image"] .editor-block-toolbar .editor-url-input__button-modal{margin:-1px}}[data-type="core/image"][data-align=center] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=left] .editor-block-list__block-edit figure,[data-type="core/image"][data-align=right] .editor-block-list__block-edit figure{display:table;margin:0}[data-type="core/image"][data-align=center] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=left] .editor-block-list__block-edit .editor-rich-text,[data-type="core/image"][data-align=right] .editor-block-list__block-edit .editor-rich-text{caption-side:bottom;display:table-caption}[data-type="core/image"][data-align=full] figure img,[data-type="core/image"][data-align=wide] figure img{width:100%}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized{display:table;margin:0}[data-type="core/image"] .editor-block-list__block-edit figure.is-resized .editor-rich-text{caption-side:bottom;display:table-caption}.wp-block-latest-comments.has-avatars .avatar{margin-right:10px}.wp-block-latest-comments__comment-excerpt p{font-size:14px;line-height:1.8;margin:5px 0 20px;padding-top:0}.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment{min-height:36px}.block-editor .wp-block-latest-posts{padding-left:2.5em}.block-editor .wp-block-latest-posts.is-grid{padding-left:0}.wp-block-media-text{grid-template-areas:"media-text-media media-text-content" "resizer resizer"}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media" "resizer resizer"}.wp-block-media-text .__resizable_base__{grid-area:resizer}.wp-block-media-text .editor-media-container__resizer{align-self:center;grid-area:media-text-media;width:100%!important}.wp-block-media-text .editor-inner-blocks{grid-area:media-text-content;padding:0 8%;text-align:initial;word-break:break-word}.wp-block-media-text>.editor-inner-blocks>.editor-block-list__layout>.editor-block-list__block{max-width:unset}figure.block-library-media-text__media-container{height:100%;margin:0;width:100%}.wp-block-media-text .block-library-media-text__media-container img,.wp-block-media-text .block-library-media-text__media-container video{vertical-align:middle;width:100%}.editor-media-container__resizer .components-resizable-box__handle{display:none}.wp-block-media-text.is-selected:not(.is-stacked-on-mobile) .editor-media-container__resizer .components-resizable-box__handle{display:block}@media (min-width:600px){.wp-block-media-text.is-selected.is-stacked-on-mobile .editor-media-container__resizer .components-resizable-box__handle{display:block}}.block-library-list .editor-rich-text__tinymce,.block-library-list .editor-rich-text__tinymce ol,.block-library-list .editor-rich-text__tinymce ul{margin-left:1.3em;padding-left:1.3em}.editor-block-list__block[data-type="core/more"]{max-width:100%;text-align:center}.block-editor .wp-block-more{display:block;text-align:center;white-space:nowrap}.block-editor .wp-block-more input[type=text]{background:#fff;border:none;border-radius:4px;box-shadow:none;color:#6c7781;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;margin:0;padding:6px 8px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap}.block-editor .wp-block-more input[type=text]:focus{box-shadow:none}.block-editor .wp-block-more:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.editor-visual-editor__block[data-type="core/nextpage"]{max-width:100%}.wp-block-nextpage{display:block;text-align:center;white-space:nowrap}.wp-block-nextpage>span{background:#fff;border-radius:4px;color:#6c7781;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;height:24px;padding:6px 8px;position:relative;text-transform:uppercase}.wp-block-nextpage:before{border-top:3px dashed #ccd0d4;content:"";left:0;position:absolute;right:0;top:50%}.editor-rich-text__tinymce[data-is-placeholder-visible=true]+.editor-rich-text__tinymce.wp-block-paragraph{padding-right:36px}.wp-block-preformatted pre{white-space:pre-wrap}.editor-block-list__block[data-type="core/pullquote"][data-align=left] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=left] .editor-rich-text p,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.editor-block-list__block[data-type="core/pullquote"][data-align=right] .editor-rich-text p{font-size:20px}.wp-block-pullquote cite .editor-rich-text__tinymce[data-is-empty=true]:before{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px}.wp-block-pullquote .editor-rich-text__tinymce[data-is-empty=true]:before{left:50%;transform:translateX(-50%);width:100%}.wp-block-pullquote blockquote>.block-library-pullquote__content .editor-rich-text__tinymce[data-is-empty=true]:before,.wp-block-pullquote blockquote>.editor-rich-text p{font-size:28px;line-height:1.6}.wp-block-pullquote.is-style-solid-color{margin-left:0;margin-right:0}.wp-block-pullquote.is-style-solid-color blockquote>.editor-rich-text p{font-size:32px}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation{font-style:normal;text-transform:none}.wp-block-pullquote .wp-block-pullquote__citation{color:inherit}.wp-block-quote{margin:0}.wp-block-quote__citation{font-size:13px}.wp-block-shortcode{background-color:#f8f9f9;display:flex;flex-direction:row;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:14px}.wp-block-shortcode label{align-items:center;display:flex;flex-shrink:0;font-weight:600;margin-right:8px;white-space:nowrap}.wp-block-shortcode .editor-plain-text{flex-grow:1}.wp-block-shortcode .dashicon{margin-right:8px}.block-library-spacer__resize-container.is-selected{background:#f3f4f5}.edit-post-visual-editor p.wp-block-subhead{color:#6c7781;font-size:1.1em;font-style:italic}.editor-block-list__block[data-type="core/table"][data-align=center] table,.editor-block-list__block[data-type="core/table"][data-align=left] table,.editor-block-list__block[data-type="core/table"][data-align=right] table{width:auto}.editor-block-list__block[data-type="core/table"][data-align=center]{text-align:initial}.editor-block-list__block[data-type="core/table"][data-align=center] table{margin:0 auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table td,.wp-block-table th{border:1px solid;padding:0}.wp-block-table td.is-selected,.wp-block-table th.is-selected{border-color:#00a0d2;border-style:double;box-shadow:inset 0 0 0 1px #00a0d2}.wp-block-table__cell-content{padding:.5em}.wp-block-text-columns .editor-rich-text__tinymce:focus{outline:1px solid #e2e4e7}.wp-block-verse pre,pre.wp-block-verse{color:#191e23;font-family:inherit;font-size:inherit;overflow:auto;padding:1em;white-space:nowrap}.editor-block-list__block[data-align=center]{text-align:center}.editor-video-poster-control .components-button{margin-right:8px}.editor-video-poster-control .components-button+.components-button{margin-top:1em}
\ No newline at end of file \ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
.wp-block-audio figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-audio audio{min-width:300px;width:100%}.editor-block-list__layout .reusable-block-edit-panel{align-items:center;background:#f8f9f9;color:#555d66;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;margin:0 -14px;padding:8px 14px;position:relative;top:-14px;z-index:7}.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel{margin:0 -14px;padding:8px 14px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner{margin:0 5px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info{margin-left:auto}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label{font-weight:600;margin-left:8px;white-space:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{flex:1 1 100%;font-size:14px;height:30px;margin:4px 0 8px}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{flex-shrink:0}@media (min-width:960px){.editor-block-list__layout .reusable-block-edit-panel{flex-wrap:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{margin:0}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{margin:0 5px 0 0}}.editor-block-list__layout .reusable-block-indicator{background:#fff;border-bottom:1px dashed #e2e4e7;border-right:1px dashed #e2e4e7;color:#555d66;height:30px;left:-14px;padding:4px;position:absolute;top:-14px;width:30px;z-index:1}.wp-block-button{color:#fff;margin-bottom:1.5em}.wp-block-button.aligncenter{text-align:center}.wp-block-button.alignright{text-align:right}.wp-block-button__link{background-color:#32373c;border:none;border-radius:23px;box-shadow:none;color:inherit;cursor:pointer;display:inline-block;font-size:18px;line-height:24px;margin:0;padding:11px 24px;text-align:center;text-decoration:none;white-space:normal;word-break:break-all}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover{color:inherit}.is-style-squared .wp-block-button__link{border-radius:0}.is-style-outline{color:#32373c}.is-style-outline .wp-block-button__link{background:transparent;border:2px solid currentcolor}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-columns{display:flex;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-column{flex:1;flex-basis:100%;margin-bottom:1em;min-width:0;overflow-wrap:break-word;word-break:break-word}@media (min-width:600px){.wp-block-column{flex-basis:50%;flex-grow:0}}@media (min-width:600px){.wp-block-column:nth-child(odd){margin-left:32px}.wp-block-column:not(:first-child),.wp-block-column:nth-child(2n){margin-right:32px}.wp-block-column:not(:last-child){margin-left:32px}}.wp-block-cover,.wp-block-cover-image{align-items:center;background-color:#000;background-position:50%;background-size:cover;display:flex;justify-content:center;margin:0 0 1.5em;min-height:430px;overflow:hidden;position:relative;width:100%}.wp-block-cover-image.has-left-content,.wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover-image.has-left-content .wp-block-cover-text,.wp-block-cover-image.has-left-content h2,.wp-block-cover.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,.wp-block-cover.has-left-content h2{margin-right:0;text-align:right}.wp-block-cover-image.has-right-content,.wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover-image.has-right-content .wp-block-cover-text,.wp-block-cover-image.has-right-content h2,.wp-block-cover.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,.wp-block-cover.has-right-content h2{margin-left:0;text-align:left}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover-image .wp-block-cover-text,.wp-block-cover-image h2,.wp-block-cover .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,.wp-block-cover h2{color:#fff;font-size:2em;line-height:1.25;margin-bottom:0;max-width:610px;padding:14px;text-align:center;z-index:1}.wp-block-cover-image .wp-block-cover-image-text a,.wp-block-cover-image .wp-block-cover-image-text a:active,.wp-block-cover-image .wp-block-cover-image-text a:focus,.wp-block-cover-image .wp-block-cover-image-text a:hover,.wp-block-cover-image .wp-block-cover-text a,.wp-block-cover-image .wp-block-cover-text a:active,.wp-block-cover-image .wp-block-cover-text a:focus,.wp-block-cover-image .wp-block-cover-text a:hover,.wp-block-cover-image h2 a,.wp-block-cover-image h2 a:active,.wp-block-cover-image h2 a:focus,.wp-block-cover-image h2 a:hover,.wp-block-cover .wp-block-cover-image-text a,.wp-block-cover .wp-block-cover-image-text a:active,.wp-block-cover .wp-block-cover-image-text a:focus,.wp-block-cover .wp-block-cover-image-text a:hover,.wp-block-cover .wp-block-cover-text a,.wp-block-cover .wp-block-cover-text a:active,.wp-block-cover .wp-block-cover-text a:focus,.wp-block-cover .wp-block-cover-text a:hover,.wp-block-cover h2 a,.wp-block-cover h2 a:active,.wp-block-cover h2 a:focus,.wp-block-cover h2 a:hover{color:#fff}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;bottom:0;content:"";left:0;opacity:.5;position:absolute;right:0;top:0;z-index:1}.wp-block-cover-image.has-background-dim.has-background-dim-10:before,.wp-block-cover.has-background-dim.has-background-dim-10:before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20:before,.wp-block-cover.has-background-dim.has-background-dim-20:before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30:before,.wp-block-cover.has-background-dim.has-background-dim-30:before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40:before,.wp-block-cover.has-background-dim.has-background-dim-40:before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50:before,.wp-block-cover.has-background-dim.has-background-dim-50:before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60:before,.wp-block-cover.has-background-dim.has-background-dim-60:before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70:before,.wp-block-cover.has-background-dim.has-background-dim-70:before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80:before,.wp-block-cover.has-background-dim.has-background-dim-80:before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90:before,.wp-block-cover.has-background-dim.has-background-dim-90:before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100:before,.wp-block-cover.has-background-dim.has-background-dim-100:before{opacity:1}.wp-block-cover-image.components-placeholder,.wp-block-cover.components-placeholder{height:inherit}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright,[data-align=left] .wp-block-cover,[data-align=left] .wp-block-cover-image,[data-align=right] .wp-block-cover,[data-align=right] .wp-block-cover-image{max-width:305px;width:100%}.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__video-background{-o-object-fit:cover;height:100%;object-fit:cover;position:absolute;right:50%;top:50%;transform:translateX(50%) translateY(-50%);width:100%;z-index:0}.editor-block-list__block[data-type="core/embed"][data-align=left] .editor-block-list__block-edit,.editor-block-list__block[data-type="core/embed"][data-align=right] .editor-block-list__block-edit,.wp-block-embed.alignleft,.wp-block-embed.alignright{max-width:360px;width:100%}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper:before{padding-top:66.66%}.wp-embed-responsive .wp-block-embed.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__button{background:#32373c;border-radius:2em;color:#fff;font-size:13px;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}.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 0 16px 16px;position:relative}.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{height:100%;margin:0}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{align-items:flex-end;display:flex;justify-content:flex-start}}.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent);bottom:0;color:#fff;font-size:13px;max-height:100%;overflow:auto;padding:40px 10px 5px;position:absolute;text-align:center;width:100%}.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{-o-object-fit:cover;flex:1;height:100%;object-fit:cover}}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc(50% - 8px)}.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-left:0}.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{margin-left:0;width:100%}@media (min-width:600px){.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{margin-left:16px;width:calc(33.33333% - 10.66667px)}.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{margin-left:16px;width:calc(25% - 12px)}.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{margin-left:16px;width:calc(20% - 12.8px)}.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{margin-left:16px;width:calc(16.66667% - 13.33333px)}.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{margin-left:16px;width:calc(14.28571% - 13.71429px)}.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{margin-left:16px;width:calc(12.5% - 14px)}.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-left:0}}.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-left:0}.wp-block-gallery .blocks-gallery-item.has-add-item-button{width:100%}.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:305px;width:100%}.wp-block-gallery.aligncenter,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{display:flex}.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-image{margin-bottom:1em;margin-left:0;margin-right:0;max-width:100%}.wp-block-image img{max-width:100%}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.is-resized{display:table;margin-left:0;margin-right:0}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.is-resized>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin-right:1em}.wp-block-image .alignright{float:right;margin-left:1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-latest-comments__comment{font-size:15px;line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:36px}.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:52px}.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:14px;line-height:1.8;margin:5px 0 20px}.wp-block-latest-comments__comment-date{color:#8f98a1;display:block;font-size:12px}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:24px;display:block;float:right;height:40px;margin-left:12px;width:40px}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;list-style:none;padding:0}.wp-block-latest-posts.is-grid li{margin:0 0 16px 16px;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - 16px)}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-latest-posts.columns-4 li{width:calc(25% - 16px)}.wp-block-latest-posts.columns-5 li{width:calc(20% - 16px)}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-latest-posts__post-date{color:#6c7781;display:block;font-size:13px}.wp-block-media-text{align-items:center;display:grid;grid-template-areas:"media-text-media media-text-content";grid-template-columns:50% auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media";grid-template-columns:auto 50%}.wp-block-media-text .wp-block-media-text__media{grid-area:media-text-media;margin:0}.wp-block-media-text .wp-block-media-text__content{grid-area:media-text-content;padding:0 8%;word-break:break-word}.wp-block-media-text>figure>img,.wp-block-media-text>figure>video{max-width:unset;vertical-align:middle;width:100%}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-areas:"media-text-media" "media-text-content";grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right{grid-template-areas:"media-text-content" "media-text-media"}}p.is-small-text{font-size:14px}p.is-regular-text{font-size:16px}p.is-large-text{font-size:36px}p.is-larger-text{font-size:48px}p.has-drop-cap:not(:focus):first-letter{float:right;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em 0 0 .1em;text-transform:uppercase}p.has-background{padding:20px 30px}p.has-text-color a{color:inherit}.wp-block-pullquote{margin-left:0;margin-right:0;padding:3em 0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:305px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:20px}.wp-block-pullquote p{font-size:28px;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:not(.is-style-solid-color){background:none}.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%;text-align:right}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote cite{color:inherit}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:0 0 16px;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:24px;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:18px;text-align:left}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none;border:none;height:auto;line-height:1;max-width:none;text-align:center}.wp-block-separator.is-style-dots:before{color:#191e23;content:"\00b7 \00b7 \00b7";font-family:serif;font-size:20px;letter-spacing:2em;padding-right:2em}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-table.has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.is-style-stripes{border-bottom:1px solid #f3f4f5;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes td{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 16px;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{overflow:auto;white-space:nowrap}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{max-width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.has-pale-pink-background-color.has-pale-pink-background-color{background-color:#f78da7}.has-vivid-red-background-color.has-vivid-red-background-color{background-color:#cf2e2e}.has-luminous-vivid-orange-background-color.has-luminous-vivid-orange-background-color{background-color:#ff6900}.has-luminous-vivid-amber-background-color.has-luminous-vivid-amber-background-color{background-color:#fcb900}.has-light-green-cyan-background-color.has-light-green-cyan-background-color{background-color:#7bdcb5}.has-vivid-green-cyan-background-color.has-vivid-green-cyan-background-color{background-color:#00d084}.has-pale-cyan-blue-background-color.has-pale-cyan-blue-background-color{background-color:#8ed1fc}.has-vivid-cyan-blue-background-color.has-vivid-cyan-blue-background-color{background-color:#0693e3}.has-very-light-gray-background-color.has-very-light-gray-background-color{background-color:#eee}.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color{background-color:#abb8c3}.has-very-dark-gray-background-color.has-very-dark-gray-background-color{background-color:#313131}.has-pale-pink-color.has-pale-pink-color{color:#f78da7}.has-vivid-red-color.has-vivid-red-color{color:#cf2e2e}.has-luminous-vivid-orange-color.has-luminous-vivid-orange-color{color:#ff6900}.has-luminous-vivid-amber-color.has-luminous-vivid-amber-color{color:#fcb900}.has-light-green-cyan-color.has-light-green-cyan-color{color:#7bdcb5}.has-vivid-green-cyan-color.has-vivid-green-cyan-color{color:#00d084}.has-pale-cyan-blue-color.has-pale-cyan-blue-color{color:#8ed1fc}.has-vivid-cyan-blue-color.has-vivid-cyan-blue-color{color:#0693e3}.has-very-light-gray-color.has-very-light-gray-color{color:#eee}.has-cyan-bluish-gray-color.has-cyan-bluish-gray-color{color:#abb8c3}.has-very-dark-gray-color.has-very-dark-gray-color{color:#313131}.has-small-font-size{font-size:13px}.has-normal-font-size,.has-regular-font-size{font-size:16px}.has-medium-font-size{font-size:20px}.has-large-font-size{font-size:36px}.has-huge-font-size,.has-larger-font-size{font-size:42px} .wp-block-audio figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-audio audio{min-width:300px;width:100%}.editor-block-list__layout .reusable-block-edit-panel{align-items:center;background:#f8f9f9;color:#555d66;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;margin:0 -14px;padding:8px 14px;position:relative;top:-14px;z-index:7}.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel{margin:0 -14px;padding:8px 14px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner{margin:0 5px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info{margin-left:auto}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label{font-weight:600;margin-left:8px;white-space:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{flex:1 1 100%;font-size:14px;height:30px;margin:4px 0 8px}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{flex-shrink:0}@media (min-width:960px){.editor-block-list__layout .reusable-block-edit-panel{flex-wrap:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{margin:0}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{margin:0 5px 0 0}}.editor-block-list__layout .reusable-block-indicator{background:#fff;border-bottom:1px dashed #e2e4e7;border-right:1px dashed #e2e4e7;color:#555d66;height:30px;left:-14px;padding:4px;position:absolute;top:-14px;width:30px;z-index:1}.wp-block-button{color:#fff;margin-bottom:1.5em}.wp-block-button.aligncenter{text-align:center}.wp-block-button.alignright{text-align:right}.wp-block-button__link{background-color:#32373c;border:none;border-radius:28px;box-shadow:none;color:inherit;cursor:pointer;display:inline-block;font-size:18px;margin:0;overflow-wrap:break-word;padding:12px 24px;text-align:center;text-decoration:none;white-space:normal}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover{color:inherit}.is-style-squared .wp-block-button__link{border-radius:0}.is-style-outline{color:#32373c}.is-style-outline .wp-block-button__link{background:transparent;border:2px solid currentcolor}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-columns{display:flex;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-column{flex:1;flex-basis:100%;margin-bottom:1em;min-width:0;overflow-wrap:break-word;word-break:break-word}@media (min-width:600px){.wp-block-column{flex-basis:50%;flex-grow:0}}@media (min-width:600px){.wp-block-column:nth-child(odd){margin-left:32px}.wp-block-column:not(:first-child),.wp-block-column:nth-child(2n){margin-right:32px}.wp-block-column:not(:last-child){margin-left:32px}}.wp-block-cover,.wp-block-cover-image{align-items:center;background-color:#000;background-position:50%;background-size:cover;display:flex;justify-content:center;margin:0 0 1.5em;min-height:430px;overflow:hidden;position:relative;width:100%}.wp-block-cover-image.has-left-content,.wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover-image.has-left-content .wp-block-cover-text,.wp-block-cover-image.has-left-content h2,.wp-block-cover.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,.wp-block-cover.has-left-content h2{margin-right:0;text-align:right}.wp-block-cover-image.has-right-content,.wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover-image.has-right-content .wp-block-cover-text,.wp-block-cover-image.has-right-content h2,.wp-block-cover.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,.wp-block-cover.has-right-content h2{margin-left:0;text-align:left}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover-image .wp-block-cover-text,.wp-block-cover-image h2,.wp-block-cover .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,.wp-block-cover h2{color:#fff;font-size:2em;line-height:1.25;margin-bottom:0;max-width:610px;padding:14px;text-align:center;z-index:1}.wp-block-cover-image .wp-block-cover-image-text a,.wp-block-cover-image .wp-block-cover-image-text a:active,.wp-block-cover-image .wp-block-cover-image-text a:focus,.wp-block-cover-image .wp-block-cover-image-text a:hover,.wp-block-cover-image .wp-block-cover-text a,.wp-block-cover-image .wp-block-cover-text a:active,.wp-block-cover-image .wp-block-cover-text a:focus,.wp-block-cover-image .wp-block-cover-text a:hover,.wp-block-cover-image h2 a,.wp-block-cover-image h2 a:active,.wp-block-cover-image h2 a:focus,.wp-block-cover-image h2 a:hover,.wp-block-cover .wp-block-cover-image-text a,.wp-block-cover .wp-block-cover-image-text a:active,.wp-block-cover .wp-block-cover-image-text a:focus,.wp-block-cover .wp-block-cover-image-text a:hover,.wp-block-cover .wp-block-cover-text a,.wp-block-cover .wp-block-cover-text a:active,.wp-block-cover .wp-block-cover-text a:focus,.wp-block-cover .wp-block-cover-text a:hover,.wp-block-cover h2 a,.wp-block-cover h2 a:active,.wp-block-cover h2 a:focus,.wp-block-cover h2 a:hover{color:#fff}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;bottom:0;content:"";left:0;opacity:.5;position:absolute;right:0;top:0;z-index:1}.wp-block-cover-image.has-background-dim.has-background-dim-10:before,.wp-block-cover.has-background-dim.has-background-dim-10:before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20:before,.wp-block-cover.has-background-dim.has-background-dim-20:before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30:before,.wp-block-cover.has-background-dim.has-background-dim-30:before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40:before,.wp-block-cover.has-background-dim.has-background-dim-40:before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50:before,.wp-block-cover.has-background-dim.has-background-dim-50:before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60:before,.wp-block-cover.has-background-dim.has-background-dim-60:before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70:before,.wp-block-cover.has-background-dim.has-background-dim-70:before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80:before,.wp-block-cover.has-background-dim.has-background-dim-80:before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90:before,.wp-block-cover.has-background-dim.has-background-dim-90:before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100:before,.wp-block-cover.has-background-dim.has-background-dim-100:before{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:305px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{content:"";display:block;font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (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__video-background{-o-object-fit:cover;height:100%;object-fit:cover;position:absolute;right:50%;top:50%;transform:translateX(50%) translateY(-50%);width:100%;z-index:0}.editor-block-list__block[data-type="core/embed"][data-align=left] .editor-block-list__block-edit,.editor-block-list__block[data-type="core/embed"][data-align=right] .editor-block-list__block-edit,.wp-block-embed.alignleft,.wp-block-embed.alignright{max-width:360px;width:100%}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper:before{padding-top:66.66%}.wp-embed-responsive .wp-block-embed.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__button{background:#32373c;border-radius:2em;color:#fff;font-size:13px;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}.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 0 16px 16px;position:relative}.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{height:100%;margin:0}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{align-items:flex-end;display:flex;justify-content:flex-start}}.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent);bottom:0;color:#fff;font-size:13px;max-height:100%;overflow:auto;padding:40px 10px 5px;position:absolute;text-align:center;width:100%}.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{-o-object-fit:cover;flex:1;height:100%;object-fit:cover}}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc(50% - 8px)}.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-left:0}.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{margin-left:0;width:100%}@media (min-width:600px){.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{margin-left:16px;width:calc(33.33333% - 10.66667px)}.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{margin-left:16px;width:calc(25% - 12px)}.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{margin-left:16px;width:calc(20% - 12.8px)}.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{margin-left:16px;width:calc(16.66667% - 13.33333px)}.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{margin-left:16px;width:calc(14.28571% - 13.71429px)}.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{margin-left:16px;width:calc(12.5% - 14px)}.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-left:0}}.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-left:0}.wp-block-gallery .blocks-gallery-item.has-add-item-button{width:100%}.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:305px;width:100%}.wp-block-gallery.aligncenter,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{display:flex}.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-image{margin-bottom:1em;margin-left:0;margin-right:0;max-width:100%}.wp-block-image img{max-width:100%}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.is-resized{display:table;margin-left:0;margin-right:0}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.is-resized>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin-right:1em}.wp-block-image .alignright{float:right;margin-left:1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-latest-comments__comment{font-size:15px;line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:36px}.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:52px}.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:14px;line-height:1.8;margin:5px 0 20px}.wp-block-latest-comments__comment-date{color:#8f98a1;display:block;font-size:12px}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:24px;display:block;float:right;height:40px;margin-left:12px;width:40px}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;list-style:none;padding:0}.wp-block-latest-posts.is-grid li{margin:0 0 16px 16px;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - 16px)}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-latest-posts.columns-4 li{width:calc(25% - 16px)}.wp-block-latest-posts.columns-5 li{width:calc(20% - 16px)}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-latest-posts__post-date{color:#6c7781;display:block;font-size:13px}.wp-block-media-text{align-items:center;display:grid;grid-template-areas:"media-text-media media-text-content";grid-template-columns:50% auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media";grid-template-columns:auto 50%}.wp-block-media-text .wp-block-media-text__media{grid-area:media-text-media;margin:0}.wp-block-media-text .wp-block-media-text__content{grid-area:media-text-content;padding:0 8%;word-break:break-word}.wp-block-media-text>figure>img,.wp-block-media-text>figure>video{max-width:unset;vertical-align:middle;width:100%}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-areas:"media-text-media" "media-text-content";grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right{grid-template-areas:"media-text-content" "media-text-media"}}p.is-small-text{font-size:14px}p.is-regular-text{font-size:16px}p.is-large-text{font-size:36px}p.is-larger-text{font-size:48px}p.has-drop-cap:not(:focus):first-letter{float:right;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em 0 0 .1em;text-transform:uppercase}p.has-background{padding:20px 30px}p.has-text-color a{color:inherit}.wp-block-pullquote{margin-left:0;margin-right:0;padding:3em 0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:305px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:20px}.wp-block-pullquote p{font-size:28px;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:not(.is-style-solid-color){background:none}.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%;text-align:right}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote cite{color:inherit}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:0 0 16px;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:24px;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:18px;text-align:left}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none;border:none;height:auto;line-height:1;max-width:none;text-align:center}.wp-block-separator.is-style-dots:before{color:#191e23;content:"\00b7 \00b7 \00b7";font-family:serif;font-size:20px;letter-spacing:2em;padding-right:2em}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-table.has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.is-style-stripes{border-bottom:1px solid #f3f4f5;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes td{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 16px;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{overflow:auto;white-space:nowrap}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{max-width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.has-pale-pink-background-color.has-pale-pink-background-color{background-color:#f78da7}.has-vivid-red-background-color.has-vivid-red-background-color{background-color:#cf2e2e}.has-luminous-vivid-orange-background-color.has-luminous-vivid-orange-background-color{background-color:#ff6900}.has-luminous-vivid-amber-background-color.has-luminous-vivid-amber-background-color{background-color:#fcb900}.has-light-green-cyan-background-color.has-light-green-cyan-background-color{background-color:#7bdcb5}.has-vivid-green-cyan-background-color.has-vivid-green-cyan-background-color{background-color:#00d084}.has-pale-cyan-blue-background-color.has-pale-cyan-blue-background-color{background-color:#8ed1fc}.has-vivid-cyan-blue-background-color.has-vivid-cyan-blue-background-color{background-color:#0693e3}.has-very-light-gray-background-color.has-very-light-gray-background-color{background-color:#eee}.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color{background-color:#abb8c3}.has-very-dark-gray-background-color.has-very-dark-gray-background-color{background-color:#313131}.has-pale-pink-color.has-pale-pink-color{color:#f78da7}.has-vivid-red-color.has-vivid-red-color{color:#cf2e2e}.has-luminous-vivid-orange-color.has-luminous-vivid-orange-color{color:#ff6900}.has-luminous-vivid-amber-color.has-luminous-vivid-amber-color{color:#fcb900}.has-light-green-cyan-color.has-light-green-cyan-color{color:#7bdcb5}.has-vivid-green-cyan-color.has-vivid-green-cyan-color{color:#00d084}.has-pale-cyan-blue-color.has-pale-cyan-blue-color{color:#8ed1fc}.has-vivid-cyan-blue-color.has-vivid-cyan-blue-color{color:#0693e3}.has-very-light-gray-color.has-very-light-gray-color{color:#eee}.has-cyan-bluish-gray-color.has-cyan-bluish-gray-color{color:#abb8c3}.has-very-dark-gray-color.has-very-dark-gray-color{color:#313131}.has-small-font-size{font-size:13px}.has-normal-font-size,.has-regular-font-size{font-size:16px}.has-medium-font-size{font-size:20px}.has-large-font-size{font-size:36px}.has-huge-font-size,.has-larger-font-size{font-size:42px}
\ No newline at end of file \ No newline at end of file
.wp-block-audio figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-audio audio{min-width:300px;width:100%}.editor-block-list__layout .reusable-block-edit-panel{align-items:center;background:#f8f9f9;color:#555d66;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;margin:0 -14px;padding:8px 14px;position:relative;top:-14px;z-index:7}.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel{margin:0 -14px;padding:8px 14px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner{margin:0 5px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info{margin-right:auto}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label{font-weight:600;margin-right:8px;white-space:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{flex:1 1 100%;font-size:14px;height:30px;margin:4px 0 8px}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{flex-shrink:0}@media (min-width:960px){.editor-block-list__layout .reusable-block-edit-panel{flex-wrap:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{margin:0}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{margin:0 0 0 5px}}.editor-block-list__layout .reusable-block-indicator{background:#fff;border-bottom:1px dashed #e2e4e7;border-left:1px dashed #e2e4e7;color:#555d66;height:30px;padding:4px;position:absolute;right:-14px;top:-14px;width:30px;z-index:1}.wp-block-button{color:#fff;margin-bottom:1.5em}.wp-block-button.aligncenter{text-align:center}.wp-block-button.alignright{text-align:right}.wp-block-button__link{background-color:#32373c;border:none;border-radius:23px;box-shadow:none;color:inherit;cursor:pointer;display:inline-block;font-size:18px;line-height:24px;margin:0;padding:11px 24px;text-align:center;text-decoration:none;white-space:normal;word-break:break-all}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover{color:inherit}.is-style-squared .wp-block-button__link{border-radius:0}.is-style-outline{color:#32373c}.is-style-outline .wp-block-button__link{background:transparent;border:2px solid currentcolor}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-columns{display:flex;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-column{flex:1;flex-basis:100%;margin-bottom:1em;min-width:0;overflow-wrap:break-word;word-break:break-word}@media (min-width:600px){.wp-block-column{flex-basis:50%;flex-grow:0}}@media (min-width:600px){.wp-block-column:nth-child(odd){margin-right:32px}.wp-block-column:not(:first-child),.wp-block-column:nth-child(2n){margin-left:32px}.wp-block-column:not(:last-child){margin-right:32px}}.wp-block-cover,.wp-block-cover-image{align-items:center;background-color:#000;background-position:50%;background-size:cover;display:flex;justify-content:center;margin:0 0 1.5em;min-height:430px;overflow:hidden;position:relative;width:100%}.wp-block-cover-image.has-left-content,.wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover-image.has-left-content .wp-block-cover-text,.wp-block-cover-image.has-left-content h2,.wp-block-cover.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,.wp-block-cover.has-left-content h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content,.wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover-image.has-right-content .wp-block-cover-text,.wp-block-cover-image.has-right-content h2,.wp-block-cover.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,.wp-block-cover.has-right-content h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover-image .wp-block-cover-text,.wp-block-cover-image h2,.wp-block-cover .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,.wp-block-cover h2{color:#fff;font-size:2em;line-height:1.25;margin-bottom:0;max-width:610px;padding:14px;text-align:center;z-index:1}.wp-block-cover-image .wp-block-cover-image-text a,.wp-block-cover-image .wp-block-cover-image-text a:active,.wp-block-cover-image .wp-block-cover-image-text a:focus,.wp-block-cover-image .wp-block-cover-image-text a:hover,.wp-block-cover-image .wp-block-cover-text a,.wp-block-cover-image .wp-block-cover-text a:active,.wp-block-cover-image .wp-block-cover-text a:focus,.wp-block-cover-image .wp-block-cover-text a:hover,.wp-block-cover-image h2 a,.wp-block-cover-image h2 a:active,.wp-block-cover-image h2 a:focus,.wp-block-cover-image h2 a:hover,.wp-block-cover .wp-block-cover-image-text a,.wp-block-cover .wp-block-cover-image-text a:active,.wp-block-cover .wp-block-cover-image-text a:focus,.wp-block-cover .wp-block-cover-image-text a:hover,.wp-block-cover .wp-block-cover-text a,.wp-block-cover .wp-block-cover-text a:active,.wp-block-cover .wp-block-cover-text a:focus,.wp-block-cover .wp-block-cover-text a:hover,.wp-block-cover h2 a,.wp-block-cover h2 a:active,.wp-block-cover h2 a:focus,.wp-block-cover h2 a:hover{color:#fff}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;bottom:0;content:"";left:0;opacity:.5;position:absolute;right:0;top:0;z-index:1}.wp-block-cover-image.has-background-dim.has-background-dim-10:before,.wp-block-cover.has-background-dim.has-background-dim-10:before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20:before,.wp-block-cover.has-background-dim.has-background-dim-20:before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30:before,.wp-block-cover.has-background-dim.has-background-dim-30:before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40:before,.wp-block-cover.has-background-dim.has-background-dim-40:before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50:before,.wp-block-cover.has-background-dim.has-background-dim-50:before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60:before,.wp-block-cover.has-background-dim.has-background-dim-60:before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70:before,.wp-block-cover.has-background-dim.has-background-dim-70:before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80:before,.wp-block-cover.has-background-dim.has-background-dim-80:before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90:before,.wp-block-cover.has-background-dim.has-background-dim-90:before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100:before,.wp-block-cover.has-background-dim.has-background-dim-100:before{opacity:1}.wp-block-cover-image.components-placeholder,.wp-block-cover.components-placeholder{height:inherit}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright,[data-align=left] .wp-block-cover,[data-align=left] .wp-block-cover-image,[data-align=right] .wp-block-cover,[data-align=right] .wp-block-cover-image{max-width:305px;width:100%}.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__video-background{-o-object-fit:cover;height:100%;left:50%;object-fit:cover;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:100%;z-index:0}.editor-block-list__block[data-type="core/embed"][data-align=left] .editor-block-list__block-edit,.editor-block-list__block[data-type="core/embed"][data-align=right] .editor-block-list__block-edit,.wp-block-embed.alignleft,.wp-block-embed.alignright{max-width:360px;width:100%}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper:before{padding-top:66.66%}.wp-embed-responsive .wp-block-embed.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__button{background:#32373c;border-radius:2em;color:#fff;font-size:13px;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}.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 16px 16px 0;position:relative}.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{height:100%;margin:0}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{align-items:flex-end;display:flex;justify-content:flex-start}}.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent);bottom:0;color:#fff;font-size:13px;max-height:100%;overflow:auto;padding:40px 10px 5px;position:absolute;text-align:center;width:100%}.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{-o-object-fit:cover;flex:1;height:100%;object-fit:cover}}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc(50% - 8px)}.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{margin-right:0;width:100%}@media (min-width:600px){.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{margin-right:16px;width:calc(33.33333% - 10.66667px)}.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{margin-right:16px;width:calc(25% - 12px)}.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{margin-right:16px;width:calc(20% - 12.8px)}.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{margin-right:16px;width:calc(16.66667% - 13.33333px)}.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{margin-right:16px;width:calc(14.28571% - 13.71429px)}.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{margin-right:16px;width:calc(12.5% - 14px)}.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.wp-block-gallery .blocks-gallery-item.has-add-item-button{width:100%}.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:305px;width:100%}.wp-block-gallery.aligncenter,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{display:flex}.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-image{margin-bottom:1em;margin-left:0;margin-right:0;max-width:100%}.wp-block-image img{max-width:100%}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.is-resized{display:table;margin-left:0;margin-right:0}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.is-resized>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin-right:1em}.wp-block-image .alignright{float:right;margin-left:1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-latest-comments__comment{font-size:15px;line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:36px}.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:52px}.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:14px;line-height:1.8;margin:5px 0 20px}.wp-block-latest-comments__comment-date{color:#8f98a1;display:block;font-size:12px}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:24px;display:block;float:left;height:40px;margin-right:12px;width:40px}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;list-style:none;padding:0}.wp-block-latest-posts.is-grid li{margin:0 16px 16px 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - 16px)}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-latest-posts.columns-4 li{width:calc(25% - 16px)}.wp-block-latest-posts.columns-5 li{width:calc(20% - 16px)}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-latest-posts__post-date{color:#6c7781;display:block;font-size:13px}.wp-block-media-text{align-items:center;display:grid;grid-template-areas:"media-text-media media-text-content";grid-template-columns:50% auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media";grid-template-columns:auto 50%}.wp-block-media-text .wp-block-media-text__media{grid-area:media-text-media;margin:0}.wp-block-media-text .wp-block-media-text__content{grid-area:media-text-content;padding:0 8%;word-break:break-word}.wp-block-media-text>figure>img,.wp-block-media-text>figure>video{max-width:unset;vertical-align:middle;width:100%}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-areas:"media-text-media" "media-text-content";grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right{grid-template-areas:"media-text-content" "media-text-media"}}p.is-small-text{font-size:14px}p.is-regular-text{font-size:16px}p.is-large-text{font-size:36px}p.is-larger-text{font-size:48px}p.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}p.has-background{padding:20px 30px}p.has-text-color a{color:inherit}.wp-block-pullquote{margin-left:0;margin-right:0;padding:3em 0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:305px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:20px}.wp-block-pullquote p{font-size:28px;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:not(.is-style-solid-color){background:none}.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%;text-align:left}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote cite{color:inherit}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:0 0 16px;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:24px;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:18px;text-align:right}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none;border:none;height:auto;line-height:1;max-width:none;text-align:center}.wp-block-separator.is-style-dots:before{color:#191e23;content:"\00b7 \00b7 \00b7";font-family:serif;font-size:20px;letter-spacing:2em;padding-left:2em}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-table.has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.is-style-stripes{border-bottom:1px solid #f3f4f5;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes td{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 16px;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{overflow:auto;white-space:nowrap}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{max-width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.has-pale-pink-background-color.has-pale-pink-background-color{background-color:#f78da7}.has-vivid-red-background-color.has-vivid-red-background-color{background-color:#cf2e2e}.has-luminous-vivid-orange-background-color.has-luminous-vivid-orange-background-color{background-color:#ff6900}.has-luminous-vivid-amber-background-color.has-luminous-vivid-amber-background-color{background-color:#fcb900}.has-light-green-cyan-background-color.has-light-green-cyan-background-color{background-color:#7bdcb5}.has-vivid-green-cyan-background-color.has-vivid-green-cyan-background-color{background-color:#00d084}.has-pale-cyan-blue-background-color.has-pale-cyan-blue-background-color{background-color:#8ed1fc}.has-vivid-cyan-blue-background-color.has-vivid-cyan-blue-background-color{background-color:#0693e3}.has-very-light-gray-background-color.has-very-light-gray-background-color{background-color:#eee}.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color{background-color:#abb8c3}.has-very-dark-gray-background-color.has-very-dark-gray-background-color{background-color:#313131}.has-pale-pink-color.has-pale-pink-color{color:#f78da7}.has-vivid-red-color.has-vivid-red-color{color:#cf2e2e}.has-luminous-vivid-orange-color.has-luminous-vivid-orange-color{color:#ff6900}.has-luminous-vivid-amber-color.has-luminous-vivid-amber-color{color:#fcb900}.has-light-green-cyan-color.has-light-green-cyan-color{color:#7bdcb5}.has-vivid-green-cyan-color.has-vivid-green-cyan-color{color:#00d084}.has-pale-cyan-blue-color.has-pale-cyan-blue-color{color:#8ed1fc}.has-vivid-cyan-blue-color.has-vivid-cyan-blue-color{color:#0693e3}.has-very-light-gray-color.has-very-light-gray-color{color:#eee}.has-cyan-bluish-gray-color.has-cyan-bluish-gray-color{color:#abb8c3}.has-very-dark-gray-color.has-very-dark-gray-color{color:#313131}.has-small-font-size{font-size:13px}.has-normal-font-size,.has-regular-font-size{font-size:16px}.has-medium-font-size{font-size:20px}.has-large-font-size{font-size:36px}.has-huge-font-size,.has-larger-font-size{font-size:42px} .wp-block-audio figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-audio audio{min-width:300px;width:100%}.editor-block-list__layout .reusable-block-edit-panel{align-items:center;background:#f8f9f9;color:#555d66;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;margin:0 -14px;padding:8px 14px;position:relative;top:-14px;z-index:7}.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel{margin:0 -14px;padding:8px 14px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner{margin:0 5px}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info{margin-right:auto}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label{font-weight:600;margin-right:8px;white-space:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{flex:1 1 100%;font-size:14px;height:30px;margin:4px 0 8px}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{flex-shrink:0}@media (min-width:960px){.editor-block-list__layout .reusable-block-edit-panel{flex-wrap:nowrap}.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title{margin:0}.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button{margin:0 0 0 5px}}.editor-block-list__layout .reusable-block-indicator{background:#fff;border-bottom:1px dashed #e2e4e7;border-left:1px dashed #e2e4e7;color:#555d66;height:30px;padding:4px;position:absolute;right:-14px;top:-14px;width:30px;z-index:1}.wp-block-button{color:#fff;margin-bottom:1.5em}.wp-block-button.aligncenter{text-align:center}.wp-block-button.alignright{text-align:right}.wp-block-button__link{background-color:#32373c;border:none;border-radius:28px;box-shadow:none;color:inherit;cursor:pointer;display:inline-block;font-size:18px;margin:0;overflow-wrap:break-word;padding:12px 24px;text-align:center;text-decoration:none;white-space:normal}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover{color:inherit}.is-style-squared .wp-block-button__link{border-radius:0}.is-style-outline{color:#32373c}.is-style-outline .wp-block-button__link{background:transparent;border:2px solid currentcolor}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-columns{display:flex;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-column{flex:1;flex-basis:100%;margin-bottom:1em;min-width:0;overflow-wrap:break-word;word-break:break-word}@media (min-width:600px){.wp-block-column{flex-basis:50%;flex-grow:0}}@media (min-width:600px){.wp-block-column:nth-child(odd){margin-right:32px}.wp-block-column:not(:first-child),.wp-block-column:nth-child(2n){margin-left:32px}.wp-block-column:not(:last-child){margin-right:32px}}.wp-block-cover,.wp-block-cover-image{align-items:center;background-color:#000;background-position:50%;background-size:cover;display:flex;justify-content:center;margin:0 0 1.5em;min-height:430px;overflow:hidden;position:relative;width:100%}.wp-block-cover-image.has-left-content,.wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover-image.has-left-content .wp-block-cover-text,.wp-block-cover-image.has-left-content h2,.wp-block-cover.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,.wp-block-cover.has-left-content h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content,.wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover-image.has-right-content .wp-block-cover-text,.wp-block-cover-image.has-right-content h2,.wp-block-cover.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,.wp-block-cover.has-right-content h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover-image .wp-block-cover-text,.wp-block-cover-image h2,.wp-block-cover .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,.wp-block-cover h2{color:#fff;font-size:2em;line-height:1.25;margin-bottom:0;max-width:610px;padding:14px;text-align:center;z-index:1}.wp-block-cover-image .wp-block-cover-image-text a,.wp-block-cover-image .wp-block-cover-image-text a:active,.wp-block-cover-image .wp-block-cover-image-text a:focus,.wp-block-cover-image .wp-block-cover-image-text a:hover,.wp-block-cover-image .wp-block-cover-text a,.wp-block-cover-image .wp-block-cover-text a:active,.wp-block-cover-image .wp-block-cover-text a:focus,.wp-block-cover-image .wp-block-cover-text a:hover,.wp-block-cover-image h2 a,.wp-block-cover-image h2 a:active,.wp-block-cover-image h2 a:focus,.wp-block-cover-image h2 a:hover,.wp-block-cover .wp-block-cover-image-text a,.wp-block-cover .wp-block-cover-image-text a:active,.wp-block-cover .wp-block-cover-image-text a:focus,.wp-block-cover .wp-block-cover-image-text a:hover,.wp-block-cover .wp-block-cover-text a,.wp-block-cover .wp-block-cover-text a:active,.wp-block-cover .wp-block-cover-text a:focus,.wp-block-cover .wp-block-cover-text a:hover,.wp-block-cover h2 a,.wp-block-cover h2 a:active,.wp-block-cover h2 a:focus,.wp-block-cover h2 a:hover{color:#fff}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;bottom:0;content:"";left:0;opacity:.5;position:absolute;right:0;top:0;z-index:1}.wp-block-cover-image.has-background-dim.has-background-dim-10:before,.wp-block-cover.has-background-dim.has-background-dim-10:before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20:before,.wp-block-cover.has-background-dim.has-background-dim-20:before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30:before,.wp-block-cover.has-background-dim.has-background-dim-30:before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40:before,.wp-block-cover.has-background-dim.has-background-dim-40:before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50:before,.wp-block-cover.has-background-dim.has-background-dim-50:before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60:before,.wp-block-cover.has-background-dim.has-background-dim-60:before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70:before,.wp-block-cover.has-background-dim.has-background-dim-70:before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80:before,.wp-block-cover.has-background-dim.has-background-dim-80:before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90:before,.wp-block-cover.has-background-dim.has-background-dim-90:before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100:before,.wp-block-cover.has-background-dim.has-background-dim-100:before{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:305px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{content:"";display:block;font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (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__video-background{-o-object-fit:cover;height:100%;left:50%;object-fit:cover;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:100%;z-index:0}.editor-block-list__block[data-type="core/embed"][data-align=left] .editor-block-list__block-edit,.editor-block-list__block[data-type="core/embed"][data-align=right] .editor-block-list__block-edit,.wp-block-embed.alignleft,.wp-block-embed.alignright{max-width:360px;width:100%}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper:before{padding-top:66.66%}.wp-embed-responsive .wp-block-embed.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__button{background:#32373c;border-radius:2em;color:#fff;font-size:13px;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}.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 16px 16px 0;position:relative}.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{height:100%;margin:0}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{align-items:flex-end;display:flex;justify-content:flex-start}}.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent);bottom:0;color:#fff;font-size:13px;max-height:100%;overflow:auto;padding:40px 10px 5px;position:absolute;text-align:center;width:100%}.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{-o-object-fit:cover;flex:1;height:100%;object-fit:cover}}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc(50% - 8px)}.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{margin-right:0;width:100%}@media (min-width:600px){.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{margin-right:16px;width:calc(33.33333% - 10.66667px)}.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{margin-right:16px;width:calc(25% - 12px)}.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{margin-right:16px;width:calc(20% - 12.8px)}.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{margin-right:16px;width:calc(16.66667% - 13.33333px)}.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{margin-right:16px;width:calc(14.28571% - 13.71429px)}.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{margin-right:16px;width:calc(12.5% - 14px)}.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.wp-block-gallery .blocks-gallery-item.has-add-item-button{width:100%}.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:305px;width:100%}.wp-block-gallery.aligncenter,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{display:flex}.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-image{margin-bottom:1em;margin-left:0;margin-right:0;max-width:100%}.wp-block-image img{max-width:100%}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.is-resized{display:table;margin-left:0;margin-right:0}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.is-resized>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin-right:1em}.wp-block-image .alignright{float:right;margin-left:1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.wp-block-latest-comments__comment{font-size:15px;line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:36px}.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:52px}.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:14px;line-height:1.8;margin:5px 0 20px}.wp-block-latest-comments__comment-date{color:#8f98a1;display:block;font-size:12px}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:24px;display:block;float:left;height:40px;margin-right:12px;width:40px}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;list-style:none;padding:0}.wp-block-latest-posts.is-grid li{margin:0 16px 16px 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - 16px)}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-latest-posts.columns-4 li{width:calc(25% - 16px)}.wp-block-latest-posts.columns-5 li{width:calc(20% - 16px)}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-latest-posts__post-date{color:#6c7781;display:block;font-size:13px}.wp-block-media-text{align-items:center;display:grid;grid-template-areas:"media-text-media media-text-content";grid-template-columns:50% auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-areas:"media-text-content media-text-media";grid-template-columns:auto 50%}.wp-block-media-text .wp-block-media-text__media{grid-area:media-text-media;margin:0}.wp-block-media-text .wp-block-media-text__content{grid-area:media-text-content;padding:0 8%;word-break:break-word}.wp-block-media-text>figure>img,.wp-block-media-text>figure>video{max-width:unset;vertical-align:middle;width:100%}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-areas:"media-text-media" "media-text-content";grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right{grid-template-areas:"media-text-content" "media-text-media"}}p.is-small-text{font-size:14px}p.is-regular-text{font-size:16px}p.is-large-text{font-size:36px}p.is-larger-text{font-size:48px}p.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}p.has-background{padding:20px 30px}p.has-text-color a{color:inherit}.wp-block-pullquote{margin-left:0;margin-right:0;padding:3em 0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:305px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:20px}.wp-block-pullquote p{font-size:28px;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:not(.is-style-solid-color){background:none}.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%;text-align:left}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:32px;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote cite{color:inherit}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:0 0 16px;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:24px;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:18px;text-align:right}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none;border:none;height:auto;line-height:1;max-width:none;text-align:center}.wp-block-separator.is-style-dots:before{color:#191e23;content:"\00b7 \00b7 \00b7";font-family:serif;font-size:20px;letter-spacing:2em;padding-left:2em}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-table.has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.is-style-stripes{border-bottom:1px solid #f3f4f5;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes td{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 16px;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{overflow:auto;white-space:nowrap}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{max-width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{color:#555d66;font-size:13px;margin-bottom:1em;margin-top:.5em;text-align:center}.has-pale-pink-background-color.has-pale-pink-background-color{background-color:#f78da7}.has-vivid-red-background-color.has-vivid-red-background-color{background-color:#cf2e2e}.has-luminous-vivid-orange-background-color.has-luminous-vivid-orange-background-color{background-color:#ff6900}.has-luminous-vivid-amber-background-color.has-luminous-vivid-amber-background-color{background-color:#fcb900}.has-light-green-cyan-background-color.has-light-green-cyan-background-color{background-color:#7bdcb5}.has-vivid-green-cyan-background-color.has-vivid-green-cyan-background-color{background-color:#00d084}.has-pale-cyan-blue-background-color.has-pale-cyan-blue-background-color{background-color:#8ed1fc}.has-vivid-cyan-blue-background-color.has-vivid-cyan-blue-background-color{background-color:#0693e3}.has-very-light-gray-background-color.has-very-light-gray-background-color{background-color:#eee}.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color{background-color:#abb8c3}.has-very-dark-gray-background-color.has-very-dark-gray-background-color{background-color:#313131}.has-pale-pink-color.has-pale-pink-color{color:#f78da7}.has-vivid-red-color.has-vivid-red-color{color:#cf2e2e}.has-luminous-vivid-orange-color.has-luminous-vivid-orange-color{color:#ff6900}.has-luminous-vivid-amber-color.has-luminous-vivid-amber-color{color:#fcb900}.has-light-green-cyan-color.has-light-green-cyan-color{color:#7bdcb5}.has-vivid-green-cyan-color.has-vivid-green-cyan-color{color:#00d084}.has-pale-cyan-blue-color.has-pale-cyan-blue-color{color:#8ed1fc}.has-vivid-cyan-blue-color.has-vivid-cyan-blue-color{color:#0693e3}.has-very-light-gray-color.has-very-light-gray-color{color:#eee}.has-cyan-bluish-gray-color.has-cyan-bluish-gray-color{color:#abb8c3}.has-very-dark-gray-color.has-very-dark-gray-color{color:#313131}.has-small-font-size{font-size:13px}.has-normal-font-size,.has-regular-font-size{font-size:16px}.has-medium-font-size{font-size:20px}.has-large-font-size{font-size:36px}.has-huge-font-size,.has-larger-font-size{font-size:42px}
\ No newline at end of file \ No newline at end of file
this.wp=this.wp||{},this.wp.blockSerializationDefaultParser=function(n){var t={};function r(e){if(t[e])return t[e].exports;var u=t[e]={i:e,l:!1,exports:{}};return n[e].call(u.exports,u,u.exports,r),u.l=!0,u.exports}return r.m=n,r.c=t,r.d=function(n,t,e){r.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:e})},r.r=function(n){Object.defineProperty(n,"__esModule",{value:!0})},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,"a",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p="",r(r.s=339)}({25:function(n,t,r){"use strict";var e=r(35);var u=r(34);function o(n,t){return Object(e.a)(n)||function(n,t){var r=[],e=!0,u=!1,o=void 0;try{for(var i,c=n[Symbol.iterator]();!(e=(i=c.next()).done)&&(r.push(i.value),!t||r.length!==t);e=!0);}catch(n){u=!0,o=n}finally{try{e||null==c.return||c.return()}finally{if(u)throw o}}return r}(n,t)||Object(u.a)()}r.d(t,"a",function(){return o})},339:function(n,t,r){"use strict";r.r(t),r.d(t,"parse",function(){return f});var e,u,o,i,c=r(25),s=/<!--\s+(\/)?wp:([a-z][a-z0-9_-]*\/)?([a-z][a-z0-9_-]*)\s+({(?:[^}]+|}+(?=})|(?!}\s+-->)[^])*?}\s+)?(\/)?-->/g;function l(n,t,r,e,u){return{blockName:n,attrs:t,innerBlocks:r,innerHTML:e,innerContent:u}}function a(n){return l(null,{},[],n,[n])}var f=function(n){e=n,u=0,o=[],i=[],s.lastIndex=0;do{}while(p());return o};function p(){var n=function(){var n=s.exec(e);if(null===n)return["no-more-tokens"];var t=n.index,r=Object(c.a)(n,6),u=r[0],o=r[1],i=r[2],l=r[3],a=r[4],f=r[5],p=u.length,b=!!o,v=!!f,h=(i||"core/")+l,k=!!a,d=k?function(n){try{return JSON.parse(n)}catch(n){return null}}(a):{};if(v)return["void-block",h,d,t,p];if(b)return["block-closer",h,null,t,p];return["block-opener",h,d,t,p]}(),t=Object(c.a)(n,5),r=t[0],f=t[1],p=t[2],k=t[3],d=t[4],O=i.length,g=k>u?u:null;switch(r){case"no-more-tokens":if(0===O)return b(),!1;if(1===O)return h(),!1;for(;0<i.length;)h();return!1;case"void-block":return 0===O?(null!==g&&o.push(a(e.substr(g,k-g))),o.push(l(f,p,[],"",[])),u=k+d,!0):(v(l(f,p,[],"",[]),k,d),u=k+d,!0);case"block-opener":return i.push(function(n,t,r,e,u){return{block:n,tokenStart:t,tokenLength:r,prevOffset:e||t+r,leadingHtmlStart:u}}(l(f,p,[],"",[]),k,d,k+d,g)),u=k+d,!0;case"block-closer":if(0===O)return b(),!1;if(1===O)return h(k),u=k+d,!0;var y=i.pop(),w=e.substr(y.prevOffset,k-y.prevOffset);return y.block.innerHTML+=w,y.block.innerContent.push(w),y.prevOffset=k+d,v(y.block,y.tokenStart,y.tokenLength,k+d),u=k+d,!0;default:return b(),!1}}function b(n){var t=n||e.length-u;0!==t&&o.push(a(e.substr(u,t)))}function v(n,t,r,u){var o=i[i.length-1];o.block.innerBlocks.push(n);var c=e.substr(o.prevOffset,t-o.prevOffset);c&&(o.block.innerHTML+=c,o.block.innerContent.push(c)),o.block.innerContent.push(null),o.prevOffset=u||t+r}function h(n){var t=i.pop(),r=t.block,u=t.leadingHtmlStart,c=t.prevOffset,s=t.tokenStart,l=n?e.substr(c,n-c):e.substr(c);l&&(r.innerHTML+=l,r.innerContent.push(l)),null!==u&&o.push(a(e.substr(u,s-u))),o.push(r)}},34:function(n,t,r){"use strict";function e(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}r.d(t,"a",function(){return e})},35:function(n,t,r){"use strict";function e(n){if(Array.isArray(n))return n}r.d(t,"a",function(){return e})}}); this.wp=this.wp||{},this.wp.blockSerializationDefaultParser=function(n){var t={};function r(e){if(t[e])return t[e].exports;var u=t[e]={i:e,l:!1,exports:{}};return n[e].call(u.exports,u,u.exports,r),u.l=!0,u.exports}return r.m=n,r.c=t,r.d=function(n,t,e){r.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:e})},r.r=function(n){Object.defineProperty(n,"__esModule",{value:!0})},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,"a",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p="",r(r.s=339)}({25:function(n,t,r){"use strict";var e=r(35);var u=r(34);function o(n,t){return Object(e.a)(n)||function(n,t){var r=[],e=!0,u=!1,o=void 0;try{for(var i,c=n[Symbol.iterator]();!(e=(i=c.next()).done)&&(r.push(i.value),!t||r.length!==t);e=!0);}catch(n){u=!0,o=n}finally{try{e||null==c.return||c.return()}finally{if(u)throw o}}return r}(n,t)||Object(u.a)()}r.d(t,"a",function(){return o})},339:function(n,t,r){"use strict";r.r(t),r.d(t,"parse",function(){return f});var e,u,o,i,c=r(25),s=/<!--\s+(\/)?wp:([a-z][a-z0-9_-]*\/)?([a-z][a-z0-9_-]*)\s+({(?:(?=([^}]+|}+(?=})|(?!}\s+\/?-->)[^])*)\5|[^]*?)}\s+)?(\/)?-->/g;function l(n,t,r,e,u){return{blockName:n,attrs:t,innerBlocks:r,innerHTML:e,innerContent:u}}function a(n){return l(null,{},[],n,[n])}var f=function(n){e=n,u=0,o=[],i=[],s.lastIndex=0;do{}while(p());return o};function p(){var n=function(){var n=s.exec(e);if(null===n)return["no-more-tokens"];var t=n.index,r=Object(c.a)(n,7),u=r[0],o=r[1],i=r[2],l=r[3],a=r[4],f=r[6],p=u.length,b=!!o,v=!!f,h=(i||"core/")+l,k=!!a,d=k?function(n){try{return JSON.parse(n)}catch(n){return null}}(a):{};if(v)return["void-block",h,d,t,p];if(b)return["block-closer",h,null,t,p];return["block-opener",h,d,t,p]}(),t=Object(c.a)(n,5),r=t[0],f=t[1],p=t[2],k=t[3],d=t[4],O=i.length,g=k>u?u:null;switch(r){case"no-more-tokens":if(0===O)return b(),!1;if(1===O)return h(),!1;for(;0<i.length;)h();return!1;case"void-block":return 0===O?(null!==g&&o.push(a(e.substr(g,k-g))),o.push(l(f,p,[],"",[])),u=k+d,!0):(v(l(f,p,[],"",[]),k,d),u=k+d,!0);case"block-opener":return i.push(function(n,t,r,e,u){return{block:n,tokenStart:t,tokenLength:r,prevOffset:e||t+r,leadingHtmlStart:u}}(l(f,p,[],"",[]),k,d,k+d,g)),u=k+d,!0;case"block-closer":if(0===O)return b(),!1;if(1===O)return h(k),u=k+d,!0;var y=i.pop(),w=e.substr(y.prevOffset,k-y.prevOffset);return y.block.innerHTML+=w,y.block.innerContent.push(w),y.prevOffset=k+d,v(y.block,y.tokenStart,y.tokenLength,k+d),u=k+d,!0;default:return b(),!1}}function b(n){var t=n||e.length-u;0!==t&&o.push(a(e.substr(u,t)))}function v(n,t,r,u){var o=i[i.length-1];o.block.innerBlocks.push(n);var c=e.substr(o.prevOffset,t-o.prevOffset);c&&(o.block.innerHTML+=c,o.block.innerContent.push(c)),o.block.innerContent.push(null),o.prevOffset=u||t+r}function h(n){var t=i.pop(),r=t.block,u=t.leadingHtmlStart,c=t.prevOffset,s=t.tokenStart,l=n?e.substr(c,n-c):e.substr(c);l&&(r.innerHTML+=l,r.innerContent.push(l)),null!==u&&o.push(a(e.substr(u,s-u))),o.push(r)}},34:function(n,t,r){"use strict";function e(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}r.d(t,"a",function(){return e})},35:function(n,t,r){"use strict";function e(n){if(Array.isArray(n))return n}r.d(t,"a",function(){return e})}});
\ No newline at end of file \ No newline at end of file
this.wp=this.wp||{},this.wp.blockSerializationSpecParser=function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:o})},r.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=196)}({182:function(e,t,r){var o,n,c;n=[],void 0===(c="function"==typeof(o=function(){"use strict";function e(t,r,o,n){this.message=t,this.expected=r,this.found=o,this.location=n,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,e)}return function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(e,Error),e.buildMessage=function(e,t){var r={literal:function(e){return'"'+n(e.text)+'"'},class:function(e){var t,r="";for(t=0;t<e.parts.length;t++)r+=e.parts[t]instanceof Array?c(e.parts[t][0])+"-"+c(e.parts[t][1]):c(e.parts[t]);return"["+(e.inverted?"^":"")+r+"]"},any:function(e){return"any character"},end:function(e){return"end of input"},other:function(e){return e.description}};function o(e){return e.charCodeAt(0).toString(16).toUpperCase()}function n(e){return e.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(e){return"\\x0"+o(e)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(e){return"\\x"+o(e)})}function c(e){return e.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replace(/\^/g,"\\^").replace(/-/g,"\\-").replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(e){return"\\x0"+o(e)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(e){return"\\x"+o(e)})}function p(e){return r[e.type](e)}return"Expected "+function(e){var t,r,o=new Array(e.length);for(t=0;t<e.length;t++)o[t]=p(e[t]);if(o.sort(),o.length>0){for(t=1,r=1;t<o.length;t++)o[t-1]!==o[t]&&(o[r]=o[t],r++);o.length=r}switch(o.length){case 1:return o[0];case 2:return o[0]+" or "+o[1];default:return o.slice(0,-1).join(", ")+", or "+o[o.length-1]}}(e)+" but "+function(e){return e?'"'+n(e)+'"':"end of input"}(t)+" found."},{SyntaxError:e,parse:function(t,r){r=void 0!==r?r:{};var o,n={},c={Block_List:Z},p=Z,a={type:"any"},i=function(e,t,r){return[t,r]},l=function(e,t,r){return function(e,t,r){var o,n,c,p,a,i=[];for(e.length&&i.push(pe(e)),o=0,n=t.length;o<n;o++)p=t[o],a=p[0],c=p[1],i.push(a),c.length&&i.push(pe(c));return r.length&&i.push(pe(r)),i}(e,t,r)},x="\x3c!--",s=G("\x3c!--",!1),u="wp:",b=G("wp:",!1),f=function(e,t){return t},k="/--\x3e",v=G("/--\x3e",!1),h=function(e,t){return{blockName:e,attrs:t||{},innerBlocks:[],innerHTML:"",innerContent:[]}},w=function(e,t,r){var o=function(e){var t,r,o,n="",c=[],p=[];for(t=0,r=e.length;t<r;t++)"string"==typeof(o=e[t])?(n+=o,p.push(o)):(c.push(o),p.push(null));return[n,c,p]}(t),n=o[0],c=o[1],p=o[2];return{blockName:e.blockName,attrs:e.attrs,innerBlocks:c,innerHTML:n,innerContent:p}},y="--\x3e",d=G("--\x3e",!1),g=function(e,t){return{blockName:e,attrs:t||{}}},m="/wp:",H=G("/wp:",!1),A=function(e){return{blockName:e}},P="/",C=G("/",!1),N=function(e){return"core/"+e},B=/^[a-z]/,T=K([["a","z"]],!1,!1),L=/^[a-z0-9_\-]/,M=K([["a","z"],["0","9"],"_","-"],!1,!1),E=Q("JSON-encoded attributes embedded in a block's opening comment"),S="{",j=G("{",!1),q="}",F=G("}",!1),O="",_=function(e){return function(e){try{return JSON.parse(e)}catch(e){return null}}(e)},z=/^[ \t\r\n]/,R=K([" ","\t","\r","\n"],!1,!1),J=0,I=[{line:1,column:1}],U=0,$=[],D=0;if("startRule"in r){if(!(r.startRule in c))throw new Error("Can't start parsing from rule \""+r.startRule+'".');p=c[r.startRule]}function G(e,t){return{type:"literal",text:e,ignoreCase:t}}function K(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function Q(e){return{type:"other",description:e}}function V(e){var r,o=I[e];if(o)return o;for(r=e-1;!I[r];)r--;for(o={line:(o=I[r]).line,column:o.column};r<e;)10===t.charCodeAt(r)?(o.line++,o.column=1):o.column++,r++;return I[e]=o,o}function W(e,t){var r=V(e),o=V(t);return{start:{offset:e,line:r.line,column:r.column},end:{offset:t,line:o.line,column:o.column}}}function X(e){J<U||(J>U&&(U=J,$=[]),$.push(e))}function Y(t,r,o){return new e(e.buildMessage(t,r),t,r,o)}function Z(){var e,r,o,c,p,x,s,u,b,f;for(e=J,r=J,o=[],c=J,p=J,D++,x=ee(),D--,x===n?p=void 0:(J=p,p=n),p!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?c=p=[p,x]:(J=c,c=n)):(J=c,c=n);c!==n;)o.push(c),c=J,p=J,D++,x=ee(),D--,x===n?p=void 0:(J=p,p=n),p!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?c=p=[p,x]:(J=c,c=n)):(J=c,c=n);if((r=o!==n?t.substring(r,J):o)!==n){if(o=[],c=J,(p=ee())!==n){for(x=J,s=[],u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);u!==n;)s.push(u),u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);(x=s!==n?t.substring(x,J):s)!==n?(p=i(r,p,x),c=p):(J=c,c=n)}else J=c,c=n;for(;c!==n;)if(o.push(c),c=J,(p=ee())!==n){for(x=J,s=[],u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);u!==n;)s.push(u),u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);(x=s!==n?t.substring(x,J):s)!==n?(p=i(r,p,x),c=p):(J=c,c=n)}else J=c,c=n;if(o!==n){for(c=J,p=[],t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a));x!==n;)p.push(x),t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a));(c=p!==n?t.substring(c,J):p)!==n?(r=l(r,o,c),e=r):(J=e,e=n)}else J=e,e=n}else J=e,e=n;return e}function ee(){var e;return(e=function(){var e,r,o,c,p,a;return e=J,t.substr(J,4)===x?(r=x,J+=4):(r=n,0===D&&X(s)),r!==n&&ce()!==n?(t.substr(J,3)===u?(o=u,J+=3):(o=n,0===D&&X(b)),o!==n&&(c=re())!==n&&ce()!==n?(p=J,(a=ne())!==n&&ce()!==n?(a=f(c,a),p=a):(J=p,p=n),p===n&&(p=null),p!==n?(t.substr(J,4)===k?(a=k,J+=4):(a=n,0===D&&X(v)),a!==n?(r=h(c,p),e=r):(J=e,e=n)):(J=e,e=n)):(J=e,e=n)):(J=e,e=n),e}())===n&&(e=function(){var e,r,o,c,p,i,l,k,v;if(e=J,(r=function(){var e,r,o,c,p,a;return e=J,t.substr(J,4)===x?(r=x,J+=4):(r=n,0===D&&X(s)),r!==n&&ce()!==n?(t.substr(J,3)===u?(o=u,J+=3):(o=n,0===D&&X(b)),o!==n&&(c=re())!==n&&ce()!==n?(p=J,(a=ne())!==n&&ce()!==n?(a=f(c,a),p=a):(J=p,p=n),p===n&&(p=null),p!==n?(t.substr(J,3)===y?(a=y,J+=3):(a=n,0===D&&X(d)),a!==n?(r=g(c,p),e=r):(J=e,e=n)):(J=e,e=n)):(J=e,e=n)):(J=e,e=n),e}())!==n){if(o=[],(c=ee())===n){if(c=J,p=[],i=J,l=J,D++,k=ee(),D--,k===n?l=void 0:(J=l,l=n),l!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?i=l=[l,k,v]:(J=i,i=n)):(J=i,i=n)):(J=i,i=n),i!==n)for(;i!==n;)p.push(i),i=J,l=J,D++,k=ee(),D--,k===n?l=void 0:(J=l,l=n),l!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?i=l=[l,k,v]:(J=i,i=n)):(J=i,i=n)):(J=i,i=n);else p=n;c=p!==n?t.substring(c,J):p}for(;c!==n;)if(o.push(c),(c=ee())===n){if(c=J,p=[],i=J,l=J,D++,k=ee(),D--,k===n?l=void 0:(J=l,l=n),l!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?i=l=[l,k,v]:(J=i,i=n)):(J=i,i=n)):(J=i,i=n),i!==n)for(;i!==n;)p.push(i),i=J,l=J,D++,k=ee(),D--,k===n?l=void 0:(J=l,l=n),l!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?i=l=[l,k,v]:(J=i,i=n)):(J=i,i=n)):(J=i,i=n);else p=n;c=p!==n?t.substring(c,J):p}o!==n&&(c=te())!==n?(r=w(r,o,c),e=r):(J=e,e=n)}else J=e,e=n;return e}()),e}function te(){var e,r,o,c,p;return e=J,t.substr(J,4)===x?(r=x,J+=4):(r=n,0===D&&X(s)),r!==n&&ce()!==n?(t.substr(J,4)===m?(o=m,J+=4):(o=n,0===D&&X(H)),o!==n&&(c=re())!==n&&ce()!==n?(t.substr(J,3)===y?(p=y,J+=3):(p=n,0===D&&X(d)),p!==n?(r=A(c),e=r):(J=e,e=n)):(J=e,e=n)):(J=e,e=n),e}function re(){var e;return(e=function(){var e,r,o,c,p;return e=J,r=J,(o=oe())!==n?(47===t.charCodeAt(J)?(c=P,J++):(c=n,0===D&&X(C)),c!==n&&(p=oe())!==n?r=o=[o,c,p]:(J=r,r=n)):(J=r,r=n),e=r!==n?t.substring(e,J):r}())===n&&(e=function(){var e,r;return e=J,(e=(r=oe())!==n?t.substring(e,J):r)!==n&&(e=N(e)),e}()),e}function oe(){var e,r,o,c,p;if(e=J,r=J,B.test(t.charAt(J))?(o=t.charAt(J),J++):(o=n,0===D&&X(T)),o!==n){for(c=[],L.test(t.charAt(J))?(p=t.charAt(J),J++):(p=n,0===D&&X(M));p!==n;)c.push(p),L.test(t.charAt(J))?(p=t.charAt(J),J++):(p=n,0===D&&X(M));c!==n?r=o=[o,c]:(J=r,r=n)}else J=r,r=n;return e=r!==n?t.substring(e,J):r}function ne(){var e,r,o,c,p,i,l,x,s,u,b,f,k;if(D++,e=J,r=J,o=J,123===t.charCodeAt(J)?(c=S,J++):(c=n,0===D&&X(j)),c!==n){for(p=[],i=J,l=J,D++,x=J,125===t.charCodeAt(J)?(s=q,J++):(s=n,0===D&&X(F)),s!==n&&(u=ce())!==n&&(b=O)!==n?(47===t.charCodeAt(J)?(f=P,J++):(f=n,0===D&&X(C)),f===n&&(f=null),f!==n?(t.substr(J,3)===y?(k=y,J+=3):(k=n,0===D&&X(d)),k!==n?x=s=[s,u,b,f,k]:(J=x,x=n)):(J=x,x=n)):(J=x,x=n),D--,x===n?l=void 0:(J=l,l=n),l!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?i=l=[l,x]:(J=i,i=n)):(J=i,i=n);i!==n;)p.push(i),i=J,l=J,D++,x=J,125===t.charCodeAt(J)?(s=q,J++):(s=n,0===D&&X(F)),s!==n&&(u=ce())!==n&&(b=O)!==n?(47===t.charCodeAt(J)?(f=P,J++):(f=n,0===D&&X(C)),f===n&&(f=null),f!==n?(t.substr(J,3)===y?(k=y,J+=3):(k=n,0===D&&X(d)),k!==n?x=s=[s,u,b,f,k]:(J=x,x=n)):(J=x,x=n)):(J=x,x=n),D--,x===n?l=void 0:(J=l,l=n),l!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?i=l=[l,x]:(J=i,i=n)):(J=i,i=n);p!==n?(125===t.charCodeAt(J)?(i=q,J++):(i=n,0===D&&X(F)),i!==n?o=c=[c,p,i]:(J=o,o=n)):(J=o,o=n)}else J=o,o=n;return(r=o!==n?t.substring(r,J):o)!==n&&(r=_(r)),D--,(e=r)===n&&(r=n,0===D&&X(E)),e}function ce(){var e,r;if(e=[],z.test(t.charAt(J))?(r=t.charAt(J),J++):(r=n,0===D&&X(R)),r!==n)for(;r!==n;)e.push(r),z.test(t.charAt(J))?(r=t.charAt(J),J++):(r=n,0===D&&X(R));else e=n;return e}function pe(e){return e.length&&{blockName:null,attrs:{},innerBlocks:[],innerHTML:e,innerContent:[e]}}if((o=p())!==n&&J===t.length)return o;throw o!==n&&J<t.length&&X({type:"end"}),Y($,U<t.length?t.charAt(U):null,U<t.length?W(U,U+1):W(U,U))}}})?o.apply(t,n):o)||(e.exports=c)},196:function(e,t,r){"use strict";r.r(t);var o=r(182);const n=e=>()=>{describe("output structure",()=>{test("output is an array",()=>{expect(e("")).toEqual(expect.any(Array)),expect(e("test")).toEqual(expect.any(Array)),expect(e("\x3c!-- wp:void /--\x3e")).toEqual(expect.any(Array)),expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:inner /--\x3e\x3c!-- /wp:block --\x3e")).toEqual(expect.any(Array)),expect(e("\x3c!-- wp:first /--\x3e\x3c!-- wp:second /--\x3e")).toEqual(expect.any(Array))}),test("parses blocks of various types",()=>{expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("blockName","core/void"),expect(e("\x3c!-- wp:void {} /--\x3e")[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void {"value":true} /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void {"a":{}} /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void { "value" : true } /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void {\n\t"value" : true\n} /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("blockName","core/block"),expect(e("\x3c!-- wp:block {} --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("blockName","core/block"),expect(e('\x3c!-- wp:block {"value":true} --\x3e\x3c!-- /wp:block --\x3e')[0]).toHaveProperty("blockName","core/block"),expect(e("\x3c!-- wp:block {} --\x3einner\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("blockName","core/block"),expect(e('\x3c!-- wp:block {"value":{"a" : "true"}} --\x3einner\x3c!-- /wp:block --\x3e')[0]).toHaveProperty("blockName","core/block")}),test("blockName is namespaced string (except freeform)",()=>{expect(e("freeform has null name")[0]).toHaveProperty("blockName",null),expect(e("\x3c!-- wp:more /--\x3e")[0]).toHaveProperty("blockName","core/more"),expect(e("\x3c!-- wp:core/more /--\x3e")[0]).toHaveProperty("blockName","core/more"),expect(e("\x3c!-- wp:my/more /--\x3e")[0]).toHaveProperty("blockName","my/more")}),test("JSON attributes are key/value object",()=>{expect(e("freeform has empty attrs")[0]).toHaveProperty("attrs",{}),expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("attrs",{}),expect(e("\x3c!-- wp:void {} /--\x3e")[0]).toHaveProperty("blockName","core/void"),expect(e("\x3c!-- wp:void {} /--\x3e")[0]).toHaveProperty("attrs",{}),expect(e('\x3c!-- wp:void {"key": "value"} /--\x3e')[0]).toHaveProperty("attrs",{key:"value"}),expect(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("attrs",{}),expect(e("\x3c!-- wp:block {} --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("attrs",{}),expect(e('\x3c!-- wp:block {"key": "value"} --\x3e\x3c!-- /wp:block --\x3e')[0]).toHaveProperty("attrs",{key:"value"})}),test("innerBlocks is a list",()=>{expect(e("freeform has empty innerBlocks")[0]).toHaveProperty("innerBlocks",[]),expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("innerBlocks",[]),expect(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerBlocks",[]);const t=e("\x3c!-- wp:block --\x3e\x3c!-- wp:inner /--\x3e\x3c!-- /wp:block --\x3e")[0];expect(t).toHaveProperty("innerBlocks",expect.any(Array)),expect(t.innerBlocks).toHaveLength(1);const r=e("\x3c!-- wp:block --\x3ea\x3c!-- wp:first /--\x3eb\x3c!-- wp:second /--\x3ec\x3c!-- /wp:block --\x3e")[0];expect(r).toHaveProperty("innerBlocks",expect.any(Array)),expect(r.innerBlocks).toHaveLength(2)}),test("innerHTML is a string",()=>{expect(e("test")[0]).toHaveProperty("innerHTML",expect.any(String)),expect(e("\x3c!-- wp:test /--\x3e")[0]).toHaveProperty("innerHTML",expect.any(String)),expect(e("\x3c!-- wp:test --\x3e\x3c!-- /wp:test --\x3e")[0]).toHaveProperty("innerHTML",expect.any(String)),expect(e("\x3c!-- wp:test --\x3etest\x3c!-- /wp:test --\x3e")[0]).toHaveProperty("innerHTML",expect.any(String))})}),describe("generic tests",()=>{test("parse() accepts inputs with multiple Reusable blocks",()=>{expect(e('\x3c!-- wp:block {"ref":313} /--\x3e\x3c!-- wp:block {"ref":482} /--\x3e')).toEqual([expect.objectContaining({blockName:"core/block",attrs:{ref:313}}),expect.objectContaining({blockName:"core/block",attrs:{ref:482}})])}),test("treats void blocks and empty blocks identically",()=>{expect(e("\x3c!-- wp:block /--\x3e")).toEqual(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")),expect(e('\x3c!-- wp:my/bus { "is": "fast" } /--\x3e')).toEqual(e('\x3c!-- wp:my/bus { "is": "fast" } --\x3e\x3c!-- /wp:my/bus --\x3e'))}),test("should grab HTML soup before block openers",()=>{["<p>Break me</p>\x3c!-- wp:block /--\x3e","<p>Break me</p>\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e"].forEach(t=>expect(e(t)).toEqual([expect.objectContaining({innerHTML:"<p>Break me</p>"}),expect.objectContaining({blockName:"core/block",innerHTML:""})]))}),test("should grab HTML soup before inner block openers",()=>["\x3c!-- wp:outer --\x3e<p>Break me</p>\x3c!-- wp:block /--\x3e\x3c!-- /wp:outer --\x3e","\x3c!-- wp:outer --\x3e<p>Break me</p>\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e\x3c!-- /wp:outer --\x3e"].forEach(t=>expect(e(t)).toEqual([expect.objectContaining({innerBlocks:[expect.objectContaining({blockName:"core/block",innerHTML:""})],innerHTML:"<p>Break me</p>"})]))),test("should grab HTML soup after blocks",()=>["\x3c!-- wp:block /--\x3e<p>Break me</p>","\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e<p>Break me</p>"].forEach(t=>expect(e(t)).toEqual([expect.objectContaining({blockName:"core/block",innerHTML:""}),expect.objectContaining({innerHTML:"<p>Break me</p>"})])))}),describe("innerBlock placemarkers",()=>{test("innerContent exists",()=>{expect(e("test")[0]).toHaveProperty("innerContent",["test"]),expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("innerContent",[])}),test("innerContent contains innerHTML",()=>{expect(e("\x3c!-- wp:block --\x3eInner\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",["Inner"])}),test("block locations become null",()=>{expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:void /--\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",[null])}),test("HTML soup appears after blocks",()=>{expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:void /--\x3eAfter\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",[null,"After"])}),test("HTML soup appears before blocks",()=>{expect(e("\x3c!-- wp:block --\x3eBefore\x3c!-- wp:void /--\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",["Before",null])}),test("blocks follow each other",()=>{expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:void /--\x3e\x3c!-- wp:void /--\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",[null,null])})}),describe("attack vectors",()=>{test("really long JSON attribute sections",()=>{const t="a".repeat(1e5);let r;expect(()=>r=e(`\x3c!-- wp:fake {"a":"${t}"} /--\x3e`)[0]).not.toThrow(),expect(r.attrs.a).toHaveLength(1e5)})})},c=(...e)=>describe.skip(...e),p=(e,t)=>c(e,()=>{});r.d(t,"parse",function(){return o.parse}),r.d(t,"jsTester",function(){return n}),r.d(t,"phpTester",function(){return p})}}); this.wp=this.wp||{},this.wp.blockSerializationSpecParser=function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:o})},r.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=196)}({182:function(e,t,r){var o,n,c;n=[],void 0===(c="function"==typeof(o=function(){"use strict";function e(t,r,o,n){this.message=t,this.expected=r,this.found=o,this.location=n,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,e)}return function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(e,Error),e.buildMessage=function(e,t){var r={literal:function(e){return'"'+n(e.text)+'"'},class:function(e){var t,r="";for(t=0;t<e.parts.length;t++)r+=e.parts[t]instanceof Array?c(e.parts[t][0])+"-"+c(e.parts[t][1]):c(e.parts[t]);return"["+(e.inverted?"^":"")+r+"]"},any:function(e){return"any character"},end:function(e){return"end of input"},other:function(e){return e.description}};function o(e){return e.charCodeAt(0).toString(16).toUpperCase()}function n(e){return e.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(e){return"\\x0"+o(e)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(e){return"\\x"+o(e)})}function c(e){return e.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replace(/\^/g,"\\^").replace(/-/g,"\\-").replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(e){return"\\x0"+o(e)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(e){return"\\x"+o(e)})}function p(e){return r[e.type](e)}return"Expected "+function(e){var t,r,o=new Array(e.length);for(t=0;t<e.length;t++)o[t]=p(e[t]);if(o.sort(),o.length>0){for(t=1,r=1;t<o.length;t++)o[t-1]!==o[t]&&(o[r]=o[t],r++);o.length=r}switch(o.length){case 1:return o[0];case 2:return o[0]+" or "+o[1];default:return o.slice(0,-1).join(", ")+", or "+o[o.length-1]}}(e)+" but "+function(e){return e?'"'+n(e)+'"':"end of input"}(t)+" found."},{SyntaxError:e,parse:function(t,r){r=void 0!==r?r:{};var o,n={},c={Block_List:Z},p=Z,a={type:"any"},l=function(e,t,r){return[t,r]},i=function(e,t,r){return function(e,t,r){var o,n,c,p,a,l=[];for(e.length&&l.push(pe(e)),o=0,n=t.length;o<n;o++)p=t[o],a=p[0],c=p[1],l.push(a),c.length&&l.push(pe(c));return r.length&&l.push(pe(r)),l}(e,t,r)},x="\x3c!--",s=G("\x3c!--",!1),u="wp:",b=G("wp:",!1),f=function(e,t){return t},k="/--\x3e",v=G("/--\x3e",!1),h=function(e,t){return{blockName:e,attrs:t||{},innerBlocks:[],innerHTML:"",innerContent:[]}},w=function(e,t,r){var o=function(e){var t,r,o,n="",c=[],p=[];for(t=0,r=e.length;t<r;t++)"string"==typeof(o=e[t])?(n+=o,p.push(o)):(c.push(o),p.push(null));return[n,c,p]}(t),n=o[0],c=o[1],p=o[2];return{blockName:e.blockName,attrs:e.attrs,innerBlocks:c,innerHTML:n,innerContent:p}},d="--\x3e",y=G("--\x3e",!1),g=function(e,t){return{blockName:e,attrs:t||{}}},m="/wp:",H=G("/wp:",!1),A=function(e){return{blockName:e}},P="/",N=G("/",!1),C=function(e){return"core/"+e},B=/^[a-z]/,T=K([["a","z"]],!1,!1),L=/^[a-z0-9_\-]/,M=K([["a","z"],["0","9"],"_","-"],!1,!1),E=Q("JSON-encoded attributes embedded in a block's opening comment"),S="{",j=G("{",!1),q="}",F=G("}",!1),O="",_=function(e){return function(e){try{return JSON.parse(e)}catch(e){return null}}(e)},z=/^[ \t\r\n]/,R=K([" ","\t","\r","\n"],!1,!1),J=0,I=[{line:1,column:1}],U=0,$=[],D=0;if("startRule"in r){if(!(r.startRule in c))throw new Error("Can't start parsing from rule \""+r.startRule+'".');p=c[r.startRule]}function G(e,t){return{type:"literal",text:e,ignoreCase:t}}function K(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function Q(e){return{type:"other",description:e}}function V(e){var r,o=I[e];if(o)return o;for(r=e-1;!I[r];)r--;for(o={line:(o=I[r]).line,column:o.column};r<e;)10===t.charCodeAt(r)?(o.line++,o.column=1):o.column++,r++;return I[e]=o,o}function W(e,t){var r=V(e),o=V(t);return{start:{offset:e,line:r.line,column:r.column},end:{offset:t,line:o.line,column:o.column}}}function X(e){J<U||(J>U&&(U=J,$=[]),$.push(e))}function Y(t,r,o){return new e(e.buildMessage(t,r),t,r,o)}function Z(){var e,r,o,c,p,x,s,u,b,f;for(e=J,r=J,o=[],c=J,p=J,D++,x=ee(),D--,x===n?p=void 0:(J=p,p=n),p!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?c=p=[p,x]:(J=c,c=n)):(J=c,c=n);c!==n;)o.push(c),c=J,p=J,D++,x=ee(),D--,x===n?p=void 0:(J=p,p=n),p!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?c=p=[p,x]:(J=c,c=n)):(J=c,c=n);if((r=o!==n?t.substring(r,J):o)!==n){if(o=[],c=J,(p=ee())!==n){for(x=J,s=[],u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);u!==n;)s.push(u),u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);(x=s!==n?t.substring(x,J):s)!==n?(p=l(r,p,x),c=p):(J=c,c=n)}else J=c,c=n;for(;c!==n;)if(o.push(c),c=J,(p=ee())!==n){for(x=J,s=[],u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);u!==n;)s.push(u),u=J,b=J,D++,f=ee(),D--,f===n?b=void 0:(J=b,b=n),b!==n?(t.length>J?(f=t.charAt(J),J++):(f=n,0===D&&X(a)),f!==n?u=b=[b,f]:(J=u,u=n)):(J=u,u=n);(x=s!==n?t.substring(x,J):s)!==n?(p=l(r,p,x),c=p):(J=c,c=n)}else J=c,c=n;if(o!==n){for(c=J,p=[],t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a));x!==n;)p.push(x),t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a));(c=p!==n?t.substring(c,J):p)!==n?(r=i(r,o,c),e=r):(J=e,e=n)}else J=e,e=n}else J=e,e=n;return e}function ee(){var e;return(e=function(){var e,r,o,c,p,a;return e=J,t.substr(J,4)===x?(r=x,J+=4):(r=n,0===D&&X(s)),r!==n&&ce()!==n?(t.substr(J,3)===u?(o=u,J+=3):(o=n,0===D&&X(b)),o!==n&&(c=re())!==n&&ce()!==n?(p=J,(a=ne())!==n&&ce()!==n?(a=f(c,a),p=a):(J=p,p=n),p===n&&(p=null),p!==n?(t.substr(J,4)===k?(a=k,J+=4):(a=n,0===D&&X(v)),a!==n?(r=h(c,p),e=r):(J=e,e=n)):(J=e,e=n)):(J=e,e=n)):(J=e,e=n),e}())===n&&(e=function(){var e,r,o,c,p,l,i,k,v;if(e=J,(r=function(){var e,r,o,c,p,a;return e=J,t.substr(J,4)===x?(r=x,J+=4):(r=n,0===D&&X(s)),r!==n&&ce()!==n?(t.substr(J,3)===u?(o=u,J+=3):(o=n,0===D&&X(b)),o!==n&&(c=re())!==n&&ce()!==n?(p=J,(a=ne())!==n&&ce()!==n?(a=f(c,a),p=a):(J=p,p=n),p===n&&(p=null),p!==n?(t.substr(J,3)===d?(a=d,J+=3):(a=n,0===D&&X(y)),a!==n?(r=g(c,p),e=r):(J=e,e=n)):(J=e,e=n)):(J=e,e=n)):(J=e,e=n),e}())!==n){if(o=[],(c=ee())===n){if(c=J,p=[],l=J,i=J,D++,k=ee(),D--,k===n?i=void 0:(J=i,i=n),i!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?l=i=[i,k,v]:(J=l,l=n)):(J=l,l=n)):(J=l,l=n),l!==n)for(;l!==n;)p.push(l),l=J,i=J,D++,k=ee(),D--,k===n?i=void 0:(J=i,i=n),i!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?l=i=[i,k,v]:(J=l,l=n)):(J=l,l=n)):(J=l,l=n);else p=n;c=p!==n?t.substring(c,J):p}for(;c!==n;)if(o.push(c),(c=ee())===n){if(c=J,p=[],l=J,i=J,D++,k=ee(),D--,k===n?i=void 0:(J=i,i=n),i!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?l=i=[i,k,v]:(J=l,l=n)):(J=l,l=n)):(J=l,l=n),l!==n)for(;l!==n;)p.push(l),l=J,i=J,D++,k=ee(),D--,k===n?i=void 0:(J=i,i=n),i!==n?(k=J,D++,v=te(),D--,v===n?k=void 0:(J=k,k=n),k!==n?(t.length>J?(v=t.charAt(J),J++):(v=n,0===D&&X(a)),v!==n?l=i=[i,k,v]:(J=l,l=n)):(J=l,l=n)):(J=l,l=n);else p=n;c=p!==n?t.substring(c,J):p}o!==n&&(c=te())!==n?(r=w(r,o,c),e=r):(J=e,e=n)}else J=e,e=n;return e}()),e}function te(){var e,r,o,c,p;return e=J,t.substr(J,4)===x?(r=x,J+=4):(r=n,0===D&&X(s)),r!==n&&ce()!==n?(t.substr(J,4)===m?(o=m,J+=4):(o=n,0===D&&X(H)),o!==n&&(c=re())!==n&&ce()!==n?(t.substr(J,3)===d?(p=d,J+=3):(p=n,0===D&&X(y)),p!==n?(r=A(c),e=r):(J=e,e=n)):(J=e,e=n)):(J=e,e=n),e}function re(){var e;return(e=function(){var e,r,o,c,p;return e=J,r=J,(o=oe())!==n?(47===t.charCodeAt(J)?(c=P,J++):(c=n,0===D&&X(N)),c!==n&&(p=oe())!==n?r=o=[o,c,p]:(J=r,r=n)):(J=r,r=n),e=r!==n?t.substring(e,J):r}())===n&&(e=function(){var e,r;return e=J,(e=(r=oe())!==n?t.substring(e,J):r)!==n&&(e=C(e)),e}()),e}function oe(){var e,r,o,c,p;if(e=J,r=J,B.test(t.charAt(J))?(o=t.charAt(J),J++):(o=n,0===D&&X(T)),o!==n){for(c=[],L.test(t.charAt(J))?(p=t.charAt(J),J++):(p=n,0===D&&X(M));p!==n;)c.push(p),L.test(t.charAt(J))?(p=t.charAt(J),J++):(p=n,0===D&&X(M));c!==n?r=o=[o,c]:(J=r,r=n)}else J=r,r=n;return e=r!==n?t.substring(e,J):r}function ne(){var e,r,o,c,p,l,i,x,s,u,b,f,k;if(D++,e=J,r=J,o=J,123===t.charCodeAt(J)?(c=S,J++):(c=n,0===D&&X(j)),c!==n){for(p=[],l=J,i=J,D++,x=J,125===t.charCodeAt(J)?(s=q,J++):(s=n,0===D&&X(F)),s!==n&&(u=ce())!==n&&(b=O)!==n?(47===t.charCodeAt(J)?(f=P,J++):(f=n,0===D&&X(N)),f===n&&(f=null),f!==n?(t.substr(J,3)===d?(k=d,J+=3):(k=n,0===D&&X(y)),k!==n?x=s=[s,u,b,f,k]:(J=x,x=n)):(J=x,x=n)):(J=x,x=n),D--,x===n?i=void 0:(J=i,i=n),i!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?l=i=[i,x]:(J=l,l=n)):(J=l,l=n);l!==n;)p.push(l),l=J,i=J,D++,x=J,125===t.charCodeAt(J)?(s=q,J++):(s=n,0===D&&X(F)),s!==n&&(u=ce())!==n&&(b=O)!==n?(47===t.charCodeAt(J)?(f=P,J++):(f=n,0===D&&X(N)),f===n&&(f=null),f!==n?(t.substr(J,3)===d?(k=d,J+=3):(k=n,0===D&&X(y)),k!==n?x=s=[s,u,b,f,k]:(J=x,x=n)):(J=x,x=n)):(J=x,x=n),D--,x===n?i=void 0:(J=i,i=n),i!==n?(t.length>J?(x=t.charAt(J),J++):(x=n,0===D&&X(a)),x!==n?l=i=[i,x]:(J=l,l=n)):(J=l,l=n);p!==n?(125===t.charCodeAt(J)?(l=q,J++):(l=n,0===D&&X(F)),l!==n?o=c=[c,p,l]:(J=o,o=n)):(J=o,o=n)}else J=o,o=n;return(r=o!==n?t.substring(r,J):o)!==n&&(r=_(r)),D--,(e=r)===n&&(r=n,0===D&&X(E)),e}function ce(){var e,r;if(e=[],z.test(t.charAt(J))?(r=t.charAt(J),J++):(r=n,0===D&&X(R)),r!==n)for(;r!==n;)e.push(r),z.test(t.charAt(J))?(r=t.charAt(J),J++):(r=n,0===D&&X(R));else e=n;return e}function pe(e){return e.length&&{blockName:null,attrs:{},innerBlocks:[],innerHTML:e,innerContent:[e]}}if((o=p())!==n&&J===t.length)return o;throw o!==n&&J<t.length&&X({type:"end"}),Y($,U<t.length?t.charAt(U):null,U<t.length?W(U,U+1):W(U,U))}}})?o.apply(t,n):o)||(e.exports=c)},196:function(e,t,r){"use strict";r.r(t);var o=r(182);const n=e=>()=>{describe("output structure",()=>{test("output is an array",()=>{expect(e("")).toEqual(expect.any(Array)),expect(e("test")).toEqual(expect.any(Array)),expect(e("\x3c!-- wp:void /--\x3e")).toEqual(expect.any(Array)),expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:inner /--\x3e\x3c!-- /wp:block --\x3e")).toEqual(expect.any(Array)),expect(e("\x3c!-- wp:first /--\x3e\x3c!-- wp:second /--\x3e")).toEqual(expect.any(Array))}),test("parses blocks of various types",()=>{expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("blockName","core/void"),expect(e("\x3c!-- wp:void {} /--\x3e")[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void {"value":true} /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void {"a":{}} /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void { "value" : true } /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e('\x3c!-- wp:void {\n\t"value" : true\n} /--\x3e')[0]).toHaveProperty("blockName","core/void"),expect(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("blockName","core/block"),expect(e("\x3c!-- wp:block {} --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("blockName","core/block"),expect(e('\x3c!-- wp:block {"value":true} --\x3e\x3c!-- /wp:block --\x3e')[0]).toHaveProperty("blockName","core/block"),expect(e("\x3c!-- wp:block {} --\x3einner\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("blockName","core/block"),expect(e('\x3c!-- wp:block {"value":{"a" : "true"}} --\x3einner\x3c!-- /wp:block --\x3e')[0]).toHaveProperty("blockName","core/block")}),test("blockName is namespaced string (except freeform)",()=>{expect(e("freeform has null name")[0]).toHaveProperty("blockName",null),expect(e("\x3c!-- wp:more /--\x3e")[0]).toHaveProperty("blockName","core/more"),expect(e("\x3c!-- wp:core/more /--\x3e")[0]).toHaveProperty("blockName","core/more"),expect(e("\x3c!-- wp:my/more /--\x3e")[0]).toHaveProperty("blockName","my/more")}),test("JSON attributes are key/value object",()=>{expect(e("freeform has empty attrs")[0]).toHaveProperty("attrs",{}),expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("attrs",{}),expect(e("\x3c!-- wp:void {} /--\x3e")[0]).toHaveProperty("blockName","core/void"),expect(e("\x3c!-- wp:void {} /--\x3e")[0]).toHaveProperty("attrs",{}),expect(e('\x3c!-- wp:void {"key": "value"} /--\x3e')[0]).toHaveProperty("attrs",{key:"value"}),expect(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("attrs",{}),expect(e("\x3c!-- wp:block {} --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("attrs",{}),expect(e('\x3c!-- wp:block {"key": "value"} --\x3e\x3c!-- /wp:block --\x3e')[0]).toHaveProperty("attrs",{key:"value"})}),test("innerBlocks is a list",()=>{expect(e("freeform has empty innerBlocks")[0]).toHaveProperty("innerBlocks",[]),expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("innerBlocks",[]),expect(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerBlocks",[]);const t=e("\x3c!-- wp:block --\x3e\x3c!-- wp:inner /--\x3e\x3c!-- /wp:block --\x3e")[0];expect(t).toHaveProperty("innerBlocks",expect.any(Array)),expect(t.innerBlocks).toHaveLength(1);const r=e("\x3c!-- wp:block --\x3ea\x3c!-- wp:first /--\x3eb\x3c!-- wp:second /--\x3ec\x3c!-- /wp:block --\x3e")[0];expect(r).toHaveProperty("innerBlocks",expect.any(Array)),expect(r.innerBlocks).toHaveLength(2)}),test("innerHTML is a string",()=>{expect(e("test")[0]).toHaveProperty("innerHTML",expect.any(String)),expect(e("\x3c!-- wp:test /--\x3e")[0]).toHaveProperty("innerHTML",expect.any(String)),expect(e("\x3c!-- wp:test --\x3e\x3c!-- /wp:test --\x3e")[0]).toHaveProperty("innerHTML",expect.any(String)),expect(e("\x3c!-- wp:test --\x3etest\x3c!-- /wp:test --\x3e")[0]).toHaveProperty("innerHTML",expect.any(String))})}),describe("generic tests",()=>{test("parse() accepts inputs with multiple Reusable blocks",()=>{expect(e('\x3c!-- wp:block {"ref":313} /--\x3e\x3c!-- wp:block {"ref":482} /--\x3e')).toEqual([expect.objectContaining({blockName:"core/block",attrs:{ref:313}}),expect.objectContaining({blockName:"core/block",attrs:{ref:482}})])}),test("treats void blocks and empty blocks identically",()=>{expect(e("\x3c!-- wp:block /--\x3e")).toEqual(e("\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e")),expect(e('\x3c!-- wp:my/bus { "is": "fast" } /--\x3e')).toEqual(e('\x3c!-- wp:my/bus { "is": "fast" } --\x3e\x3c!-- /wp:my/bus --\x3e'))}),test("should grab HTML soup before block openers",()=>{["<p>Break me</p>\x3c!-- wp:block /--\x3e","<p>Break me</p>\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e"].forEach(t=>expect(e(t)).toEqual([expect.objectContaining({innerHTML:"<p>Break me</p>"}),expect.objectContaining({blockName:"core/block",innerHTML:""})]))}),test("should grab HTML soup before inner block openers",()=>["\x3c!-- wp:outer --\x3e<p>Break me</p>\x3c!-- wp:block /--\x3e\x3c!-- /wp:outer --\x3e","\x3c!-- wp:outer --\x3e<p>Break me</p>\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e\x3c!-- /wp:outer --\x3e"].forEach(t=>expect(e(t)).toEqual([expect.objectContaining({innerBlocks:[expect.objectContaining({blockName:"core/block",innerHTML:""})],innerHTML:"<p>Break me</p>"})]))),test("should grab HTML soup after blocks",()=>["\x3c!-- wp:block /--\x3e<p>Break me</p>","\x3c!-- wp:block --\x3e\x3c!-- /wp:block --\x3e<p>Break me</p>"].forEach(t=>expect(e(t)).toEqual([expect.objectContaining({blockName:"core/block",innerHTML:""}),expect.objectContaining({innerHTML:"<p>Break me</p>"})])))}),describe("innerBlock placemarkers",()=>{test("innerContent exists",()=>{expect(e("test")[0]).toHaveProperty("innerContent",["test"]),expect(e("\x3c!-- wp:void /--\x3e")[0]).toHaveProperty("innerContent",[])}),test("innerContent contains innerHTML",()=>{expect(e("\x3c!-- wp:block --\x3eInner\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",["Inner"])}),test("block locations become null",()=>{expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:void /--\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",[null])}),test("HTML soup appears after blocks",()=>{expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:void /--\x3eAfter\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",[null,"After"])}),test("HTML soup appears before blocks",()=>{expect(e("\x3c!-- wp:block --\x3eBefore\x3c!-- wp:void /--\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",["Before",null])}),test("blocks follow each other",()=>{expect(e("\x3c!-- wp:block --\x3e\x3c!-- wp:void /--\x3e\x3c!-- wp:void /--\x3e\x3c!-- /wp:block --\x3e")[0]).toHaveProperty("innerContent",[null,null])})}),describe("attack vectors",()=>{test("really long JSON attribute sections",()=>{const t="a".repeat(1e5);let r;expect(()=>r=e(`\x3c!-- wp:fake {"a":"${t}"} /--\x3e`)[0]).not.toThrow(),expect(r.attrs.a).toHaveLength(1e5)}),describe("invalid block comment syntax",()=>{test("extra space after void closer",()=>{let t;expect(()=>t=e("\x3c!-- wp:block / --\x3e")[0]).not.toThrow(),expect(t.blockName).toBeNull()})})})},c=(...e)=>describe.skip(...e),p=(e,t)=>c(e,()=>{});r.d(t,"parse",function(){return o.parse}),r.d(t,"jsTester",function(){return n}),r.d(t,"phpTester",function(){return p})}});
\ No newline at end of file \ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
body.js.is-fullscreen-mode{animation:edit-post__fade-in-animation .3s ease-out 0s;animation-fill-mode:forwards;height:calc(100% + 46px);margin-top:-46px}@media (min-width:782px){body.js.is-fullscreen-mode{height:calc(100% + 32px);margin-top:-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}body.js.is-fullscreen-mode .edit-post-header{animation:edit-post-fullscreen-mode__slide-in-animation .1s forwards;transform:translateY(-100%)}@keyframes edit-post-fullscreen-mode__slide-in-animation{to{transform:translateY(0)}}.edit-post-header{align-items:stretch;background:#fff;border-bottom:1px solid #e2e4e7;display:flex;flex-direction:row;height:56px;justify-content:space-between;left:0;padding:4px 2px;position:-webkit-sticky;position:sticky;top:0;z-index:30}@media (min-width:600px){.edit-post-header{padding:8px;position:fixed;top:46px}body.is-fullscreen-mode .edit-post-header{top:0}}@media (min-width:782px){.edit-post-header{top:32px}body.is-fullscreen-mode .edit-post-header{top:0}}.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:none}@media (min-width:600px){.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:inline-flex}}.edit-post-header>.edit-post-header__settings{order:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-header>.edit-post-header__settings{order:0}}.edit-post-header{right:0}@media (min-width:782px){.edit-post-header{right:160px}}@media (min-width:782px){.auto-fold .edit-post-header{right:36px}}@media (min-width:960px){.auto-fold .edit-post-header{right:160px}}.folded .edit-post-header{right:0}@media (min-width:782px){.folded .edit-post-header{right:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .edit-post-header{right:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .edit-post-header{margin-right:-18px}}body.is-fullscreen-mode .edit-post-header{right:0!important}.edit-post-header__settings{align-items:center;display:inline-flex}.edit-post-header .components-button.is-toggled{color:#fff}.edit-post-header .components-button.is-toggled:before{background:#555d66;border-radius:4px;bottom:1px;content:"";left:1px;position:absolute;right:1px;top:1px;z-index:-1}.edit-post-header .components-button.is-toggled:focus,.edit-post-header .components-button.is-toggled:hover{background:#555d66;box-shadow:0 0 0 1px #555d66,inset 0 0 0 1px #fff;color:#fff}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle,.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{font-size:13px;height:33px;line-height:32px;margin:2px}.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 5px}@media (min-width:600px){.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 12px}}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 5px 2px}@media (min-width:600px){.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 12px 2px}}@media (min-width:782px){.edit-post-header .components-button.editor-post-preview{margin:0 12px 0 3px}.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{margin:0 3px 0 12px}}.edit-post-fullscreen-mode-close__toolbar{border-bottom:0;border-right:0;border-top:0;margin:-9px -10px -9px 10px;padding:9px 10px}.edit-post-header-toolbar{align-items:center;display:inline-flex}.edit-post-header-toolbar>.components-button{display:none}@media (min-width:600px){.edit-post-header-toolbar>.components-button{display:inline-flex}}.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:none}@media (min-width:600px){.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:flex}}.edit-post-header-toolbar__block-toolbar{background:#fff;border-bottom:1px solid #e2e4e7;left:0;min-height:37px;position:absolute;right:0;top:56px}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{border-bottom:none;border-top:none}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:none}@media (min-width:782px){.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:block;left:280px}}@media (min-width:1080px){.edit-post-header-toolbar__block-toolbar{background:none;border-bottom:none;left:auto;min-height:auto;padding-right:8px;position:static;right:auto}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{left:auto}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar{margin:-9px 0}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{padding:10px 4px 9px}}.edit-post-more-menu{margin-right:-4px}.edit-post-more-menu .components-icon-button{padding:8px 2px;width:auto}@media (min-width:600px){.edit-post-more-menu{margin-right:4px}.edit-post-more-menu .components-icon-button{padding:8px 4px}}.edit-post-more-menu .components-button svg{transform:rotate(-90deg)}.edit-post-more-menu__content .components-popover__content{min-width:260px}@media (min-width:480px){.edit-post-more-menu__content .components-popover__content{max-width:480px;width:auto}}.edit-post-more-menu__content .components-popover__content .components-menu-group:not(:last-child),.edit-post-more-menu__content .components-popover__content>div:not(:last-child) .components-menu-group{border-bottom:1px solid #e2e4e7}.edit-post-more-menu__content .components-popover__content .components-menu-item__button{padding-right:2rem}.edit-post-more-menu__content .components-popover__content .components-menu-item__button.has-icon{padding-right:.5rem}.edit-post-pinned-plugins{display:none}@media (min-width:600px){.edit-post-pinned-plugins{display:flex}}.edit-post-pinned-plugins .components-icon-button{margin-right:4px}.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg,.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg *{fill:#555d66;stroke:#555d66}.edit-post-pinned-plugins .components-icon-button.is-toggled svg,.edit-post-pinned-plugins .components-icon-button.is-toggled svg *{fill:#fff!important;stroke:#fff!important}.edit-post-pinned-plugins .components-icon-button:hover svg,.edit-post-pinned-plugins .components-icon-button:hover svg *{fill:#191e23!important;stroke:#191e23!important}.edit-post-keyboard-shortcut-help__title{font-size:1rem;font-weight:600}.edit-post-keyboard-shortcut-help__section{margin:0 0 2rem}.edit-post-keyboard-shortcut-help__section-title{font-size:.9rem;font-weight:600}.edit-post-keyboard-shortcut-help__shortcut{align-items:center;border-top:1px solid #e2e4e7;display:flex;padding:.6rem 0}.edit-post-keyboard-shortcut-help__shortcut:last-child{border-bottom:1px solid #e2e4e7}.edit-post-keyboard-shortcut-help__shortcut-term{font-weight:600;margin:0 1rem 0 0;order:1}.edit-post-keyboard-shortcut-help__shortcut-description{flex:1;flex-basis:auto;margin:0;order:0}.edit-post-keyboard-shortcut-help__shortcut-key-combination{background:none;margin:0;padding:0}.edit-post-keyboard-shortcut-help__shortcut-key{border-radius:8%;margin:0 .2rem;padding:.25rem .5rem}.edit-post-keyboard-shortcut-help__shortcut-key:last-child{margin:0 .2rem 0 0}.edit-post-layout,.edit-post-layout__content{height:100%}.edit-post-layout{position:relative}.edit-post-layout .components-notice-list{color:#191e23;left:0;position:-webkit-sticky;position:sticky;top:56px}@media (min-width:600px){.edit-post-layout .components-notice-list{position:fixed;top:inherit}}.edit-post-layout .components-notice-list .components-notice{margin:0 0 5px;min-height:50px;padding:6px 12px}.edit-post-layout .components-notice-list .components-notice .components-notice__dismiss{margin:10px 5px}@media (min-width:600px){.edit-post-layout{padding-top:56px}}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:36px}@media (min-width:600px){.edit-post-layout.has-fixed-toolbar{padding-top:93px}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:0}}@media (min-width:960px){.edit-post-layout.has-fixed-toolbar{padding-top:56px}}.components-notice-list{right:0}@media (min-width:782px){.components-notice-list{right:160px}}@media (min-width:782px){.auto-fold .components-notice-list{right:36px}}@media (min-width:960px){.auto-fold .components-notice-list{right:160px}}.folded .components-notice-list{right:0}@media (min-width:782px){.folded .components-notice-list{right:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .components-notice-list{right:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .components-notice-list{margin-right:-18px}}body.is-fullscreen-mode .components-notice-list{right:0!important}.components-notice-list{left:0}.edit-post-layout.is-sidebar-opened .components-notice-list{left:280px}.edit-post-layout__metaboxes:not(:empty){border-top:1px solid #e2e4e7;clear:both;margin-top:10px;padding:10px 0}.edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area{margin:auto 20px}.edit-post-layout__content{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;min-height:100%;overflow-y:auto;padding-bottom:50vh;position:relative}@media (min-width:600px){.edit-post-layout__content{overscroll-behavior-y:none;padding-bottom:0}}.edit-post-layout__content .edit-post-visual-editor{flex-grow:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-layout__content .edit-post-visual-editor{flex-basis:100%}}.edit-post-layout__content .edit-post-layout__metaboxes{flex-shrink:0}.edit-post-layout .editor-post-publish-panel{bottom:0;left:0;overflow:auto;position:fixed;right:0;top:46px;z-index:100001}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}@media (min-width:782px){.edit-post-layout .editor-post-publish-panel{animation:edit-post-layout__slide-in-animation .1s forwards;border-right:1px solid #e2e4e7;right:auto;top:32px;transform:translateX(-100%);width:280px}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}}@keyframes edit-post-layout__slide-in-animation{to{transform:translateX(0)}}.edit-post-layout .editor-post-publish-panel__header-publish-button .components-button.is-large{height:33px;line-height:32px}.edit-post-layout .editor-post-publish-panel__header-publish-button .editor-post-publish-panel__spacer{display:inline-flex;flex:0 1 52px}.edit-post-toggle-publish-panel{bottom:0;height:0;left:0;overflow:hidden;position:absolute;width:280px;z-index:100000}.edit-post-toggle-publish-panel:focus-within{height:auto;padding:20px 0 0}.edit-post-toggle-publish-panel .edit-post-toggle-publish-panel__button{background:#f1f1f1;float:left;font-size:14px;font-weight:600;height:auto;line-height:normal;outline:none;padding:15px 23px 14px;text-decoration:none;width:auto}.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 #poststuff{margin:0 auto;min-width:auto;padding-top:0}.edit-post-meta-boxes-area #poststuff .stuffbox>h3,.edit-post-meta-boxes-area #poststuff h2.hndle,.edit-post-meta-boxes-area #poststuff h3.hndle{border-bottom:1px solid #e2e4e7;box-sizing:border-box;color:inherit;font-weight:600;outline:none;padding:15px;position:relative;width:100%}.edit-post-meta-boxes-area .postbox{border:0;color:inherit;margin-bottom:0}.edit-post-meta-boxes-area .postbox>.inside{border-bottom:1px solid #e2e4e7;color:inherit;margin:0;padding:0 14px 14px}.edit-post-meta-boxes-area .postbox .handlediv{height:44px;width:44px}.edit-post-meta-boxes-area.is-loading:before{background:transparent;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:1}.edit-post-meta-boxes-area .components-spinner{left:20px;position:absolute;top:10px;z-index:5}.edit-post-meta-boxes-area__clear{clear:both}.edit-post-sidebar{background:#fff;border-right:1px solid #e2e4e7;bottom:0;color:#555d66;height:100vh;left:0;overflow:hidden;position:fixed;top:0;width:280px;z-index:100000}@media (min-width:600px){.edit-post-sidebar{-webkit-overflow-scrolling:touch;height:auto;overflow:auto;top:102px;z-index:90}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}@media (min-width:782px){.edit-post-sidebar{top:88px}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}.edit-post-sidebar>.components-panel{-webkit-overflow-scrolling:touch;border-left:none;border-right:none;height:auto;margin-bottom:-1px;margin-top:-1px;max-height:calc(100vh - 96px);overflow:auto}body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:calc(100vh - 50px)}@media (min-width:600px){body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:none}}@media (min-width:600px){.edit-post-sidebar>.components-panel{height:auto;max-height:none;overflow:inherit}}.edit-post-sidebar>.components-panel .components-panel__header{height:50px;left:0;position:fixed;right:0;top:0;z-index:1}@media (min-width:600px){.edit-post-sidebar>.components-panel .components-panel__header{left:auto;position:inherit;right:auto;top:auto}}.edit-post-sidebar p{margin-top:0}.edit-post-sidebar h2,.edit-post-sidebar h3{color:#555d66;font-size:13px;margin-bottom:1.5em}.edit-post-sidebar hr{border-bottom:1px solid #e2e4e7;border-top:none;margin:1.5em 0}.edit-post-sidebar div.components-toolbar{box-shadow:none;margin-bottom:1.5em}.edit-post-sidebar div.components-toolbar:last-child{margin-bottom:0}.edit-post-sidebar p+div.components-toolbar{margin-top:-1em}.edit-post-sidebar .editor-skip-to-selected-block:focus{bottom:10px;left:10px;right:auto;top:auto}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-layout__content{margin-left:280px}}.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:100%}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:280px}}.components-panel__header.edit-post-sidebar__header{background:#fff;padding-left:8px}.components-panel__header.edit-post-sidebar__header .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar__header{display:none}}.components-panel__header.edit-post-sidebar__panel-tabs{margin-top:0}.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:none;margin-right:auto}@media (min-width:782px){.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:flex}}.edit-post-sidebar__panel-tab{height:50px}.components-panel__body.is-opened.edit-post-last-revision__panel{padding:0}.editor-post-last-revision__title{padding:13px 16px}.editor-post-author__select{margin:-5px 0;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.editor-post-author__select{width:auto}}.edit-post-post-link__link-post-name{font-weight:600}.edit-post-post-link__preview-label{margin:0}.edit-post-post-link__link{word-wrap:break-word}.edit-post-post-schedule{position:relative;width:100%}.edit-post-post-schedule__label{display:none}.components-button.edit-post-post-schedule__toggle{text-align:left}.edit-post-post-schedule__dialog .components-popover__content{padding:10px}@media (min-width:782px){.edit-post-post-schedule__dialog .components-popover__content{width:270px}}.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft{margin-top:15px;text-align:center;width:100%}.edit-post-post-visibility{width:100%}.edit-post-post-visibility__dialog .components-popover__content{padding:10px}@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{margin-right:20px;width:calc(100% - 20px)}.edit-post-post-visibility__dialog-info{color:#7e8993;font-style:italic;line-height:1.4;margin:4px 0 0;padding-right:20px}.components-panel__header.edit-post-sidebar__panel-tabs{border-top:0;justify-content:flex-start;padding-left:4px;padding-right:0;position:-webkit-sticky;position:sticky;top:0;z-index:1}.components-panel__header.edit-post-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-post-sidebar__panel-tabs li{margin:0}.edit-post-sidebar__panel-tab{background:transparent;border:none;border-radius:0;color:#191e23;cursor:pointer;font-weight:400;height:48px;margin-right:0;outline-offset:-1px;padding:3px 15px}.edit-post-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba;font-weight:600;padding-bottom:0}body.admin-color-sunrise .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #d1864a}body.admin-color-ocean .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a3b9a2}body.admin-color-midnight .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #e14d43}body.admin-color-ectoplasm .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a7b656}body.admin-color-coffee .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #c2a68c}body.admin-color-blue .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #82b4cb}body.admin-color-light .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba}.edit-post-sidebar__panel-tab:focus{box-shadow:none;color:#191e23;outline:1px solid #6c7781}.edit-post-settings-sidebar__panel-block .components-panel__body{border:none;border-top:1px solid #e2e4e7;margin:0 -16px}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control{margin:0 0 1.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control:last-child{margin-bottom:.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-panel__body-toggle{color:#191e23}.edit-post-settings-sidebar__panel-block .components-panel__body:first-child{margin-top:16px}.edit-post-settings-sidebar__panel-block .components-panel__body:last-child{margin-bottom:-16px}.components-panel__header.edit-post-sidebar-header__small{background:#fff;padding-left:4px}.components-panel__header.edit-post-sidebar-header__small .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header__small{display:none}}.components-panel__header.edit-post-sidebar-header{background:#f3f4f5;padding-left:4px}.components-panel__header.edit-post-sidebar-header .components-icon-button{display:none;margin-right:auto}.components-panel__header.edit-post-sidebar-header .components-icon-button~.components-icon-button{margin-right:0}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header .components-icon-button{display:flex}}.edit-post-text-editor__body{padding-top:40px}@media (min-width:600px){.edit-post-text-editor__body{padding-top:86px}body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}@media (min-width:782px){.edit-post-text-editor__body,body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}.edit-post-text-editor{margin-left:16px;margin-right:16px;padding-top:44px;width:100%}@media (min-width:600px){.edit-post-text-editor{margin-left:auto;margin-right:auto;max-width:610px}}.edit-post-text-editor .editor-post-title__block textarea{border:1px solid #e2e4e7;margin-bottom:4px;padding:14px}.edit-post-text-editor .editor-post-title__block.is-selected textarea,.edit-post-text-editor .editor-post-title__block textarea:hover{box-shadow:0 0 0 1px #e2e4e7}.edit-post-text-editor .editor-post-permalink{left:0;margin-top:-6px;right:0}@media (min-width:600px){.edit-post-text-editor .editor-post-title,.edit-post-text-editor .editor-post-title__block{padding:0}}.edit-post-text-editor .editor-post-text-editor{line-height:1.8;min-height:200px;padding:14px}.edit-post-text-editor .edit-post-text-editor__toolbar{display:flex;height:36px;left:0;line-height:36px;padding:0 16px 0 8px;position:absolute;right:0;top:8px}.edit-post-text-editor .edit-post-text-editor__toolbar h2{color:#555d66;font-size:13px;margin:0 0 0 auto}.edit-post-text-editor .edit-post-text-editor__toolbar .components-icon-button svg{order:1}.edit-post-visual-editor{padding:50px 0;position:relative}.edit-post-visual-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.edit-post-visual-editor .editor-writing-flow__click-redirect{height:50px;margin:-4px auto -50px;width:100%}.edit-post-visual-editor .editor-block-list__block{margin-left:auto;margin-right:auto}@media (min-width:600px){.edit-post-visual-editor .editor-block-list__block .editor-block-list__block-edit{margin-left:-28px;margin-right:-28px}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{height:0;text-align:center;width:calc(100% + 30px)}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar{max-width:610px;position:relative;width:100%}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-left:0;margin-right:0;width:100%}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar{max-width:608px}}@media (min-width:600px){.editor-post-title{padding-left:46px;padding-right:46px}}.edit-post-visual-editor .editor-post-title__block{margin-bottom:-20px;margin-left:auto;margin-right:auto}.edit-post-visual-editor .editor-post-title__block>div{margin-left:0;margin-right:0}@media (min-width:600px){.edit-post-visual-editor .editor-post-title__block>div{margin-left:-2px;margin-right:-2px}}.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=left]:first-child,.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=right]:first-child{margin-top:34px}.edit-post-visual-editor .editor-default-block-appender{margin-left:auto;margin-right:auto;position:relative}.edit-post-visual-editor .editor-default-block-appender[data-root-client-id=""] .editor-default-block-appender__content:hover{outline:1px solid transparent}.edit-post-visual-editor .editor-block-list__block[data-type="core/paragraph"] p[data-is-placeholder-visible=true]+p,.edit-post-visual-editor .editor-default-block-appender__content{line-height:1.8;min-height:28px}.edit-post-options-modal__title{font-size:1rem;font-weight:600}.edit-post-options-modal__section{margin:0 0 2rem}.edit-post-options-modal__section-title{font-size:.9rem;font-weight:600}.edit-post-options-modal__option{border-top:1px solid #e2e4e7}.edit-post-options-modal__option:last-child{border-bottom:1px solid #e2e4e7}.edit-post-options-modal__option .components-base-control__field{align-items:center;display:flex;margin:0}.edit-post-options-modal__option .components-checkbox-control__label{flex-grow:1;padding:.6rem 10px .6rem 0}@keyframes edit-post__loading-fade-animation{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@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{max-width:100%;width:auto}.block-editor,.components-modal__frame{box-sizing:border-box}.block-editor *,.block-editor :after,.block-editor :before,.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}.block-editor select,.components-modal__frame select{color:#555d66;font-size:13px}@media (min-width:600px){.block-editor__container{bottom:0;left:0;min-height:calc(100vh - 46px);position:absolute;right:0;top:0}body.is-fullscreen-mode .block-editor__container{min-height:100vh}}@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{height:auto;max-width:100%}.block-editor__container iframe{width:100%}.block-editor__container .components-navigate-regions{height:100%}.components-modal__content .input-control,.components-modal__content input[type=checkbox],.components-modal__content input[type=color],.components-modal__content input[type=date],.components-modal__content input[type=datetime-local],.components-modal__content input[type=datetime],.components-modal__content input[type=email],.components-modal__content input[type=month],.components-modal__content input[type=number],.components-modal__content input[type=password],.components-modal__content input[type=radio],.components-modal__content input[type=search],.components-modal__content input[type=tel],.components-modal__content input[type=text],.components-modal__content input[type=time],.components-modal__content input[type=url],.components-modal__content input[type=week],.components-modal__content select,.components-modal__content textarea,.components-popover .input-control,.components-popover input[type=checkbox],.components-popover input[type=color],.components-popover input[type=date],.components-popover input[type=datetime-local],.components-popover input[type=datetime],.components-popover input[type=email],.components-popover input[type=month],.components-popover input[type=number],.components-popover input[type=password],.components-popover input[type=radio],.components-popover input[type=search],.components-popover input[type=tel],.components-popover input[type=text],.components-popover input[type=time],.components-popover input[type=url],.components-popover input[type=week],.components-popover select,.components-popover textarea,.edit-post-sidebar .input-control,.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=color],.edit-post-sidebar input[type=date],.edit-post-sidebar input[type=datetime-local],.edit-post-sidebar input[type=datetime],.edit-post-sidebar input[type=email],.edit-post-sidebar input[type=month],.edit-post-sidebar input[type=number],.edit-post-sidebar input[type=password],.edit-post-sidebar input[type=radio],.edit-post-sidebar input[type=search],.edit-post-sidebar input[type=tel],.edit-post-sidebar input[type=text],.edit-post-sidebar input[type=time],.edit-post-sidebar input[type=url],.edit-post-sidebar input[type=week],.edit-post-sidebar select,.edit-post-sidebar textarea,.editor-block-list__block .input-control,.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=color],.editor-block-list__block input[type=date],.editor-block-list__block input[type=datetime-local],.editor-block-list__block input[type=datetime],.editor-block-list__block input[type=email],.editor-block-list__block input[type=month],.editor-block-list__block input[type=number],.editor-block-list__block input[type=password],.editor-block-list__block input[type=radio],.editor-block-list__block input[type=search],.editor-block-list__block input[type=tel],.editor-block-list__block input[type=text],.editor-block-list__block input[type=time],.editor-block-list__block input[type=url],.editor-block-list__block input[type=week],.editor-block-list__block select,.editor-block-list__block textarea,.editor-post-permalink .input-control,.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=color],.editor-post-permalink input[type=date],.editor-post-permalink input[type=datetime-local],.editor-post-permalink input[type=datetime],.editor-post-permalink input[type=email],.editor-post-permalink input[type=month],.editor-post-permalink input[type=number],.editor-post-permalink input[type=password],.editor-post-permalink input[type=radio],.editor-post-permalink input[type=search],.editor-post-permalink input[type=tel],.editor-post-permalink input[type=text],.editor-post-permalink input[type=time],.editor-post-permalink input[type=url],.editor-post-permalink input[type=week],.editor-post-permalink select,.editor-post-permalink textarea,.editor-post-publish-panel .input-control,.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=color],.editor-post-publish-panel input[type=date],.editor-post-publish-panel input[type=datetime-local],.editor-post-publish-panel input[type=datetime],.editor-post-publish-panel input[type=email],.editor-post-publish-panel input[type=month],.editor-post-publish-panel input[type=number],.editor-post-publish-panel input[type=password],.editor-post-publish-panel input[type=radio],.editor-post-publish-panel input[type=search],.editor-post-publish-panel input[type=tel],.editor-post-publish-panel input[type=text],.editor-post-publish-panel input[type=time],.editor-post-publish-panel input[type=url],.editor-post-publish-panel input[type=week],.editor-post-publish-panel select,.editor-post-publish-panel textarea{border:1px solid #8d96a0;border-radius:4px;box-shadow:0 0 0 transparent;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 8px;transition:box-shadow .1s linear}.components-modal__content .input-control:focus,.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=color]:focus,.components-modal__content input[type=date]:focus,.components-modal__content input[type=datetime-local]:focus,.components-modal__content input[type=datetime]:focus,.components-modal__content input[type=email]:focus,.components-modal__content input[type=month]:focus,.components-modal__content input[type=number]:focus,.components-modal__content input[type=password]:focus,.components-modal__content input[type=radio]:focus,.components-modal__content input[type=search]:focus,.components-modal__content input[type=tel]:focus,.components-modal__content input[type=text]:focus,.components-modal__content input[type=time]:focus,.components-modal__content input[type=url]:focus,.components-modal__content input[type=week]:focus,.components-modal__content select:focus,.components-modal__content textarea:focus,.components-popover .input-control:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=color]:focus,.components-popover input[type=date]:focus,.components-popover input[type=datetime-local]:focus,.components-popover input[type=datetime]:focus,.components-popover input[type=email]:focus,.components-popover input[type=month]:focus,.components-popover input[type=number]:focus,.components-popover input[type=password]:focus,.components-popover input[type=radio]:focus,.components-popover input[type=search]:focus,.components-popover input[type=tel]:focus,.components-popover input[type=text]:focus,.components-popover input[type=time]:focus,.components-popover input[type=url]:focus,.components-popover input[type=week]:focus,.components-popover select:focus,.components-popover textarea:focus,.edit-post-sidebar .input-control:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=color]:focus,.edit-post-sidebar input[type=date]:focus,.edit-post-sidebar input[type=datetime-local]:focus,.edit-post-sidebar input[type=datetime]:focus,.edit-post-sidebar input[type=email]:focus,.edit-post-sidebar input[type=month]:focus,.edit-post-sidebar input[type=number]:focus,.edit-post-sidebar input[type=password]:focus,.edit-post-sidebar input[type=radio]:focus,.edit-post-sidebar input[type=search]:focus,.edit-post-sidebar input[type=tel]:focus,.edit-post-sidebar input[type=text]:focus,.edit-post-sidebar input[type=time]:focus,.edit-post-sidebar input[type=url]:focus,.edit-post-sidebar input[type=week]:focus,.edit-post-sidebar select:focus,.edit-post-sidebar textarea:focus,.editor-block-list__block .input-control:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=color]:focus,.editor-block-list__block input[type=date]:focus,.editor-block-list__block input[type=datetime-local]:focus,.editor-block-list__block input[type=datetime]:focus,.editor-block-list__block input[type=email]:focus,.editor-block-list__block input[type=month]:focus,.editor-block-list__block input[type=number]:focus,.editor-block-list__block input[type=password]:focus,.editor-block-list__block input[type=radio]:focus,.editor-block-list__block input[type=search]:focus,.editor-block-list__block input[type=tel]:focus,.editor-block-list__block input[type=text]:focus,.editor-block-list__block input[type=time]:focus,.editor-block-list__block input[type=url]:focus,.editor-block-list__block input[type=week]:focus,.editor-block-list__block select:focus,.editor-block-list__block textarea:focus,.editor-post-permalink .input-control:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=color]:focus,.editor-post-permalink input[type=date]:focus,.editor-post-permalink input[type=datetime-local]:focus,.editor-post-permalink input[type=datetime]:focus,.editor-post-permalink input[type=email]:focus,.editor-post-permalink input[type=month]:focus,.editor-post-permalink input[type=number]:focus,.editor-post-permalink input[type=password]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-permalink input[type=search]:focus,.editor-post-permalink input[type=tel]:focus,.editor-post-permalink input[type=text]:focus,.editor-post-permalink input[type=time]:focus,.editor-post-permalink input[type=url]:focus,.editor-post-permalink input[type=week]:focus,.editor-post-permalink select:focus,.editor-post-permalink textarea:focus,.editor-post-publish-panel .input-control:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=color]:focus,.editor-post-publish-panel input[type=date]:focus,.editor-post-publish-panel input[type=datetime-local]:focus,.editor-post-publish-panel input[type=datetime]:focus,.editor-post-publish-panel input[type=email]:focus,.editor-post-publish-panel input[type=month]:focus,.editor-post-publish-panel input[type=number]:focus,.editor-post-publish-panel input[type=password]:focus,.editor-post-publish-panel input[type=radio]:focus,.editor-post-publish-panel input[type=search]:focus,.editor-post-publish-panel input[type=tel]:focus,.editor-post-publish-panel input[type=text]:focus,.editor-post-publish-panel input[type=time]:focus,.editor-post-publish-panel input[type=url]:focus,.editor-post-publish-panel input[type=week]:focus,.editor-post-publish-panel select:focus,.editor-post-publish-panel textarea:focus{border-color:#00a0d2;box-shadow:0 0 0 1px #00a0d2;color:#191e23;outline:2px solid transparent;outline-offset:-2px}.components-modal__content select,.components-popover select,.edit-post-sidebar select,.editor-block-list__block select,.editor-post-permalink select,.editor-post-publish-panel select{padding:2px}.components-modal__content select:focus,.components-popover select:focus,.edit-post-sidebar select:focus,.editor-block-list__block select:focus,.editor-post-permalink select:focus,.editor-post-publish-panel select:focus{border-color:#008dbe;outline:2px solid transparent;outline-offset:0}.components-modal__content input[type=checkbox],.components-modal__content input[type=radio],.components-popover input[type=checkbox],.components-popover input[type=radio],.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=radio]{border:2px solid #6c7781;margin-left:12px;transition:none}.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=radio]:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=radio]:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=radio]:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=radio]:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=radio]:focus{border-color:#6c7781;box-shadow:0 0 0 1px #6c7781}.components-modal__content input[type=checkbox]:checked,.components-modal__content input[type=radio]:checked,.components-popover input[type=checkbox]:checked,.components-popover input[type=radio]:checked,.edit-post-sidebar input[type=checkbox]:checked,.edit-post-sidebar input[type=radio]:checked,.editor-block-list__block input[type=checkbox]:checked,.editor-block-list__block input[type=radio]:checked,.editor-post-permalink input[type=checkbox]:checked,.editor-post-permalink input[type=radio]:checked,.editor-post-publish-panel input[type=checkbox]:checked,.editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}body.admin-color-sunrise .components-modal__content input[type=checkbox]:checked,body.admin-color-sunrise .components-modal__content input[type=radio]:checked,body.admin-color-sunrise .components-popover input[type=checkbox]:checked,body.admin-color-sunrise .components-popover input[type=radio]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=radio]:checked,body.admin-color-sunrise .editor-block-list__block input[type=checkbox]:checked,body.admin-color-sunrise .editor-block-list__block input[type=radio]:checked,body.admin-color-sunrise .editor-post-permalink input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-permalink input[type=radio]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=radio]:checked{background:#c8b03c;border-color:#c8b03c}body.admin-color-ocean .components-modal__content input[type=checkbox]:checked,body.admin-color-ocean .components-modal__content input[type=radio]:checked,body.admin-color-ocean .components-popover input[type=checkbox]:checked,body.admin-color-ocean .components-popover input[type=radio]:checked,body.admin-color-ocean .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ocean .edit-post-sidebar input[type=radio]:checked,body.admin-color-ocean .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ocean .editor-block-list__block input[type=radio]:checked,body.admin-color-ocean .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ocean .editor-post-permalink input[type=radio]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=radio]:checked{background:#a3b9a2;border-color:#a3b9a2}body.admin-color-midnight .components-modal__content input[type=checkbox]:checked,body.admin-color-midnight .components-modal__content input[type=radio]:checked,body.admin-color-midnight .components-popover input[type=checkbox]:checked,body.admin-color-midnight .components-popover input[type=radio]:checked,body.admin-color-midnight .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-midnight .edit-post-sidebar input[type=radio]:checked,body.admin-color-midnight .editor-block-list__block input[type=checkbox]:checked,body.admin-color-midnight .editor-block-list__block input[type=radio]:checked,body.admin-color-midnight .editor-post-permalink input[type=checkbox]:checked,body.admin-color-midnight .editor-post-permalink input[type=radio]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=radio]:checked{background:#77a6b9;border-color:#77a6b9}body.admin-color-ectoplasm .components-modal__content input[type=checkbox]:checked,body.admin-color-ectoplasm .components-modal__content input[type=radio]:checked,body.admin-color-ectoplasm .components-popover input[type=checkbox]:checked,body.admin-color-ectoplasm .components-popover input[type=radio]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=radio]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=radio]:checked{background:#a7b656;border-color:#a7b656}body.admin-color-coffee .components-modal__content input[type=checkbox]:checked,body.admin-color-coffee .components-modal__content input[type=radio]:checked,body.admin-color-coffee .components-popover input[type=checkbox]:checked,body.admin-color-coffee .components-popover input[type=radio]:checked,body.admin-color-coffee .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-coffee .edit-post-sidebar input[type=radio]:checked,body.admin-color-coffee .editor-block-list__block input[type=checkbox]:checked,body.admin-color-coffee .editor-block-list__block input[type=radio]:checked,body.admin-color-coffee .editor-post-permalink input[type=checkbox]:checked,body.admin-color-coffee .editor-post-permalink input[type=radio]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=radio]:checked{background:#c2a68c;border-color:#c2a68c}body.admin-color-blue .components-modal__content input[type=checkbox]:checked,body.admin-color-blue .components-modal__content input[type=radio]:checked,body.admin-color-blue .components-popover input[type=checkbox]:checked,body.admin-color-blue .components-popover input[type=radio]:checked,body.admin-color-blue .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-blue .edit-post-sidebar input[type=radio]:checked,body.admin-color-blue .editor-block-list__block input[type=checkbox]:checked,body.admin-color-blue .editor-block-list__block input[type=radio]:checked,body.admin-color-blue .editor-post-permalink input[type=checkbox]:checked,body.admin-color-blue .editor-post-permalink input[type=radio]:checked,body.admin-color-blue .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-blue .editor-post-publish-panel input[type=radio]:checked{background:#82b4cb;border-color:#82b4cb}body.admin-color-light .components-modal__content input[type=checkbox]:checked,body.admin-color-light .components-modal__content input[type=radio]:checked,body.admin-color-light .components-popover input[type=checkbox]:checked,body.admin-color-light .components-popover input[type=radio]:checked,body.admin-color-light .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-light .edit-post-sidebar input[type=radio]:checked,body.admin-color-light .editor-block-list__block input[type=checkbox]:checked,body.admin-color-light .editor-block-list__block input[type=radio]:checked,body.admin-color-light .editor-post-permalink input[type=checkbox]:checked,body.admin-color-light .editor-post-permalink input[type=radio]:checked,body.admin-color-light .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-light .editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}.components-modal__content input[type=checkbox]:checked:focus,.components-modal__content input[type=radio]:checked:focus,.components-popover input[type=checkbox]:checked:focus,.components-popover input[type=radio]:checked:focus,.edit-post-sidebar input[type=checkbox]:checked:focus,.edit-post-sidebar input[type=radio]:checked:focus,.editor-block-list__block input[type=checkbox]:checked:focus,.editor-block-list__block input[type=radio]:checked:focus,.editor-post-permalink input[type=checkbox]:checked:focus,.editor-post-permalink input[type=radio]:checked:focus,.editor-post-publish-panel input[type=checkbox]:checked:focus,.editor-post-publish-panel input[type=radio]:checked:focus{box-shadow:0 0 0 2px #555d66}.components-modal__content input[type=checkbox],.components-popover input[type=checkbox],.edit-post-sidebar input[type=checkbox],.editor-block-list__block input[type=checkbox],.editor-post-permalink input[type=checkbox],.editor-post-publish-panel input[type=checkbox]{border-radius:2px}.components-modal__content input[type=checkbox]:checked:before,.components-popover input[type=checkbox]:checked:before,.edit-post-sidebar input[type=checkbox]:checked:before,.editor-block-list__block input[type=checkbox]:checked:before,.editor-post-permalink input[type=checkbox]:checked:before,.editor-post-publish-panel input[type=checkbox]:checked:before{color:#fff;margin:-4px -5px 0 0}.components-modal__content input[type=radio],.components-popover input[type=radio],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=radio]{border-radius:50%}.components-modal__content input[type=radio]:checked:before,.components-popover input[type=radio]:checked:before,.edit-post-sidebar input[type=radio]:checked:before,.editor-block-list__block input[type=radio]:checked:before,.editor-post-permalink input[type=radio]:checked:before,.editor-post-publish-panel input[type=radio]:checked:before{background-color:#fff;margin:3px 3px 0 0}.editor-block-list__block input::-webkit-input-placeholder,.editor-block-list__block textarea::-webkit-input-placeholder,.editor-post-title input::-webkit-input-placeholder,.editor-post-title textarea::-webkit-input-placeholder{color:rgba(14,28,46,.62)}.editor-block-list__block input::-moz-placeholder,.editor-block-list__block textarea::-moz-placeholder,.editor-post-title input::-moz-placeholder,.editor-post-title textarea::-moz-placeholder{color:rgba(14,28,46,.62);opacity:1}.editor-block-list__block input:-ms-input-placeholder,.editor-block-list__block textarea:-ms-input-placeholder,.editor-post-title input:-ms-input-placeholder,.editor-post-title textarea:-ms-input-placeholder{color:rgba(14,28,46,.62)}.is-dark-theme .editor-block-list__block input::-webkit-input-placeholder,.is-dark-theme .editor-block-list__block textarea::-webkit-input-placeholder,.is-dark-theme .editor-post-title input::-webkit-input-placeholder,.is-dark-theme .editor-post-title textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .editor-block-list__block input::-moz-placeholder,.is-dark-theme .editor-block-list__block textarea::-moz-placeholder,.is-dark-theme .editor-post-title input::-moz-placeholder,.is-dark-theme .editor-post-title textarea::-moz-placeholder{color:hsla(0,0%,100%,.65);opacity:1}.is-dark-theme .editor-block-list__block input:-ms-input-placeholder,.is-dark-theme .editor-block-list__block textarea:-ms-input-placeholder,.is-dark-theme .editor-post-title input:-ms-input-placeholder,.is-dark-theme .editor-post-title textarea:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}.wp-block{max-width:610px}.wp-block[data-align=wide]{max-width:1100px}.wp-block[data-align=full]{max-width:none} body.js.is-fullscreen-mode{animation:edit-post__fade-in-animation .3s ease-out 0s;animation-fill-mode:forwards;height:calc(100% + 46px);margin-top:-46px}@media (min-width:782px){body.js.is-fullscreen-mode{height:calc(100% + 32px);margin-top:-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}body.js.is-fullscreen-mode .edit-post-header{animation:edit-post-fullscreen-mode__slide-in-animation .1s forwards;transform:translateY(-100%)}@keyframes edit-post-fullscreen-mode__slide-in-animation{to{transform:translateY(0)}}.edit-post-header{align-items:stretch;background:#fff;border-bottom:1px solid #e2e4e7;display:flex;flex-direction:row;height:56px;justify-content:space-between;left:0;padding:4px 2px;position:-webkit-sticky;position:sticky;top:0;z-index:30}@media (min-width:600px){.edit-post-header{padding:8px;position:fixed;top:46px}body.is-fullscreen-mode .edit-post-header{top:0}}@media (min-width:782px){.edit-post-header{top:32px}body.is-fullscreen-mode .edit-post-header{top:0}}.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:none}@media (min-width:600px){.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:inline-flex}}.edit-post-header>.edit-post-header__settings{order:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-header>.edit-post-header__settings{order:0}}.edit-post-header{right:0}@media (min-width:782px){.edit-post-header{right:160px}}@media (min-width:782px){.auto-fold .edit-post-header{right:36px}}@media (min-width:960px){.auto-fold .edit-post-header{right:160px}}.folded .edit-post-header{right:0}@media (min-width:782px){.folded .edit-post-header{right:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .edit-post-header{right:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .edit-post-header{margin-right:-18px}}body.is-fullscreen-mode .edit-post-header{right:0!important}.edit-post-header__settings{align-items:center;display:inline-flex}.edit-post-header .components-button.is-toggled{color:#fff}.edit-post-header .components-button.is-toggled:before{background:#555d66;border-radius:4px;bottom:1px;content:"";left:1px;position:absolute;right:1px;top:1px;z-index:-1}.edit-post-header .components-button.is-toggled:focus,.edit-post-header .components-button.is-toggled:hover{background:#555d66;box-shadow:0 0 0 1px #555d66,inset 0 0 0 1px #fff;color:#fff}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle,.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{font-size:13px;height:33px;line-height:32px;margin:2px}.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 5px}@media (min-width:600px){.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 12px}}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 5px 2px}@media (min-width:600px){.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 12px 2px}}@media (min-width:782px){.edit-post-header .components-button.editor-post-preview{margin:0 12px 0 3px}.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{margin:0 3px 0 12px}}.edit-post-fullscreen-mode-close__toolbar{border-bottom:0;border-right:0;border-top:0;margin:-9px -10px -9px 10px;padding:9px 10px}.edit-post-header-toolbar{align-items:center;display:inline-flex}.edit-post-header-toolbar>.components-button{display:none}@media (min-width:600px){.edit-post-header-toolbar>.components-button{display:inline-flex}}.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:none}@media (min-width:600px){.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:flex}}.edit-post-header-toolbar__block-toolbar{background:#fff;border-bottom:1px solid #e2e4e7;left:0;min-height:37px;position:absolute;right:0;top:56px}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{border-bottom:none;border-top:none}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:none}@media (min-width:782px){.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:block;left:280px}}@media (min-width:1080px){.edit-post-header-toolbar__block-toolbar{background:none;border-bottom:none;left:auto;min-height:auto;padding-right:8px;position:static;right:auto}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{left:auto}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar{margin:-9px 0}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{padding:10px 4px 9px}}.edit-post-more-menu{margin-right:-4px}.edit-post-more-menu .components-icon-button{padding:8px 2px;width:auto}@media (min-width:600px){.edit-post-more-menu{margin-right:4px}.edit-post-more-menu .components-icon-button{padding:8px 4px}}.edit-post-more-menu .components-button svg{transform:rotate(-90deg)}.edit-post-more-menu__content .components-popover__content{min-width:260px}@media (min-width:480px){.edit-post-more-menu__content .components-popover__content{max-width:480px;width:auto}}.edit-post-more-menu__content .components-popover__content .components-menu-group:not(:last-child),.edit-post-more-menu__content .components-popover__content>div:not(:last-child) .components-menu-group{border-bottom:1px solid #e2e4e7}.edit-post-more-menu__content .components-popover__content .components-menu-item__button{padding-right:2rem}.edit-post-more-menu__content .components-popover__content .components-menu-item__button.has-icon{padding-right:.5rem}.edit-post-pinned-plugins{display:none}@media (min-width:600px){.edit-post-pinned-plugins{display:flex}}.edit-post-pinned-plugins .components-icon-button{margin-right:4px}.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg,.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg *{fill:#555d66;stroke:#555d66}.edit-post-pinned-plugins .components-icon-button.is-toggled svg,.edit-post-pinned-plugins .components-icon-button.is-toggled svg *{fill:#fff!important;stroke:#fff!important}.edit-post-pinned-plugins .components-icon-button:hover svg,.edit-post-pinned-plugins .components-icon-button:hover svg *{fill:#191e23!important;stroke:#191e23!important}.edit-post-keyboard-shortcut-help__title{font-size:1rem;font-weight:600}.edit-post-keyboard-shortcut-help__section{margin:0 0 2rem}.edit-post-keyboard-shortcut-help__section-title{font-size:.9rem;font-weight:600}.edit-post-keyboard-shortcut-help__shortcut{align-items:center;border-top:1px solid #e2e4e7;display:flex;padding:.6rem 0}.edit-post-keyboard-shortcut-help__shortcut:last-child{border-bottom:1px solid #e2e4e7}.edit-post-keyboard-shortcut-help__shortcut-term{font-weight:600;margin:0 1rem 0 0;order:1}.edit-post-keyboard-shortcut-help__shortcut-description{flex:1;flex-basis:auto;margin:0;order:0}.edit-post-keyboard-shortcut-help__shortcut-key-combination{background:none;margin:0;padding:0}.edit-post-keyboard-shortcut-help__shortcut-key{border-radius:8%;margin:0 .2rem;padding:.25rem .5rem}.edit-post-keyboard-shortcut-help__shortcut-key:last-child{margin:0 .2rem 0 0}.edit-post-layout,.edit-post-layout__content{height:100%}.edit-post-layout{position:relative}.edit-post-layout .components-notice-list{color:#191e23;left:0;position:-webkit-sticky;position:sticky;top:56px}@media (min-width:600px){.edit-post-layout .components-notice-list{position:fixed;top:inherit}}.edit-post-layout .components-notice-list .components-notice{margin:0 0 5px;min-height:50px;padding:6px 12px}.edit-post-layout .components-notice-list .components-notice .components-notice__dismiss{margin:10px 5px}@media (min-width:600px){.edit-post-layout{padding-top:56px}}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:36px}@media (min-width:600px){.edit-post-layout.has-fixed-toolbar{padding-top:93px}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:0}}@media (min-width:960px){.edit-post-layout.has-fixed-toolbar{padding-top:56px}}.components-notice-list{right:0}@media (min-width:782px){.components-notice-list{right:160px}}@media (min-width:782px){.auto-fold .components-notice-list{right:36px}}@media (min-width:960px){.auto-fold .components-notice-list{right:160px}}.folded .components-notice-list{right:0}@media (min-width:782px){.folded .components-notice-list{right:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .components-notice-list{right:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .components-notice-list{margin-right:-18px}}body.is-fullscreen-mode .components-notice-list{right:0!important}.components-notice-list{left:0}.edit-post-layout.is-sidebar-opened .components-notice-list{left:280px}.edit-post-layout__metaboxes:not(:empty){border-top:1px solid #e2e4e7;clear:both;margin-top:10px;padding:10px 0}.edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area{margin:auto 20px}.edit-post-layout__content{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;min-height:100%;overflow-y:auto;padding-bottom:50vh;position:relative}@media (min-width:600px){.edit-post-layout__content{overscroll-behavior-y:none;padding-bottom:0}}.edit-post-layout__content .edit-post-visual-editor{flex-grow:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-layout__content .edit-post-visual-editor{flex-basis:100%}}.edit-post-layout__content .edit-post-layout__metaboxes{flex-shrink:0}.edit-post-layout .editor-post-publish-panel{bottom:0;left:0;overflow:auto;position:fixed;right:0;top:46px;z-index:100001}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}@media (min-width:782px){.edit-post-layout .editor-post-publish-panel{animation:edit-post-layout__slide-in-animation .1s forwards;border-right:1px solid #e2e4e7;right:auto;top:32px;transform:translateX(-100%);width:280px}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}}@keyframes edit-post-layout__slide-in-animation{to{transform:translateX(0)}}.edit-post-layout .editor-post-publish-panel__header-publish-button .components-button.is-large{height:33px;line-height:32px}.edit-post-layout .editor-post-publish-panel__header-publish-button .editor-post-publish-panel__spacer{display:inline-flex;flex:0 1 52px}.edit-post-toggle-publish-panel{bottom:0;height:0;left:0;overflow:hidden;position:absolute;width:280px;z-index:100000}.edit-post-toggle-publish-panel:focus-within{height:auto;padding:20px 0 0}.edit-post-toggle-publish-panel .edit-post-toggle-publish-panel__button{background:#f1f1f1;float:left;font-size:14px;font-weight:600;height:auto;line-height:normal;outline:none;padding:15px 23px 14px;text-decoration:none;width:auto}.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 #poststuff{margin:0 auto;min-width:auto;padding-top:0}.edit-post-meta-boxes-area #poststuff .stuffbox>h3,.edit-post-meta-boxes-area #poststuff h2.hndle,.edit-post-meta-boxes-area #poststuff h3.hndle{border-bottom:1px solid #e2e4e7;box-sizing:border-box;color:inherit;font-weight:600;outline:none;padding:15px;position:relative;width:100%}.edit-post-meta-boxes-area .postbox{border:0;color:inherit;margin-bottom:0}.edit-post-meta-boxes-area .postbox>.inside{border-bottom:1px solid #e2e4e7;color:inherit;margin:0;padding:0 14px 14px}.edit-post-meta-boxes-area .postbox .handlediv{height:44px;width:44px}.edit-post-meta-boxes-area.is-loading:before{background:transparent;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:1}.edit-post-meta-boxes-area .components-spinner{left:20px;position:absolute;top:10px;z-index:5}.edit-post-meta-boxes-area__clear{clear:both}.edit-post-sidebar{background:#fff;border-right:1px solid #e2e4e7;bottom:0;color:#555d66;height:100vh;left:0;overflow:hidden;position:fixed;top:0;width:280px;z-index:100000}@media (min-width:600px){.edit-post-sidebar{-webkit-overflow-scrolling:touch;height:auto;overflow:auto;top:102px;z-index:90}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}@media (min-width:782px){.edit-post-sidebar{top:88px}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}.edit-post-sidebar>.components-panel{-webkit-overflow-scrolling:touch;border-left:none;border-right:none;height:auto;margin-bottom:-1px;margin-top:-1px;max-height:calc(100vh - 96px);overflow:auto}body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:calc(100vh - 50px)}@media (min-width:600px){body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:none}}@media (min-width:600px){.edit-post-sidebar>.components-panel{height:auto;max-height:none;overflow:inherit}}.edit-post-sidebar>.components-panel .components-panel__header{height:50px;left:0;position:fixed;right:0;top:0;z-index:1}@media (min-width:600px){.edit-post-sidebar>.components-panel .components-panel__header{left:auto;position:inherit;right:auto;top:auto}}.edit-post-sidebar p{margin-top:0}.edit-post-sidebar h2,.edit-post-sidebar h3{color:#555d66;font-size:13px;margin-bottom:1.5em}.edit-post-sidebar hr{border-bottom:1px solid #e2e4e7;border-top:none;margin:1.5em 0}.edit-post-sidebar div.components-toolbar{box-shadow:none;margin-bottom:1.5em}.edit-post-sidebar div.components-toolbar:last-child{margin-bottom:0}.edit-post-sidebar p+div.components-toolbar{margin-top:-1em}.edit-post-sidebar .editor-skip-to-selected-block:focus{bottom:10px;left:10px;right:auto;top:auto}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-layout__content{margin-left:280px}}.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:100%}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:280px}}.components-panel__header.edit-post-sidebar__header{background:#fff;padding-left:8px}.components-panel__header.edit-post-sidebar__header .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar__header{display:none}}.components-panel__header.edit-post-sidebar__panel-tabs{margin-top:0}.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:none;margin-right:auto}@media (min-width:782px){.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:flex}}.edit-post-sidebar__panel-tab{height:50px}.components-panel__body.is-opened.edit-post-last-revision__panel{padding:0}.editor-post-last-revision__title{padding:13px 16px}.editor-post-author__select{margin:-5px 0;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.editor-post-author__select{width:auto}}.edit-post-post-link__link-post-name{font-weight:600}.edit-post-post-link__preview-label{margin:0}.edit-post-post-link__link{word-wrap:break-word}.edit-post-post-schedule{position:relative;width:100%}.edit-post-post-schedule__label{display:none}.components-button.edit-post-post-schedule__toggle{text-align:left}.edit-post-post-schedule__dialog .components-popover__content{padding:10px}@media (min-width:782px){.edit-post-post-schedule__dialog .components-popover__content{width:270px}}.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft{margin-top:15px;text-align:center;width:100%}.edit-post-post-visibility{width:100%}.edit-post-post-visibility__dialog .components-popover__content{padding:10px}@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{margin-right:20px;width:calc(100% - 20px)}.edit-post-post-visibility__dialog-info{color:#7e8993;font-style:italic;line-height:1.4;margin:4px 0 0;padding-right:20px}.components-panel__header.edit-post-sidebar__panel-tabs{border-top:0;justify-content:flex-start;padding-left:4px;padding-right:0;position:-webkit-sticky;position:sticky;top:0;z-index:1}.components-panel__header.edit-post-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-post-sidebar__panel-tabs li{margin:0}.edit-post-sidebar__panel-tab{background:transparent;border:none;border-radius:0;color:#191e23;cursor:pointer;font-weight:400;height:48px;margin-right:0;outline-offset:-1px;padding:3px 15px}.edit-post-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba;font-weight:600;padding-bottom:0}body.admin-color-sunrise .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #d1864a}body.admin-color-ocean .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a3b9a2}body.admin-color-midnight .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #e14d43}body.admin-color-ectoplasm .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a7b656}body.admin-color-coffee .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #c2a68c}body.admin-color-blue .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #82b4cb}body.admin-color-light .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba}.edit-post-sidebar__panel-tab:focus{box-shadow:none;color:#191e23;outline:1px solid #6c7781}.edit-post-settings-sidebar__panel-block .components-panel__body{border:none;border-top:1px solid #e2e4e7;margin:0 -16px}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control{margin:0 0 1.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control:last-child{margin-bottom:.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-panel__body-toggle{color:#191e23}.edit-post-settings-sidebar__panel-block .components-panel__body:first-child{margin-top:16px}.edit-post-settings-sidebar__panel-block .components-panel__body:last-child{margin-bottom:-16px}.components-panel__header.edit-post-sidebar-header__small{background:#fff;padding-left:4px}.components-panel__header.edit-post-sidebar-header__small .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header__small{display:none}}.components-panel__header.edit-post-sidebar-header{background:#f3f4f5;padding-left:4px}.components-panel__header.edit-post-sidebar-header .components-icon-button{display:none;margin-right:auto}.components-panel__header.edit-post-sidebar-header .components-icon-button~.components-icon-button{margin-right:0}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header .components-icon-button{display:flex}}.edit-post-text-editor__body{padding-top:40px}@media (min-width:600px){.edit-post-text-editor__body{padding-top:86px}body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}@media (min-width:782px){.edit-post-text-editor__body,body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}.edit-post-text-editor{margin-left:16px;margin-right:16px;padding-top:44px;width:100%}@media (min-width:600px){.edit-post-text-editor{margin-left:auto;margin-right:auto;max-width:610px}}.edit-post-text-editor .editor-post-title__block textarea{border:1px solid #e2e4e7;margin-bottom:4px;padding:14px}.edit-post-text-editor .editor-post-title__block.is-selected textarea,.edit-post-text-editor .editor-post-title__block textarea:hover{box-shadow:0 0 0 1px #e2e4e7}.edit-post-text-editor .editor-post-permalink{left:0;margin-top:-6px;right:0}@media (min-width:600px){.edit-post-text-editor .editor-post-title,.edit-post-text-editor .editor-post-title__block{padding:0}}.edit-post-text-editor .editor-post-text-editor{line-height:1.8;min-height:200px;padding:14px}.edit-post-text-editor .edit-post-text-editor__toolbar{display:flex;height:36px;left:0;line-height:36px;padding:0 16px 0 8px;position:absolute;right:0;top:8px}.edit-post-text-editor .edit-post-text-editor__toolbar h2{color:#555d66;font-size:13px;margin:0 0 0 auto}.edit-post-text-editor .edit-post-text-editor__toolbar .components-icon-button svg{order:1}.edit-post-visual-editor{padding:50px 0;position:relative}.edit-post-visual-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.edit-post-visual-editor .editor-writing-flow__click-redirect{height:50px;margin:-4px auto -50px;width:100%}.edit-post-visual-editor .editor-block-list__block{margin-left:auto;margin-right:auto}@media (min-width:600px){.edit-post-visual-editor .editor-block-list__block .editor-block-list__block-edit{margin-left:-28px;margin-right:-28px}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{float:right;height:0;text-align:center;width:calc(100% + 30px)}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar{max-width:610px;position:relative;width:100%}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-left:0;margin-right:0;width:100%}}@media (min-width:600px){.editor-post-title{padding-left:46px;padding-right:46px}}.edit-post-visual-editor .editor-post-title__block{margin-bottom:-20px;margin-left:auto;margin-right:auto}.edit-post-visual-editor .editor-post-title__block>div{margin-left:0;margin-right:0}@media (min-width:600px){.edit-post-visual-editor .editor-post-title__block>div{margin-left:-2px;margin-right:-2px}}.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=left]:first-child,.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=right]:first-child{margin-top:34px}.edit-post-visual-editor .editor-default-block-appender{margin-left:auto;margin-right:auto;position:relative}.edit-post-visual-editor .editor-default-block-appender[data-root-client-id=""] .editor-default-block-appender__content:hover{outline:1px solid transparent}.edit-post-visual-editor .editor-block-list__block[data-type="core/paragraph"] p[data-is-placeholder-visible=true]+p,.edit-post-visual-editor .editor-default-block-appender__content{line-height:1.8;min-height:28px}.edit-post-options-modal__title{font-size:1rem;font-weight:600}.edit-post-options-modal__section{margin:0 0 2rem}.edit-post-options-modal__section-title{font-size:.9rem;font-weight:600}.edit-post-options-modal__option{border-top:1px solid #e2e4e7}.edit-post-options-modal__option:last-child{border-bottom:1px solid #e2e4e7}.edit-post-options-modal__option .components-base-control__field{align-items:center;display:flex;margin:0}.edit-post-options-modal__option .components-checkbox-control__label{flex-grow:1;padding:.6rem 10px .6rem 0}@keyframes edit-post__loading-fade-animation{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@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{max-width:100%;width:auto}.block-editor,.components-modal__frame{box-sizing:border-box}.block-editor *,.block-editor :after,.block-editor :before,.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}.block-editor select,.components-modal__frame select{color:#555d66;font-size:13px}@media (min-width:600px){.block-editor__container{bottom:0;left:0;min-height:calc(100vh - 46px);position:absolute;right:0;top:0}body.is-fullscreen-mode .block-editor__container{min-height:100vh}}@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{height:auto;max-width:100%}.block-editor__container iframe{width:100%}.block-editor__container .components-navigate-regions{height:100%}.components-modal__content .input-control,.components-modal__content input[type=checkbox],.components-modal__content input[type=color],.components-modal__content input[type=date],.components-modal__content input[type=datetime-local],.components-modal__content input[type=datetime],.components-modal__content input[type=email],.components-modal__content input[type=month],.components-modal__content input[type=number],.components-modal__content input[type=password],.components-modal__content input[type=radio],.components-modal__content input[type=search],.components-modal__content input[type=tel],.components-modal__content input[type=text],.components-modal__content input[type=time],.components-modal__content input[type=url],.components-modal__content input[type=week],.components-modal__content select,.components-modal__content textarea,.components-popover .input-control,.components-popover input[type=checkbox],.components-popover input[type=color],.components-popover input[type=date],.components-popover input[type=datetime-local],.components-popover input[type=datetime],.components-popover input[type=email],.components-popover input[type=month],.components-popover input[type=number],.components-popover input[type=password],.components-popover input[type=radio],.components-popover input[type=search],.components-popover input[type=tel],.components-popover input[type=text],.components-popover input[type=time],.components-popover input[type=url],.components-popover input[type=week],.components-popover select,.components-popover textarea,.edit-post-sidebar .input-control,.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=color],.edit-post-sidebar input[type=date],.edit-post-sidebar input[type=datetime-local],.edit-post-sidebar input[type=datetime],.edit-post-sidebar input[type=email],.edit-post-sidebar input[type=month],.edit-post-sidebar input[type=number],.edit-post-sidebar input[type=password],.edit-post-sidebar input[type=radio],.edit-post-sidebar input[type=search],.edit-post-sidebar input[type=tel],.edit-post-sidebar input[type=text],.edit-post-sidebar input[type=time],.edit-post-sidebar input[type=url],.edit-post-sidebar input[type=week],.edit-post-sidebar select,.edit-post-sidebar textarea,.editor-block-list__block .input-control,.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=color],.editor-block-list__block input[type=date],.editor-block-list__block input[type=datetime-local],.editor-block-list__block input[type=datetime],.editor-block-list__block input[type=email],.editor-block-list__block input[type=month],.editor-block-list__block input[type=number],.editor-block-list__block input[type=password],.editor-block-list__block input[type=radio],.editor-block-list__block input[type=search],.editor-block-list__block input[type=tel],.editor-block-list__block input[type=text],.editor-block-list__block input[type=time],.editor-block-list__block input[type=url],.editor-block-list__block input[type=week],.editor-block-list__block select,.editor-block-list__block textarea,.editor-post-permalink .input-control,.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=color],.editor-post-permalink input[type=date],.editor-post-permalink input[type=datetime-local],.editor-post-permalink input[type=datetime],.editor-post-permalink input[type=email],.editor-post-permalink input[type=month],.editor-post-permalink input[type=number],.editor-post-permalink input[type=password],.editor-post-permalink input[type=radio],.editor-post-permalink input[type=search],.editor-post-permalink input[type=tel],.editor-post-permalink input[type=text],.editor-post-permalink input[type=time],.editor-post-permalink input[type=url],.editor-post-permalink input[type=week],.editor-post-permalink select,.editor-post-permalink textarea,.editor-post-publish-panel .input-control,.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=color],.editor-post-publish-panel input[type=date],.editor-post-publish-panel input[type=datetime-local],.editor-post-publish-panel input[type=datetime],.editor-post-publish-panel input[type=email],.editor-post-publish-panel input[type=month],.editor-post-publish-panel input[type=number],.editor-post-publish-panel input[type=password],.editor-post-publish-panel input[type=radio],.editor-post-publish-panel input[type=search],.editor-post-publish-panel input[type=tel],.editor-post-publish-panel input[type=text],.editor-post-publish-panel input[type=time],.editor-post-publish-panel input[type=url],.editor-post-publish-panel input[type=week],.editor-post-publish-panel select,.editor-post-publish-panel textarea{border:1px solid #8d96a0;border-radius:4px;box-shadow:0 0 0 transparent;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 8px;transition:box-shadow .1s linear}.components-modal__content .input-control:focus,.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=color]:focus,.components-modal__content input[type=date]:focus,.components-modal__content input[type=datetime-local]:focus,.components-modal__content input[type=datetime]:focus,.components-modal__content input[type=email]:focus,.components-modal__content input[type=month]:focus,.components-modal__content input[type=number]:focus,.components-modal__content input[type=password]:focus,.components-modal__content input[type=radio]:focus,.components-modal__content input[type=search]:focus,.components-modal__content input[type=tel]:focus,.components-modal__content input[type=text]:focus,.components-modal__content input[type=time]:focus,.components-modal__content input[type=url]:focus,.components-modal__content input[type=week]:focus,.components-modal__content select:focus,.components-modal__content textarea:focus,.components-popover .input-control:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=color]:focus,.components-popover input[type=date]:focus,.components-popover input[type=datetime-local]:focus,.components-popover input[type=datetime]:focus,.components-popover input[type=email]:focus,.components-popover input[type=month]:focus,.components-popover input[type=number]:focus,.components-popover input[type=password]:focus,.components-popover input[type=radio]:focus,.components-popover input[type=search]:focus,.components-popover input[type=tel]:focus,.components-popover input[type=text]:focus,.components-popover input[type=time]:focus,.components-popover input[type=url]:focus,.components-popover input[type=week]:focus,.components-popover select:focus,.components-popover textarea:focus,.edit-post-sidebar .input-control:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=color]:focus,.edit-post-sidebar input[type=date]:focus,.edit-post-sidebar input[type=datetime-local]:focus,.edit-post-sidebar input[type=datetime]:focus,.edit-post-sidebar input[type=email]:focus,.edit-post-sidebar input[type=month]:focus,.edit-post-sidebar input[type=number]:focus,.edit-post-sidebar input[type=password]:focus,.edit-post-sidebar input[type=radio]:focus,.edit-post-sidebar input[type=search]:focus,.edit-post-sidebar input[type=tel]:focus,.edit-post-sidebar input[type=text]:focus,.edit-post-sidebar input[type=time]:focus,.edit-post-sidebar input[type=url]:focus,.edit-post-sidebar input[type=week]:focus,.edit-post-sidebar select:focus,.edit-post-sidebar textarea:focus,.editor-block-list__block .input-control:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=color]:focus,.editor-block-list__block input[type=date]:focus,.editor-block-list__block input[type=datetime-local]:focus,.editor-block-list__block input[type=datetime]:focus,.editor-block-list__block input[type=email]:focus,.editor-block-list__block input[type=month]:focus,.editor-block-list__block input[type=number]:focus,.editor-block-list__block input[type=password]:focus,.editor-block-list__block input[type=radio]:focus,.editor-block-list__block input[type=search]:focus,.editor-block-list__block input[type=tel]:focus,.editor-block-list__block input[type=text]:focus,.editor-block-list__block input[type=time]:focus,.editor-block-list__block input[type=url]:focus,.editor-block-list__block input[type=week]:focus,.editor-block-list__block select:focus,.editor-block-list__block textarea:focus,.editor-post-permalink .input-control:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=color]:focus,.editor-post-permalink input[type=date]:focus,.editor-post-permalink input[type=datetime-local]:focus,.editor-post-permalink input[type=datetime]:focus,.editor-post-permalink input[type=email]:focus,.editor-post-permalink input[type=month]:focus,.editor-post-permalink input[type=number]:focus,.editor-post-permalink input[type=password]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-permalink input[type=search]:focus,.editor-post-permalink input[type=tel]:focus,.editor-post-permalink input[type=text]:focus,.editor-post-permalink input[type=time]:focus,.editor-post-permalink input[type=url]:focus,.editor-post-permalink input[type=week]:focus,.editor-post-permalink select:focus,.editor-post-permalink textarea:focus,.editor-post-publish-panel .input-control:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=color]:focus,.editor-post-publish-panel input[type=date]:focus,.editor-post-publish-panel input[type=datetime-local]:focus,.editor-post-publish-panel input[type=datetime]:focus,.editor-post-publish-panel input[type=email]:focus,.editor-post-publish-panel input[type=month]:focus,.editor-post-publish-panel input[type=number]:focus,.editor-post-publish-panel input[type=password]:focus,.editor-post-publish-panel input[type=radio]:focus,.editor-post-publish-panel input[type=search]:focus,.editor-post-publish-panel input[type=tel]:focus,.editor-post-publish-panel input[type=text]:focus,.editor-post-publish-panel input[type=time]:focus,.editor-post-publish-panel input[type=url]:focus,.editor-post-publish-panel input[type=week]:focus,.editor-post-publish-panel select:focus,.editor-post-publish-panel textarea:focus{border-color:#00a0d2;box-shadow:0 0 0 1px #00a0d2;color:#191e23;outline:2px solid transparent;outline-offset:-2px}.components-modal__content select,.components-popover select,.edit-post-sidebar select,.editor-block-list__block select,.editor-post-permalink select,.editor-post-publish-panel select{padding:2px}.components-modal__content select:focus,.components-popover select:focus,.edit-post-sidebar select:focus,.editor-block-list__block select:focus,.editor-post-permalink select:focus,.editor-post-publish-panel select:focus{border-color:#008dbe;outline:2px solid transparent;outline-offset:0}.components-modal__content input[type=checkbox],.components-modal__content input[type=radio],.components-popover input[type=checkbox],.components-popover input[type=radio],.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=radio]{border:2px solid #6c7781;margin-left:12px;transition:none}.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=radio]:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=radio]:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=radio]:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=radio]:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=radio]:focus{border-color:#6c7781;box-shadow:0 0 0 1px #6c7781}.components-modal__content input[type=checkbox]:checked,.components-modal__content input[type=radio]:checked,.components-popover input[type=checkbox]:checked,.components-popover input[type=radio]:checked,.edit-post-sidebar input[type=checkbox]:checked,.edit-post-sidebar input[type=radio]:checked,.editor-block-list__block input[type=checkbox]:checked,.editor-block-list__block input[type=radio]:checked,.editor-post-permalink input[type=checkbox]:checked,.editor-post-permalink input[type=radio]:checked,.editor-post-publish-panel input[type=checkbox]:checked,.editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}body.admin-color-sunrise .components-modal__content input[type=checkbox]:checked,body.admin-color-sunrise .components-modal__content input[type=radio]:checked,body.admin-color-sunrise .components-popover input[type=checkbox]:checked,body.admin-color-sunrise .components-popover input[type=radio]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=radio]:checked,body.admin-color-sunrise .editor-block-list__block input[type=checkbox]:checked,body.admin-color-sunrise .editor-block-list__block input[type=radio]:checked,body.admin-color-sunrise .editor-post-permalink input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-permalink input[type=radio]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=radio]:checked{background:#c8b03c;border-color:#c8b03c}body.admin-color-ocean .components-modal__content input[type=checkbox]:checked,body.admin-color-ocean .components-modal__content input[type=radio]:checked,body.admin-color-ocean .components-popover input[type=checkbox]:checked,body.admin-color-ocean .components-popover input[type=radio]:checked,body.admin-color-ocean .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ocean .edit-post-sidebar input[type=radio]:checked,body.admin-color-ocean .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ocean .editor-block-list__block input[type=radio]:checked,body.admin-color-ocean .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ocean .editor-post-permalink input[type=radio]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=radio]:checked{background:#a3b9a2;border-color:#a3b9a2}body.admin-color-midnight .components-modal__content input[type=checkbox]:checked,body.admin-color-midnight .components-modal__content input[type=radio]:checked,body.admin-color-midnight .components-popover input[type=checkbox]:checked,body.admin-color-midnight .components-popover input[type=radio]:checked,body.admin-color-midnight .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-midnight .edit-post-sidebar input[type=radio]:checked,body.admin-color-midnight .editor-block-list__block input[type=checkbox]:checked,body.admin-color-midnight .editor-block-list__block input[type=radio]:checked,body.admin-color-midnight .editor-post-permalink input[type=checkbox]:checked,body.admin-color-midnight .editor-post-permalink input[type=radio]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=radio]:checked{background:#77a6b9;border-color:#77a6b9}body.admin-color-ectoplasm .components-modal__content input[type=checkbox]:checked,body.admin-color-ectoplasm .components-modal__content input[type=radio]:checked,body.admin-color-ectoplasm .components-popover input[type=checkbox]:checked,body.admin-color-ectoplasm .components-popover input[type=radio]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=radio]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=radio]:checked{background:#a7b656;border-color:#a7b656}body.admin-color-coffee .components-modal__content input[type=checkbox]:checked,body.admin-color-coffee .components-modal__content input[type=radio]:checked,body.admin-color-coffee .components-popover input[type=checkbox]:checked,body.admin-color-coffee .components-popover input[type=radio]:checked,body.admin-color-coffee .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-coffee .edit-post-sidebar input[type=radio]:checked,body.admin-color-coffee .editor-block-list__block input[type=checkbox]:checked,body.admin-color-coffee .editor-block-list__block input[type=radio]:checked,body.admin-color-coffee .editor-post-permalink input[type=checkbox]:checked,body.admin-color-coffee .editor-post-permalink input[type=radio]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=radio]:checked{background:#c2a68c;border-color:#c2a68c}body.admin-color-blue .components-modal__content input[type=checkbox]:checked,body.admin-color-blue .components-modal__content input[type=radio]:checked,body.admin-color-blue .components-popover input[type=checkbox]:checked,body.admin-color-blue .components-popover input[type=radio]:checked,body.admin-color-blue .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-blue .edit-post-sidebar input[type=radio]:checked,body.admin-color-blue .editor-block-list__block input[type=checkbox]:checked,body.admin-color-blue .editor-block-list__block input[type=radio]:checked,body.admin-color-blue .editor-post-permalink input[type=checkbox]:checked,body.admin-color-blue .editor-post-permalink input[type=radio]:checked,body.admin-color-blue .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-blue .editor-post-publish-panel input[type=radio]:checked{background:#82b4cb;border-color:#82b4cb}body.admin-color-light .components-modal__content input[type=checkbox]:checked,body.admin-color-light .components-modal__content input[type=radio]:checked,body.admin-color-light .components-popover input[type=checkbox]:checked,body.admin-color-light .components-popover input[type=radio]:checked,body.admin-color-light .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-light .edit-post-sidebar input[type=radio]:checked,body.admin-color-light .editor-block-list__block input[type=checkbox]:checked,body.admin-color-light .editor-block-list__block input[type=radio]:checked,body.admin-color-light .editor-post-permalink input[type=checkbox]:checked,body.admin-color-light .editor-post-permalink input[type=radio]:checked,body.admin-color-light .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-light .editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}.components-modal__content input[type=checkbox]:checked:focus,.components-modal__content input[type=radio]:checked:focus,.components-popover input[type=checkbox]:checked:focus,.components-popover input[type=radio]:checked:focus,.edit-post-sidebar input[type=checkbox]:checked:focus,.edit-post-sidebar input[type=radio]:checked:focus,.editor-block-list__block input[type=checkbox]:checked:focus,.editor-block-list__block input[type=radio]:checked:focus,.editor-post-permalink input[type=checkbox]:checked:focus,.editor-post-permalink input[type=radio]:checked:focus,.editor-post-publish-panel input[type=checkbox]:checked:focus,.editor-post-publish-panel input[type=radio]:checked:focus{box-shadow:0 0 0 2px #555d66}.components-modal__content input[type=checkbox],.components-popover input[type=checkbox],.edit-post-sidebar input[type=checkbox],.editor-block-list__block input[type=checkbox],.editor-post-permalink input[type=checkbox],.editor-post-publish-panel input[type=checkbox]{border-radius:2px}.components-modal__content input[type=checkbox]:checked:before,.components-popover input[type=checkbox]:checked:before,.edit-post-sidebar input[type=checkbox]:checked:before,.editor-block-list__block input[type=checkbox]:checked:before,.editor-post-permalink input[type=checkbox]:checked:before,.editor-post-publish-panel input[type=checkbox]:checked:before{color:#fff;margin:-4px -5px 0 0}.components-modal__content input[type=radio],.components-popover input[type=radio],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=radio]{border-radius:50%}.components-modal__content input[type=radio]:checked:before,.components-popover input[type=radio]:checked:before,.edit-post-sidebar input[type=radio]:checked:before,.editor-block-list__block input[type=radio]:checked:before,.editor-post-permalink input[type=radio]:checked:before,.editor-post-publish-panel input[type=radio]:checked:before{background-color:#fff;margin:3px 3px 0 0}.editor-block-list__block input::-webkit-input-placeholder,.editor-block-list__block textarea::-webkit-input-placeholder,.editor-post-title input::-webkit-input-placeholder,.editor-post-title textarea::-webkit-input-placeholder{color:rgba(14,28,46,.62)}.editor-block-list__block input::-moz-placeholder,.editor-block-list__block textarea::-moz-placeholder,.editor-post-title input::-moz-placeholder,.editor-post-title textarea::-moz-placeholder{color:rgba(14,28,46,.62);opacity:1}.editor-block-list__block input:-ms-input-placeholder,.editor-block-list__block textarea:-ms-input-placeholder,.editor-post-title input:-ms-input-placeholder,.editor-post-title textarea:-ms-input-placeholder{color:rgba(14,28,46,.62)}.is-dark-theme .editor-block-list__block input::-webkit-input-placeholder,.is-dark-theme .editor-block-list__block textarea::-webkit-input-placeholder,.is-dark-theme .editor-post-title input::-webkit-input-placeholder,.is-dark-theme .editor-post-title textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .editor-block-list__block input::-moz-placeholder,.is-dark-theme .editor-block-list__block textarea::-moz-placeholder,.is-dark-theme .editor-post-title input::-moz-placeholder,.is-dark-theme .editor-post-title textarea::-moz-placeholder{color:hsla(0,0%,100%,.65);opacity:1}.is-dark-theme .editor-block-list__block input:-ms-input-placeholder,.is-dark-theme .editor-block-list__block textarea:-ms-input-placeholder,.is-dark-theme .editor-post-title input:-ms-input-placeholder,.is-dark-theme .editor-post-title textarea:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}.wp-block{max-width:610px}.wp-block[data-align=wide]{max-width:1100px}.wp-block[data-align=full]{max-width:none}
\ No newline at end of file \ No newline at end of file
body.js.is-fullscreen-mode{animation:edit-post__fade-in-animation .3s ease-out 0s;animation-fill-mode:forwards;height:calc(100% + 46px);margin-top:-46px}@media (min-width:782px){body.js.is-fullscreen-mode{height:calc(100% + 32px);margin-top:-32px}}body.js.is-fullscreen-mode #adminmenumain,body.js.is-fullscreen-mode #wpadminbar{display:none}body.js.is-fullscreen-mode #wpcontent,body.js.is-fullscreen-mode #wpfooter{margin-left:0}body.js.is-fullscreen-mode .edit-post-header{animation:edit-post-fullscreen-mode__slide-in-animation .1s forwards;transform:translateY(-100%)}@keyframes edit-post-fullscreen-mode__slide-in-animation{to{transform:translateY(0)}}.edit-post-header{align-items:stretch;background:#fff;border-bottom:1px solid #e2e4e7;display:flex;flex-direction:row;height:56px;justify-content:space-between;padding:4px 2px;position:-webkit-sticky;position:sticky;right:0;top:0;z-index:30}@media (min-width:600px){.edit-post-header{padding:8px;position:fixed;top:46px}body.is-fullscreen-mode .edit-post-header{top:0}}@media (min-width:782px){.edit-post-header{top:32px}body.is-fullscreen-mode .edit-post-header{top:0}}.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:none}@media (min-width:600px){.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:inline-flex}}.edit-post-header>.edit-post-header__settings{order:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-header>.edit-post-header__settings{order:0}}.edit-post-header{left:0}@media (min-width:782px){.edit-post-header{left:160px}}@media (min-width:782px){.auto-fold .edit-post-header{left:36px}}@media (min-width:960px){.auto-fold .edit-post-header{left:160px}}.folded .edit-post-header{left:0}@media (min-width:782px){.folded .edit-post-header{left:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .edit-post-header{left:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .edit-post-header{margin-left:-18px}}body.is-fullscreen-mode .edit-post-header{left:0!important}.edit-post-header__settings{align-items:center;display:inline-flex}.edit-post-header .components-button.is-toggled{color:#fff}.edit-post-header .components-button.is-toggled:before{background:#555d66;border-radius:4px;bottom:1px;content:"";left:1px;position:absolute;right:1px;top:1px;z-index:-1}.edit-post-header .components-button.is-toggled:focus,.edit-post-header .components-button.is-toggled:hover{background:#555d66;box-shadow:0 0 0 1px #555d66,inset 0 0 0 1px #fff;color:#fff}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle,.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{font-size:13px;height:33px;line-height:32px;margin:2px}.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 5px}@media (min-width:600px){.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 12px}}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 5px 2px}@media (min-width:600px){.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 12px 2px}}@media (min-width:782px){.edit-post-header .components-button.editor-post-preview{margin:0 3px 0 12px}.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{margin:0 12px 0 3px}}.edit-post-fullscreen-mode-close__toolbar{border-bottom:0;border-left:0;border-top:0;margin:-9px 10px -9px -10px;padding:9px 10px}.edit-post-header-toolbar{align-items:center;display:inline-flex}.edit-post-header-toolbar>.components-button{display:none}@media (min-width:600px){.edit-post-header-toolbar>.components-button{display:inline-flex}}.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:none}@media (min-width:600px){.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:flex}}.edit-post-header-toolbar__block-toolbar{background:#fff;border-bottom:1px solid #e2e4e7;left:0;min-height:37px;position:absolute;right:0;top:56px}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{border-bottom:none;border-top:none}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:none}@media (min-width:782px){.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:block;right:280px}}@media (min-width:1080px){.edit-post-header-toolbar__block-toolbar{background:none;border-bottom:none;left:auto;min-height:auto;padding-left:8px;position:static;right:auto}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{right:auto}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar{margin:-9px 0}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{padding:10px 4px 9px}}.edit-post-more-menu{margin-left:-4px}.edit-post-more-menu .components-icon-button{padding:8px 2px;width:auto}@media (min-width:600px){.edit-post-more-menu{margin-left:4px}.edit-post-more-menu .components-icon-button{padding:8px 4px}}.edit-post-more-menu .components-button svg{transform:rotate(90deg)}.edit-post-more-menu__content .components-popover__content{min-width:260px}@media (min-width:480px){.edit-post-more-menu__content .components-popover__content{max-width:480px;width:auto}}.edit-post-more-menu__content .components-popover__content .components-menu-group:not(:last-child),.edit-post-more-menu__content .components-popover__content>div:not(:last-child) .components-menu-group{border-bottom:1px solid #e2e4e7}.edit-post-more-menu__content .components-popover__content .components-menu-item__button{padding-left:2rem}.edit-post-more-menu__content .components-popover__content .components-menu-item__button.has-icon{padding-left:.5rem}.edit-post-pinned-plugins{display:none}@media (min-width:600px){.edit-post-pinned-plugins{display:flex}}.edit-post-pinned-plugins .components-icon-button{margin-left:4px}.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg,.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg *{fill:#555d66;stroke:#555d66}.edit-post-pinned-plugins .components-icon-button.is-toggled svg,.edit-post-pinned-plugins .components-icon-button.is-toggled svg *{fill:#fff!important;stroke:#fff!important}.edit-post-pinned-plugins .components-icon-button:hover svg,.edit-post-pinned-plugins .components-icon-button:hover svg *{fill:#191e23!important;stroke:#191e23!important}.edit-post-keyboard-shortcut-help__title{font-size:1rem;font-weight:600}.edit-post-keyboard-shortcut-help__section{margin:0 0 2rem}.edit-post-keyboard-shortcut-help__section-title{font-size:.9rem;font-weight:600}.edit-post-keyboard-shortcut-help__shortcut{align-items:center;border-top:1px solid #e2e4e7;display:flex;padding:.6rem 0}.edit-post-keyboard-shortcut-help__shortcut:last-child{border-bottom:1px solid #e2e4e7}.edit-post-keyboard-shortcut-help__shortcut-term{font-weight:600;margin:0 0 0 1rem;order:1}.edit-post-keyboard-shortcut-help__shortcut-description{flex:1;flex-basis:auto;margin:0;order:0}.edit-post-keyboard-shortcut-help__shortcut-key-combination{background:none;margin:0;padding:0}.edit-post-keyboard-shortcut-help__shortcut-key{border-radius:8%;margin:0 .2rem;padding:.25rem .5rem}.edit-post-keyboard-shortcut-help__shortcut-key:last-child{margin:0 0 0 .2rem}.edit-post-layout,.edit-post-layout__content{height:100%}.edit-post-layout{position:relative}.edit-post-layout .components-notice-list{color:#191e23;position:-webkit-sticky;position:sticky;right:0;top:56px}@media (min-width:600px){.edit-post-layout .components-notice-list{position:fixed;top:inherit}}.edit-post-layout .components-notice-list .components-notice{margin:0 0 5px;min-height:50px;padding:6px 12px}.edit-post-layout .components-notice-list .components-notice .components-notice__dismiss{margin:10px 5px}@media (min-width:600px){.edit-post-layout{padding-top:56px}}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:36px}@media (min-width:600px){.edit-post-layout.has-fixed-toolbar{padding-top:93px}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:0}}@media (min-width:960px){.edit-post-layout.has-fixed-toolbar{padding-top:56px}}.components-notice-list{left:0}@media (min-width:782px){.components-notice-list{left:160px}}@media (min-width:782px){.auto-fold .components-notice-list{left:36px}}@media (min-width:960px){.auto-fold .components-notice-list{left:160px}}.folded .components-notice-list{left:0}@media (min-width:782px){.folded .components-notice-list{left:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .components-notice-list{left:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .components-notice-list{margin-left:-18px}}body.is-fullscreen-mode .components-notice-list{left:0!important}.components-notice-list{right:0}.edit-post-layout.is-sidebar-opened .components-notice-list{right:280px}.edit-post-layout__metaboxes:not(:empty){border-top:1px solid #e2e4e7;clear:both;margin-top:10px;padding:10px 0}.edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area{margin:auto 20px}.edit-post-layout__content{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;min-height:100%;overflow-y:auto;padding-bottom:50vh;position:relative}@media (min-width:600px){.edit-post-layout__content{overscroll-behavior-y:none;padding-bottom:0}}.edit-post-layout__content .edit-post-visual-editor{flex-grow:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-layout__content .edit-post-visual-editor{flex-basis:100%}}.edit-post-layout__content .edit-post-layout__metaboxes{flex-shrink:0}.edit-post-layout .editor-post-publish-panel{bottom:0;left:0;overflow:auto;position:fixed;right:0;top:46px;z-index:100001}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}@media (min-width:782px){.edit-post-layout .editor-post-publish-panel{animation:edit-post-layout__slide-in-animation .1s forwards;border-left:1px solid #e2e4e7;left:auto;top:32px;transform:translateX(100%);width:280px}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}}@keyframes edit-post-layout__slide-in-animation{to{transform:translateX(0)}}.edit-post-layout .editor-post-publish-panel__header-publish-button .components-button.is-large{height:33px;line-height:32px}.edit-post-layout .editor-post-publish-panel__header-publish-button .editor-post-publish-panel__spacer{display:inline-flex;flex:0 1 52px}.edit-post-toggle-publish-panel{bottom:0;height:0;overflow:hidden;position:absolute;right:0;width:280px;z-index:100000}.edit-post-toggle-publish-panel:focus-within{height:auto;padding:20px 0 0}.edit-post-toggle-publish-panel .edit-post-toggle-publish-panel__button{background:#f1f1f1;float:right;font-size:14px;font-weight:600;height:auto;line-height:normal;outline:none;padding:15px 23px 14px;text-decoration:none;width:auto}.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 #poststuff{margin:0 auto;min-width:auto;padding-top:0}.edit-post-meta-boxes-area #poststuff .stuffbox>h3,.edit-post-meta-boxes-area #poststuff h2.hndle,.edit-post-meta-boxes-area #poststuff h3.hndle{border-bottom:1px solid #e2e4e7;box-sizing:border-box;color:inherit;font-weight:600;outline:none;padding:15px;position:relative;width:100%}.edit-post-meta-boxes-area .postbox{border:0;color:inherit;margin-bottom:0}.edit-post-meta-boxes-area .postbox>.inside{border-bottom:1px solid #e2e4e7;color:inherit;margin:0;padding:0 14px 14px}.edit-post-meta-boxes-area .postbox .handlediv{height:44px;width:44px}.edit-post-meta-boxes-area.is-loading:before{background:transparent;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:1}.edit-post-meta-boxes-area .components-spinner{position:absolute;right:20px;top:10px;z-index:5}.edit-post-meta-boxes-area__clear{clear:both}.edit-post-sidebar{background:#fff;border-left:1px solid #e2e4e7;bottom:0;color:#555d66;height:100vh;overflow:hidden;position:fixed;right:0;top:0;width:280px;z-index:100000}@media (min-width:600px){.edit-post-sidebar{-webkit-overflow-scrolling:touch;height:auto;overflow:auto;top:102px;z-index:90}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}@media (min-width:782px){.edit-post-sidebar{top:88px}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}.edit-post-sidebar>.components-panel{-webkit-overflow-scrolling:touch;border-left:none;border-right:none;height:auto;margin-bottom:-1px;margin-top:-1px;max-height:calc(100vh - 96px);overflow:auto}body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:calc(100vh - 50px)}@media (min-width:600px){body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:none}}@media (min-width:600px){.edit-post-sidebar>.components-panel{height:auto;max-height:none;overflow:inherit}}.edit-post-sidebar>.components-panel .components-panel__header{height:50px;left:0;position:fixed;right:0;top:0;z-index:1}@media (min-width:600px){.edit-post-sidebar>.components-panel .components-panel__header{left:auto;position:inherit;right:auto;top:auto}}.edit-post-sidebar p{margin-top:0}.edit-post-sidebar h2,.edit-post-sidebar h3{color:#555d66;font-size:13px;margin-bottom:1.5em}.edit-post-sidebar hr{border-bottom:1px solid #e2e4e7;border-top:none;margin:1.5em 0}.edit-post-sidebar div.components-toolbar{box-shadow:none;margin-bottom:1.5em}.edit-post-sidebar div.components-toolbar:last-child{margin-bottom:0}.edit-post-sidebar p+div.components-toolbar{margin-top:-1em}.edit-post-sidebar .editor-skip-to-selected-block:focus{bottom:10px;left:auto;right:10px;top:auto}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-layout__content{margin-right:280px}}.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:100%}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:280px}}.components-panel__header.edit-post-sidebar__header{background:#fff;padding-right:8px}.components-panel__header.edit-post-sidebar__header .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar__header{display:none}}.components-panel__header.edit-post-sidebar__panel-tabs{margin-top:0}.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:none;margin-left:auto}@media (min-width:782px){.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:flex}}.edit-post-sidebar__panel-tab{height:50px}.components-panel__body.is-opened.edit-post-last-revision__panel{padding:0}.editor-post-last-revision__title{padding:13px 16px}.editor-post-author__select{margin:-5px 0;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.editor-post-author__select{width:auto}}.edit-post-post-link__link-post-name{font-weight:600}.edit-post-post-link__preview-label{margin:0}.edit-post-post-link__link{word-wrap:break-word}.edit-post-post-schedule{position:relative;width:100%}.edit-post-post-schedule__label{display:none}.components-button.edit-post-post-schedule__toggle{text-align:right}.edit-post-post-schedule__dialog .components-popover__content{padding:10px}@media (min-width:782px){.edit-post-post-schedule__dialog .components-popover__content{width:270px}}.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft{margin-top:15px;text-align:center;width:100%}.edit-post-post-visibility{width:100%}.edit-post-post-visibility__dialog .components-popover__content{padding:10px}@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{margin-left:20px;width:calc(100% - 20px)}.edit-post-post-visibility__dialog-info{color:#7e8993;font-style:italic;line-height:1.4;margin:4px 0 0;padding-left:20px}.components-panel__header.edit-post-sidebar__panel-tabs{border-top:0;justify-content:flex-start;padding-left:0;padding-right:4px;position:-webkit-sticky;position:sticky;top:0;z-index:1}.components-panel__header.edit-post-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-post-sidebar__panel-tabs li{margin:0}.edit-post-sidebar__panel-tab{background:transparent;border:none;border-radius:0;color:#191e23;cursor:pointer;font-weight:400;height:48px;margin-left:0;outline-offset:-1px;padding:3px 15px}.edit-post-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba;font-weight:600;padding-bottom:0}body.admin-color-sunrise .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #d1864a}body.admin-color-ocean .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a3b9a2}body.admin-color-midnight .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #e14d43}body.admin-color-ectoplasm .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a7b656}body.admin-color-coffee .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #c2a68c}body.admin-color-blue .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #82b4cb}body.admin-color-light .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba}.edit-post-sidebar__panel-tab:focus{box-shadow:none;color:#191e23;outline:1px solid #6c7781}.edit-post-settings-sidebar__panel-block .components-panel__body{border:none;border-top:1px solid #e2e4e7;margin:0 -16px}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control{margin:0 0 1.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control:last-child{margin-bottom:.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-panel__body-toggle{color:#191e23}.edit-post-settings-sidebar__panel-block .components-panel__body:first-child{margin-top:16px}.edit-post-settings-sidebar__panel-block .components-panel__body:last-child{margin-bottom:-16px}.components-panel__header.edit-post-sidebar-header__small{background:#fff;padding-right:4px}.components-panel__header.edit-post-sidebar-header__small .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header__small{display:none}}.components-panel__header.edit-post-sidebar-header{background:#f3f4f5;padding-right:4px}.components-panel__header.edit-post-sidebar-header .components-icon-button{display:none;margin-left:auto}.components-panel__header.edit-post-sidebar-header .components-icon-button~.components-icon-button{margin-left:0}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header .components-icon-button{display:flex}}.edit-post-text-editor__body{padding-top:40px}@media (min-width:600px){.edit-post-text-editor__body{padding-top:86px}body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}@media (min-width:782px){.edit-post-text-editor__body,body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}.edit-post-text-editor{margin-left:16px;margin-right:16px;padding-top:44px;width:100%}@media (min-width:600px){.edit-post-text-editor{margin-left:auto;margin-right:auto;max-width:610px}}.edit-post-text-editor .editor-post-title__block textarea{border:1px solid #e2e4e7;margin-bottom:4px;padding:14px}.edit-post-text-editor .editor-post-title__block.is-selected textarea,.edit-post-text-editor .editor-post-title__block textarea:hover{box-shadow:0 0 0 1px #e2e4e7}.edit-post-text-editor .editor-post-permalink{left:0;margin-top:-6px;right:0}@media (min-width:600px){.edit-post-text-editor .editor-post-title,.edit-post-text-editor .editor-post-title__block{padding:0}}.edit-post-text-editor .editor-post-text-editor{line-height:1.8;min-height:200px;padding:14px}.edit-post-text-editor .edit-post-text-editor__toolbar{display:flex;height:36px;left:0;line-height:36px;padding:0 8px 0 16px;position:absolute;right:0;top:8px}.edit-post-text-editor .edit-post-text-editor__toolbar h2{color:#555d66;font-size:13px;margin:0 auto 0 0}.edit-post-text-editor .edit-post-text-editor__toolbar .components-icon-button svg{order:1}.edit-post-visual-editor{padding:50px 0;position:relative}.edit-post-visual-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.edit-post-visual-editor .editor-writing-flow__click-redirect{height:50px;margin:-4px auto -50px;width:100%}.edit-post-visual-editor .editor-block-list__block{margin-left:auto;margin-right:auto}@media (min-width:600px){.edit-post-visual-editor .editor-block-list__block .editor-block-list__block-edit{margin-left:-28px;margin-right:-28px}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{height:0;text-align:center;width:calc(100% + 30px)}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar{max-width:610px;position:relative;width:100%}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-left:0;margin-right:0;width:100%}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar{max-width:608px}}@media (min-width:600px){.editor-post-title{padding-left:46px;padding-right:46px}}.edit-post-visual-editor .editor-post-title__block{margin-bottom:-20px;margin-left:auto;margin-right:auto}.edit-post-visual-editor .editor-post-title__block>div{margin-left:0;margin-right:0}@media (min-width:600px){.edit-post-visual-editor .editor-post-title__block>div{margin-left:-2px;margin-right:-2px}}.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=left]:first-child,.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=right]:first-child{margin-top:34px}.edit-post-visual-editor .editor-default-block-appender{margin-left:auto;margin-right:auto;position:relative}.edit-post-visual-editor .editor-default-block-appender[data-root-client-id=""] .editor-default-block-appender__content:hover{outline:1px solid transparent}.edit-post-visual-editor .editor-block-list__block[data-type="core/paragraph"] p[data-is-placeholder-visible=true]+p,.edit-post-visual-editor .editor-default-block-appender__content{line-height:1.8;min-height:28px}.edit-post-options-modal__title{font-size:1rem;font-weight:600}.edit-post-options-modal__section{margin:0 0 2rem}.edit-post-options-modal__section-title{font-size:.9rem;font-weight:600}.edit-post-options-modal__option{border-top:1px solid #e2e4e7}.edit-post-options-modal__option:last-child{border-bottom:1px solid #e2e4e7}.edit-post-options-modal__option .components-base-control__field{align-items:center;display:flex;margin:0}.edit-post-options-modal__option .components-checkbox-control__label{flex-grow:1;padding:.6rem 0 .6rem 10px}@keyframes edit-post__loading-fade-animation{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@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{max-width:100%;width:auto}.block-editor,.components-modal__frame{box-sizing:border-box}.block-editor *,.block-editor :after,.block-editor :before,.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}.block-editor select,.components-modal__frame select{color:#555d66;font-size:13px}@media (min-width:600px){.block-editor__container{bottom:0;left:0;min-height:calc(100vh - 46px);position:absolute;right:0;top:0}body.is-fullscreen-mode .block-editor__container{min-height:100vh}}@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{height:auto;max-width:100%}.block-editor__container iframe{width:100%}.block-editor__container .components-navigate-regions{height:100%}.components-modal__content .input-control,.components-modal__content input[type=checkbox],.components-modal__content input[type=color],.components-modal__content input[type=date],.components-modal__content input[type=datetime-local],.components-modal__content input[type=datetime],.components-modal__content input[type=email],.components-modal__content input[type=month],.components-modal__content input[type=number],.components-modal__content input[type=password],.components-modal__content input[type=radio],.components-modal__content input[type=search],.components-modal__content input[type=tel],.components-modal__content input[type=text],.components-modal__content input[type=time],.components-modal__content input[type=url],.components-modal__content input[type=week],.components-modal__content select,.components-modal__content textarea,.components-popover .input-control,.components-popover input[type=checkbox],.components-popover input[type=color],.components-popover input[type=date],.components-popover input[type=datetime-local],.components-popover input[type=datetime],.components-popover input[type=email],.components-popover input[type=month],.components-popover input[type=number],.components-popover input[type=password],.components-popover input[type=radio],.components-popover input[type=search],.components-popover input[type=tel],.components-popover input[type=text],.components-popover input[type=time],.components-popover input[type=url],.components-popover input[type=week],.components-popover select,.components-popover textarea,.edit-post-sidebar .input-control,.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=color],.edit-post-sidebar input[type=date],.edit-post-sidebar input[type=datetime-local],.edit-post-sidebar input[type=datetime],.edit-post-sidebar input[type=email],.edit-post-sidebar input[type=month],.edit-post-sidebar input[type=number],.edit-post-sidebar input[type=password],.edit-post-sidebar input[type=radio],.edit-post-sidebar input[type=search],.edit-post-sidebar input[type=tel],.edit-post-sidebar input[type=text],.edit-post-sidebar input[type=time],.edit-post-sidebar input[type=url],.edit-post-sidebar input[type=week],.edit-post-sidebar select,.edit-post-sidebar textarea,.editor-block-list__block .input-control,.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=color],.editor-block-list__block input[type=date],.editor-block-list__block input[type=datetime-local],.editor-block-list__block input[type=datetime],.editor-block-list__block input[type=email],.editor-block-list__block input[type=month],.editor-block-list__block input[type=number],.editor-block-list__block input[type=password],.editor-block-list__block input[type=radio],.editor-block-list__block input[type=search],.editor-block-list__block input[type=tel],.editor-block-list__block input[type=text],.editor-block-list__block input[type=time],.editor-block-list__block input[type=url],.editor-block-list__block input[type=week],.editor-block-list__block select,.editor-block-list__block textarea,.editor-post-permalink .input-control,.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=color],.editor-post-permalink input[type=date],.editor-post-permalink input[type=datetime-local],.editor-post-permalink input[type=datetime],.editor-post-permalink input[type=email],.editor-post-permalink input[type=month],.editor-post-permalink input[type=number],.editor-post-permalink input[type=password],.editor-post-permalink input[type=radio],.editor-post-permalink input[type=search],.editor-post-permalink input[type=tel],.editor-post-permalink input[type=text],.editor-post-permalink input[type=time],.editor-post-permalink input[type=url],.editor-post-permalink input[type=week],.editor-post-permalink select,.editor-post-permalink textarea,.editor-post-publish-panel .input-control,.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=color],.editor-post-publish-panel input[type=date],.editor-post-publish-panel input[type=datetime-local],.editor-post-publish-panel input[type=datetime],.editor-post-publish-panel input[type=email],.editor-post-publish-panel input[type=month],.editor-post-publish-panel input[type=number],.editor-post-publish-panel input[type=password],.editor-post-publish-panel input[type=radio],.editor-post-publish-panel input[type=search],.editor-post-publish-panel input[type=tel],.editor-post-publish-panel input[type=text],.editor-post-publish-panel input[type=time],.editor-post-publish-panel input[type=url],.editor-post-publish-panel input[type=week],.editor-post-publish-panel select,.editor-post-publish-panel textarea{border:1px solid #8d96a0;border-radius:4px;box-shadow:0 0 0 transparent;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 8px;transition:box-shadow .1s linear}.components-modal__content .input-control:focus,.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=color]:focus,.components-modal__content input[type=date]:focus,.components-modal__content input[type=datetime-local]:focus,.components-modal__content input[type=datetime]:focus,.components-modal__content input[type=email]:focus,.components-modal__content input[type=month]:focus,.components-modal__content input[type=number]:focus,.components-modal__content input[type=password]:focus,.components-modal__content input[type=radio]:focus,.components-modal__content input[type=search]:focus,.components-modal__content input[type=tel]:focus,.components-modal__content input[type=text]:focus,.components-modal__content input[type=time]:focus,.components-modal__content input[type=url]:focus,.components-modal__content input[type=week]:focus,.components-modal__content select:focus,.components-modal__content textarea:focus,.components-popover .input-control:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=color]:focus,.components-popover input[type=date]:focus,.components-popover input[type=datetime-local]:focus,.components-popover input[type=datetime]:focus,.components-popover input[type=email]:focus,.components-popover input[type=month]:focus,.components-popover input[type=number]:focus,.components-popover input[type=password]:focus,.components-popover input[type=radio]:focus,.components-popover input[type=search]:focus,.components-popover input[type=tel]:focus,.components-popover input[type=text]:focus,.components-popover input[type=time]:focus,.components-popover input[type=url]:focus,.components-popover input[type=week]:focus,.components-popover select:focus,.components-popover textarea:focus,.edit-post-sidebar .input-control:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=color]:focus,.edit-post-sidebar input[type=date]:focus,.edit-post-sidebar input[type=datetime-local]:focus,.edit-post-sidebar input[type=datetime]:focus,.edit-post-sidebar input[type=email]:focus,.edit-post-sidebar input[type=month]:focus,.edit-post-sidebar input[type=number]:focus,.edit-post-sidebar input[type=password]:focus,.edit-post-sidebar input[type=radio]:focus,.edit-post-sidebar input[type=search]:focus,.edit-post-sidebar input[type=tel]:focus,.edit-post-sidebar input[type=text]:focus,.edit-post-sidebar input[type=time]:focus,.edit-post-sidebar input[type=url]:focus,.edit-post-sidebar input[type=week]:focus,.edit-post-sidebar select:focus,.edit-post-sidebar textarea:focus,.editor-block-list__block .input-control:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=color]:focus,.editor-block-list__block input[type=date]:focus,.editor-block-list__block input[type=datetime-local]:focus,.editor-block-list__block input[type=datetime]:focus,.editor-block-list__block input[type=email]:focus,.editor-block-list__block input[type=month]:focus,.editor-block-list__block input[type=number]:focus,.editor-block-list__block input[type=password]:focus,.editor-block-list__block input[type=radio]:focus,.editor-block-list__block input[type=search]:focus,.editor-block-list__block input[type=tel]:focus,.editor-block-list__block input[type=text]:focus,.editor-block-list__block input[type=time]:focus,.editor-block-list__block input[type=url]:focus,.editor-block-list__block input[type=week]:focus,.editor-block-list__block select:focus,.editor-block-list__block textarea:focus,.editor-post-permalink .input-control:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=color]:focus,.editor-post-permalink input[type=date]:focus,.editor-post-permalink input[type=datetime-local]:focus,.editor-post-permalink input[type=datetime]:focus,.editor-post-permalink input[type=email]:focus,.editor-post-permalink input[type=month]:focus,.editor-post-permalink input[type=number]:focus,.editor-post-permalink input[type=password]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-permalink input[type=search]:focus,.editor-post-permalink input[type=tel]:focus,.editor-post-permalink input[type=text]:focus,.editor-post-permalink input[type=time]:focus,.editor-post-permalink input[type=url]:focus,.editor-post-permalink input[type=week]:focus,.editor-post-permalink select:focus,.editor-post-permalink textarea:focus,.editor-post-publish-panel .input-control:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=color]:focus,.editor-post-publish-panel input[type=date]:focus,.editor-post-publish-panel input[type=datetime-local]:focus,.editor-post-publish-panel input[type=datetime]:focus,.editor-post-publish-panel input[type=email]:focus,.editor-post-publish-panel input[type=month]:focus,.editor-post-publish-panel input[type=number]:focus,.editor-post-publish-panel input[type=password]:focus,.editor-post-publish-panel input[type=radio]:focus,.editor-post-publish-panel input[type=search]:focus,.editor-post-publish-panel input[type=tel]:focus,.editor-post-publish-panel input[type=text]:focus,.editor-post-publish-panel input[type=time]:focus,.editor-post-publish-panel input[type=url]:focus,.editor-post-publish-panel input[type=week]:focus,.editor-post-publish-panel select:focus,.editor-post-publish-panel textarea:focus{border-color:#00a0d2;box-shadow:0 0 0 1px #00a0d2;color:#191e23;outline:2px solid transparent;outline-offset:-2px}.components-modal__content select,.components-popover select,.edit-post-sidebar select,.editor-block-list__block select,.editor-post-permalink select,.editor-post-publish-panel select{padding:2px}.components-modal__content select:focus,.components-popover select:focus,.edit-post-sidebar select:focus,.editor-block-list__block select:focus,.editor-post-permalink select:focus,.editor-post-publish-panel select:focus{border-color:#008dbe;outline:2px solid transparent;outline-offset:0}.components-modal__content input[type=checkbox],.components-modal__content input[type=radio],.components-popover input[type=checkbox],.components-popover input[type=radio],.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=radio]{border:2px solid #6c7781;margin-right:12px;transition:none}.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=radio]:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=radio]:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=radio]:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=radio]:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=radio]:focus{border-color:#6c7781;box-shadow:0 0 0 1px #6c7781}.components-modal__content input[type=checkbox]:checked,.components-modal__content input[type=radio]:checked,.components-popover input[type=checkbox]:checked,.components-popover input[type=radio]:checked,.edit-post-sidebar input[type=checkbox]:checked,.edit-post-sidebar input[type=radio]:checked,.editor-block-list__block input[type=checkbox]:checked,.editor-block-list__block input[type=radio]:checked,.editor-post-permalink input[type=checkbox]:checked,.editor-post-permalink input[type=radio]:checked,.editor-post-publish-panel input[type=checkbox]:checked,.editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}body.admin-color-sunrise .components-modal__content input[type=checkbox]:checked,body.admin-color-sunrise .components-modal__content input[type=radio]:checked,body.admin-color-sunrise .components-popover input[type=checkbox]:checked,body.admin-color-sunrise .components-popover input[type=radio]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=radio]:checked,body.admin-color-sunrise .editor-block-list__block input[type=checkbox]:checked,body.admin-color-sunrise .editor-block-list__block input[type=radio]:checked,body.admin-color-sunrise .editor-post-permalink input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-permalink input[type=radio]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=radio]:checked{background:#c8b03c;border-color:#c8b03c}body.admin-color-ocean .components-modal__content input[type=checkbox]:checked,body.admin-color-ocean .components-modal__content input[type=radio]:checked,body.admin-color-ocean .components-popover input[type=checkbox]:checked,body.admin-color-ocean .components-popover input[type=radio]:checked,body.admin-color-ocean .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ocean .edit-post-sidebar input[type=radio]:checked,body.admin-color-ocean .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ocean .editor-block-list__block input[type=radio]:checked,body.admin-color-ocean .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ocean .editor-post-permalink input[type=radio]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=radio]:checked{background:#a3b9a2;border-color:#a3b9a2}body.admin-color-midnight .components-modal__content input[type=checkbox]:checked,body.admin-color-midnight .components-modal__content input[type=radio]:checked,body.admin-color-midnight .components-popover input[type=checkbox]:checked,body.admin-color-midnight .components-popover input[type=radio]:checked,body.admin-color-midnight .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-midnight .edit-post-sidebar input[type=radio]:checked,body.admin-color-midnight .editor-block-list__block input[type=checkbox]:checked,body.admin-color-midnight .editor-block-list__block input[type=radio]:checked,body.admin-color-midnight .editor-post-permalink input[type=checkbox]:checked,body.admin-color-midnight .editor-post-permalink input[type=radio]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=radio]:checked{background:#77a6b9;border-color:#77a6b9}body.admin-color-ectoplasm .components-modal__content input[type=checkbox]:checked,body.admin-color-ectoplasm .components-modal__content input[type=radio]:checked,body.admin-color-ectoplasm .components-popover input[type=checkbox]:checked,body.admin-color-ectoplasm .components-popover input[type=radio]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=radio]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=radio]:checked{background:#a7b656;border-color:#a7b656}body.admin-color-coffee .components-modal__content input[type=checkbox]:checked,body.admin-color-coffee .components-modal__content input[type=radio]:checked,body.admin-color-coffee .components-popover input[type=checkbox]:checked,body.admin-color-coffee .components-popover input[type=radio]:checked,body.admin-color-coffee .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-coffee .edit-post-sidebar input[type=radio]:checked,body.admin-color-coffee .editor-block-list__block input[type=checkbox]:checked,body.admin-color-coffee .editor-block-list__block input[type=radio]:checked,body.admin-color-coffee .editor-post-permalink input[type=checkbox]:checked,body.admin-color-coffee .editor-post-permalink input[type=radio]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=radio]:checked{background:#c2a68c;border-color:#c2a68c}body.admin-color-blue .components-modal__content input[type=checkbox]:checked,body.admin-color-blue .components-modal__content input[type=radio]:checked,body.admin-color-blue .components-popover input[type=checkbox]:checked,body.admin-color-blue .components-popover input[type=radio]:checked,body.admin-color-blue .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-blue .edit-post-sidebar input[type=radio]:checked,body.admin-color-blue .editor-block-list__block input[type=checkbox]:checked,body.admin-color-blue .editor-block-list__block input[type=radio]:checked,body.admin-color-blue .editor-post-permalink input[type=checkbox]:checked,body.admin-color-blue .editor-post-permalink input[type=radio]:checked,body.admin-color-blue .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-blue .editor-post-publish-panel input[type=radio]:checked{background:#82b4cb;border-color:#82b4cb}body.admin-color-light .components-modal__content input[type=checkbox]:checked,body.admin-color-light .components-modal__content input[type=radio]:checked,body.admin-color-light .components-popover input[type=checkbox]:checked,body.admin-color-light .components-popover input[type=radio]:checked,body.admin-color-light .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-light .edit-post-sidebar input[type=radio]:checked,body.admin-color-light .editor-block-list__block input[type=checkbox]:checked,body.admin-color-light .editor-block-list__block input[type=radio]:checked,body.admin-color-light .editor-post-permalink input[type=checkbox]:checked,body.admin-color-light .editor-post-permalink input[type=radio]:checked,body.admin-color-light .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-light .editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}.components-modal__content input[type=checkbox]:checked:focus,.components-modal__content input[type=radio]:checked:focus,.components-popover input[type=checkbox]:checked:focus,.components-popover input[type=radio]:checked:focus,.edit-post-sidebar input[type=checkbox]:checked:focus,.edit-post-sidebar input[type=radio]:checked:focus,.editor-block-list__block input[type=checkbox]:checked:focus,.editor-block-list__block input[type=radio]:checked:focus,.editor-post-permalink input[type=checkbox]:checked:focus,.editor-post-permalink input[type=radio]:checked:focus,.editor-post-publish-panel input[type=checkbox]:checked:focus,.editor-post-publish-panel input[type=radio]:checked:focus{box-shadow:0 0 0 2px #555d66}.components-modal__content input[type=checkbox],.components-popover input[type=checkbox],.edit-post-sidebar input[type=checkbox],.editor-block-list__block input[type=checkbox],.editor-post-permalink input[type=checkbox],.editor-post-publish-panel input[type=checkbox]{border-radius:2px}.components-modal__content input[type=checkbox]:checked:before,.components-popover input[type=checkbox]:checked:before,.edit-post-sidebar input[type=checkbox]:checked:before,.editor-block-list__block input[type=checkbox]:checked:before,.editor-post-permalink input[type=checkbox]:checked:before,.editor-post-publish-panel input[type=checkbox]:checked:before{color:#fff;margin:-4px 0 0 -5px}.components-modal__content input[type=radio],.components-popover input[type=radio],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=radio]{border-radius:50%}.components-modal__content input[type=radio]:checked:before,.components-popover input[type=radio]:checked:before,.edit-post-sidebar input[type=radio]:checked:before,.editor-block-list__block input[type=radio]:checked:before,.editor-post-permalink input[type=radio]:checked:before,.editor-post-publish-panel input[type=radio]:checked:before{background-color:#fff;margin:3px 0 0 3px}.editor-block-list__block input::-webkit-input-placeholder,.editor-block-list__block textarea::-webkit-input-placeholder,.editor-post-title input::-webkit-input-placeholder,.editor-post-title textarea::-webkit-input-placeholder{color:rgba(14,28,46,.62)}.editor-block-list__block input::-moz-placeholder,.editor-block-list__block textarea::-moz-placeholder,.editor-post-title input::-moz-placeholder,.editor-post-title textarea::-moz-placeholder{color:rgba(14,28,46,.62);opacity:1}.editor-block-list__block input:-ms-input-placeholder,.editor-block-list__block textarea:-ms-input-placeholder,.editor-post-title input:-ms-input-placeholder,.editor-post-title textarea:-ms-input-placeholder{color:rgba(14,28,46,.62)}.is-dark-theme .editor-block-list__block input::-webkit-input-placeholder,.is-dark-theme .editor-block-list__block textarea::-webkit-input-placeholder,.is-dark-theme .editor-post-title input::-webkit-input-placeholder,.is-dark-theme .editor-post-title textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .editor-block-list__block input::-moz-placeholder,.is-dark-theme .editor-block-list__block textarea::-moz-placeholder,.is-dark-theme .editor-post-title input::-moz-placeholder,.is-dark-theme .editor-post-title textarea::-moz-placeholder{color:hsla(0,0%,100%,.65);opacity:1}.is-dark-theme .editor-block-list__block input:-ms-input-placeholder,.is-dark-theme .editor-block-list__block textarea:-ms-input-placeholder,.is-dark-theme .editor-post-title input:-ms-input-placeholder,.is-dark-theme .editor-post-title textarea:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}.wp-block{max-width:610px}.wp-block[data-align=wide]{max-width:1100px}.wp-block[data-align=full]{max-width:none} body.js.is-fullscreen-mode{animation:edit-post__fade-in-animation .3s ease-out 0s;animation-fill-mode:forwards;height:calc(100% + 46px);margin-top:-46px}@media (min-width:782px){body.js.is-fullscreen-mode{height:calc(100% + 32px);margin-top:-32px}}body.js.is-fullscreen-mode #adminmenumain,body.js.is-fullscreen-mode #wpadminbar{display:none}body.js.is-fullscreen-mode #wpcontent,body.js.is-fullscreen-mode #wpfooter{margin-left:0}body.js.is-fullscreen-mode .edit-post-header{animation:edit-post-fullscreen-mode__slide-in-animation .1s forwards;transform:translateY(-100%)}@keyframes edit-post-fullscreen-mode__slide-in-animation{to{transform:translateY(0)}}.edit-post-header{align-items:stretch;background:#fff;border-bottom:1px solid #e2e4e7;display:flex;flex-direction:row;height:56px;justify-content:space-between;padding:4px 2px;position:-webkit-sticky;position:sticky;right:0;top:0;z-index:30}@media (min-width:600px){.edit-post-header{padding:8px;position:fixed;top:46px}body.is-fullscreen-mode .edit-post-header{top:0}}@media (min-width:782px){.edit-post-header{top:32px}body.is-fullscreen-mode .edit-post-header{top:0}}.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:none}@media (min-width:600px){.edit-post-header .editor-post-switch-to-draft+.editor-post-preview{display:inline-flex}}.edit-post-header>.edit-post-header__settings{order:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-header>.edit-post-header__settings{order:0}}.edit-post-header{left:0}@media (min-width:782px){.edit-post-header{left:160px}}@media (min-width:782px){.auto-fold .edit-post-header{left:36px}}@media (min-width:960px){.auto-fold .edit-post-header{left:160px}}.folded .edit-post-header{left:0}@media (min-width:782px){.folded .edit-post-header{left:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .edit-post-header{left:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .edit-post-header{margin-left:-18px}}body.is-fullscreen-mode .edit-post-header{left:0!important}.edit-post-header__settings{align-items:center;display:inline-flex}.edit-post-header .components-button.is-toggled{color:#fff}.edit-post-header .components-button.is-toggled:before{background:#555d66;border-radius:4px;bottom:1px;content:"";left:1px;position:absolute;right:1px;top:1px;z-index:-1}.edit-post-header .components-button.is-toggled:focus,.edit-post-header .components-button.is-toggled:hover{background:#555d66;box-shadow:0 0 0 1px #555d66,inset 0 0 0 1px #fff;color:#fff}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle,.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{font-size:13px;height:33px;line-height:32px;margin:2px}.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 5px}@media (min-width:600px){.edit-post-header .components-button.editor-post-save-draft,.edit-post-header .components-button.editor-post-switch-to-draft{padding:0 12px}}.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 5px 2px}@media (min-width:600px){.edit-post-header .components-button.editor-post-preview,.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{padding:0 12px 2px}}@media (min-width:782px){.edit-post-header .components-button.editor-post-preview{margin:0 3px 0 12px}.edit-post-header .components-button.editor-post-publish-button,.edit-post-header .components-button.editor-post-publish-panel__toggle{margin:0 12px 0 3px}}.edit-post-fullscreen-mode-close__toolbar{border-bottom:0;border-left:0;border-top:0;margin:-9px 10px -9px -10px;padding:9px 10px}.edit-post-header-toolbar{align-items:center;display:inline-flex}.edit-post-header-toolbar>.components-button{display:none}@media (min-width:600px){.edit-post-header-toolbar>.components-button{display:inline-flex}}.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:none}@media (min-width:600px){.edit-post-header-toolbar .editor-block-navigation,.edit-post-header-toolbar .table-of-contents{display:flex}}.edit-post-header-toolbar__block-toolbar{background:#fff;border-bottom:1px solid #e2e4e7;left:0;min-height:37px;position:absolute;right:0;top:56px}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{border-bottom:none;border-top:none}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:none}@media (min-width:782px){.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{display:block;right:280px}}@media (min-width:1080px){.edit-post-header-toolbar__block-toolbar{background:none;border-bottom:none;left:auto;min-height:auto;padding-left:8px;position:static;right:auto}.is-sidebar-opened .edit-post-header-toolbar__block-toolbar{right:auto}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar{margin:-9px 0}.edit-post-header-toolbar__block-toolbar .editor-block-toolbar .components-toolbar{padding:10px 4px 9px}}.edit-post-more-menu{margin-left:-4px}.edit-post-more-menu .components-icon-button{padding:8px 2px;width:auto}@media (min-width:600px){.edit-post-more-menu{margin-left:4px}.edit-post-more-menu .components-icon-button{padding:8px 4px}}.edit-post-more-menu .components-button svg{transform:rotate(90deg)}.edit-post-more-menu__content .components-popover__content{min-width:260px}@media (min-width:480px){.edit-post-more-menu__content .components-popover__content{max-width:480px;width:auto}}.edit-post-more-menu__content .components-popover__content .components-menu-group:not(:last-child),.edit-post-more-menu__content .components-popover__content>div:not(:last-child) .components-menu-group{border-bottom:1px solid #e2e4e7}.edit-post-more-menu__content .components-popover__content .components-menu-item__button{padding-left:2rem}.edit-post-more-menu__content .components-popover__content .components-menu-item__button.has-icon{padding-left:.5rem}.edit-post-pinned-plugins{display:none}@media (min-width:600px){.edit-post-pinned-plugins{display:flex}}.edit-post-pinned-plugins .components-icon-button{margin-left:4px}.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg,.edit-post-pinned-plugins .components-icon-button:not(.is-toggled) svg *{fill:#555d66;stroke:#555d66}.edit-post-pinned-plugins .components-icon-button.is-toggled svg,.edit-post-pinned-plugins .components-icon-button.is-toggled svg *{fill:#fff!important;stroke:#fff!important}.edit-post-pinned-plugins .components-icon-button:hover svg,.edit-post-pinned-plugins .components-icon-button:hover svg *{fill:#191e23!important;stroke:#191e23!important}.edit-post-keyboard-shortcut-help__title{font-size:1rem;font-weight:600}.edit-post-keyboard-shortcut-help__section{margin:0 0 2rem}.edit-post-keyboard-shortcut-help__section-title{font-size:.9rem;font-weight:600}.edit-post-keyboard-shortcut-help__shortcut{align-items:center;border-top:1px solid #e2e4e7;display:flex;padding:.6rem 0}.edit-post-keyboard-shortcut-help__shortcut:last-child{border-bottom:1px solid #e2e4e7}.edit-post-keyboard-shortcut-help__shortcut-term{font-weight:600;margin:0 0 0 1rem;order:1}.edit-post-keyboard-shortcut-help__shortcut-description{flex:1;flex-basis:auto;margin:0;order:0}.edit-post-keyboard-shortcut-help__shortcut-key-combination{background:none;margin:0;padding:0}.edit-post-keyboard-shortcut-help__shortcut-key{border-radius:8%;margin:0 .2rem;padding:.25rem .5rem}.edit-post-keyboard-shortcut-help__shortcut-key:last-child{margin:0 0 0 .2rem}.edit-post-layout,.edit-post-layout__content{height:100%}.edit-post-layout{position:relative}.edit-post-layout .components-notice-list{color:#191e23;position:-webkit-sticky;position:sticky;right:0;top:56px}@media (min-width:600px){.edit-post-layout .components-notice-list{position:fixed;top:inherit}}.edit-post-layout .components-notice-list .components-notice{margin:0 0 5px;min-height:50px;padding:6px 12px}.edit-post-layout .components-notice-list .components-notice .components-notice__dismiss{margin:10px 5px}@media (min-width:600px){.edit-post-layout{padding-top:56px}}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:36px}@media (min-width:600px){.edit-post-layout.has-fixed-toolbar{padding-top:93px}.edit-post-layout.has-fixed-toolbar .edit-post-layout__content{padding-top:0}}@media (min-width:960px){.edit-post-layout.has-fixed-toolbar{padding-top:56px}}.components-notice-list{left:0}@media (min-width:782px){.components-notice-list{left:160px}}@media (min-width:782px){.auto-fold .components-notice-list{left:36px}}@media (min-width:960px){.auto-fold .components-notice-list{left:160px}}.folded .components-notice-list{left:0}@media (min-width:782px){.folded .components-notice-list{left:36px}}@media (max-width:782px){.auto-fold .wp-responsive-open .components-notice-list{left:190px}}@media (max-width:600px){.auto-fold .wp-responsive-open .components-notice-list{margin-left:-18px}}body.is-fullscreen-mode .components-notice-list{left:0!important}.components-notice-list{right:0}.edit-post-layout.is-sidebar-opened .components-notice-list{right:280px}.edit-post-layout__metaboxes:not(:empty){border-top:1px solid #e2e4e7;clear:both;margin-top:10px;padding:10px 0}.edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area{margin:auto 20px}.edit-post-layout__content{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;min-height:100%;overflow-y:auto;padding-bottom:50vh;position:relative}@media (min-width:600px){.edit-post-layout__content{overscroll-behavior-y:none;padding-bottom:0}}.edit-post-layout__content .edit-post-visual-editor{flex-grow:1}@supports ((position:-webkit-sticky) or (position:sticky)){.edit-post-layout__content .edit-post-visual-editor{flex-basis:100%}}.edit-post-layout__content .edit-post-layout__metaboxes{flex-shrink:0}.edit-post-layout .editor-post-publish-panel{bottom:0;left:0;overflow:auto;position:fixed;right:0;top:46px;z-index:100001}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}@media (min-width:782px){.edit-post-layout .editor-post-publish-panel{animation:edit-post-layout__slide-in-animation .1s forwards;border-left:1px solid #e2e4e7;left:auto;top:32px;transform:translateX(100%);width:280px}body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel{top:0}}@keyframes edit-post-layout__slide-in-animation{to{transform:translateX(0)}}.edit-post-layout .editor-post-publish-panel__header-publish-button .components-button.is-large{height:33px;line-height:32px}.edit-post-layout .editor-post-publish-panel__header-publish-button .editor-post-publish-panel__spacer{display:inline-flex;flex:0 1 52px}.edit-post-toggle-publish-panel{bottom:0;height:0;overflow:hidden;position:absolute;right:0;width:280px;z-index:100000}.edit-post-toggle-publish-panel:focus-within{height:auto;padding:20px 0 0}.edit-post-toggle-publish-panel .edit-post-toggle-publish-panel__button{background:#f1f1f1;float:right;font-size:14px;font-weight:600;height:auto;line-height:normal;outline:none;padding:15px 23px 14px;text-decoration:none;width:auto}.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 #poststuff{margin:0 auto;min-width:auto;padding-top:0}.edit-post-meta-boxes-area #poststuff .stuffbox>h3,.edit-post-meta-boxes-area #poststuff h2.hndle,.edit-post-meta-boxes-area #poststuff h3.hndle{border-bottom:1px solid #e2e4e7;box-sizing:border-box;color:inherit;font-weight:600;outline:none;padding:15px;position:relative;width:100%}.edit-post-meta-boxes-area .postbox{border:0;color:inherit;margin-bottom:0}.edit-post-meta-boxes-area .postbox>.inside{border-bottom:1px solid #e2e4e7;color:inherit;margin:0;padding:0 14px 14px}.edit-post-meta-boxes-area .postbox .handlediv{height:44px;width:44px}.edit-post-meta-boxes-area.is-loading:before{background:transparent;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:1}.edit-post-meta-boxes-area .components-spinner{position:absolute;right:20px;top:10px;z-index:5}.edit-post-meta-boxes-area__clear{clear:both}.edit-post-sidebar{background:#fff;border-left:1px solid #e2e4e7;bottom:0;color:#555d66;height:100vh;overflow:hidden;position:fixed;right:0;top:0;width:280px;z-index:100000}@media (min-width:600px){.edit-post-sidebar{-webkit-overflow-scrolling:touch;height:auto;overflow:auto;top:102px;z-index:90}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}@media (min-width:782px){.edit-post-sidebar{top:88px}body.is-fullscreen-mode .edit-post-sidebar{top:56px}}.edit-post-sidebar>.components-panel{-webkit-overflow-scrolling:touch;border-left:none;border-right:none;height:auto;margin-bottom:-1px;margin-top:-1px;max-height:calc(100vh - 96px);overflow:auto}body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:calc(100vh - 50px)}@media (min-width:600px){body.is-fullscreen-mode .edit-post-sidebar>.components-panel{max-height:none}}@media (min-width:600px){.edit-post-sidebar>.components-panel{height:auto;max-height:none;overflow:inherit}}.edit-post-sidebar>.components-panel .components-panel__header{height:50px;left:0;position:fixed;right:0;top:0;z-index:1}@media (min-width:600px){.edit-post-sidebar>.components-panel .components-panel__header{left:auto;position:inherit;right:auto;top:auto}}.edit-post-sidebar p{margin-top:0}.edit-post-sidebar h2,.edit-post-sidebar h3{color:#555d66;font-size:13px;margin-bottom:1.5em}.edit-post-sidebar hr{border-bottom:1px solid #e2e4e7;border-top:none;margin:1.5em 0}.edit-post-sidebar div.components-toolbar{box-shadow:none;margin-bottom:1.5em}.edit-post-sidebar div.components-toolbar:last-child{margin-bottom:0}.edit-post-sidebar p+div.components-toolbar{margin-top:-1em}.edit-post-sidebar .editor-skip-to-selected-block:focus{bottom:10px;left:auto;right:10px;top:auto}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-layout__content{margin-right:280px}}.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:100%}@media (min-width:782px){.edit-post-layout.is-sidebar-opened .edit-post-plugin-sidebar__sidebar-layout,.edit-post-layout.is-sidebar-opened .edit-post-sidebar{width:280px}}.components-panel__header.edit-post-sidebar__header{background:#fff;padding-right:8px}.components-panel__header.edit-post-sidebar__header .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar__header{display:none}}.components-panel__header.edit-post-sidebar__panel-tabs{margin-top:0}.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:none;margin-left:auto}@media (min-width:782px){.components-panel__header.edit-post-sidebar__panel-tabs .components-icon-button{display:flex}}.edit-post-sidebar__panel-tab{height:50px}.components-panel__body.is-opened.edit-post-last-revision__panel{padding:0}.editor-post-last-revision__title{padding:13px 16px}.editor-post-author__select{margin:-5px 0;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.editor-post-author__select{width:auto}}.edit-post-post-link__link-post-name{font-weight:600}.edit-post-post-link__preview-label{margin:0}.edit-post-post-link__link{word-wrap:break-word}.edit-post-post-schedule{position:relative;width:100%}.edit-post-post-schedule__label{display:none}.components-button.edit-post-post-schedule__toggle{text-align:right}.edit-post-post-schedule__dialog .components-popover__content{padding:10px}@media (min-width:782px){.edit-post-post-schedule__dialog .components-popover__content{width:270px}}.edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft{margin-top:15px;text-align:center;width:100%}.edit-post-post-visibility{width:100%}.edit-post-post-visibility__dialog .components-popover__content{padding:10px}@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{margin-left:20px;width:calc(100% - 20px)}.edit-post-post-visibility__dialog-info{color:#7e8993;font-style:italic;line-height:1.4;margin:4px 0 0;padding-left:20px}.components-panel__header.edit-post-sidebar__panel-tabs{border-top:0;justify-content:flex-start;padding-left:0;padding-right:4px;position:-webkit-sticky;position:sticky;top:0;z-index:1}.components-panel__header.edit-post-sidebar__panel-tabs ul{display:flex}.components-panel__header.edit-post-sidebar__panel-tabs li{margin:0}.edit-post-sidebar__panel-tab{background:transparent;border:none;border-radius:0;color:#191e23;cursor:pointer;font-weight:400;height:48px;margin-left:0;outline-offset:-1px;padding:3px 15px}.edit-post-sidebar__panel-tab:after{content:attr(data-label);display:block;font-weight:600;height:0;overflow:hidden;speak:none;visibility:hidden}.edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba;font-weight:600;padding-bottom:0}body.admin-color-sunrise .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #d1864a}body.admin-color-ocean .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a3b9a2}body.admin-color-midnight .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #e14d43}body.admin-color-ectoplasm .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #a7b656}body.admin-color-coffee .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #c2a68c}body.admin-color-blue .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #82b4cb}body.admin-color-light .edit-post-sidebar__panel-tab.is-active{border-bottom:3px solid #0085ba}.edit-post-sidebar__panel-tab:focus{box-shadow:none;color:#191e23;outline:1px solid #6c7781}.edit-post-settings-sidebar__panel-block .components-panel__body{border:none;border-top:1px solid #e2e4e7;margin:0 -16px}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control{margin:0 0 1.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-base-control:last-child{margin-bottom:.5em}.edit-post-settings-sidebar__panel-block .components-panel__body .components-panel__body-toggle{color:#191e23}.edit-post-settings-sidebar__panel-block .components-panel__body:first-child{margin-top:16px}.edit-post-settings-sidebar__panel-block .components-panel__body:last-child{margin-bottom:-16px}.components-panel__header.edit-post-sidebar-header__small{background:#fff;padding-right:4px}.components-panel__header.edit-post-sidebar-header__small .edit-post-sidebar__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header__small{display:none}}.components-panel__header.edit-post-sidebar-header{background:#f3f4f5;padding-right:4px}.components-panel__header.edit-post-sidebar-header .components-icon-button{display:none;margin-left:auto}.components-panel__header.edit-post-sidebar-header .components-icon-button~.components-icon-button{margin-left:0}@media (min-width:782px){.components-panel__header.edit-post-sidebar-header .components-icon-button{display:flex}}.edit-post-text-editor__body{padding-top:40px}@media (min-width:600px){.edit-post-text-editor__body{padding-top:86px}body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}@media (min-width:782px){.edit-post-text-editor__body,body.is-fullscreen-mode .edit-post-text-editor__body{padding-top:40px}}.edit-post-text-editor{margin-left:16px;margin-right:16px;padding-top:44px;width:100%}@media (min-width:600px){.edit-post-text-editor{margin-left:auto;margin-right:auto;max-width:610px}}.edit-post-text-editor .editor-post-title__block textarea{border:1px solid #e2e4e7;margin-bottom:4px;padding:14px}.edit-post-text-editor .editor-post-title__block.is-selected textarea,.edit-post-text-editor .editor-post-title__block textarea:hover{box-shadow:0 0 0 1px #e2e4e7}.edit-post-text-editor .editor-post-permalink{left:0;margin-top:-6px;right:0}@media (min-width:600px){.edit-post-text-editor .editor-post-title,.edit-post-text-editor .editor-post-title__block{padding:0}}.edit-post-text-editor .editor-post-text-editor{line-height:1.8;min-height:200px;padding:14px}.edit-post-text-editor .edit-post-text-editor__toolbar{display:flex;height:36px;left:0;line-height:36px;padding:0 8px 0 16px;position:absolute;right:0;top:8px}.edit-post-text-editor .edit-post-text-editor__toolbar h2{color:#555d66;font-size:13px;margin:0 auto 0 0}.edit-post-text-editor .edit-post-text-editor__toolbar .components-icon-button svg{order:1}.edit-post-visual-editor{padding:50px 0;position:relative}.edit-post-visual-editor .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.edit-post-visual-editor .editor-writing-flow__click-redirect{height:50px;margin:-4px auto -50px;width:100%}.edit-post-visual-editor .editor-block-list__block{margin-left:auto;margin-right:auto}@media (min-width:600px){.edit-post-visual-editor .editor-block-list__block .editor-block-list__block-edit{margin-left:-28px;margin-right:-28px}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{float:left;height:0;text-align:center;width:calc(100% + 30px)}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar,.edit-post-visual-editor .editor-block-list__block[data-align=wide]>.editor-block-list__block-edit>.editor-block-contextual-toolbar .editor-block-toolbar{max-width:610px;position:relative;width:100%}.edit-post-visual-editor .editor-block-list__block[data-align=full]>.editor-block-list__block-edit>.editor-block-contextual-toolbar{margin-left:0;margin-right:0;width:100%}}@media (min-width:600px){.editor-post-title{padding-left:46px;padding-right:46px}}.edit-post-visual-editor .editor-post-title__block{margin-bottom:-20px;margin-left:auto;margin-right:auto}.edit-post-visual-editor .editor-post-title__block>div{margin-left:0;margin-right:0}@media (min-width:600px){.edit-post-visual-editor .editor-post-title__block>div{margin-left:-2px;margin-right:-2px}}.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=left]:first-child,.edit-post-visual-editor .editor-block-list__layout>.editor-block-list__block[data-align=right]:first-child{margin-top:34px}.edit-post-visual-editor .editor-default-block-appender{margin-left:auto;margin-right:auto;position:relative}.edit-post-visual-editor .editor-default-block-appender[data-root-client-id=""] .editor-default-block-appender__content:hover{outline:1px solid transparent}.edit-post-visual-editor .editor-block-list__block[data-type="core/paragraph"] p[data-is-placeholder-visible=true]+p,.edit-post-visual-editor .editor-default-block-appender__content{line-height:1.8;min-height:28px}.edit-post-options-modal__title{font-size:1rem;font-weight:600}.edit-post-options-modal__section{margin:0 0 2rem}.edit-post-options-modal__section-title{font-size:.9rem;font-weight:600}.edit-post-options-modal__option{border-top:1px solid #e2e4e7}.edit-post-options-modal__option:last-child{border-bottom:1px solid #e2e4e7}.edit-post-options-modal__option .components-base-control__field{align-items:center;display:flex;margin:0}.edit-post-options-modal__option .components-checkbox-control__label{flex-grow:1;padding:.6rem 0 .6rem 10px}@keyframes edit-post__loading-fade-animation{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}@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{max-width:100%;width:auto}.block-editor,.components-modal__frame{box-sizing:border-box}.block-editor *,.block-editor :after,.block-editor :before,.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}.block-editor select,.components-modal__frame select{color:#555d66;font-size:13px}@media (min-width:600px){.block-editor__container{bottom:0;left:0;min-height:calc(100vh - 46px);position:absolute;right:0;top:0}body.is-fullscreen-mode .block-editor__container{min-height:100vh}}@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{height:auto;max-width:100%}.block-editor__container iframe{width:100%}.block-editor__container .components-navigate-regions{height:100%}.components-modal__content .input-control,.components-modal__content input[type=checkbox],.components-modal__content input[type=color],.components-modal__content input[type=date],.components-modal__content input[type=datetime-local],.components-modal__content input[type=datetime],.components-modal__content input[type=email],.components-modal__content input[type=month],.components-modal__content input[type=number],.components-modal__content input[type=password],.components-modal__content input[type=radio],.components-modal__content input[type=search],.components-modal__content input[type=tel],.components-modal__content input[type=text],.components-modal__content input[type=time],.components-modal__content input[type=url],.components-modal__content input[type=week],.components-modal__content select,.components-modal__content textarea,.components-popover .input-control,.components-popover input[type=checkbox],.components-popover input[type=color],.components-popover input[type=date],.components-popover input[type=datetime-local],.components-popover input[type=datetime],.components-popover input[type=email],.components-popover input[type=month],.components-popover input[type=number],.components-popover input[type=password],.components-popover input[type=radio],.components-popover input[type=search],.components-popover input[type=tel],.components-popover input[type=text],.components-popover input[type=time],.components-popover input[type=url],.components-popover input[type=week],.components-popover select,.components-popover textarea,.edit-post-sidebar .input-control,.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=color],.edit-post-sidebar input[type=date],.edit-post-sidebar input[type=datetime-local],.edit-post-sidebar input[type=datetime],.edit-post-sidebar input[type=email],.edit-post-sidebar input[type=month],.edit-post-sidebar input[type=number],.edit-post-sidebar input[type=password],.edit-post-sidebar input[type=radio],.edit-post-sidebar input[type=search],.edit-post-sidebar input[type=tel],.edit-post-sidebar input[type=text],.edit-post-sidebar input[type=time],.edit-post-sidebar input[type=url],.edit-post-sidebar input[type=week],.edit-post-sidebar select,.edit-post-sidebar textarea,.editor-block-list__block .input-control,.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=color],.editor-block-list__block input[type=date],.editor-block-list__block input[type=datetime-local],.editor-block-list__block input[type=datetime],.editor-block-list__block input[type=email],.editor-block-list__block input[type=month],.editor-block-list__block input[type=number],.editor-block-list__block input[type=password],.editor-block-list__block input[type=radio],.editor-block-list__block input[type=search],.editor-block-list__block input[type=tel],.editor-block-list__block input[type=text],.editor-block-list__block input[type=time],.editor-block-list__block input[type=url],.editor-block-list__block input[type=week],.editor-block-list__block select,.editor-block-list__block textarea,.editor-post-permalink .input-control,.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=color],.editor-post-permalink input[type=date],.editor-post-permalink input[type=datetime-local],.editor-post-permalink input[type=datetime],.editor-post-permalink input[type=email],.editor-post-permalink input[type=month],.editor-post-permalink input[type=number],.editor-post-permalink input[type=password],.editor-post-permalink input[type=radio],.editor-post-permalink input[type=search],.editor-post-permalink input[type=tel],.editor-post-permalink input[type=text],.editor-post-permalink input[type=time],.editor-post-permalink input[type=url],.editor-post-permalink input[type=week],.editor-post-permalink select,.editor-post-permalink textarea,.editor-post-publish-panel .input-control,.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=color],.editor-post-publish-panel input[type=date],.editor-post-publish-panel input[type=datetime-local],.editor-post-publish-panel input[type=datetime],.editor-post-publish-panel input[type=email],.editor-post-publish-panel input[type=month],.editor-post-publish-panel input[type=number],.editor-post-publish-panel input[type=password],.editor-post-publish-panel input[type=radio],.editor-post-publish-panel input[type=search],.editor-post-publish-panel input[type=tel],.editor-post-publish-panel input[type=text],.editor-post-publish-panel input[type=time],.editor-post-publish-panel input[type=url],.editor-post-publish-panel input[type=week],.editor-post-publish-panel select,.editor-post-publish-panel textarea{border:1px solid #8d96a0;border-radius:4px;box-shadow:0 0 0 transparent;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:6px 8px;transition:box-shadow .1s linear}.components-modal__content .input-control:focus,.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=color]:focus,.components-modal__content input[type=date]:focus,.components-modal__content input[type=datetime-local]:focus,.components-modal__content input[type=datetime]:focus,.components-modal__content input[type=email]:focus,.components-modal__content input[type=month]:focus,.components-modal__content input[type=number]:focus,.components-modal__content input[type=password]:focus,.components-modal__content input[type=radio]:focus,.components-modal__content input[type=search]:focus,.components-modal__content input[type=tel]:focus,.components-modal__content input[type=text]:focus,.components-modal__content input[type=time]:focus,.components-modal__content input[type=url]:focus,.components-modal__content input[type=week]:focus,.components-modal__content select:focus,.components-modal__content textarea:focus,.components-popover .input-control:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=color]:focus,.components-popover input[type=date]:focus,.components-popover input[type=datetime-local]:focus,.components-popover input[type=datetime]:focus,.components-popover input[type=email]:focus,.components-popover input[type=month]:focus,.components-popover input[type=number]:focus,.components-popover input[type=password]:focus,.components-popover input[type=radio]:focus,.components-popover input[type=search]:focus,.components-popover input[type=tel]:focus,.components-popover input[type=text]:focus,.components-popover input[type=time]:focus,.components-popover input[type=url]:focus,.components-popover input[type=week]:focus,.components-popover select:focus,.components-popover textarea:focus,.edit-post-sidebar .input-control:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=color]:focus,.edit-post-sidebar input[type=date]:focus,.edit-post-sidebar input[type=datetime-local]:focus,.edit-post-sidebar input[type=datetime]:focus,.edit-post-sidebar input[type=email]:focus,.edit-post-sidebar input[type=month]:focus,.edit-post-sidebar input[type=number]:focus,.edit-post-sidebar input[type=password]:focus,.edit-post-sidebar input[type=radio]:focus,.edit-post-sidebar input[type=search]:focus,.edit-post-sidebar input[type=tel]:focus,.edit-post-sidebar input[type=text]:focus,.edit-post-sidebar input[type=time]:focus,.edit-post-sidebar input[type=url]:focus,.edit-post-sidebar input[type=week]:focus,.edit-post-sidebar select:focus,.edit-post-sidebar textarea:focus,.editor-block-list__block .input-control:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=color]:focus,.editor-block-list__block input[type=date]:focus,.editor-block-list__block input[type=datetime-local]:focus,.editor-block-list__block input[type=datetime]:focus,.editor-block-list__block input[type=email]:focus,.editor-block-list__block input[type=month]:focus,.editor-block-list__block input[type=number]:focus,.editor-block-list__block input[type=password]:focus,.editor-block-list__block input[type=radio]:focus,.editor-block-list__block input[type=search]:focus,.editor-block-list__block input[type=tel]:focus,.editor-block-list__block input[type=text]:focus,.editor-block-list__block input[type=time]:focus,.editor-block-list__block input[type=url]:focus,.editor-block-list__block input[type=week]:focus,.editor-block-list__block select:focus,.editor-block-list__block textarea:focus,.editor-post-permalink .input-control:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=color]:focus,.editor-post-permalink input[type=date]:focus,.editor-post-permalink input[type=datetime-local]:focus,.editor-post-permalink input[type=datetime]:focus,.editor-post-permalink input[type=email]:focus,.editor-post-permalink input[type=month]:focus,.editor-post-permalink input[type=number]:focus,.editor-post-permalink input[type=password]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-permalink input[type=search]:focus,.editor-post-permalink input[type=tel]:focus,.editor-post-permalink input[type=text]:focus,.editor-post-permalink input[type=time]:focus,.editor-post-permalink input[type=url]:focus,.editor-post-permalink input[type=week]:focus,.editor-post-permalink select:focus,.editor-post-permalink textarea:focus,.editor-post-publish-panel .input-control:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=color]:focus,.editor-post-publish-panel input[type=date]:focus,.editor-post-publish-panel input[type=datetime-local]:focus,.editor-post-publish-panel input[type=datetime]:focus,.editor-post-publish-panel input[type=email]:focus,.editor-post-publish-panel input[type=month]:focus,.editor-post-publish-panel input[type=number]:focus,.editor-post-publish-panel input[type=password]:focus,.editor-post-publish-panel input[type=radio]:focus,.editor-post-publish-panel input[type=search]:focus,.editor-post-publish-panel input[type=tel]:focus,.editor-post-publish-panel input[type=text]:focus,.editor-post-publish-panel input[type=time]:focus,.editor-post-publish-panel input[type=url]:focus,.editor-post-publish-panel input[type=week]:focus,.editor-post-publish-panel select:focus,.editor-post-publish-panel textarea:focus{border-color:#00a0d2;box-shadow:0 0 0 1px #00a0d2;color:#191e23;outline:2px solid transparent;outline-offset:-2px}.components-modal__content select,.components-popover select,.edit-post-sidebar select,.editor-block-list__block select,.editor-post-permalink select,.editor-post-publish-panel select{padding:2px}.components-modal__content select:focus,.components-popover select:focus,.edit-post-sidebar select:focus,.editor-block-list__block select:focus,.editor-post-permalink select:focus,.editor-post-publish-panel select:focus{border-color:#008dbe;outline:2px solid transparent;outline-offset:0}.components-modal__content input[type=checkbox],.components-modal__content input[type=radio],.components-popover input[type=checkbox],.components-popover input[type=radio],.edit-post-sidebar input[type=checkbox],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=checkbox],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=checkbox],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=checkbox],.editor-post-publish-panel input[type=radio]{border:2px solid #6c7781;margin-right:12px;transition:none}.components-modal__content input[type=checkbox]:focus,.components-modal__content input[type=radio]:focus,.components-popover input[type=checkbox]:focus,.components-popover input[type=radio]:focus,.edit-post-sidebar input[type=checkbox]:focus,.edit-post-sidebar input[type=radio]:focus,.editor-block-list__block input[type=checkbox]:focus,.editor-block-list__block input[type=radio]:focus,.editor-post-permalink input[type=checkbox]:focus,.editor-post-permalink input[type=radio]:focus,.editor-post-publish-panel input[type=checkbox]:focus,.editor-post-publish-panel input[type=radio]:focus{border-color:#6c7781;box-shadow:0 0 0 1px #6c7781}.components-modal__content input[type=checkbox]:checked,.components-modal__content input[type=radio]:checked,.components-popover input[type=checkbox]:checked,.components-popover input[type=radio]:checked,.edit-post-sidebar input[type=checkbox]:checked,.edit-post-sidebar input[type=radio]:checked,.editor-block-list__block input[type=checkbox]:checked,.editor-block-list__block input[type=radio]:checked,.editor-post-permalink input[type=checkbox]:checked,.editor-post-permalink input[type=radio]:checked,.editor-post-publish-panel input[type=checkbox]:checked,.editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}body.admin-color-sunrise .components-modal__content input[type=checkbox]:checked,body.admin-color-sunrise .components-modal__content input[type=radio]:checked,body.admin-color-sunrise .components-popover input[type=checkbox]:checked,body.admin-color-sunrise .components-popover input[type=radio]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-sunrise .edit-post-sidebar input[type=radio]:checked,body.admin-color-sunrise .editor-block-list__block input[type=checkbox]:checked,body.admin-color-sunrise .editor-block-list__block input[type=radio]:checked,body.admin-color-sunrise .editor-post-permalink input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-permalink input[type=radio]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-sunrise .editor-post-publish-panel input[type=radio]:checked{background:#c8b03c;border-color:#c8b03c}body.admin-color-ocean .components-modal__content input[type=checkbox]:checked,body.admin-color-ocean .components-modal__content input[type=radio]:checked,body.admin-color-ocean .components-popover input[type=checkbox]:checked,body.admin-color-ocean .components-popover input[type=radio]:checked,body.admin-color-ocean .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ocean .edit-post-sidebar input[type=radio]:checked,body.admin-color-ocean .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ocean .editor-block-list__block input[type=radio]:checked,body.admin-color-ocean .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ocean .editor-post-permalink input[type=radio]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ocean .editor-post-publish-panel input[type=radio]:checked{background:#a3b9a2;border-color:#a3b9a2}body.admin-color-midnight .components-modal__content input[type=checkbox]:checked,body.admin-color-midnight .components-modal__content input[type=radio]:checked,body.admin-color-midnight .components-popover input[type=checkbox]:checked,body.admin-color-midnight .components-popover input[type=radio]:checked,body.admin-color-midnight .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-midnight .edit-post-sidebar input[type=radio]:checked,body.admin-color-midnight .editor-block-list__block input[type=checkbox]:checked,body.admin-color-midnight .editor-block-list__block input[type=radio]:checked,body.admin-color-midnight .editor-post-permalink input[type=checkbox]:checked,body.admin-color-midnight .editor-post-permalink input[type=radio]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-midnight .editor-post-publish-panel input[type=radio]:checked{background:#77a6b9;border-color:#77a6b9}body.admin-color-ectoplasm .components-modal__content input[type=checkbox]:checked,body.admin-color-ectoplasm .components-modal__content input[type=radio]:checked,body.admin-color-ectoplasm .components-popover input[type=checkbox]:checked,body.admin-color-ectoplasm .components-popover input[type=radio]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-ectoplasm .edit-post-sidebar input[type=radio]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-block-list__block input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-permalink input[type=radio]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-ectoplasm .editor-post-publish-panel input[type=radio]:checked{background:#a7b656;border-color:#a7b656}body.admin-color-coffee .components-modal__content input[type=checkbox]:checked,body.admin-color-coffee .components-modal__content input[type=radio]:checked,body.admin-color-coffee .components-popover input[type=checkbox]:checked,body.admin-color-coffee .components-popover input[type=radio]:checked,body.admin-color-coffee .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-coffee .edit-post-sidebar input[type=radio]:checked,body.admin-color-coffee .editor-block-list__block input[type=checkbox]:checked,body.admin-color-coffee .editor-block-list__block input[type=radio]:checked,body.admin-color-coffee .editor-post-permalink input[type=checkbox]:checked,body.admin-color-coffee .editor-post-permalink input[type=radio]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-coffee .editor-post-publish-panel input[type=radio]:checked{background:#c2a68c;border-color:#c2a68c}body.admin-color-blue .components-modal__content input[type=checkbox]:checked,body.admin-color-blue .components-modal__content input[type=radio]:checked,body.admin-color-blue .components-popover input[type=checkbox]:checked,body.admin-color-blue .components-popover input[type=radio]:checked,body.admin-color-blue .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-blue .edit-post-sidebar input[type=radio]:checked,body.admin-color-blue .editor-block-list__block input[type=checkbox]:checked,body.admin-color-blue .editor-block-list__block input[type=radio]:checked,body.admin-color-blue .editor-post-permalink input[type=checkbox]:checked,body.admin-color-blue .editor-post-permalink input[type=radio]:checked,body.admin-color-blue .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-blue .editor-post-publish-panel input[type=radio]:checked{background:#82b4cb;border-color:#82b4cb}body.admin-color-light .components-modal__content input[type=checkbox]:checked,body.admin-color-light .components-modal__content input[type=radio]:checked,body.admin-color-light .components-popover input[type=checkbox]:checked,body.admin-color-light .components-popover input[type=radio]:checked,body.admin-color-light .edit-post-sidebar input[type=checkbox]:checked,body.admin-color-light .edit-post-sidebar input[type=radio]:checked,body.admin-color-light .editor-block-list__block input[type=checkbox]:checked,body.admin-color-light .editor-block-list__block input[type=radio]:checked,body.admin-color-light .editor-post-permalink input[type=checkbox]:checked,body.admin-color-light .editor-post-permalink input[type=radio]:checked,body.admin-color-light .editor-post-publish-panel input[type=checkbox]:checked,body.admin-color-light .editor-post-publish-panel input[type=radio]:checked{background:#11a0d2;border-color:#11a0d2}.components-modal__content input[type=checkbox]:checked:focus,.components-modal__content input[type=radio]:checked:focus,.components-popover input[type=checkbox]:checked:focus,.components-popover input[type=radio]:checked:focus,.edit-post-sidebar input[type=checkbox]:checked:focus,.edit-post-sidebar input[type=radio]:checked:focus,.editor-block-list__block input[type=checkbox]:checked:focus,.editor-block-list__block input[type=radio]:checked:focus,.editor-post-permalink input[type=checkbox]:checked:focus,.editor-post-permalink input[type=radio]:checked:focus,.editor-post-publish-panel input[type=checkbox]:checked:focus,.editor-post-publish-panel input[type=radio]:checked:focus{box-shadow:0 0 0 2px #555d66}.components-modal__content input[type=checkbox],.components-popover input[type=checkbox],.edit-post-sidebar input[type=checkbox],.editor-block-list__block input[type=checkbox],.editor-post-permalink input[type=checkbox],.editor-post-publish-panel input[type=checkbox]{border-radius:2px}.components-modal__content input[type=checkbox]:checked:before,.components-popover input[type=checkbox]:checked:before,.edit-post-sidebar input[type=checkbox]:checked:before,.editor-block-list__block input[type=checkbox]:checked:before,.editor-post-permalink input[type=checkbox]:checked:before,.editor-post-publish-panel input[type=checkbox]:checked:before{color:#fff;margin:-4px 0 0 -5px}.components-modal__content input[type=radio],.components-popover input[type=radio],.edit-post-sidebar input[type=radio],.editor-block-list__block input[type=radio],.editor-post-permalink input[type=radio],.editor-post-publish-panel input[type=radio]{border-radius:50%}.components-modal__content input[type=radio]:checked:before,.components-popover input[type=radio]:checked:before,.edit-post-sidebar input[type=radio]:checked:before,.editor-block-list__block input[type=radio]:checked:before,.editor-post-permalink input[type=radio]:checked:before,.editor-post-publish-panel input[type=radio]:checked:before{background-color:#fff;margin:3px 0 0 3px}.editor-block-list__block input::-webkit-input-placeholder,.editor-block-list__block textarea::-webkit-input-placeholder,.editor-post-title input::-webkit-input-placeholder,.editor-post-title textarea::-webkit-input-placeholder{color:rgba(14,28,46,.62)}.editor-block-list__block input::-moz-placeholder,.editor-block-list__block textarea::-moz-placeholder,.editor-post-title input::-moz-placeholder,.editor-post-title textarea::-moz-placeholder{color:rgba(14,28,46,.62);opacity:1}.editor-block-list__block input:-ms-input-placeholder,.editor-block-list__block textarea:-ms-input-placeholder,.editor-post-title input:-ms-input-placeholder,.editor-post-title textarea:-ms-input-placeholder{color:rgba(14,28,46,.62)}.is-dark-theme .editor-block-list__block input::-webkit-input-placeholder,.is-dark-theme .editor-block-list__block textarea::-webkit-input-placeholder,.is-dark-theme .editor-post-title input::-webkit-input-placeholder,.is-dark-theme .editor-post-title textarea::-webkit-input-placeholder{color:hsla(0,0%,100%,.65)}.is-dark-theme .editor-block-list__block input::-moz-placeholder,.is-dark-theme .editor-block-list__block textarea::-moz-placeholder,.is-dark-theme .editor-post-title input::-moz-placeholder,.is-dark-theme .editor-post-title textarea::-moz-placeholder{color:hsla(0,0%,100%,.65);opacity:1}.is-dark-theme .editor-block-list__block input:-ms-input-placeholder,.is-dark-theme .editor-block-list__block textarea:-ms-input-placeholder,.is-dark-theme .editor-post-title input:-ms-input-placeholder,.is-dark-theme .editor-post-title textarea:-ms-input-placeholder{color:hsla(0,0%,100%,.65)}.wp-block{max-width:610px}.wp-block[data-align=wide]{max-width:1100px}.wp-block[data-align=full]{max-width:none}
\ No newline at end of file \ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
== Changelog == == Changelog ==
= 4.6.1 =
* Parser: Make attribute parsing possessive (Fix High CPU usage).
= 4.6.0 =
* Fix issue with drag-and-drop in columns.
* Fix TinyMCE list plugin registration.
* Fix IE11 flexbox alignment when min-width is set.
* Fix IE11 focus loss after TinyMCE init. Add IE check.
* Fix getSelectedBlockClientId selector.
* Fix issue where unregistering a block type would cause blocks that convert to it to break.
* Fix Classic block not showing galleries on a grid.
* Fix visual issues with Button block text wrap.
* Fix modals in Edge.
* Fix Categories block filter effect on the front-end.
* Fix an issue where the block toolbar would cause an image to jump downwards when the wide or full - alignments were activated.
* Apply IE11 input fix only when mounting TinyMCE.
* Improve block preview styling.
* Make the Image Link URL field readonly.
* Disable HTML edit from Media & Text block.
* Avoid loading theme editor styles if not existing (RTL languages).
* Improve scoping of nested paragraph right-padding CSS rule.
* Add e2e tests for the format API.
* Merge similar text strings for i18n.
* Move editor specific styles from style.scss to editor.scss in Cover block.
* Simplify sidebar tabs aria-labels.
* Remove onSplit from RichText docs.
* Remove textdomain from the block library.
* Avoid rendering AdminNotices compatibility component.
* Avoid changing default wpautop priority.
* Change @package names to WordPress.
* Update published packages changelogs.
= 4.5.1 = = 4.5.1 =
* Raw Handling: fix consecutive lists with one item * Raw Handling: fix consecutive lists with one item
......
...@@ -3,15 +3,15 @@ ...@@ -3,15 +3,15 @@
* Plugin Name: Gutenberg * Plugin Name: Gutenberg
* Plugin URI: https://github.com/WordPress/gutenberg * Plugin URI: https://github.com/WordPress/gutenberg
* Description: Printing since 1440. This is the development plugin for the new block editor in core. * Description: Printing since 1440. This is the development plugin for the new block editor in core.
* Version: 4.5.1 * Version: 4.6.1
* Author: Gutenberg Team * Author: Gutenberg Team
* *
* @package gutenberg * @package gutenberg
*/ */
### BEGIN AUTO-GENERATED DEFINES ### BEGIN AUTO-GENERATED DEFINES
define( 'GUTENBERG_VERSION', '4.5.1' ); define( 'GUTENBERG_VERSION', '4.6.1' );
define( 'GUTENBERG_GIT_COMMIT', '66d901e641423d7259894d3d2664f9f8872e3d85' ); define( 'GUTENBERG_GIT_COMMIT', '7e27b6438841d57ef71b8897ad2a205ec78166e1' );
### END AUTO-GENERATED DEFINES ### END AUTO-GENERATED DEFINES
gutenberg_pre_init(); gutenberg_pre_init();
......
...@@ -187,6 +187,7 @@ $generated_i18n_strings = array( ...@@ -187,6 +187,7 @@ $generated_i18n_strings = array(
__( 'Columns', 'gutenberg' ), __( 'Columns', 'gutenberg' ),
// Reference: packages/block-library/build-module/cover/index.js:283 // Reference: packages/block-library/build-module/cover/index.js:283
// Reference: packages/block-library/build-module/media-text/media-container.js:46
__( 'Edit media', 'gutenberg' ), __( 'Edit media', 'gutenberg' ),
// Reference: packages/block-library/build-module/cover/index.js:289 // Reference: packages/block-library/build-module/cover/index.js:289
...@@ -684,9 +685,6 @@ $generated_i18n_strings = array( ...@@ -684,9 +685,6 @@ $generated_i18n_strings = array(
// Reference: packages/block-library/build-module/media-text/index.js:69 // Reference: packages/block-library/build-module/media-text/index.js:69
__( 'Set media and words side-by-side for a richer layout.', 'gutenberg' ), __( 'Set media and words side-by-side for a richer layout.', 'gutenberg' ),
// Reference: packages/block-library/build-module/media-text/media-container.js:46
__( 'Edit Media', 'gutenberg' ),
// Reference: packages/block-library/build-module/media-text/media-container.js:89 // Reference: packages/block-library/build-module/media-text/media-container.js:89
__( 'Media area', 'gutenberg' ), __( 'Media area', 'gutenberg' ),
...@@ -1402,14 +1400,14 @@ $generated_i18n_strings = array( ...@@ -1402,14 +1400,14 @@ $generated_i18n_strings = array(
// Reference: packages/edit-post/build-module/plugins/keyboard-shortcuts-help-menu-item/index.js:19 // Reference: packages/edit-post/build-module/plugins/keyboard-shortcuts-help-menu-item/index.js:19
__( 'Keyboard Shortcuts', 'gutenberg' ), __( 'Keyboard Shortcuts', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/layout/index.js:60 // Reference: packages/edit-post/build-module/components/layout/index.js:59
/* translators: accessibility text for the publish landmark region. */ /* translators: accessibility text for the publish landmark region. */
__( 'Editor publish', 'gutenberg' ), __( 'Editor publish', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/layout/index.js:70 // Reference: packages/edit-post/build-module/components/layout/index.js:69
__( 'Editor content', 'gutenberg' ), __( 'Editor content', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/layout/index.js:94 // Reference: packages/edit-post/build-module/components/layout/index.js:93
__( 'Open publish panel', 'gutenberg' ), __( 'Open publish panel', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/options-modal/index.js:40 // Reference: packages/edit-post/build-module/components/options-modal/index.js:40
...@@ -1475,24 +1473,17 @@ $generated_i18n_strings = array( ...@@ -1475,24 +1473,17 @@ $generated_i18n_strings = array(
// Reference: packages/edit-post/build-module/components/sidebar/post-visibility/index.js:15 // Reference: packages/edit-post/build-module/components/sidebar/post-visibility/index.js:15
__( 'Visibility', 'gutenberg' ), __( 'Visibility', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:20
__( 'Block', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:23 // Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:23
/* translators: ARIA label for the Document Settings sidebar tab, selected. */ /* translators: ARIA label for the Document sidebar tab, selected. */
__( 'Document settings (selected)', 'gutenberg' ), __( 'Document (selected)', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:24
/* translators: ARIA label for the Document Settings sidebar tab, not selected. */
__( 'Document settings', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:30 // Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:30
/* translators: ARIA label for the Block Settings sidebar tab, selected. */ /* translators: ARIA label for the Block sidebar tab, selected. */
__( 'Block settings (selected)', 'gutenberg' ), __( 'Block (selected)', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:31 // Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:31
/* translators: ARIA label for the Block Settings sidebar tab, not selected. */ /* translators: ARIA label for the Block sidebar tab, not selected. */
__( 'Block settings', 'gutenberg' ), __( 'Block', 'gutenberg' ),
// Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:38 // Reference: packages/edit-post/build-module/components/sidebar/settings-header/index.js:38
__( 'Close settings', 'gutenberg' ), __( 'Close settings', 'gutenberg' ),
......
...@@ -242,6 +242,7 @@ msgid "Columns" ...@@ -242,6 +242,7 @@ msgid "Columns"
msgstr "" msgstr ""
#: packages/block-library/build-module/cover/index.js:283 #: packages/block-library/build-module/cover/index.js:283
#: packages/block-library/build-module/media-text/media-container.js:46
msgid "Edit media" msgid "Edit media"
msgstr "" msgstr ""
...@@ -904,10 +905,6 @@ msgstr "" ...@@ -904,10 +905,6 @@ msgstr ""
msgid "Set media and words side-by-side for a richer layout." msgid "Set media and words side-by-side for a richer layout."
msgstr "" msgstr ""
#: packages/block-library/build-module/media-text/media-container.js:46
msgid "Edit Media"
msgstr ""
#: packages/block-library/build-module/media-text/media-container.js:89 #: packages/block-library/build-module/media-text/media-container.js:89
msgid "Media area" msgid "Media area"
msgstr "" msgstr ""
...@@ -1873,15 +1870,15 @@ msgid "Keyboard Shortcuts" ...@@ -1873,15 +1870,15 @@ msgid "Keyboard Shortcuts"
msgstr "" msgstr ""
# accessibility text for the publish landmark region. # accessibility text for the publish landmark region.
#: packages/edit-post/build-module/components/layout/index.js:60 #: packages/edit-post/build-module/components/layout/index.js:59
msgid "Editor publish" msgid "Editor publish"
msgstr "" msgstr ""
#: packages/edit-post/build-module/components/layout/index.js:70 #: packages/edit-post/build-module/components/layout/index.js:69
msgid "Editor content" msgid "Editor content"
msgstr "" msgstr ""
#: packages/edit-post/build-module/components/layout/index.js:94 #: packages/edit-post/build-module/components/layout/index.js:93
msgid "Open publish panel" msgid "Open publish panel"
msgstr "" msgstr ""
...@@ -1967,28 +1964,19 @@ msgstr "" ...@@ -1967,28 +1964,19 @@ msgstr ""
msgid "Visibility" msgid "Visibility"
msgstr "" msgstr ""
#: packages/edit-post/build-module/components/sidebar/settings-header/index.js:20 # ARIA label for the Document sidebar tab, selected.
msgid "Block"
msgstr ""
# ARIA label for the Document Settings sidebar tab, selected.
#: packages/edit-post/build-module/components/sidebar/settings-header/index.js:23 #: packages/edit-post/build-module/components/sidebar/settings-header/index.js:23
msgid "Document settings (selected)" msgid "Document (selected)"
msgstr "" msgstr ""
# ARIA label for the Document Settings sidebar tab, not selected. # ARIA label for the Block sidebar tab, selected.
#: packages/edit-post/build-module/components/sidebar/settings-header/index.js:24
msgid "Document settings"
msgstr ""
# ARIA label for the Block Settings sidebar tab, selected.
#: packages/edit-post/build-module/components/sidebar/settings-header/index.js:30 #: packages/edit-post/build-module/components/sidebar/settings-header/index.js:30
msgid "Block settings (selected)" msgid "Block (selected)"
msgstr "" msgstr ""
# ARIA label for the Block Settings sidebar tab, not selected. # ARIA label for the Block sidebar tab, not selected.
#: packages/edit-post/build-module/components/sidebar/settings-header/index.js:31 #: packages/edit-post/build-module/components/sidebar/settings-header/index.js:31
msgid "Block settings" msgid "Block"
msgstr "" msgstr ""
#: packages/edit-post/build-module/components/sidebar/settings-header/index.js:38 #: packages/edit-post/build-module/components/sidebar/settings-header/index.js:38
......
...@@ -174,6 +174,13 @@ if ( ! function_exists( 'do_blocks' ) ) { ...@@ -174,6 +174,13 @@ if ( ! function_exists( 'do_blocks' ) ) {
* @return string Updated post content. * @return string Updated post content.
*/ */
function do_blocks( $content ) { function do_blocks( $content ) {
// If there are blocks in this content, we shouldn't run wpautop() on it later.
$priority = has_filter( 'the_content', 'wpautop' );
if ( false !== $priority && doing_filter( 'the_content' ) && has_blocks( $content ) ) {
remove_filter( 'the_content', 'wpautop', $priority );
add_filter( 'the_content', '_restore_wpautop_hook', $priority + 1 );
}
$blocks = gutenberg_parse_blocks( $content ); $blocks = gutenberg_parse_blocks( $content );
$output = ''; $output = '';
...@@ -187,6 +194,28 @@ if ( ! function_exists( 'do_blocks' ) ) { ...@@ -187,6 +194,28 @@ if ( ! function_exists( 'do_blocks' ) ) {
add_filter( 'the_content', 'do_blocks', 7 ); // BEFORE do_shortcode() and oembed. add_filter( 'the_content', 'do_blocks', 7 ); // BEFORE do_shortcode() and oembed.
} }
if ( ! function_exists( '_restore_wpautop_hook' ) ) {
/**
* If do_blocks() needs to remove wpautop() from the `the_content` filter,
* this re-adds it afterwards, for subsequent `the_content` usage.
*
* @access private
*
* @since 4.6.0
*
* @param string $content The post content running through this filter.
* @return string The unmodified content.
*/
function _restore_wpautop_hook( $content ) {
$current_priority = has_filter( 'the_content', '_restore_wpautop_hook' );
add_filter( 'the_content', 'wpautop', $current_priority - 1 );
remove_filter( 'the_content', '_restore_wpautop_hook', $current_priority );
return $content;
}
}
if ( ! function_exists( 'strip_dynamic_blocks' ) ) { if ( ! function_exists( 'strip_dynamic_blocks' ) ) {
/** /**
* Remove all dynamic blocks from the given content. * Remove all dynamic blocks from the given content.
......
...@@ -87,6 +87,8 @@ if ( ! function_exists( 'register_tinymce_scripts' ) ) { ...@@ -87,6 +87,8 @@ if ( ! function_exists( 'register_tinymce_scripts' ) ) {
gutenberg_override_script( 'wp-tinymce-root', includes_url( 'js/tinymce/' ) . "tinymce{$mce_suffix}.js", array(), $tinymce_version ); gutenberg_override_script( 'wp-tinymce-root', includes_url( 'js/tinymce/' ) . "tinymce{$mce_suffix}.js", array(), $tinymce_version );
gutenberg_override_script( 'wp-tinymce', includes_url( 'js/tinymce/' ) . "plugins/compat3x/plugin{$suffix}.js", array( 'wp-tinymce-root' ), $tinymce_version ); gutenberg_override_script( 'wp-tinymce', includes_url( 'js/tinymce/' ) . "plugins/compat3x/plugin{$suffix}.js", array( 'wp-tinymce-root' ), $tinymce_version );
} }
gutenberg_override_script( 'wp-tinymce-lists', includes_url( 'js/tinymce/' ) . "plugins/lists/plugin{$suffix}.js", array( 'wp-tinymce' ), $tinymce_version );
} }
} }
...@@ -620,12 +622,6 @@ function gutenberg_register_vendor_scripts() { ...@@ -620,12 +622,6 @@ function gutenberg_register_vendor_scripts() {
'https://unpkg.com/moment@2.22.1/' . $moment_script, 'https://unpkg.com/moment@2.22.1/' . $moment_script,
array() array()
); );
$tinymce_version = '4.7.11';
gutenberg_register_vendor_script(
'tinymce-latest-lists',
'https://unpkg.com/tinymce@' . $tinymce_version . '/plugins/lists/plugin' . $suffix . '.js',
array( 'wp-tinymce' )
);
gutenberg_register_vendor_script( gutenberg_register_vendor_script(
'lodash', 'lodash',
'https://unpkg.com/lodash@4.17.5/lodash' . $suffix . '.js' 'https://unpkg.com/lodash@4.17.5/lodash' . $suffix . '.js'
...@@ -1215,10 +1211,7 @@ function gutenberg_editor_scripts_and_styles( $hook ) { ...@@ -1215,10 +1211,7 @@ function gutenberg_editor_scripts_and_styles( $hook ) {
), ),
); );
/* /* Translators: Use this to specify the CSS font family for the default font */
* Set a locale specific default font.
* Translators: Use this to specify the CSS font family for the default font
*/
$locale_font_family = esc_html_x( 'Noto Serif', 'CSS Font Family for Editor Font', 'gutenberg' ); $locale_font_family = esc_html_x( 'Noto Serif', 'CSS Font Family for Editor Font', 'gutenberg' );
$styles[] = array( $styles[] = array(
'css' => "body { font-family: '$locale_font_family' }", 'css' => "body { font-family: '$locale_font_family' }",
...@@ -1232,13 +1225,15 @@ function gutenberg_editor_scripts_and_styles( $hook ) { ...@@ -1232,13 +1225,15 @@ function gutenberg_editor_scripts_and_styles( $hook ) {
); );
} else { } else {
$file = get_theme_file_path( $style ); $file = get_theme_file_path( $style );
if ( file_exists( $file ) ) {
$styles[] = array( $styles[] = array(
'css' => file_get_contents( get_theme_file_path( $style ) ), 'css' => file_get_contents( $file ),
'baseURL' => get_theme_file_uri( $style ), 'baseURL' => get_theme_file_uri( $style ),
); );
} }
} }
} }
}
// Lock settings. // Lock settings.
$user_id = wp_check_post_lock( $post->ID ); $user_id = wp_check_post_lock( $post->ID );
......
...@@ -99,23 +99,6 @@ function gutenberg_add_rest_nonce_to_heartbeat_response_headers( $response ) { ...@@ -99,23 +99,6 @@ function gutenberg_add_rest_nonce_to_heartbeat_response_headers( $response ) {
} }
add_filter( 'wp_refresh_nonces', 'gutenberg_add_rest_nonce_to_heartbeat_response_headers' ); add_filter( 'wp_refresh_nonces', 'gutenberg_add_rest_nonce_to_heartbeat_response_headers' );
/**
* As a substitute for the default content `wpautop` filter, applies autop
* behavior only for posts where content does not contain blocks.
*
* @param string $content Post content.
* @return string Paragraph-converted text if non-block content.
*/
function gutenberg_wpautop( $content ) {
if ( has_blocks( $content ) ) {
return $content;
}
return wpautop( $content );
}
remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'gutenberg_wpautop', 6 );
/** /**
* Check if we need to load the block warning in the Classic Editor. * Check if we need to load the block warning in the Classic Editor.
* *
......
...@@ -134,7 +134,7 @@ return array( ...@@ -134,7 +134,7 @@ return array(
'wp-editor' => array( 'wp-editor' => array(
'jquery', 'jquery',
'lodash', 'lodash',
'tinymce-latest-lists', 'wp-tinymce-lists',
'wp-a11y', 'wp-a11y',
'wp-api-fetch', 'wp-api-fetch',
'wp-blob', 'wp-blob',
......
...@@ -206,6 +206,11 @@ function gutenberg_add_permalink_template_to_posts( $response, $post, $request ) ...@@ -206,6 +206,11 @@ function gutenberg_add_permalink_template_to_posts( $response, $post, $request )
return $response; return $response;
} }
$post_type_obj = get_post_type_object( $post->post_type );
if ( ! is_post_type_viewable( $post_type_obj ) || ! $post_type_obj->public ) {
return $response;
}
if ( ! function_exists( 'get_sample_permalink' ) ) { if ( ! function_exists( 'get_sample_permalink' ) ) {
require_once ABSPATH . '/wp-admin/includes/post.php'; require_once ABSPATH . '/wp-admin/includes/post.php';
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Server-side rendering of the `core/archives` block. * Server-side rendering of the `core/archives` block.
* *
* @package gutenberg * @package WordPress
*/ */
/** /**
...@@ -32,7 +32,7 @@ function render_block_core_archives( $attributes ) { ...@@ -32,7 +32,7 @@ function render_block_core_archives( $attributes ) {
$class .= ' wp-block-archives-dropdown'; $class .= ' wp-block-archives-dropdown';
$dropdown_id = esc_attr( uniqid( 'wp-block-archives-' ) ); $dropdown_id = esc_attr( uniqid( 'wp-block-archives-' ) );
$title = __( 'Archives', 'default' ); $title = __( 'Archives' );
/** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */ /** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */
$dropdown_args = apply_filters( $dropdown_args = apply_filters(
...@@ -50,19 +50,19 @@ function render_block_core_archives( $attributes ) { ...@@ -50,19 +50,19 @@ function render_block_core_archives( $attributes ) {
switch ( $dropdown_args['type'] ) { switch ( $dropdown_args['type'] ) {
case 'yearly': case 'yearly':
$label = __( 'Select Year', 'default' ); $label = __( 'Select Year' );
break; break;
case 'monthly': case 'monthly':
$label = __( 'Select Month', 'default' ); $label = __( 'Select Month' );
break; break;
case 'daily': case 'daily':
$label = __( 'Select Day', 'default' ); $label = __( 'Select Day' );
break; break;
case 'weekly': case 'weekly':
$label = __( 'Select Week', 'default' ); $label = __( 'Select Week' );
break; break;
default: default:
$label = __( 'Select Post', 'default' ); $label = __( 'Select Post' );
break; break;
} }
...@@ -101,7 +101,7 @@ function render_block_core_archives( $attributes ) { ...@@ -101,7 +101,7 @@ function render_block_core_archives( $attributes ) {
$block_content = sprintf( $block_content = sprintf(
'<div class="%1$s">%2$s</div>', '<div class="%1$s">%2$s</div>',
$classnames, $classnames,
__( 'No archives to show.', 'default' ) __( 'No archives to show.' )
); );
} else { } else {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Server-side rendering of the `core/block` block. * Server-side rendering of the `core/block` block.
* *
* @package gutenberg * @package WordPress
*/ */
/** /**
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Server-side rendering of the `core/categories` block. * Server-side rendering of the `core/categories` block.
* *
* @package gutenberg * @package WordPress
*/ */
/** /**
...@@ -27,7 +27,7 @@ function render_block_core_categories( $attributes ) { ...@@ -27,7 +27,7 @@ function render_block_core_categories( $attributes ) {
if ( ! empty( $attributes['displayAsDropdown'] ) ) { if ( ! empty( $attributes['displayAsDropdown'] ) ) {
$id = 'wp-block-categories-' . $block_id; $id = 'wp-block-categories-' . $block_id;
$args['id'] = $id; $args['id'] = $id;
$args['show_option_none'] = __( 'Select Category', 'default' ); $args['show_option_none'] = __( 'Select Category' );
$wrapper_markup = '<div class="%1$s">%2$s</div>'; $wrapper_markup = '<div class="%1$s">%2$s</div>';
$items_markup = wp_dropdown_categories( $args ); $items_markup = wp_dropdown_categories( $args );
$type = 'dropdown'; $type = 'dropdown';
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Server-side rendering of the `core/latest-comments` block. * Server-side rendering of the `core/latest-comments` block.
* *
* @package gutenberg * @package WordPress
*/ */
if ( ! function_exists( 'gutenberg_draft_or_post_title' ) ) { if ( ! function_exists( 'gutenberg_draft_or_post_title' ) ) {
...@@ -29,7 +29,7 @@ if ( ! function_exists( 'gutenberg_draft_or_post_title' ) ) { ...@@ -29,7 +29,7 @@ if ( ! function_exists( 'gutenberg_draft_or_post_title' ) ) {
function gutenberg_draft_or_post_title( $post = 0 ) { function gutenberg_draft_or_post_title( $post = 0 ) {
$title = get_the_title( $post ); $title = get_the_title( $post );
if ( empty( $title ) ) { if ( empty( $title ) ) {
$title = __( '(no title)', 'default' ); $title = __( '(no title)' );
} }
return esc_html( $title ); return esc_html( $title );
} }
...@@ -98,7 +98,7 @@ function gutenberg_render_block_core_latest_comments( $attributes = array() ) { ...@@ -98,7 +98,7 @@ function gutenberg_render_block_core_latest_comments( $attributes = array() ) {
$list_items_markup .= sprintf( $list_items_markup .= sprintf(
/* translators: 1: author name (inside <a> or <span> tag, based on if they have a URL), 2: post title related to this comment */ /* translators: 1: author name (inside <a> or <span> tag, based on if they have a URL), 2: post title related to this comment */
__( '%1$s on %2$s', 'default' ), __( '%1$s on %2$s' ),
$author_markup, $author_markup,
$post_title $post_title
); );
...@@ -143,7 +143,7 @@ function gutenberg_render_block_core_latest_comments( $attributes = array() ) { ...@@ -143,7 +143,7 @@ function gutenberg_render_block_core_latest_comments( $attributes = array() ) {
) : sprintf( ) : sprintf(
'<div class="%1$s">%2$s</div>', '<div class="%1$s">%2$s</div>',
$classnames, $classnames,
__( 'No comments to show.', 'default' ) __( 'No comments to show.' )
); );
return $block_content; return $block_content;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Server-side rendering of the `core/latest-posts` block. * Server-side rendering of the `core/latest-posts` block.
* *
* @package gutenberg * @package WordPress
*/ */
/** /**
...@@ -21,7 +21,7 @@ function render_block_core_latest_posts( $attributes ) { ...@@ -21,7 +21,7 @@ function render_block_core_latest_posts( $attributes ) {
); );
if ( isset( $attributes['categories'] ) ) { if ( isset( $attributes['categories'] ) ) {
$args['categories'] = $attributes['categories']; $args['category'] = $attributes['categories'];
} }
$recent_posts = wp_get_recent_posts( $args ); $recent_posts = wp_get_recent_posts( $args );
...@@ -33,7 +33,7 @@ function render_block_core_latest_posts( $attributes ) { ...@@ -33,7 +33,7 @@ function render_block_core_latest_posts( $attributes ) {
$title = get_the_title( $post_id ); $title = get_the_title( $post_id );
if ( ! $title ) { if ( ! $title ) {
$title = __( '(Untitled)', 'default' ); $title = __( '(Untitled)' );
} }
$list_items_markup .= sprintf( $list_items_markup .= sprintf(
'<li><a href="%1$s">%2$s</a>', '<li><a href="%1$s">%2$s</a>',
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Server-side rendering of the `core/shortcode` block. * Server-side rendering of the `core/shortcode` block.
* *
* @package gutenberg * @package WordPress
*/ */
/** /**
......
...@@ -359,6 +359,7 @@ class WP_Block_Parser { ...@@ -359,6 +359,7 @@ class WP_Block_Parser {
* *
* @internal * @internal
* @since 3.8.0 * @since 3.8.0
* @since 4.6.1 fixed a bug in attribute parsing which caused catastrophic backtracking on invalid block comments
* @return array * @return array
*/ */
function next_token() { function next_token() {
...@@ -373,13 +374,18 @@ class WP_Block_Parser { ...@@ -373,13 +374,18 @@ class WP_Block_Parser {
* match back in PHP to see which one it was. * match back in PHP to see which one it was.
*/ */
$has_match = preg_match( $has_match = preg_match(
'/<!--\s+(?<closer>\/)?wp:(?<namespace>[a-z][a-z0-9_-]*\/)?(?<name>[a-z][a-z0-9_-]*)\s+(?<attrs>{(?:[^}]+|}+(?=})|(?!}\s+-->).)*?}\s+)?(?<void>\/)?-->/s', '/<!--\s+(?<closer>\/)?wp:(?<namespace>[a-z][a-z0-9_-]*\/)?(?<name>[a-z][a-z0-9_-]*)\s+(?<attrs>{(?:(?:[^}]+|}+(?=})|(?!}\s+\/?-->).)*+)?}\s+)?(?<void>\/)?-->/s',
$this->document, $this->document,
$matches, $matches,
PREG_OFFSET_CAPTURE, PREG_OFFSET_CAPTURE,
$this->offset $this->offset
); );
// if we get here we probably have catastrophic backtracking or out-of-memory in the PCRE
if ( false === $has_match ) {
return array( 'no-more-tokens', null, null, null, null );
}
// we have no more tokens // we have no more tokens
if ( 0 === $has_match ) { if ( 0 === $has_match ) {
return array( 'no-more-tokens', null, null, null, null ); return array( 'no-more-tokens', null, null, null, null );
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Contributors: matveb, joen, karmatosed Contributors: matveb, joen, karmatosed
Requires at least: 4.9.8 Requires at least: 4.9.8
Tested up to: 4.9 Tested up to: 4.9
Stable tag: 4.5.0 Stable tag: 4.6.0
License: GPLv2 or later License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
...@@ -81,12 +81,4 @@ See also <a href="https://github.com/WordPress/gutenberg/blob/master/CONTRIBUTIN ...@@ -81,12 +81,4 @@ See also <a href="https://github.com/WordPress/gutenberg/blob/master/CONTRIBUTIN
= Latest = = Latest =
* Raw Handling: fix consecutive lists with one item * Parser: Make attribute parsing possessive (Fix High CPU usage).
* Avoid showing draft revert message on autosaves
* Honor the Disable Visual Editor setting in the Gutenberg editor page
* Docs: Fix dead links in CONTRIBUTING.md
* Fix undefined index warnings in Latest Comments & Latest Posts
* Add `react-native` module property to html-entities package.json
* RichText: List: Sync DOM after editor command
* Fix RichText infinte rerendering
* Fix keycodes package missing i18n dependencies
\ No newline at end of file
(function () {
var lists = (function () {
'use strict';
var global = tinymce.util.Tools.resolve('tinymce.PluginManager');
var global$1 = tinymce.util.Tools.resolve('tinymce.dom.RangeUtils');
var global$2 = tinymce.util.Tools.resolve('tinymce.dom.TreeWalker');
var global$3 = tinymce.util.Tools.resolve('tinymce.util.VK');
var global$4 = tinymce.util.Tools.resolve('tinymce.dom.BookmarkManager');
var global$5 = tinymce.util.Tools.resolve('tinymce.util.Tools');
var global$6 = tinymce.util.Tools.resolve('tinymce.dom.DOMUtils');
var isTextNode = function (node) {
return node && node.nodeType === 3;
};
var isListNode = function (node) {
return node && /^(OL|UL|DL)$/.test(node.nodeName);
};
var isListItemNode = function (node) {
return node && /^(LI|DT|DD)$/.test(node.nodeName);
};
var isTableCellNode = function (node) {
return node && /^(TH|TD)$/.test(node.nodeName);
};
var isBr = function (node) {
return node && node.nodeName === 'BR';
};
var isFirstChild = function (node) {
return node.parentNode.firstChild === node;
};
var isLastChild = function (node) {
return node.parentNode.lastChild === node;
};
var isTextBlock = function (editor, node) {
return node && !!editor.schema.getTextBlockElements()[node.nodeName];
};
var isBlock = function (node, blockElements) {
return node && node.nodeName in blockElements;
};
var isBogusBr = function (dom, node) {
if (!isBr(node)) {
return false;
}
if (dom.isBlock(node.nextSibling) && !isBr(node.previousSibling)) {
return true;
}
return false;
};
var isEmpty = function (dom, elm, keepBookmarks) {
var empty = dom.isEmpty(elm);
if (keepBookmarks && dom.select('span[data-mce-type=bookmark]', elm).length > 0) {
return false;
}
return empty;
};
var isChildOfBody = function (dom, elm) {
return dom.isChildOf(elm, dom.getRoot());
};
var $_fmlqy7fsjfuw8plr = {
isTextNode: isTextNode,
isListNode: isListNode,
isListItemNode: isListItemNode,
isTableCellNode: isTableCellNode,
isBr: isBr,
isFirstChild: isFirstChild,
isLastChild: isLastChild,
isTextBlock: isTextBlock,
isBlock: isBlock,
isBogusBr: isBogusBr,
isEmpty: isEmpty,
isChildOfBody: isChildOfBody
};
var getNormalizedEndPoint = function (container, offset) {
var node = global$1.getNode(container, offset);
if ($_fmlqy7fsjfuw8plr.isListItemNode(container) && $_fmlqy7fsjfuw8plr.isTextNode(node)) {
var textNodeOffset = offset >= container.childNodes.length ? node.data.length : 0;
return {
container: node,
offset: textNodeOffset
};
}
return {
container: container,
offset: offset
};
};
var normalizeRange = function (rng) {
var outRng = rng.cloneRange();
var rangeStart = getNormalizedEndPoint(rng.startContainer, rng.startOffset);
outRng.setStart(rangeStart.container, rangeStart.offset);
var rangeEnd = getNormalizedEndPoint(rng.endContainer, rng.endOffset);
outRng.setEnd(rangeEnd.container, rangeEnd.offset);
return outRng;
};
var $_14fh94frjfuw8plp = {
getNormalizedEndPoint: getNormalizedEndPoint,
normalizeRange: normalizeRange
};
var DOM = global$6.DOM;
var createBookmark = function (rng) {
var bookmark = {};
var setupEndPoint = function (start) {
var offsetNode, container, offset;
container = rng[start ? 'startContainer' : 'endContainer'];
offset = rng[start ? 'startOffset' : 'endOffset'];
if (container.nodeType === 1) {
offsetNode = DOM.create('span', { 'data-mce-type': 'bookmark' });
if (container.hasChildNodes()) {
offset = Math.min(offset, container.childNodes.length - 1);
if (start) {
container.insertBefore(offsetNode, container.childNodes[offset]);
} else {
DOM.insertAfter(offsetNode, container.childNodes[offset]);
}
} else {
container.appendChild(offsetNode);
}
container = offsetNode;
offset = 0;
}
bookmark[start ? 'startContainer' : 'endContainer'] = container;
bookmark[start ? 'startOffset' : 'endOffset'] = offset;
};
setupEndPoint(true);
if (!rng.collapsed) {
setupEndPoint();
}
return bookmark;
};
var resolveBookmark = function (bookmark) {
function restoreEndPoint(start) {
var container, offset, node;
var nodeIndex = function (container) {
var node = container.parentNode.firstChild, idx = 0;
while (node) {
if (node === container) {
return idx;
}
if (node.nodeType !== 1 || node.getAttribute('data-mce-type') !== 'bookmark') {
idx++;
}
node = node.nextSibling;
}
return -1;
};
container = node = bookmark[start ? 'startContainer' : 'endContainer'];
offset = bookmark[start ? 'startOffset' : 'endOffset'];
if (!container) {
return;
}
if (container.nodeType === 1) {
offset = nodeIndex(container);
container = container.parentNode;
DOM.remove(node);
if (!container.hasChildNodes() && DOM.isBlock(container)) {
container.appendChild(DOM.create('br'));
}
}
bookmark[start ? 'startContainer' : 'endContainer'] = container;
bookmark[start ? 'startOffset' : 'endOffset'] = offset;
}
restoreEndPoint(true);
restoreEndPoint();
var rng = DOM.createRng();
rng.setStart(bookmark.startContainer, bookmark.startOffset);
if (bookmark.endContainer) {
rng.setEnd(bookmark.endContainer, bookmark.endOffset);
}
return $_14fh94frjfuw8plp.normalizeRange(rng);
};
var $_3byghwfqjfuw8pln = {
createBookmark: createBookmark,
resolveBookmark: resolveBookmark
};
var DOM$1 = global$6.DOM;
var normalizeList = function (dom, ul) {
var sibling;
var parentNode = ul.parentNode;
if (parentNode.nodeName === 'LI' && parentNode.firstChild === ul) {
sibling = parentNode.previousSibling;
if (sibling && sibling.nodeName === 'LI') {
sibling.appendChild(ul);
if ($_fmlqy7fsjfuw8plr.isEmpty(dom, parentNode)) {
DOM$1.remove(parentNode);
}
} else {
DOM$1.setStyle(parentNode, 'listStyleType', 'none');
}
}
if ($_fmlqy7fsjfuw8plr.isListNode(parentNode)) {
sibling = parentNode.previousSibling;
if (sibling && sibling.nodeName === 'LI') {
sibling.appendChild(ul);
}
}
};
var normalizeLists = function (dom, element) {
global$5.each(global$5.grep(dom.select('ol,ul', element)), function (ul) {
normalizeList(dom, ul);
});
};
var $_7p90zmftjfuw8plu = {
normalizeList: normalizeList,
normalizeLists: normalizeLists
};
var global$7 = tinymce.util.Tools.resolve('tinymce.dom.DomQuery');
var getParentList = function (editor) {
var selectionStart = editor.selection.getStart(true);
return editor.dom.getParent(selectionStart, 'OL,UL,DL', getClosestListRootElm(editor, selectionStart));
};
var isParentListSelected = function (parentList, selectedBlocks) {
return parentList && selectedBlocks.length === 1 && selectedBlocks[0] === parentList;
};
var findSubLists = function (parentList) {
return global$5.grep(parentList.querySelectorAll('ol,ul,dl'), function (elm) {
return $_fmlqy7fsjfuw8plr.isListNode(elm);
});
};
var getSelectedSubLists = function (editor) {
var parentList = getParentList(editor);
var selectedBlocks = editor.selection.getSelectedBlocks();
if (isParentListSelected(parentList, selectedBlocks)) {
return findSubLists(parentList);
} else {
return global$5.grep(selectedBlocks, function (elm) {
return $_fmlqy7fsjfuw8plr.isListNode(elm) && parentList !== elm;
});
}
};
var findParentListItemsNodes = function (editor, elms) {
var listItemsElms = global$5.map(elms, function (elm) {
var parentLi = editor.dom.getParent(elm, 'li,dd,dt', getClosestListRootElm(editor, elm));
return parentLi ? parentLi : elm;
});
return global$7.unique(listItemsElms);
};
var getSelectedListItems = function (editor) {
var selectedBlocks = editor.selection.getSelectedBlocks();
return global$5.grep(findParentListItemsNodes(editor, selectedBlocks), function (block) {
return $_fmlqy7fsjfuw8plr.isListItemNode(block);
});
};
var getClosestListRootElm = function (editor, elm) {
var parentTableCell = editor.dom.getParents(elm, 'TD,TH');
var root = parentTableCell.length > 0 ? parentTableCell[0] : editor.getBody();
return root;
};
var $_2bncsnfujfuw8plw = {
getParentList: getParentList,
getSelectedSubLists: getSelectedSubLists,
getSelectedListItems: getSelectedListItems,
getClosestListRootElm: getClosestListRootElm
};
var global$8 = tinymce.util.Tools.resolve('tinymce.Env');
var DOM$2 = global$6.DOM;
var createNewTextBlock = function (editor, contentNode, blockName) {
var node, textBlock;
var fragment = DOM$2.createFragment();
var hasContentNode;
var blockElements = editor.schema.getBlockElements();
if (editor.settings.forced_root_block) {
blockName = blockName || editor.settings.forced_root_block;
}
if (blockName) {
textBlock = DOM$2.create(blockName);
if (textBlock.tagName === editor.settings.forced_root_block) {
DOM$2.setAttribs(textBlock, editor.settings.forced_root_block_attrs);
}
if (!$_fmlqy7fsjfuw8plr.isBlock(contentNode.firstChild, blockElements)) {
fragment.appendChild(textBlock);
}
}
if (contentNode) {
while (node = contentNode.firstChild) {
var nodeName = node.nodeName;
if (!hasContentNode && (nodeName !== 'SPAN' || node.getAttribute('data-mce-type') !== 'bookmark')) {
hasContentNode = true;
}
if ($_fmlqy7fsjfuw8plr.isBlock(node, blockElements)) {
fragment.appendChild(node);
textBlock = null;
} else {
if (blockName) {
if (!textBlock) {
textBlock = DOM$2.create(blockName);
fragment.appendChild(textBlock);
}
textBlock.appendChild(node);
} else {
fragment.appendChild(node);
}
}
}
}
if (!editor.settings.forced_root_block) {
fragment.appendChild(DOM$2.create('br'));
} else {
if (!hasContentNode && (!global$8.ie || global$8.ie > 10)) {
textBlock.appendChild(DOM$2.create('br', { 'data-mce-bogus': '1' }));
}
}
return fragment;
};
var $_3c0i4zfxjfuw8pm1 = { createNewTextBlock: createNewTextBlock };
var DOM$3 = global$6.DOM;
var splitList = function (editor, ul, li, newBlock) {
var tmpRng, fragment, bookmarks, node;
var removeAndKeepBookmarks = function (targetNode) {
global$5.each(bookmarks, function (node) {
targetNode.parentNode.insertBefore(node, li.parentNode);
});
DOM$3.remove(targetNode);
};
bookmarks = DOM$3.select('span[data-mce-type="bookmark"]', ul);
newBlock = newBlock || $_3c0i4zfxjfuw8pm1.createNewTextBlock(editor, li);
tmpRng = DOM$3.createRng();
tmpRng.setStartAfter(li);
tmpRng.setEndAfter(ul);
fragment = tmpRng.extractContents();
for (node = fragment.firstChild; node; node = node.firstChild) {
if (node.nodeName === 'LI' && editor.dom.isEmpty(node)) {
DOM$3.remove(node);
break;
}
}
if (!editor.dom.isEmpty(fragment)) {
DOM$3.insertAfter(fragment, ul);
}
DOM$3.insertAfter(newBlock, ul);
if ($_fmlqy7fsjfuw8plr.isEmpty(editor.dom, li.parentNode)) {
removeAndKeepBookmarks(li.parentNode);
}
DOM$3.remove(li);
if ($_fmlqy7fsjfuw8plr.isEmpty(editor.dom, ul)) {
DOM$3.remove(ul);
}
};
var $_dbkw03fwjfuw8plz = { splitList: splitList };
var DOM$4 = global$6.DOM;
var removeEmptyLi = function (dom, li) {
if ($_fmlqy7fsjfuw8plr.isEmpty(dom, li)) {
DOM$4.remove(li);
}
};
var outdent = function (editor, li) {
var ul = li.parentNode;
var ulParent, newBlock;
if (ul) {
ulParent = ul.parentNode;
} else {
removeEmptyLi(editor.dom, li);
return true;
}
if (ul === editor.getBody()) {
return true;
}
if (li.nodeName === 'DD') {
DOM$4.rename(li, 'DT');
return true;
}
if ($_fmlqy7fsjfuw8plr.isFirstChild(li) && $_fmlqy7fsjfuw8plr.isLastChild(li)) {
if (ulParent.nodeName === 'LI') {
DOM$4.insertAfter(li, ulParent);
removeEmptyLi(editor.dom, ulParent);
DOM$4.remove(ul);
} else if ($_fmlqy7fsjfuw8plr.isListNode(ulParent)) {
DOM$4.remove(ul, true);
} else {
ulParent.insertBefore($_3c0i4zfxjfuw8pm1.createNewTextBlock(editor, li), ul);
DOM$4.remove(ul);
}
return true;
} else if ($_fmlqy7fsjfuw8plr.isFirstChild(li)) {
if (ulParent.nodeName === 'LI') {
DOM$4.insertAfter(li, ulParent);
li.appendChild(ul);
removeEmptyLi(editor.dom, ulParent);
} else if ($_fmlqy7fsjfuw8plr.isListNode(ulParent)) {
ulParent.insertBefore(li, ul);
} else {
ulParent.insertBefore($_3c0i4zfxjfuw8pm1.createNewTextBlock(editor, li), ul);
DOM$4.remove(li);
}
return true;
} else if ($_fmlqy7fsjfuw8plr.isLastChild(li)) {
if (ulParent.nodeName === 'LI') {
DOM$4.insertAfter(li, ulParent);
} else if ($_fmlqy7fsjfuw8plr.isListNode(ulParent)) {
DOM$4.insertAfter(li, ul);
} else {
DOM$4.insertAfter($_3c0i4zfxjfuw8pm1.createNewTextBlock(editor, li), ul);
DOM$4.remove(li);
}
return true;
}
if (ulParent.nodeName === 'LI') {
ul = ulParent;
newBlock = $_3c0i4zfxjfuw8pm1.createNewTextBlock(editor, li, 'LI');
} else if ($_fmlqy7fsjfuw8plr.isListNode(ulParent)) {
newBlock = $_3c0i4zfxjfuw8pm1.createNewTextBlock(editor, li, 'LI');
} else {
newBlock = $_3c0i4zfxjfuw8pm1.createNewTextBlock(editor, li);
}
$_dbkw03fwjfuw8plz.splitList(editor, ul, li, newBlock);
$_7p90zmftjfuw8plu.normalizeLists(editor.dom, ul.parentNode);
return true;
};
var outdentSelection = function (editor) {
var listElements = $_2bncsnfujfuw8plw.getSelectedListItems(editor);
if (listElements.length) {
var bookmark = $_3byghwfqjfuw8pln.createBookmark(editor.selection.getRng());
var i = void 0, y = void 0;
var root = $_2bncsnfujfuw8plw.getClosestListRootElm(editor, editor.selection.getStart(true));
i = listElements.length;
while (i--) {
var node = listElements[i].parentNode;
while (node && node !== root) {
y = listElements.length;
while (y--) {
if (listElements[y] === node) {
listElements.splice(i, 1);
break;
}
}
node = node.parentNode;
}
}
for (i = 0; i < listElements.length; i++) {
if (!outdent(editor, listElements[i]) && i === 0) {
break;
}
}
editor.selection.setRng($_3byghwfqjfuw8pln.resolveBookmark(bookmark));
editor.nodeChanged();
return true;
}
};
var $_b067pwfojfuw8plj = {
outdent: outdent,
outdentSelection: outdentSelection
};
var updateListStyle = function (dom, el, detail) {
var type = detail['list-style-type'] ? detail['list-style-type'] : null;
dom.setStyle(el, 'list-style-type', type);
};
var setAttribs = function (elm, attrs) {
global$5.each(attrs, function (value, key) {
elm.setAttribute(key, value);
});
};
var updateListAttrs = function (dom, el, detail) {
setAttribs(el, detail['list-attributes']);
global$5.each(dom.select('li', el), function (li) {
setAttribs(li, detail['list-item-attributes']);
});
};
var updateListWithDetails = function (dom, el, detail) {
updateListStyle(dom, el, detail);
updateListAttrs(dom, el, detail);
};
var removeStyles = function (dom, element, styles) {
global$5.each(styles, function (style) {
return dom.setStyle(element, (_a = {}, _a[style] = '', _a));
var _a;
});
};
var getEndPointNode = function (editor, rng, start, root) {
var container, offset;
container = rng[start ? 'startContainer' : 'endContainer'];
offset = rng[start ? 'startOffset' : 'endOffset'];
if (container.nodeType === 1) {
container = container.childNodes[Math.min(offset, container.childNodes.length - 1)] || container;
}
if (!start && $_fmlqy7fsjfuw8plr.isBr(container.nextSibling)) {
container = container.nextSibling;
}
while (container.parentNode !== root) {
if ($_fmlqy7fsjfuw8plr.isTextBlock(editor, container)) {
return container;
}
if (/^(TD|TH)$/.test(container.parentNode.nodeName)) {
return container;
}
container = container.parentNode;
}
return container;
};
var getSelectedTextBlocks = function (editor, rng, root) {
var textBlocks = [], dom = editor.dom;
var startNode = getEndPointNode(editor, rng, true, root);
var endNode = getEndPointNode(editor, rng, false, root);
var block;
var siblings = [];
for (var node = startNode; node; node = node.nextSibling) {
siblings.push(node);
if (node === endNode) {
break;
}
}
global$5.each(siblings, function (node) {
if ($_fmlqy7fsjfuw8plr.isTextBlock(editor, node)) {
textBlocks.push(node);
block = null;
return;
}
if (dom.isBlock(node) || $_fmlqy7fsjfuw8plr.isBr(node)) {
if ($_fmlqy7fsjfuw8plr.isBr(node)) {
dom.remove(node);
}
block = null;
return;
}
var nextSibling = node.nextSibling;
if (global$4.isBookmarkNode(node)) {
if ($_fmlqy7fsjfuw8plr.isTextBlock(editor, nextSibling) || !nextSibling && node.parentNode === root) {
block = null;
return;
}
}
if (!block) {
block = dom.create('p');
node.parentNode.insertBefore(block, node);
textBlocks.push(block);
}
block.appendChild(node);
});
return textBlocks;
};
var hasCompatibleStyle = function (dom, sib, detail) {
var sibStyle = dom.getStyle(sib, 'list-style-type');
var detailStyle = detail ? detail['list-style-type'] : '';
detailStyle = detailStyle === null ? '' : detailStyle;
return sibStyle === detailStyle;
};
var applyList = function (editor, listName, detail) {
if (detail === void 0) {
detail = {};
}
var rng = editor.selection.getRng(true);
var bookmark;
var listItemName = 'LI';
var root = $_2bncsnfujfuw8plw.getClosestListRootElm(editor, editor.selection.getStart(true));
var dom = editor.dom;
if (dom.getContentEditable(editor.selection.getNode()) === 'false') {
return;
}
listName = listName.toUpperCase();
if (listName === 'DL') {
listItemName = 'DT';
}
bookmark = $_3byghwfqjfuw8pln.createBookmark(rng);
global$5.each(getSelectedTextBlocks(editor, rng, root), function (block) {
var listBlock, sibling;
sibling = block.previousSibling;
if (sibling && $_fmlqy7fsjfuw8plr.isListNode(sibling) && sibling.nodeName === listName && hasCompatibleStyle(dom, sibling, detail)) {
listBlock = sibling;
block = dom.rename(block, listItemName);
sibling.appendChild(block);
} else {
listBlock = dom.create(listName);
block.parentNode.insertBefore(listBlock, block);
listBlock.appendChild(block);
block = dom.rename(block, listItemName);
}
removeStyles(dom, block, [
'margin',
'margin-right',
'margin-bottom',
'margin-left',
'margin-top',
'padding',
'padding-right',
'padding-bottom',
'padding-left',
'padding-top'
]);
updateListWithDetails(dom, listBlock, detail);
mergeWithAdjacentLists(editor.dom, listBlock);
});
editor.selection.setRng($_3byghwfqjfuw8pln.resolveBookmark(bookmark));
};
var removeList = function (editor) {
var bookmark = $_3byghwfqjfuw8pln.createBookmark(editor.selection.getRng(true));
var root = $_2bncsnfujfuw8plw.getClosestListRootElm(editor, editor.selection.getStart(true));
var listItems = $_2bncsnfujfuw8plw.getSelectedListItems(editor);
var emptyListItems = global$5.grep(listItems, function (li) {
return editor.dom.isEmpty(li);
});
listItems = global$5.grep(listItems, function (li) {
return !editor.dom.isEmpty(li);
});
global$5.each(emptyListItems, function (li) {
if ($_fmlqy7fsjfuw8plr.isEmpty(editor.dom, li)) {
$_b067pwfojfuw8plj.outdent(editor, li);
return;
}
});
global$5.each(listItems, function (li) {
var node, rootList;
if (li.parentNode === editor.getBody()) {
return;
}
for (node = li; node && node !== root; node = node.parentNode) {
if ($_fmlqy7fsjfuw8plr.isListNode(node)) {
rootList = node;
}
}
$_dbkw03fwjfuw8plz.splitList(editor, rootList, li);
$_7p90zmftjfuw8plu.normalizeLists(editor.dom, rootList.parentNode);
});
editor.selection.setRng($_3byghwfqjfuw8pln.resolveBookmark(bookmark));
};
var isValidLists = function (list1, list2) {
return list1 && list2 && $_fmlqy7fsjfuw8plr.isListNode(list1) && list1.nodeName === list2.nodeName;
};
var hasSameListStyle = function (dom, list1, list2) {
var targetStyle = dom.getStyle(list1, 'list-style-type', true);
var style = dom.getStyle(list2, 'list-style-type', true);
return targetStyle === style;
};
var hasSameClasses = function (elm1, elm2) {
return elm1.className === elm2.className;
};
var shouldMerge = function (dom, list1, list2) {
return isValidLists(list1, list2) && hasSameListStyle(dom, list1, list2) && hasSameClasses(list1, list2);
};
var mergeWithAdjacentLists = function (dom, listBlock) {
var sibling, node;
sibling = listBlock.nextSibling;
if (shouldMerge(dom, listBlock, sibling)) {
while (node = sibling.firstChild) {
listBlock.appendChild(node);
}
dom.remove(sibling);
}
sibling = listBlock.previousSibling;
if (shouldMerge(dom, listBlock, sibling)) {
while (node = sibling.lastChild) {
listBlock.insertBefore(node, listBlock.firstChild);
}
dom.remove(sibling);
}
};
var updateList = function (dom, list, listName, detail) {
if (list.nodeName !== listName) {
var newList = dom.rename(list, listName);
updateListWithDetails(dom, newList, detail);
} else {
updateListWithDetails(dom, list, detail);
}
};
var toggleMultipleLists = function (editor, parentList, lists, listName, detail) {
if (parentList.nodeName === listName && !hasListStyleDetail(detail)) {
removeList(editor);
} else {
var bookmark = $_3byghwfqjfuw8pln.createBookmark(editor.selection.getRng(true));
global$5.each([parentList].concat(lists), function (elm) {
updateList(editor.dom, elm, listName, detail);
});
editor.selection.setRng($_3byghwfqjfuw8pln.resolveBookmark(bookmark));
}
};
var hasListStyleDetail = function (detail) {
return 'list-style-type' in detail;
};
var toggleSingleList = function (editor, parentList, listName, detail) {
if (parentList === editor.getBody()) {
return;
}
if (parentList) {
if (parentList.nodeName === listName && !hasListStyleDetail(detail)) {
removeList(editor);
} else {
var bookmark = $_3byghwfqjfuw8pln.createBookmark(editor.selection.getRng(true));
updateListWithDetails(editor.dom, parentList, detail);
mergeWithAdjacentLists(editor.dom, editor.dom.rename(parentList, listName));
editor.selection.setRng($_3byghwfqjfuw8pln.resolveBookmark(bookmark));
}
} else {
applyList(editor, listName, detail);
}
};
var toggleList = function (editor, listName, detail) {
var parentList = $_2bncsnfujfuw8plw.getParentList(editor);
var selectedSubLists = $_2bncsnfujfuw8plw.getSelectedSubLists(editor);
detail = detail ? detail : {};
if (parentList && selectedSubLists.length > 0) {
toggleMultipleLists(editor, parentList, selectedSubLists, listName, detail);
} else {
toggleSingleList(editor, parentList, listName, detail);
}
};
var $_8qbnsrfljfuw8plb = {
toggleList: toggleList,
removeList: removeList,
mergeWithAdjacentLists: mergeWithAdjacentLists
};
var findNextCaretContainer = function (editor, rng, isForward, root) {
var node = rng.startContainer;
var offset = rng.startOffset;
var nonEmptyBlocks, walker;
if (node.nodeType === 3 && (isForward ? offset < node.data.length : offset > 0)) {
return node;
}
nonEmptyBlocks = editor.schema.getNonEmptyElements();
if (node.nodeType === 1) {
node = global$1.getNode(node, offset);
}
walker = new global$2(node, root);
if (isForward) {
if ($_fmlqy7fsjfuw8plr.isBogusBr(editor.dom, node)) {
walker.next();
}
}
while (node = walker[isForward ? 'next' : 'prev2']()) {
if (node.nodeName === 'LI' && !node.hasChildNodes()) {
return node;
}
if (nonEmptyBlocks[node.nodeName]) {
return node;
}
if (node.nodeType === 3 && node.data.length > 0) {
return node;
}
}
};
var hasOnlyOneBlockChild = function (dom, elm) {
var childNodes = elm.childNodes;
return childNodes.length === 1 && !$_fmlqy7fsjfuw8plr.isListNode(childNodes[0]) && dom.isBlock(childNodes[0]);
};
var unwrapSingleBlockChild = function (dom, elm) {
if (hasOnlyOneBlockChild(dom, elm)) {
dom.remove(elm.firstChild, true);
}
};
var moveChildren = function (dom, fromElm, toElm) {
var node, targetElm;
targetElm = hasOnlyOneBlockChild(dom, toElm) ? toElm.firstChild : toElm;
unwrapSingleBlockChild(dom, fromElm);
if (!$_fmlqy7fsjfuw8plr.isEmpty(dom, fromElm, true)) {
while (node = fromElm.firstChild) {
targetElm.appendChild(node);
}
}
};
var mergeLiElements = function (dom, fromElm, toElm) {
var node, listNode;
var ul = fromElm.parentNode;
if (!$_fmlqy7fsjfuw8plr.isChildOfBody(dom, fromElm) || !$_fmlqy7fsjfuw8plr.isChildOfBody(dom, toElm)) {
return;
}
if ($_fmlqy7fsjfuw8plr.isListNode(toElm.lastChild)) {
listNode = toElm.lastChild;
}
if (ul === toElm.lastChild) {
if ($_fmlqy7fsjfuw8plr.isBr(ul.previousSibling)) {
dom.remove(ul.previousSibling);
}
}
node = toElm.lastChild;
if (node && $_fmlqy7fsjfuw8plr.isBr(node) && fromElm.hasChildNodes()) {
dom.remove(node);
}
if ($_fmlqy7fsjfuw8plr.isEmpty(dom, toElm, true)) {
dom.$(toElm).empty();
}
moveChildren(dom, fromElm, toElm);
if (listNode) {
toElm.appendChild(listNode);
}
dom.remove(fromElm);
if ($_fmlqy7fsjfuw8plr.isEmpty(dom, ul) && ul !== dom.getRoot()) {
dom.remove(ul);
}
};
var mergeIntoEmptyLi = function (editor, fromLi, toLi) {
editor.dom.$(toLi).empty();
mergeLiElements(editor.dom, fromLi, toLi);
editor.selection.setCursorLocation(toLi);
};
var mergeForward = function (editor, rng, fromLi, toLi) {
var dom = editor.dom;
if (dom.isEmpty(toLi)) {
mergeIntoEmptyLi(editor, fromLi, toLi);
} else {
var bookmark = $_3byghwfqjfuw8pln.createBookmark(rng);
mergeLiElements(dom, fromLi, toLi);
editor.selection.setRng($_3byghwfqjfuw8pln.resolveBookmark(bookmark));
}
};
var mergeBackward = function (editor, rng, fromLi, toLi) {
var bookmark = $_3byghwfqjfuw8pln.createBookmark(rng);
mergeLiElements(editor.dom, fromLi, toLi);
var resolvedBookmark = $_3byghwfqjfuw8pln.resolveBookmark(bookmark);
editor.selection.setRng(resolvedBookmark);
};
var backspaceDeleteFromListToListCaret = function (editor, isForward) {
var dom = editor.dom, selection = editor.selection;
var selectionStartElm = selection.getStart();
var root = $_2bncsnfujfuw8plw.getClosestListRootElm(editor, selectionStartElm);
var li = dom.getParent(selection.getStart(), 'LI', root);
var ul, rng, otherLi;
if (li) {
ul = li.parentNode;
if (ul === editor.getBody() && $_fmlqy7fsjfuw8plr.isEmpty(dom, ul)) {
return true;
}
rng = $_14fh94frjfuw8plp.normalizeRange(selection.getRng(true));
otherLi = dom.getParent(findNextCaretContainer(editor, rng, isForward, root), 'LI', root);
if (otherLi && otherLi !== li) {
if (isForward) {
mergeForward(editor, rng, otherLi, li);
} else {
mergeBackward(editor, rng, li, otherLi);
}
return true;
} else if (!otherLi) {
if (!isForward && $_8qbnsrfljfuw8plb.removeList(editor)) {
return true;
}
}
}
return false;
};
var removeBlock = function (dom, block, root) {
var parentBlock = dom.getParent(block.parentNode, dom.isBlock, root);
dom.remove(block);
if (parentBlock && dom.isEmpty(parentBlock)) {
dom.remove(parentBlock);
}
};
var backspaceDeleteIntoListCaret = function (editor, isForward) {
var dom = editor.dom;
var selectionStartElm = editor.selection.getStart();
var root = $_2bncsnfujfuw8plw.getClosestListRootElm(editor, selectionStartElm);
var block = dom.getParent(selectionStartElm, dom.isBlock, root);
if (block && dom.isEmpty(block)) {
var rng = $_14fh94frjfuw8plp.normalizeRange(editor.selection.getRng(true));
var otherLi_1 = dom.getParent(findNextCaretContainer(editor, rng, isForward, root), 'LI', root);
if (otherLi_1) {
editor.undoManager.transact(function () {
removeBlock(dom, block, root);
$_8qbnsrfljfuw8plb.mergeWithAdjacentLists(dom, otherLi_1.parentNode);
editor.selection.select(otherLi_1, true);
editor.selection.collapse(isForward);
});
return true;
}
}
return false;
};
var backspaceDeleteCaret = function (editor, isForward) {
return backspaceDeleteFromListToListCaret(editor, isForward) || backspaceDeleteIntoListCaret(editor, isForward);
};
var backspaceDeleteRange = function (editor) {
var selectionStartElm = editor.selection.getStart();
var root = $_2bncsnfujfuw8plw.getClosestListRootElm(editor, selectionStartElm);
var startListParent = editor.dom.getParent(selectionStartElm, 'LI,DT,DD', root);
if (startListParent || $_2bncsnfujfuw8plw.getSelectedListItems(editor).length > 0) {
editor.undoManager.transact(function () {
editor.execCommand('Delete');
$_7p90zmftjfuw8plu.normalizeLists(editor.dom, editor.getBody());
});
return true;
}
return false;
};
var backspaceDelete = function (editor, isForward) {
return editor.selection.isCollapsed() ? backspaceDeleteCaret(editor, isForward) : backspaceDeleteRange(editor);
};
var setup = function (editor) {
editor.on('keydown', function (e) {
if (e.keyCode === global$3.BACKSPACE) {
if (backspaceDelete(editor, false)) {
e.preventDefault();
}
} else if (e.keyCode === global$3.DELETE) {
if (backspaceDelete(editor, true)) {
e.preventDefault();
}
}
});
};
var $_6qu3vpfhjfuw8pl2 = {
setup: setup,
backspaceDelete: backspaceDelete
};
var get = function (editor) {
return {
backspaceDelete: function (isForward) {
$_6qu3vpfhjfuw8pl2.backspaceDelete(editor, isForward);
}
};
};
var $_bgmttlfgjfuw8pl0 = { get: get };
var DOM$5 = global$6.DOM;
var mergeLists = function (from, to) {
var node;
if ($_fmlqy7fsjfuw8plr.isListNode(from)) {
while (node = from.firstChild) {
to.appendChild(node);
}
DOM$5.remove(from);
}
};
var indent = function (li) {
var sibling, newList, listStyle;
if (li.nodeName === 'DT') {
DOM$5.rename(li, 'DD');
return true;
}
sibling = li.previousSibling;
if (sibling && $_fmlqy7fsjfuw8plr.isListNode(sibling)) {
sibling.appendChild(li);
return true;
}
if (sibling && sibling.nodeName === 'LI' && $_fmlqy7fsjfuw8plr.isListNode(sibling.lastChild)) {
sibling.lastChild.appendChild(li);
mergeLists(li.lastChild, sibling.lastChild);
return true;
}
sibling = li.nextSibling;
if (sibling && $_fmlqy7fsjfuw8plr.isListNode(sibling)) {
sibling.insertBefore(li, sibling.firstChild);
return true;
}
sibling = li.previousSibling;
if (sibling && sibling.nodeName === 'LI') {
newList = DOM$5.create(li.parentNode.nodeName);
listStyle = DOM$5.getStyle(li.parentNode, 'listStyleType');
if (listStyle) {
DOM$5.setStyle(newList, 'listStyleType', listStyle);
}
sibling.appendChild(newList);
newList.appendChild(li);
mergeLists(li.lastChild, newList);
return true;
}
return false;
};
var indentSelection = function (editor) {
var listElements = $_2bncsnfujfuw8plw.getSelectedListItems(editor);
if (listElements.length) {
var bookmark = $_3byghwfqjfuw8pln.createBookmark(editor.selection.getRng(true));
for (var i = 0; i < listElements.length; i++) {
if (!indent(listElements[i]) && i === 0) {
break;
}
}
editor.selection.setRng($_3byghwfqjfuw8pln.resolveBookmark(bookmark));
editor.nodeChanged();
return true;
}
};
var $_4zf6mug0jfuw8pm7 = { indentSelection: indentSelection };
var queryListCommandState = function (editor, listName) {
return function () {
var parentList = editor.dom.getParent(editor.selection.getStart(), 'UL,OL,DL');
return parentList && parentList.nodeName === listName;
};
};
var register = function (editor) {
editor.on('BeforeExecCommand', function (e) {
var cmd = e.command.toLowerCase();
var isHandled;
if (cmd === 'indent') {
if ($_4zf6mug0jfuw8pm7.indentSelection(editor)) {
isHandled = true;
}
} else if (cmd === 'outdent') {
if ($_b067pwfojfuw8plj.outdentSelection(editor)) {
isHandled = true;
}
}
if (isHandled) {
editor.fire('ExecCommand', { command: e.command });
e.preventDefault();
return true;
}
});
editor.addCommand('InsertUnorderedList', function (ui, detail) {
$_8qbnsrfljfuw8plb.toggleList(editor, 'UL', detail);
});
editor.addCommand('InsertOrderedList', function (ui, detail) {
$_8qbnsrfljfuw8plb.toggleList(editor, 'OL', detail);
});
editor.addCommand('InsertDefinitionList', function (ui, detail) {
$_8qbnsrfljfuw8plb.toggleList(editor, 'DL', detail);
});
editor.addQueryStateHandler('InsertUnorderedList', queryListCommandState(editor, 'UL'));
editor.addQueryStateHandler('InsertOrderedList', queryListCommandState(editor, 'OL'));
editor.addQueryStateHandler('InsertDefinitionList', queryListCommandState(editor, 'DL'));
};
var $_ci56e3fzjfuw8pm5 = { register: register };
var shouldIndentOnTab = function (editor) {
return editor.getParam('lists_indent_on_tab', true);
};
var $_e85xmvg2jfuw8pmc = { shouldIndentOnTab: shouldIndentOnTab };
var setupTabKey = function (editor) {
editor.on('keydown', function (e) {
if (e.keyCode !== global$3.TAB || global$3.metaKeyPressed(e)) {
return;
}
if (editor.dom.getParent(editor.selection.getStart(), 'LI,DT,DD')) {
e.preventDefault();
if (e.shiftKey) {
$_b067pwfojfuw8plj.outdentSelection(editor);
} else {
$_4zf6mug0jfuw8pm7.indentSelection(editor);
}
}
});
};
var setup$1 = function (editor) {
if ($_e85xmvg2jfuw8pmc.shouldIndentOnTab(editor)) {
setupTabKey(editor);
}
$_6qu3vpfhjfuw8pl2.setup(editor);
};
var $_1iz32kg1jfuw8pma = { setup: setup$1 };
var findIndex = function (list, predicate) {
for (var index = 0; index < list.length; index++) {
var element = list[index];
if (predicate(element)) {
return index;
}
}
return -1;
};
var listState = function (editor, listName) {
return function (e) {
var ctrl = e.control;
editor.on('NodeChange', function (e) {
var tableCellIndex = findIndex(e.parents, $_fmlqy7fsjfuw8plr.isTableCellNode);
var parents = tableCellIndex !== -1 ? e.parents.slice(0, tableCellIndex) : e.parents;
var lists = global$5.grep(parents, $_fmlqy7fsjfuw8plr.isListNode);
ctrl.active(lists.length > 0 && lists[0].nodeName === listName);
});
};
};
var indentPostRender = function (editor) {
return function (e) {
var ctrl = e.control;
editor.on('nodechange', function () {
var listItemBlocks = $_2bncsnfujfuw8plw.getSelectedListItems(editor);
var disable = listItemBlocks.length > 0 && $_fmlqy7fsjfuw8plr.isFirstChild(listItemBlocks[0]);
ctrl.disabled(disable);
});
};
};
var register$1 = function (editor) {
var hasPlugin = function (editor, plugin) {
var plugins = editor.settings.plugins ? editor.settings.plugins : '';
return global$5.inArray(plugins.split(/[ ,]/), plugin) !== -1;
};
if (!hasPlugin(editor, 'advlist')) {
editor.addButton('numlist', {
active: false,
title: 'Numbered list',
cmd: 'InsertOrderedList',
onPostRender: listState(editor, 'OL')
});
editor.addButton('bullist', {
active: false,
title: 'Bullet list',
cmd: 'InsertUnorderedList',
onPostRender: listState(editor, 'UL')
});
}
editor.addButton('indent', {
icon: 'indent',
title: 'Increase indent',
cmd: 'Indent',
onPostRender: indentPostRender(editor)
});
};
var $_fizi9xg3jfuw8pmd = { register: register$1 };
global.add('lists', function (editor) {
$_1iz32kg1jfuw8pma.setup(editor);
$_fizi9xg3jfuw8pmd.register(editor);
$_ci56e3fzjfuw8pm5.register(editor);
return $_bgmttlfgjfuw8pl0.get(editor);
});
function Plugin () {
}
return Plugin;
}());
})();
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),d=tinymce.util.Tools.resolve("tinymce.dom.RangeUtils"),l=tinymce.util.Tools.resolve("tinymce.dom.TreeWalker"),n=tinymce.util.Tools.resolve("tinymce.util.VK"),p=tinymce.util.Tools.resolve("tinymce.dom.BookmarkManager"),v=tinymce.util.Tools.resolve("tinymce.util.Tools"),t=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),o=function(e){return e&&"BR"===e.nodeName},r=function(e){return e&&3===e.nodeType},h=function(e){return e&&/^(OL|UL|DL)$/.test(e.nodeName)},i=function(e){return e&&/^(LI|DT|DD)$/.test(e.nodeName)},a=function(e){return e&&/^(TH|TD)$/.test(e.nodeName)},C=o,s=function(e){return e.parentNode.firstChild===e},c=function(e){return e.parentNode.lastChild===e},y=function(e,t){return t&&!!e.schema.getTextBlockElements()[t.nodeName]},f=function(e,t){return e&&e.nodeName in t},u=function(e,t){return!!o(t)&&!(!e.isBlock(t.nextSibling)||o(t.previousSibling))},m=function(e,t,n){var o=e.isEmpty(t);return!(n&&0<e.select("span[data-mce-type=bookmark]",t).length)&&o},g=function(e,t){return e.isChildOf(t,e.getRoot())},N=function(e,t){var n=d.getNode(e,t);return i(e)&&r(n)?{container:n,offset:t>=e.childNodes.length?n.data.length:0}:{container:e,offset:t}},L=function(e){var t=e.cloneRange(),n=N(e.startContainer,e.startOffset);t.setStart(n.container,n.offset);var o=N(e.endContainer,e.endOffset);return t.setEnd(o.container,o.offset),t},S=t.DOM,b=function(r){var i={},e=function(e){var t,n,o;n=r[e?"startContainer":"endContainer"],o=r[e?"startOffset":"endOffset"],1===n.nodeType&&(t=S.create("span",{"data-mce-type":"bookmark"}),n.hasChildNodes()?(o=Math.min(o,n.childNodes.length-1),e?n.insertBefore(t,n.childNodes[o]):S.insertAfter(t,n.childNodes[o])):n.appendChild(t),n=t,o=0),i[e?"startContainer":"endContainer"]=n,i[e?"startOffset":"endOffset"]=o};return e(!0),r.collapsed||e(),i},D=function(r){function e(e){var t,n,o;t=o=r[e?"startContainer":"endContainer"],n=r[e?"startOffset":"endOffset"],t&&(1===t.nodeType&&(n=function(e){for(var t=e.parentNode.firstChild,n=0;t;){if(t===e)return n;1===t.nodeType&&"bookmark"===t.getAttribute("data-mce-type")||n++,t=t.nextSibling}return-1}(t),t=t.parentNode,S.remove(o),!t.hasChildNodes()&&S.isBlock(t)&&t.appendChild(S.create("br"))),r[e?"startContainer":"endContainer"]=t,r[e?"startOffset":"endOffset"]=n)}e(!0),e();var t=S.createRng();return t.setStart(r.startContainer,r.startOffset),r.endContainer&&t.setEnd(r.endContainer,r.endOffset),L(t)},k=t.DOM,T=function(e,t){var n,o=t.parentNode;"LI"===o.nodeName&&o.firstChild===t&&((n=o.previousSibling)&&"LI"===n.nodeName?(n.appendChild(t),m(e,o)&&k.remove(o)):k.setStyle(o,"listStyleType","none")),h(o)&&(n=o.previousSibling)&&"LI"===n.nodeName&&n.appendChild(t)},I=function(t,e){v.each(v.grep(t.select("ol,ul",e)),function(e){T(t,e)})},B=tinymce.util.Tools.resolve("tinymce.dom.DomQuery"),R=function(e){var t=e.selection.getStart(!0);return e.dom.getParent(t,"OL,UL,DL",O(e,t))},O=function(e,t){var n=e.dom.getParents(t,"TD,TH");return 0<n.length?n[0]:e.getBody()},E={getParentList:R,getSelectedSubLists:function(e){var t,n,o,r=R(e),i=e.selection.getSelectedBlocks();return o=i,(n=r)&&1===o.length&&o[0]===n?(t=r,v.grep(t.querySelectorAll("ol,ul,dl"),function(e){return h(e)})):v.grep(i,function(e){return h(e)&&r!==e})},getSelectedListItems:function(e){var n,t,o,r=e.selection.getSelectedBlocks();return v.grep((n=e,t=r,o=v.map(t,function(e){var t=n.dom.getParent(e,"li,dd,dt",O(n,e));return t||e}),B.unique(o)),function(e){return i(e)})},getClosestListRootElm:O},A=tinymce.util.Tools.resolve("tinymce.Env"),P=t.DOM,x=function(e,t,n){var o,r,i,a=P.createFragment(),s=e.schema.getBlockElements();if(e.settings.forced_root_block&&(n=n||e.settings.forced_root_block),n&&((r=P.create(n)).tagName===e.settings.forced_root_block&&P.setAttribs(r,e.settings.forced_root_block_attrs),f(t.firstChild,s)||a.appendChild(r)),t)for(;o=t.firstChild;){var d=o.nodeName;i||"SPAN"===d&&"bookmark"===o.getAttribute("data-mce-type")||(i=!0),f(o,s)?(a.appendChild(o),r=null):n?(r||(r=P.create(n),a.appendChild(r)),r.appendChild(o)):a.appendChild(o)}return e.settings.forced_root_block?i||A.ie&&!(10<A.ie)||r.appendChild(P.create("br",{"data-mce-bogus":"1"})):a.appendChild(P.create("br")),a},_=t.DOM,M=function(e,t,n,o){var r,i,a,s,d;for(a=_.select('span[data-mce-type="bookmark"]',t),o=o||x(e,n),(r=_.createRng()).setStartAfter(n),r.setEndAfter(t),s=(i=r.extractContents()).firstChild;s;s=s.firstChild)if("LI"===s.nodeName&&e.dom.isEmpty(s)){_.remove(s);break}e.dom.isEmpty(i)||_.insertAfter(i,t),_.insertAfter(o,t),m(e.dom,n.parentNode)&&(d=n.parentNode,v.each(a,function(e){d.parentNode.insertBefore(e,n.parentNode)}),_.remove(d)),_.remove(n),m(e.dom,t)&&_.remove(t)},U=t.DOM,H=function(e,t){m(e,t)&&U.remove(t)},$=function(e,t){var n,o,r=t.parentNode;return r?(n=r.parentNode,r===e.getBody()||("DD"===t.nodeName?U.rename(t,"DT"):s(t)&&c(t)?"LI"===n.nodeName?(U.insertAfter(t,n),H(e.dom,n),U.remove(r)):h(n)?U.remove(r,!0):(n.insertBefore(x(e,t),r),U.remove(r)):s(t)?"LI"===n.nodeName?(U.insertAfter(t,n),t.appendChild(r),H(e.dom,n)):h(n)?n.insertBefore(t,r):(n.insertBefore(x(e,t),r),U.remove(t)):c(t)?"LI"===n.nodeName?U.insertAfter(t,n):h(n)?U.insertAfter(t,r):(U.insertAfter(x(e,t),r),U.remove(t)):("LI"===n.nodeName?(r=n,o=x(e,t,"LI")):o=h(n)?x(e,t,"LI"):x(e,t),M(e,r,t,o),I(e.dom,r.parentNode)))):H(e.dom,t),!0},w=$,K=function(e){var t=E.getSelectedListItems(e);if(t.length){var n=b(e.selection.getRng()),o=void 0,r=void 0,i=E.getClosestListRootElm(e,e.selection.getStart(!0));for(o=t.length;o--;)for(var a=t[o].parentNode;a&&a!==i;){for(r=t.length;r--;)if(t[r]===a){t.splice(o,1);break}a=a.parentNode}for(o=0;o<t.length&&($(e,t[o])||0!==o);o++);return e.selection.setRng(D(n)),e.nodeChanged(),!0}},Q=function(n,e){v.each(e,function(e,t){n.setAttribute(t,e)})},W=function(e,t,n){var o,r,i,a,s,d,l;o=e,r=t,a=(i=n)["list-style-type"]?i["list-style-type"]:null,o.setStyle(r,"list-style-type",a),s=e,Q(d=t,(l=n)["list-attributes"]),v.each(s.select("li",d),function(e){Q(e,l["list-item-attributes"])})},j=function(e,t,n,o){var r,i;for(r=t[n?"startContainer":"endContainer"],i=t[n?"startOffset":"endOffset"],1===r.nodeType&&(r=r.childNodes[Math.min(i,r.childNodes.length-1)]||r),!n&&C(r.nextSibling)&&(r=r.nextSibling);r.parentNode!==o;){if(y(e,r))return r;if(/^(TD|TH)$/.test(r.parentNode.nodeName))return r;r=r.parentNode}return r},q=function(c,f,u){void 0===u&&(u={});var e,t=c.selection.getRng(!0),m="LI",n=E.getClosestListRootElm(c,c.selection.getStart(!0)),g=c.dom;"false"!==g.getContentEditable(c.selection.getNode())&&("DL"===(f=f.toUpperCase())&&(m="DT"),e=b(t),v.each(function(n,e,o){for(var r,i=[],a=n.dom,t=j(n,e,!0,o),s=j(n,e,!1,o),d=[],l=t;l&&(d.push(l),l!==s);l=l.nextSibling);return v.each(d,function(e){if(y(n,e))return i.push(e),void(r=null);if(a.isBlock(e)||C(e))return C(e)&&a.remove(e),void(r=null);var t=e.nextSibling;p.isBookmarkNode(e)&&(y(n,t)||!t&&e.parentNode===o)?r=null:(r||(r=a.create("p"),e.parentNode.insertBefore(r,e),i.push(r)),r.appendChild(e))}),i}(c,t,n),function(e){var t,n,o,r,i,a,s,d,l;(n=e.previousSibling)&&h(n)&&n.nodeName===f&&(o=n,r=u,i=g.getStyle(o,"list-style-type"),a=r?r["list-style-type"]:"",i===(a=null===a?"":a))?(t=n,e=g.rename(e,m),n.appendChild(e)):(t=g.create(f),e.parentNode.insertBefore(t,e),t.appendChild(e),e=g.rename(e,m)),s=g,d=e,l=["margin","margin-right","margin-bottom","margin-left","margin-top","padding","padding-right","padding-bottom","padding-left","padding-top"],v.each(l,function(e){return s.setStyle(d,((t={})[e]="",t));var t}),W(g,t,u),z(c.dom,t)}),c.selection.setRng(D(e)))},F=function(o){var e=b(o.selection.getRng(!0)),r=E.getClosestListRootElm(o,o.selection.getStart(!0)),t=E.getSelectedListItems(o),n=v.grep(t,function(e){return o.dom.isEmpty(e)});t=v.grep(t,function(e){return!o.dom.isEmpty(e)}),v.each(n,function(e){m(o.dom,e)&&w(o,e)}),v.each(t,function(e){var t,n;if(e.parentNode!==o.getBody()){for(t=e;t&&t!==r;t=t.parentNode)h(t)&&(n=t);M(o,n,e),I(o.dom,n.parentNode)}}),o.selection.setRng(D(e))},V=function(e,t,n){return d=n,(s=t)&&d&&h(s)&&s.nodeName===d.nodeName&&(i=t,a=n,(r=e).getStyle(i,"list-style-type",!0)===r.getStyle(a,"list-style-type",!0))&&(o=n,t.className===o.className);var o,r,i,a,s,d},z=function(e,t){var n,o;if(n=t.nextSibling,V(e,t,n)){for(;o=n.firstChild;)t.appendChild(o);e.remove(n)}if(n=t.previousSibling,V(e,t,n)){for(;o=n.lastChild;)t.insertBefore(o,t.firstChild);e.remove(n)}},G=function(t,e,n,o,r){if(e.nodeName!==o||J(r)){var i=b(t.selection.getRng(!0));v.each([e].concat(n),function(e){!function(e,t,n,o){if(t.nodeName!==n){var r=e.rename(t,n);W(e,r,o)}else W(e,t,o)}(t.dom,e,o,r)}),t.selection.setRng(D(i))}else F(t)},J=function(e){return"list-style-type"in e},X={toggleList:function(e,t,n){var o=E.getParentList(e),r=E.getSelectedSubLists(e);n=n||{},o&&0<r.length?G(e,o,r,t,n):function(e,t,n,o){if(t!==e.getBody())if(t)if(t.nodeName!==n||J(o)){var r=b(e.selection.getRng(!0));W(e.dom,t,o),z(e.dom,e.dom.rename(t,n)),e.selection.setRng(D(r))}else F(e);else q(e,n,o)}(e,o,t,n)},removeList:F,mergeWithAdjacentLists:z},Y=function(e,t,n,o){var r,i,a=t.startContainer,s=t.startOffset;if(3===a.nodeType&&(n?s<a.data.length:0<s))return a;for(r=e.schema.getNonEmptyElements(),1===a.nodeType&&(a=d.getNode(a,s)),i=new l(a,o),n&&u(e.dom,a)&&i.next();a=i[n?"next":"prev2"]();){if("LI"===a.nodeName&&!a.hasChildNodes())return a;if(r[a.nodeName])return a;if(3===a.nodeType&&0<a.data.length)return a}},Z=function(e,t){var n=t.childNodes;return 1===n.length&&!h(n[0])&&e.isBlock(n[0])},ee=function(e,t,n){var o,r,i,a;if(r=Z(e,n)?n.firstChild:n,Z(i=e,a=t)&&i.remove(a.firstChild,!0),!m(e,t,!0))for(;o=t.firstChild;)r.appendChild(o)},te=function(e,t,n){var o,r,i=t.parentNode;g(e,t)&&g(e,n)&&(h(n.lastChild)&&(r=n.lastChild),i===n.lastChild&&C(i.previousSibling)&&e.remove(i.previousSibling),(o=n.lastChild)&&C(o)&&t.hasChildNodes()&&e.remove(o),m(e,n,!0)&&e.$(n).empty(),ee(e,t,n),r&&n.appendChild(r),e.remove(t),m(e,i)&&i!==e.getRoot()&&e.remove(i))},ne=function(e,t,n,o){var r,i,a,s=e.dom;if(s.isEmpty(o))i=n,a=o,(r=e).dom.$(a).empty(),te(r.dom,i,a),r.selection.setCursorLocation(a);else{var d=b(t);te(s,n,o),e.selection.setRng(D(d))}},oe=function(e,t){var n,o,r,i=e.dom,a=e.selection,s=a.getStart(),d=E.getClosestListRootElm(e,s),l=i.getParent(a.getStart(),"LI",d);if(l){if((n=l.parentNode)===e.getBody()&&m(i,n))return!0;if(o=L(a.getRng(!0)),(r=i.getParent(Y(e,o,t,d),"LI",d))&&r!==l)return t?ne(e,o,r,l):function(e,t,n,o){var r=b(t);te(e.dom,n,o);var i=D(r);e.selection.setRng(i)}(e,o,l,r),!0;if(!r&&!t&&X.removeList(e))return!0}return!1},re=function(e,t){return oe(e,t)||function(r,i){var a=r.dom,e=r.selection.getStart(),s=E.getClosestListRootElm(r,e),d=a.getParent(e,a.isBlock,s);if(d&&a.isEmpty(d)){var t=L(r.selection.getRng(!0)),l=a.getParent(Y(r,t,i,s),"LI",s);if(l)return r.undoManager.transact(function(){var e,t,n,o;t=d,n=s,o=(e=a).getParent(t.parentNode,e.isBlock,n),e.remove(t),o&&e.isEmpty(o)&&e.remove(o),X.mergeWithAdjacentLists(a,l.parentNode),r.selection.select(l,!0),r.selection.collapse(i)}),!0}return!1}(e,t)},ie=function(e,t){return e.selection.isCollapsed()?re(e,t):(o=(n=e).selection.getStart(),r=E.getClosestListRootElm(n,o),!!(n.dom.getParent(o,"LI,DT,DD",r)||0<E.getSelectedListItems(n).length)&&(n.undoManager.transact(function(){n.execCommand("Delete"),I(n.dom,n.getBody())}),!0));var n,o,r},ae=function(t){t.on("keydown",function(e){e.keyCode===n.BACKSPACE?ie(t,!1)&&e.preventDefault():e.keyCode===n.DELETE&&ie(t,!0)&&e.preventDefault()})},se=ie,de=function(t){return{backspaceDelete:function(e){se(t,e)}}},le=t.DOM,ce=function(e,t){var n;if(h(e)){for(;n=e.firstChild;)t.appendChild(n);le.remove(e)}},fe=function(e){var t,n,o,r,i=E.getSelectedListItems(e);if(i.length){for(var a=b(e.selection.getRng(!0)),s=0;s<i.length&&(t=i[s],r=o=n=void 0,("DT"===t.nodeName?(le.rename(t,"DD"),1):(n=t.previousSibling)&&h(n)?(n.appendChild(t),1):n&&"LI"===n.nodeName&&h(n.lastChild)?(n.lastChild.appendChild(t),ce(t.lastChild,n.lastChild),1):(n=t.nextSibling)&&h(n)?(n.insertBefore(t,n.firstChild),1):(n=t.previousSibling)&&"LI"===n.nodeName&&(o=le.create(t.parentNode.nodeName),(r=le.getStyle(t.parentNode,"listStyleType"))&&le.setStyle(o,"listStyleType",r),n.appendChild(o),o.appendChild(t),ce(t.lastChild,o),1))||0!==s);s++);return e.selection.setRng(D(a)),e.nodeChanged(),!0}},ue=function(t,n){return function(){var e=t.dom.getParent(t.selection.getStart(),"UL,OL,DL");return e&&e.nodeName===n}},me=function(o){o.on("BeforeExecCommand",function(e){var t,n=e.command.toLowerCase();if("indent"===n?fe(o)&&(t=!0):"outdent"===n&&K(o)&&(t=!0),t)return o.fire("ExecCommand",{command:e.command}),e.preventDefault(),!0}),o.addCommand("InsertUnorderedList",function(e,t){X.toggleList(o,"UL",t)}),o.addCommand("InsertOrderedList",function(e,t){X.toggleList(o,"OL",t)}),o.addCommand("InsertDefinitionList",function(e,t){X.toggleList(o,"DL",t)}),o.addQueryStateHandler("InsertUnorderedList",ue(o,"UL")),o.addQueryStateHandler("InsertOrderedList",ue(o,"OL")),o.addQueryStateHandler("InsertDefinitionList",ue(o,"DL"))},ge=function(e){return e.getParam("lists_indent_on_tab",!0)},pe=function(e){var t;ge(e)&&(t=e).on("keydown",function(e){e.keyCode!==n.TAB||n.metaKeyPressed(e)||t.dom.getParent(t.selection.getStart(),"LI,DT,DD")&&(e.preventDefault(),e.shiftKey?K(t):fe(t))}),ae(e)},ve=function(t,i){return function(e){var r=e.control;t.on("NodeChange",function(e){var t=function(e,t){for(var n=0;n<e.length;n++)if(t(e[n]))return n;return-1}(e.parents,a),n=-1!==t?e.parents.slice(0,t):e.parents,o=v.grep(n,h);r.active(0<o.length&&o[0].nodeName===i)})}},he=function(e){var t,n,o,r;n="advlist",o=(t=e).settings.plugins?t.settings.plugins:"",-1===v.inArray(o.split(/[ ,]/),n)&&(e.addButton("numlist",{active:!1,title:"Numbered list",cmd:"InsertOrderedList",onPostRender:ve(e,"OL")}),e.addButton("bullist",{active:!1,title:"Bullet list",cmd:"InsertUnorderedList",onPostRender:ve(e,"UL")})),e.addButton("indent",{icon:"indent",title:"Increase indent",cmd:"Indent",onPostRender:(r=e,function(e){var n=e.control;r.on("nodechange",function(){var e=E.getSelectedListItems(r),t=0<e.length&&s(e[0]);n.disabled(t)})})})};e.add("lists",function(e){return pe(e),he(e),me(e),de(e)})}();
\ No newline at end of file
...@@ -216,3 +216,10 @@ function init_biuro_theme() { ...@@ -216,3 +216,10 @@ function init_biuro_theme() {
pll_register_string('biuro-job-search', 'Job search', 'Biuro'); pll_register_string('biuro-job-search', 'Job search', 'Biuro');
} }
add_action('init', 'init_biuro_theme'); add_action('init', 'init_biuro_theme');
$l = get_nav_menu_locations();
$m = $l ? wp_get_nav_menu_object( $l[ 'main-menu' ] ) : null;
$items = $m ? wp_get_nav_menu_items( $m->term_id, array( 'order' => 'DESC' ) ) : array();
$searchPageURL = $items[0] ? $items[0]->url : '/';
...@@ -36,8 +36,6 @@ ...@@ -36,8 +36,6 @@
</symbol> </symbol>
</svg> </svg>
<div id="main" class="main"> <div id="main" class="main">
<div id="top"> <div id="top">
...@@ -51,13 +49,13 @@ ...@@ -51,13 +49,13 @@
</div> </div>
<div id="topsearch"> <div id="topsearch">
<form role="form" id="top-search-form" action="/darbo-pasiulymai/" method="get" enctype="application/x-www-form-urlencoded"> <?php
<label for="search"><?php pll_e('Job search'); ?></label> global $searchPageURL;
<div id="search-input-block">
<input type="text" name="search" id="search" value="" class="input text nolabel" /> if ( get_permalink() != $searchPageURL ):
<input aria-label="Ieškoti" type="submit" id="filter-action" name="action_results" value="" class="submit action" /> get_search_form();
</div> endif;
</form> ?>
</div> </div>
<?php <?php
......
...@@ -19,9 +19,6 @@ get_header(); ?> ...@@ -19,9 +19,6 @@ get_header(); ?>
<?php <?php
// Use for search
// https://pods.io/docs/code/pods/find/
while ( have_posts() ) : while ( have_posts() ) :
the_post(); the_post();
......
<?php
/**
* Template Name: Search Page
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Biuro
* @since 1.0
* @version 1.0
*/
?>
<?php
get_header();
$search = get_query_var('search');
$cityID = get_query_var('city');
$periodID = get_query_var('period');
$fieldID = get_query_var('field');
$typeID = get_query_var('type');
// function print()
// $cities = get_terms( 'city', array(
// 'hide_empty' => false,
// ));
// debug($cityID)
// if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
// echo '<ul>';
// foreach ( $terms as $term ) {
// echo '<li>' . $term->name . '</li>';
// }
// echo '</ul>';
// }
?>
<form id="filter-form" action="<?php echo esc_url( $searchPageURL ); ?>" method="get" enctype="application/x-www-form-urlencoded">
<ul class="search_box">
<li>
<label for="label">Paieška:</label>
<div id="search-input-block">
<input type="text" name="search" id="search" value="<?php echo $search; ?>" class="input text nolabel" />
<button aria-label="Ieškoti" type="submit" id="filter-action" class="submit action" ></button>
</div>
<a href="/darbo-pasiulymai/#" id="filter-expand" class="url close">Išplėstinė paieška</a></li>
<li class="filter-additional">
<label for="city">Miestas:</label>
<select name="city" id="city" class="el_130">
<option value="">Visi miestai</option>
<?php
$cities = get_terms( 'city', array(
'hide_empty' => false,
));
if ( ! empty( $cities ) && ! is_wp_error( $cities ) ):
foreach ( $cities as $city ):
$name = $city->name;
$termID = $city->term_id;
$selected = ($cityID == $termID) ? 'selected="selected"' : '';
?>
<option value="<?php echo $termID; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
<?php
endforeach;
endif;
?>
</select>
<label for="period" style="opacity: 0.45">Laikotarpis:</label>
<select name="period" id="period" class="el_130" style="opacity: 0.45">
<option value="">Nesvarbu</option>
<option value="1">Šiandienos</option>
<option value="7">Savaitės</option>
<option value="30">Mėnesio</option>
</select>
</li>
<li class="filter-additional">
<label for="field">Darbo sritis:</label>
<select name="field" id="field" class="el_130">
<option value="">Visos sritys</option>
<?php
$fields = get_terms( 'field', array(
'hide_empty' => false,
));
if ( ! empty( $fields ) && ! is_wp_error( $fields ) ):
foreach ( $fields as $field ):
$name = $field->name;
$termID = $field->term_id;
$selected = ($fieldID == $termID) ? 'selected="selected"' : '';
?>
<option value="<?php echo $termID; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
<?php
endforeach;
endif;
?>
</select>
<label for="type">Darbo rūšis:</label>
<select name="type" id="type" class="el_130">
<option value="">Visos rūšys</option>
<?php
$types = get_terms( 'type', array(
'hide_empty' => false,
));
if ( ! empty( $types ) && ! is_wp_error( $types ) ):
foreach ( $types as $type ):
$name = $type->name;
$termID = $type->term_id;
$selected = ($typeID == $termID) ? 'selected="selected"' : '';
?>
<option value="<?php echo $termID; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
<?php
endforeach;
endif;
?>
</select>
<input type="button" value="Ieškoti" name="find" id="find" class="filter-button">
<input type="button" value="Išvalyti" name="find" data-href="<?php echo esc_url( $searchPageURL ); ?>" id="reset-filter" class="filter-button">
</li>
</ul>
</form>
<?php
// Use for search
// https://pods.io/docs/code/pods/find/
$where = 't.post_title LIKE "%' . $search . '%"';
// 'where' => 't.post_title LIKE "%' . $keyword . '%" OR my_field.meta_value LIKE "%' . $keyword . '%"'
if ($cityID):
$where = $where . ' AND city.term_id = ' . $cityID;
endif;
if ($fieldID):
$where = $where . ' AND field.term_id = ' . $fieldID;
endif;
if ($typeID):
$where = $where . ' AND type.term_id = ' . $typeID;
endif;
$params = array(
'where' => $where,
'limit' => -1
);
$jobs = pods( 'job', $params );
if ( 0 < $jobs->total() ):
$i = 0;
?>
<table cellspacing="0" cellpadding="0" class="advert_table">
<tr>
<th>Pozicija </th>
<th>Vietovė</th>
<th>Data</th>
<th>Rūšis</th>
</tr>
<?php
while ( $jobs->fetch() ) :
$i++;
?>
<tr <?php if ( $i % 2 == 0 ) { echo 'class="bg"'; } ?>>
<td>
<a href="<?php echo get_post_permalink( $jobs->display( 'ID' ) ); ?>" target="_blank" title="<?php echo $jobs->display( 'name' ); ?>">
<strong><?php echo $jobs->display( 'name' ); ?></strong>
</a>
</td>
<td>
<span style="opacity: 0.25;">Šiauliai</span>
</td>
<td>
<span style="opacity: 0.25;">Paskelbta: 2018 11 30 <br> Galioja iki: 2018 12 28</span>
</td>
<td>
<span style="opacity: 0.25;">Nuolatinis darbas</span>
</td>
</tr>
<?php
endwhile;
?>
</table>
<?php
endif;
?>
<?php get_footer();
<?php
/**
* Template for displaying search form in Biuro
*
* @package WordPress
* @subpackage Biuro
* @since 1.0
* @version 1.0
*/
global $searchPageURL
?>
<form role="search" id="top-search-form" action="<?php echo esc_url( $searchPageURL ); ?>" method="get">
<label for="search"><?php pll_e('Job search'); ?></label>
<div id="search-input-block">
<input type="text" name="search" id="search" value="" class="input text nolabel" />
<button aria-label="Ieškoti" type="submit" id="filter-action" class="submit action" ></button>
</div>
</form>
...@@ -28,8 +28,6 @@ get_header('job'); ?> ...@@ -28,8 +28,6 @@ get_header('job'); ?>
<p>BIURO - padedame, kai labiausiai reikia. Paprastas ir greitas laikinasis įdarbinimas.</p> <p>BIURO - padedame, kai labiausiai reikia. Paprastas ir greitas laikinasis įdarbinimas.</p>
</div><!-- .biuro-header --> </div><!-- .biuro-header -->
<?php <?php
while ( have_posts() ) : while ( have_posts() ) :
?> ?>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment