:root {
	/* Variables */
  /* Colours */
	/* Named colours */
	/* Pandammonium purple */
	--colour-pandammonium: hsla(267, 42%, 49%, 1.0);
	--colour-pandammonium-alpha: hsla(267, 42%, 49%, 0.5);
	--colour-pandammonium-light: hsla(267, 100%, 94%, 1.0);
	--colour-pandammonium-dark: hsla(267, 8%, 24%, 1.0);
	--colour-pandammonium-shadow: hsla(267, 100%, 80%, 1.0);
	/* Cow parsley */
	--colour-cowparsley-leaf: hsla(84, 44%, 37%, 1.0);
	--colour-cowparsley-leaf-light: hsla(84, 100%, 94%, 1.0);
	--colour-cowparsley-leaf-dark: hsla(84, 8%, 24%, 1.0);
	--colour-cowparsley-sky: hsla(200, 68%, 83%, 1.0);
	--colour-cowparsley-sky-alpha: hsla(200, 68%, 83%, 0.5);
	--colour-cow-parsley-flower: hsla(180, 51%, 98%, 1.0);
	--colour-cow-parsley-flower-alpha: hsla(180, 51%, 98%, 0.5);
	/* Background colours */
  --colour-background-primary: var(--colour-cowparsley-sky);
  --colour-background-primary-alpha: var(--colour-cowparsley-sky-alpha);
  --colour-background-secondary: var(--colour-cow-parsley-flower);
  --colour-background-secondary-alpha: var(--colour-cow-parsley-flower-alpha);
	--colour-background-embed: hsla(115, 100%, 100%, 1.0);
	/* Foreground colours */
  --colour-foreground: var(--colour-pandammonium-dark);
  --colour-foreground-shadow: var(--colour-pandammonium-shadow);
	/* Highlight colours */
  --colour-highlight-primary: var(--colour-pandammonium);
  --colour-highlight-primary-light: var(--colour-pandammonium-light);
  --colour-highlight-primary-alpha: var(--colour-pandammonium-alpha);
  --colour-highlight-secondary: var(--colour-cowparsley-leaf);
  --colour-highlight-secondary-alpha: var(--colour-cowparsley-leaf-alpha);
  --colour-highlight-secondary-light: var(--colour-cowparsley-leaf-light);
  --colour-highlight-secondary-dark: var(--colour-bamboo-shadow);
	/* Messages */
	--colour-msg-info: hsla(200, 84%, 20%, 1.0);
	--colour-msg-success: var(--colour-highlight-secondary);
	--colour-msg-warning: hsla(90, 84%, 20%, 1.0);
	--colour-msg-error: hsla(0, 84%, 20%, 1.0);
	/* Change log */
  --colour-changelog-added: hsla(239, 84%, 20%, 1.0);
  --colour-changelog-fixed: var(--colour-highlight-secondary-dark);
  --colour-changelog-removed: hsla(360, 884%, 20%, 1.0);
  --colour-changelog-tested: hsla(239, 84%, 20%, 1.0);
  --colour-changelog-changed: hsla(296, 84%, 20%, 1.0);
	/* Code */
  --colour-code-generic: var(--colour-highlight-primary);
	--colour-code-cmd: hsla(223, 44%, 37%, 1.0);
  --colour-code-css: hsla(305, 44%, 37%, 1.0);
  --colour-code-html: hsla(286, 44%, 37%, 1.0);
  --colour-code-javascript: var(--colour-changelog-tested);
  --colour-code-latex: hsla(40, 44%, 37%, 1.0);
  --colour-code-latex-alpha: hsla(40, 44%, 37%, 0.25);
  --colour-code-php: hsla(156, 42%, 49%, 1.0);
  --colour-code-shortcode: hsla(28, 44%, 37%, 1.0);
  --colour-filename: var(--colour-highlight-secondary-dark);
  --colour-filepath: var(--colour-filename);
  --colour-filecontents: var(--colour-filename);
	--colour-note: var(--colour-highlight-primary);
  /* End of colours */
  /* Punctuation */
  --quotes-pattern: '\2018' '\2019' '\201C' '\201D' '\2018' '\2019';
  /* End of punctuation */
	--font-family-default: "helvetica neue", helvetica, "sans serif";
	--font-family-monospace: menlo, consolas, courier, monospace;
	--border-radius-default: 5px;
	--border-radius-tables: 0px;
	--indent-default-positive: 3ch;
	--indent-default-negative: -3ch;
	--indent-list-positive: 1.5ch;
	--indent-list-negative: -1.5ch;
	/* Third party */
	--colour-background-google-ngram: var(--colour-background-embed);
	/* End of variables */
}
* {
  border-radius: var(--border-radius-default);
}
/* WordPress and theme overrides */
body {
  background-color: var(--colour-background-primary);
  color: var(--colour-foreground);
  font-family: var(--font-family-default);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  hyphens: auto;
  line-height: 1.7;
  overflow-wrap: break-word;
  quotes: var(--quotes-pattern);
  scroll-behavior: smooth;
  word-break: keep-all;
}
article.post img.featured-img,
article.page img.featured-img,
article .related-posts .crp_thumb,
.listing-item img.wp-post-image {
	background-color: var(--colour-background-secondary-alpha);
/*   background: 
    radial-gradient(
      ellipse at center,
      var(--colour-highlight-primary-alpha),
      transparent 70%
    )
    var(--colour-background-primary-alpha); */
  border-radius: var(--border-radius-default);
  box-shadow:
		inset 0ch 0ch 0.5ch 0.5ch var(--colour-background-secondary-alpha);
}
.listing-item code,
.listing item span {
  background-color: var(--colour-background-primary);
}
article.post h1.entry-title {
  font-size: 2.0rem;
}
article.post h2,
h2.comments-title,
h3.comment-reply-title {
  font-size: 1.8rem;
}
article.post h3 {
  font-size: 1.6rem;
}
article.post h4 {
  font-size: 1.4rem;
}
article.post h5 {
  font-size: 1.2rem;
}
article.post h6 {
  font-size: 1.0rem;
}
dfn {
	font-style: normal;
}
i.words[data-lang] {
	position: relative;
}
i.words[data-lang]:hover::after {
	background-color: var(--colour-background-secondary);
	border: 1px solid var(--colour-msg-info);
	border-radius: var(--border-radius-default);
	color: var(--colour-msg-info);
	content: attr(data-lang);
	font-style: normal;
	padding: 0 0.5ch;
	position: absolute;
	top: -0.5ch;
	z-index: 1000;
}
ul,
ol,
dl {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 0;
}
article ul:not(ul.tml-errors) {
  padding-left: 0;
  text-indent: 0;
}
/* ul {
  padding-left: var(--indent-list-positive);
  text-indent: var(--indent-list-negative);
} */
ol ol {
  list-style-type: lower-alpha;
  padding-left: --indent-default-positive;
}
.widget ul li a {
  display: unset;
}
.widget ul {
  padding-left: 0px;
}
figure.iframe {
  margin: auto;
  width: 100%;
}
iframe {
  border-style: none;
  margin: auto;
  width: 100%;
}
table {
  border-collapse: collapse;
  margin: auto;
  table-layout: fixed;
  width: 90%;
}
table th,
table td,
table tr,
table {
  background-color: inherit;
  border-radius: var(--border-radius-tables);
  border-style: none;
  caption-side: bottom;
  color: inherit;
  empty-cells: show;
  hyphens: auto;
  margin: 0px auto;
  overflow-x: scroll;
  overflow-inline: scroll;
  overflow-wrap: break-word;
  padding: auto 5px;
  white-space: break-spaces;
  word-break: keep-all;
}
th {
  font-weight: 450;
}
td ul {
  margin-left: 1em;
}
input[type="checkbox"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="radio"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus, textarea:focus {
  border-color: var(--colour-foreground);
  box-shadow: 0 0 0 1px var(--colour-foreground-shadow);
}
figure img {
  border-style: none;
}
figure.wp-caption.alignleft {
  padding-right: 0.5rem;
}
figure.wp-caption.alignright {
  padding-left: 0.5rem;
}
figcaption,
table caption {
  background-color: transparent;
  color: var(--colour-highlight-primary);
  font-size: 1.1rem;
  text-align: center;
}
aside#secondary.widget-area section.widget.widget_categories ul {
  list-style-type: none;
  margin-left: 1.5em;
}
div.entry-content>aside,
aside.info {
	background-color: initial;
  border: solid 3px var(--colour-highlight-primary);
  box-shadow:
		inset 0ch 0 3ch 0 var(--colour-highlight-primary-alpha);
	color: var(--colour-msg-info);
	font-size: smaller;
  margin: 0.25ch 1ch;
  width: 33.333%;
}
div.entry-content>aside.alignleft,
aside.info.alignleft {
  border-bottom: none;
  border-left: none;
  border-top: none;
  margin-left: 0px;
  padding-left: 0.5ch;
  padding-right: 0.5ch;
}
div.entry-content>aside.alignright,
aside.info.alignright {
  border-bottom: none;
  border-right: none;
  border-top: none;
  margin-right: 0px;
  padding-left: 0.5ch;
  padding-right: 0.5ch;
}
.entry-meta .posted-on::before {
	content: '\E075';
}
.small {
  font-size: smaller;
}
.breadcrumb::before {
	font-family: 'simple-line-icons';
	content: '\E042';
	margin-right: 1ch;
}
/* Comments */
div.comments-area {
  font-family: inherit;
  line-height: 1.75;
}
div.comments-area ol.comment-list .comment {
  margin: 0px -1ch;
  padding: 0px 1ch;
}
div.comments-area ol li.comment article.comment-body footer.comment-meta {
  padding: 0px;
}
div.comments-area ol.comment-list {
  margin-top: 0.75rem;
}
/* div.comments-area ol.comment-list>li.comment, */
.stand-first {
  border-bottom: 1px dotted hsla(267, 8%, 24%, 0.5);
}
div.comments-area ol li.comment article.comment-body div.comment-content {
  padding: 0px;
}
div.comments-area ol li.comment article.comment-body div.comment-content p {
  margin: 0px;
}
div.comments-area ol li.comment article.comment-body div.reply {
  margin: 0px;
}
div.comments-area ol li.comment article.comment-body div.reply::before {
  font-family: 'simple-line-icons';
  font-size: 1rem;
  content: '\E04A\00A0';
  margin: 0px;
}
div.comments-area ol.comment-list {
	position: relative;
}
div.comments-area ol.comment-list .children::before {
  font-family: 'simple-line-icons';
  content: '\E051';
  -webkit-transform: 
		rotate(-90deg) 
		scale(2,1) 
		skew(0deg)
		translate(0px);
  -moz-transform: 
		rotate(-90deg) 
		scale(2,1) 
		skew(0deg)
		translate(0px);
  -o-transform: 
		rotate(-90deg) 
		scale(2,1) 
		skew(0deg)
		translate(0px);
  -ms-transform: 
		rotate(-90deg) 
		scale(2,1) 
		skew(0deg)
		translate(0px);
  transform:
		rotate(-90deg) 
		scale(1) 
		skew(0deg)
		translate(0px);
	font-weight: lighter;
  left: -3ch;
  position: absolute;
  top: -1.75ch;
}
li.comment.thread-even {
  background-color: hsla(84, 100%, 94%, 0.1);
  color: inherit;
}
li.comment.thread-odd {
  background-color: hsla(268, 100%, 94%, 0.2);
  color: inherit;
}
.comment-meta .comment-author::before {
  font-family: 'simple-line-icons';
  content: '\e005';
  margin-right: 0.5ch;
}
/* End of comments */
.wp-embedded-content 
{
  height: 165px;
  width: 100%;
}
/* End of WordPress and theme overrides */

/* Jetpack overrides */
/* Swiper (slideshows) */
ul.wp-block-jetpack-slideshow_swiper-wrapper {
  height: 100% !important;
}
/* End of swiper (slideshows) */
/* End of Jetpack overrides */

/* Display Posts plug-in overrides */
div.post-display.image-left div.listing-item {
  overflow: hidden; 
  margin-bottom: 32px;
  width: 100%;
}
div.post-display.image-left .image {
  float: left;
  margin: 0 8px 0 0;
}
div.post-display.image-left .title {
  display: block;
}
div.post-display.image-left .excerpt-dash { 
  display: none; 
}
/* End of Display Posts plug-in overrides */

/* Style Shortcodes widget */
ul.su-feed.panda-polish {    
  list-style: none;
}
p.panda-polish::before {
  background-image: url('/wp-content/uploads/2020/12/pandammonium-005-head-bw-260x260-1-30x30.png');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: fit;
  content: '';
/*   content: 'PandaPolish your publicity with Pandammonium – ' 'latest posts'; */
  padding-left: 35px;
}
ul.su-feed.panda-polish > li {
  background-image: url('/wp-content/uploads/2020/12/pandammonium-005-head-bw-260x260-1-25x25.png');
  background-position: left top;
  background-repeat: no-repeat;
  background-size: fit;
  list-style: none;
  padding-left: 30px;
}
/* End of style Shortcodes widget */

/* Theme my Login plug-in overrides */
button.tml-button {
  background-color: var(--colour-highlight-primary) !important;
  border: 1px solid var(--colour-highlight-primary) !important;
  color: var(--colour-highlight-primary-light) !important;
}
button.tml-button:hover,
button.tml-button:focus,
button.tml-button:active {
  background-color: var(--colour-highlight-secondary) !important;
  border: 1px solid var(--colour-highlight-secondary) !important;
  color: var(--colour-highlight-secondary-light) !important;
}
footer button.tml-button {
  background-color: var(--colour-highlight-primary-light);
  border: 1px solid var(--colour-highlight-primary-light);
  color: var(--colour-highlight-primary);
}
footer .widget button.tml-button:hover,
footer .widget button.tml-button:focus,
footer .widget button.tml-button:active {
  background-color: var(--colour-highlight-secondary-light);
  border: 1px solid var(--colour-highlight-secondary-light);
  color: var(--colour-highlight-secondary);
}
footer .widget label.tml-label {
  background-color: inherit;
  color: var(--colour-foreground-primary);
}
.tml .tml-action-confirmaction .success,
.tml .tml-error,
.tml .tml-message,
.tml .tml-success {
	background-color: inherit;
	border-left: 1ch var(--colour-highlight-primary) solid;
  box-shadow:
		inset 0ch 0 1ch 0 var(--colour-highlight-primary-alpha);
	padding-left: 2ch;
}
.tml .tml-error {
	color: var(--colour-msg-error);
}
.tml .tml-message {
	color: var(--colour-msg-info);
}
.tml .tml-success {
	color: var(--colour-msg-success);
}
/* End of Theme my Login plug-in overrides */

/* Widget lists:
 *   Category list widget overrides
 *   Easy Table of Contents plug-in overrides (see also theme overrides) 
 */
p.ez-toc-title {
  background-color: inherit;
  color: var(--colour-highlight-secondary);
  font-size: 1.65rem;
  margin-bottom: 0ex;
}
aside#secondary.widget-area section.widget.widget_categories ul,
#ez-toc-container nav ul.ez-toc-list,
.ez-toc-widget-container nav ul.ez-toc-list {
  list-style-type: none;
  margin-left: 0em;
}
aside#secondary.widget-area section.widget.widget_categories ul.children,
#ez-toc-container nav ul,
.ez-toc-widget-container nav ul {
  list-style-type: none;
  margin-left: 1.5em;
}
#ez-toc-container::before {
  content: '\2029'; /* paragraph separator */
}
#ez-toc-container::after {
  content: '\2029'; /* paragraph separator */
}
/* End of widget lists:
 *    Category list widget overrides
 *   Easy Table of Contents plug-in overrides 
 */

/* Related Posts plugin overrides */
.crp_title {
	display: initial !important;
}
.crp_related ul li {
  text-align: center;
  word-break: inherit;
}
.crp_related img {
  border-style: none;
  outline-style: none;
}
/* End of Related Posts plugin overrides */

/* Blipper Widget overrides */
/* Fix this so it doesn't need overriding! */
section#blipper_widget-10 img {
  border-style: none;
  outline-style: none;
}
/* End of Blipper Widget overrides */

/* Pandammonium */
.stand-first {
  /* See also comment section (for border style) */
  font-size: larger;
}
.referrals::after {
  background-color: inherit;
  color: var(--colour-highlight-secondary);
  content: '£';
  font-size: 0.5rem;
  vertical-align: super;
}
/* Tables */
/* Key-value table:
 * two key columns
 * one value column 
 */
table.key-value {
  border-bottom: 2px var(--colour-highlight-primary) solid;
  border-top: 2px var(--colour-highlight-primary) solid;
  width: 100%;
}
table.key-value tr {
  border-top: 1px var(--colour-highlight-primary) solid;
  border-radius: var(--border-radius-tables);
  vertical-align: top;
}
table.key-value tr.example {
  vertical-align: middle;
}
table.key-value tr.example td blockquote,
table.key-value tr.example td p,
table.key-value tr.example td pre {
  margin: auto;
}
table.key-value col.key,
table.key-value thead {
  background-color: hsla(200, 68%, 73%, 0.125);
  width: 12%;
}
table.key-value col.key {
  background-color: hsla(200, 68%, 73%, 0.125);
}
table.key-value col.value {
  background-color: hsla(267, 42%, 49%, 0.125);
}
/* End of key-value table */
/* Style-sheet tables */
table.style-sheet thead tr {
  border-bottom: 2px var(--colour-highlight-primary) solid;
}

table.style-sheet tr.example,
table.style-sheet tr.example td {  
  background-color: hsla(184, 100%, 94%, 0.25);
}
table.style-sheet tr.example {
  border-top-style: none;
}
/* End of style sheet tables */
/* End of tables */
.ungrammatical::before,
.ill-formed::before,
.marked::before {
  background-color: inherit;
  color: inherit;
  content: '\2217';
  vertical-align: super;
}
.ungrammatical::before {
  background-color: inherit;
  color: var(--colour-highlight-primary);
}
.ill-formed::before {
  color: var(--colour-highlight-secondary);
}
.marked::before {
  color: inherit;
}
/* Computer emulation */
pre,
kbd,
samp,
tt,
code,
.filename,
.filepath,
.search-terms,
span.latex {
  font-family: var(--font-family-monospace);
  font-size: inherit;
  hyphens: none;
  line-height: inherit;
  overflow: auto;
  white-space: pre-wrap;
}
pre {
  background-color: var(--colour-background-secondary-alpha);
	tab-size: 2;
}
pre>kbd {
  overflow: scroll;
  white-space: nowrap;
}
pre>samp {
  overflow: auto;
  white-space: pre-wrap;
}
pre>code {
  overflow: auto;
  white-space: pre-wrap;
}
kbd.key,
kbd>kbd>samp.menu {
  border: 1.5px solid var(--colour-foreground);
  color: inherit;
  font-family: initial;
  margin: 0px 4px;
  padding: 0px 5px;
  white-space: nowrap;
}
kbd.key {
  background-color: --colour-background-secondary-alpha;
  box-shadow:
		0px 2px 0px 1px var(--colour-foreground-shadow),
		0px 2px 0px 2px var(--colour-foreground);
}
pre>kbd.cmd::before {
  background-color: inherit;
  color: var(--colour-highlight-secondary);
  content: '\0024\2001';
}
kbd>kbd>samp.menu {
  box-shadow:
		0px 0px 0px 2px var(--colour-foreground-shadow);
}
.file-contents {
  border: 1px solid var(--colour-highlight-secondary);
  white-space: pre-wrap;
}
.file-contents[data-filename],
code[data-lang],
[data-note] {
  display: grid;
  grid-auto-flow: row;
  grid-gap: 1.5ch;
}
.file-contents[data-filename]::before,
code[data-lang]::before,
[data-note]::before {
  background-color: var(--colour-background-secondary-alpha);
  border-color: inherit;
  border-style: solid;
	border-radius: var(--border-radius-default);
  border-width: 1px;
  padding: 0.25ch 1ch;
  text-align: center;
}
.file-contents[data-filename]::before {
  color: var(--colour-filename);
  content: attr(data-filename);
}
[data-note]::before {
	color: var(--colour-note);
  content: attr(data-note);
	font-family: var(--font-family-default);
}
pre>code[data-lang]::before {
  content: attr(data-lang);
}
.generic {
  background-color: initial;
  color: var(--colour-code-generic);
}
.cmd {
  background-color: initial;
  color: var(--colour-code-cmd);
}
.css {
  background-color: initial;
  color: var(--colour-code-css);
}
.filename {
  background-color: initial;
  color: var(--colour-filename);
}
.filepath {
  background-color: initial;
  color: var(--colour-filepath);
}
.html {
  background-color: initial;
  color: var(--colour-code-html);
}
.javascript,
.json {
  background-color: initial;
  color: var(--colour-code-javascript);
}
.latex {
  background-color: initial;
  color: var(--colour-code-latex);
}
.php {
  background-color: initial;
  color: var(--colour-code-php);
}
.search-terms::before,
.search-terms::after {
  font-family: initial;
}
.shortcode {
  background-color: initial;
  color: var(--colour-code-shortcode);
}
/* .info:not(samp) {
  background-color: initial;
  color: var(--colour-msg-info);
}
.warning:not(samp) {
  background-color: initial;
  color: var(--colour-msg-warning);
} */
.error:not(samp) {
  background-color: initial;
  color: var(--colour-msg-error);
}
.latex.output {
  background-color: var(--colour-code-latex-alpha);
  border: 1px inset var(--colour-code-latex);
  color: inherit;
  padding: 2ch 0ch;
}
/* End of computer emulation */
/* Quotations, citations and references */
.author {
  font-style: normal;  
}
.editor,
.editors {
  font-style: normal;
}
.editor-cite::after {
  content: '\0020\0028' 'ed.' '\0029';
}
.editors-cite::after {
  content: '\0020\0028' 'eds.' '\0029';
}
.book-title,
.book {
  font-style: italic;
}
.app-title,
.app,
.article-title,
.article,
.webpage-title,
.webpage,
.website-title,
.website,
q {
  font-style: normal;
}
.app-title::after,
.app::after {
  content: '\00A0' 'app';
}
.article-title::before,
.article::before {
  content: open-quote;
}
.article-title::after,
.article::after {
  content: close-quote;
}
q {
  quotes: var(--quotes-pattern);
}
blockquote {
  background-color: var(--colour-background-secondary-alpha);
  border: 1px solid var(--colour-highlight-primary);
  color: inherit;
  line-height: 2.0;
}
blockquote p {
  text-indent: var(--indent-default-positive);
}
blockquote p:first-child,
blockquote p.citation {
  text-indent: unset;
}
blockquote p.citation {
	background-color: transparent;
	color: var(--colour-msg-info);
	padding-top: 2ch;
}
blockquote p.citation::before {
  content: '\2015\00A0';
}
article ul.references {
  list-style-position: outside;
  list-style-type: none;
	margin-left: 0;
	padding-left: 0;
	text-indent: 0;
}
article ul.references li {
  padding-left: var(--indent-default-positive);
  text-indent: var(--indent-default-negative);
}
ol.references {
  list-style-position: inside;
  list-style-type: reference-numbers;
  margin-left: 0px;
}
/* End of quotations, citations and references */
/* Counters */
@counter-style reference-numbers {
  system: extends decimal;
  prefix: '\005B';
  suffix: '\005D\2003';
  speak-as: numbers;
}
/* article.page,
article.post {
  counter-reset: header2;
}
article.page h2,
article.post h2 {
  counter-reset: header3;
  counter-reset: figure;
  counter-reset: table;
}
article.page figcaption::before,
article.post figcaption::before {
  counter-increment: figure;
  content: 'Figure\00A0' counter(figure) ':\00A0';
}
article.page table>caption::before,
article.post table>caption::before {
  counter-increment: table;
  content: 'Table\00A0' counter(table) ':\00A0';
}
article.page h2::before,
article.post h2::before {
  counter-increment: header2;
  content: counter(header2) '.\00A0';
}
article.page h3::before,
article.post h3::before {
  counter-increment: header3;
  content: counter(header2) '.' counter(header3) '\00A0';
}
ul.ez-toc-list {
  counter-reset: toc2;
}
ul.ez-toc-list>li::before {
  counter-increment: toc2;
  content: counter(toc2) '.\00A0';
}
ul.ez-toc-list>li ul {
  counter-reset: toc3;
}
ul.ez-toc-list>li>ul>li::before {
  counter-increment: toc3;
  content: counter(toc2) '.' counter(toc3) '\00A0';
} */
/* End of counters */
/* h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
  background-color: inherit;
  color: hsla(201, 8%, 24%, 1.0);
} */
iframe.google-ngram {
	height: 250px;
  width: 100%;
}
figure.iframe.google-ngram {
	background-color: var(--colour-background-google-ngram);
	color: inherit;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
  text-align: center;
}
figure.iframe.google-ngram::after {
	background-color: ;
	border-radius: var(--border-radius-default);
  color: var(--colour-highlight-secondary);
  content: 'If you can\'t see the Ngram, either switch off your content blocker or click/tap on ' open-quote attr(data-search) close-quote ' in the caption.';
  font-size: smaller;
  font-style: italic;
	padding: 0.5ch;
}
figcaption.google-ngram::before {
  content: 'Google Ngram: ';
}
/* Change log */
ul.change-log {
  list-style: none;
}
ul.change-log li {
  padding-left: 11ch;
  text-indent: -11ch;
}
ul.change-log li[data-cl-date]::before {
  content: attr(data-cl-date) '\2003';
}
.fixed::before {
  background-color: inherit;
  color: var(--colour-changelog-fixed);
}
.added::before {
  background-color: inherit;
  color: var(  --colour-changelog-added);
}
.removed::before {
  background-color: inherit;
  color: var(  --colour-changelog-removed);
}
.tested::before {
  background-color: inherit;
  color: var(--colour-changelog-tested);
}
.changed::before {
  background-color: inherit;
  color: var(--colour-changelog-changed);
}
/* End of change log */
/* ul.flow {
  display: grid;
  grid-template-areas:
    "0123456789 abc def"
    "ghi jkl mno"
    "pqrs tuv wxyz"
    grid-template-columns: repeat(auto-fill, minmax(12ch, auto));
  grid-template-rows: 1.7rem 1.7rem;
/*   grid-template-rows: repeat(auto-fill, minmax(auto, auto)); */
/*   margin-left: 0.5ch; */
/* }
.section1 {
  grid-area: 0123456789;
}
.section2 {
  grid-area: abc;
}
.section3 {
  grid-area: def;
}
.section4 {
  grid-area: ghi;
}
.section5 {
  grid-area: jkl;
}
.section6 {
  grid-area: mno;
}
.section7 {
  grid-area: pqr;
}
.section8 {
  grid-area: stu;
}
.section9 {
  grid-area: vwxy;
}
ul.flow li {
  margin-left: 2ch;
} */
.hide {
  display: none;
}
/* End of Pandammonium */