body {
	background: var(--color-mg-background);
	color: var(--color-mg-text);
	margin: 0;
	padding: 0;
}

/*
# Naming convention for Themes SCSS variables and CSS custom properties

Pattern: `<component-name>__<property>--<state>`

`<component-name>` refers to the name of the component or element that
the custom property is associated with.

`<property>` refers to the CSS property being defined, such as
`color`, `background`, `fill`, etc.

`<state>` term refers to the different states or conditions that a component might be in,
such as `hover`, `active`, `disabled`, `focus`, `invalid`, `error`, `placeholder` etc.

For example, if we have a button component, we might define custom properties for its text color and background color,
like this:

```scss
// CSS
'primary-button__color'
'primary-button__background'

// SCSS
$color-primary-button__color
$color-primary-button__background
```

If we want to define a variation of the button that has a different background color when it's in a hovered state,
we can add the state to the custom property name:

```scss
// CSS
'primary-button__background--hover'

// SCSS
$color-primary-button__background--hover
```
*/
:root,
[data-color-mode=light][data-light-theme=light],
[data-color-mode=dark][data-dark-theme=light] {
	--color-mg-background: #f7f7f7;
	--color-mg-text: #434643;
	--color-mg-options-bar-button__background--hover: #e2edf9;
	--color-mg-options-bar-button__border--hover: #c0daf7;
	--color-mg-options-bar-button__border: #ccc;
	--color-mg-options-bar-button__color--hover: #3a7ac1;
	--color-mg-options-bar-button__color: #717171;
	--color-mg-markup__border: #ccc;
	--color-mg-icon-code__background--selection: #3a7ac1;
	--color-mg-icon-code__background: #000;
	--color-mg-icon-code__border: #000;
	--color-mg-icon-code__color--selection: #fff;
	--color-mg-icon-code__color: #fff;
	--color-mg-icon-font__color: #000;
	--color-mg-icon-grid__background: #5a9cd8;
	--color-mg-icon-name__color: #000;
	--color-mg-icon-svg__background--hover: #e2edf9;
	--color-mg-icon-svg__background: #434643;
	--color-mg-icon__background: #f7f7f7;
	--color-mg-icon__border: #ccc;
	--color-mg-container-aside__box-shadow: #ccc;
	--color-mg-container-main__background: #f7f7f7;
	--color-mg-container-sticky-bar__background: #f7f7f7;
	--color-mg-container-sticky-bar__border: #ccc;
	--color-mg-aside-ctrl__color--hover: #000;
	--color-mg-footer-copyright__color: #000;
	--color-mg-html__background: #f7f7f7;
	--color-mg-html__border: #ccc;
	--color-mg-navigation-item-border__background: #ccc;
	--color-mg-navigation-item-line__color: #000;
	--color-mg-navigation-icon__color: #5a9cd8;
	--color-mg-navigation-icon__color--active: #3a7ac1;
	--color-mg-navigation-item-current__backgound: #e2edf9;
	--color-mg-navigation-item-current__backgound--hover: #fff;
	--color-mg-navigation-item-current-before__backgound: #3a7ac1;
	--color-mg-navigation-item-current__color: #000;
	--color-mg-navigation-item-empty__color: #717171;
	--color-mg-navigation-indent__border: #c0daf7;
	--color-mg-navigation-searching-item-line__color: #717171;
	--color-mg-navigation-searching-icon__color: #717171;
	--color-mg-navigation-found-item-line__color: #000;
	--color-mg-navigation-relevant-item-line__color: #717171;
	--color-mg-navigation-relevant-item-line__color--hover: #000;
	--color-mg-navigation-relevant-item-line__color--active: #000;
	--color-mg-navigation-text__color--hover: #000;
	--color-mg-navigation-text__color--active: #000;
	--color-mg-search-input__color--placeholder: #717171;
	--color-mg-search-input__border: #c0daf7;
	--color-mg-search-input__background--focus: #f7f7f7;
	--color-mg-search-icon__color: #5a9cd8;
	--color-mg-search-icon-found__color: #0d3880;
	--color-mg-search-clear__color: #5a9cd8;
	--color-mg-search-icon-clear__color: #5a9cd8;
	--color-mg-search-icon-clear__color--hover: #5a9cd8;
	--color-mg-search-icon-clear__color--focus: #5a9cd8;
	--color-mg-search-icon-clear__color--active: #5a9cd8;
	--color-mg-color__background: #fff;
	--color-mg-color__border: #ccc;
	--color-mg-color-name__color: #000;
	--color-mg-color-code__color: #000;
	--color-mg-list-color-figure__border: #ccc;
	--color-mg-list-color-name__border: #f7f7f7;
	--color-mg-list-color-name__background: #e5e5e5;
	--color-mg-list-color-code__border: #c0daf7;
	--color-mg-list-color-code__background: #e2edf9;
	--color-mg-list-color-hex__border: #ddc0f7;
	--color-mg-list-color-hex__background: #efe2f9;
	--color-mg-typography-symbol__border: #ccc;
	--color-markdown-a__color: #3a7ac1;
	--color-markdown-a__outline--focus: #3a7ac1;
	--color-markdown-blockquote__border: #ccc;
	--color-markdown-blockquote__color: #434643;
	--color-markdown-body-heading__border: #ccc;
	--color-markdown-body__color--placeholder: #ccc;
	--color-markdown-code__background: #e5e5e5;
	--color-markdown-hr__background: #ccc;
	--color-markdown-hr__border: #ccc;
	--color-markdown-img__background: #fff;
	--color-markdown-input__outline--focus: #3a7ac1;
	--color-markdown-kbd__background: #ccc;
	--color-markdown-kbd__border: #434643;
	--color-markdown-kbd__box-shadow: #434643;
	--color-markdown-kbd__color: #333;
	--color-markdown-mark__background: #fff8c5;
	--color-markdown-mark__color: #333;
	--color-markdown-span__border: #ccc;
	--color-markdown-span__color: #333;
	--color-markdown-th-td_border: #ccc;
	--color-markdown-tr-2n__background: #f7f7f7;
	--color-markdown-tr__background: #fff;
	--color-markdown-tr__border: #ccc;
}

[data-color-mode=light][data-light-theme=dark],
[data-color-mode=dark][data-dark-theme=dark] {
	--color-mg-background: #22272e;
	--color-mg-text: #c5d1de;
	--color-mg-options-bar-button__background--hover: #e2edf9;
	--color-mg-options-bar-button__border--hover: #c0daf7;
	--color-mg-options-bar-button__border: #3a414a;
	--color-mg-options-bar-button__color--hover: #3a7ac1;
	--color-mg-options-bar-button__color: #717171;
	--color-mg-markup__border: #3a414a;
	--color-mg-icon-code__border: #3a414a;
	--color-mg-icon-grid__background: #c5d1de;
	--color-mg-icon-svg__background--hover: #3a414a;
	--color-mg-icon-svg__background: #778491;
	--color-mg-icon__background: #22272e;
	--color-mg-icon__border: #3a414a;
	--color-mg-container-aside__box-shadow: #3a414a;
	--color-mg-container-main__background: #22272e;
	--color-mg-container-sticky-bar__background: #22272e;
	--color-mg-container-sticky-bar__border: #3a414a;
	--color-mg-aside-scrollbar: #3a414a #22272e;
	--color-mg-footer-copyright__color: #c5d1de;
	--color-mg-html__background: #717171;
	--color-mg-navigation-item-border__background: #3a414a;
	--color-mg-navigation-item-line__color: #c5d1de;
	--color-mg-navigation-icon__color: #778491;
	--color-mg-navigation-icon__color--active: #5c6268;
	--color-mg-navigation-item-current__backgound: #2a3037;
	--color-mg-navigation-item-current__backgound--hover: #2a3037;
	--color-mg-navigation-item-current-before__backgound: #316dca;
	--color-mg-navigation-item-current__color: #c5d1de;
	--color-mg-navigation-indent__border: #3a414a;
	--color-mg-navigation-text__color--hover: #c5d1de;
	--color-mg-navigation-text__color--active: #c5d1de;
	--color-mg-search-input__color--placeholder: #c5d1de;
	--color-mg-search-input__border: #3a414a;
	--color-mg-color__background: #22272e;
	--color-mg-color__border: #3a414a;
	--color-mg-color-name__color: #c5d1de;
	--color-mg-color-code__color: #c5d1de;
	--color-mg-list-color-figure__border: #3a414a;
	--color-mg-list-color-name__border: #3a414a;
	--color-mg-list-color-name__background: #22272e;
	--color-mg-list-color-code__border: #3a414a;
	--color-mg-list-color-code__background: #213147;
	--color-mg-list-color-hex__border: #3a414a;
	--color-mg-list-color-hex__background: #22272e;
	--color-mg-typography-symbol__border: #3a414a;
	--color-markdown-blockquote__border: #3a414a;
	--color-markdown-body-heading__border: #3a414a;
	--color-markdown-code__background: #3a414a;
	--color-markdown-hr__border: #3a414a;
	--color-markdown-kbd__border: #3a414a;
	--color-markdown-span__border: #3a414a;
	--color-markdown-th-td_border: #3a414a;
	--color-markdown-tr__border: #3a414a;
}

.l-markguide-container {
	height: 100%;
}
.l-markguide-container__aside {
	box-shadow: 1px 0 0 0 var(--color-mg-container-aside__box-shadow);
	bottom: 0;
	left: 0;
	position: fixed;
	top: 0;
	width: 250px;
	z-index: 2;
}
.l-markguide-container__main {
	background-color: var(--color-mg-container-main__background);
	margin-left: 250px;
	position: relative;
	z-index: 1;
}
.l-markguide-container__sticky-bar {
	position: sticky;
	background-color: var(--color-mg-container-sticky-bar__background);
	top: 0;
	z-index: 10;
	height: 40px;
	border-bottom: 1px solid var(--color-mg-container-sticky-bar__border);
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.l-markguide-container.js-aside-panel-hidden .l-markguide-container__aside {
	min-width: 0;
	width: 0;
	overflow: hidden;
}
.l-markguide-container.js-aside-panel-hidden .l-markguide-container__main {
	margin-left: 0;
}

.l-markguide-aside {
	all: initial;
	bottom: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
	z-index: 1;
}
.l-markguide-aside__header {
	padding: 20px;
}
.l-markguide-aside__content {
	overflow-y: auto;
	-ms-scroll-chaining: none;
	    overscroll-behavior: contain;
}
.l-markguide-aside__content:focus {
	outline: none !important;
}
.l-markguide-aside__footer {
	display: flex;
	flex-direction: column;
	margin-top: auto;
	padding-top: 10px;
	gap: 0;
}

.js-aside-panel-hidden .l-markguide-aside__header,
.js-aside-panel-hidden .l-markguide-aside__footer,
.js-aside-panel-hidden .l-markguide-aside__content {
	display: none;
}

[data-color-mode=light][data-light-theme*=dark] .l-markguide-aside__content,
[data-color-mode=dark][data-dark-theme*=dark] .l-markguide-aside__content {
	scrollbar-color: var(--color-mg-aside-scrollbar);
}

.l-markguide-page {
	box-sizing: border-box;
	padding: 10px 40px;
}
.l-markguide-page__content {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	gap: 20px;
	position: relative;
	width: 100%;
	min-height: 100vh;
}
.l-markguide-page__aside {
	padding: 10px;
	display: none;
}
.l-markguide-page__main {
	min-height: 100vh;
	max-width: 1400px;
	width: 100%;
}
.b-markguide-aside-ctrl {
	background: transparent;
	border: none;
	bottom: 0;
	color: transparent;
	cursor: col-resize;
	outline: none;
	position: absolute;
	right: -7px;
	top: 0;
	transition: color ease 0.2s;
	width: 10px;
	z-index: 2;
}
.b-markguide-aside-ctrl::after {
	border-left: 2px solid;
	bottom: 0;
	content: "";
	position: absolute;
	top: 0;
}
.b-markguide-aside-ctrl::before {
	border-left: 2px solid;
	border-radius: 5px;
	content: "";
	height: 20px;
	margin: auto;
	position: absolute;
	right: -1px;
}
.b-markguide-aside-ctrl:hover, .b-markguide-aside-ctrl:focus {
	color: var(--color-mg-aside-ctrl__color--hover);
	outline: none !important;
}
.js-aside-panel-hidden .b-markguide-aside-ctrl {
	cursor: col-resize;
}

.b-markguide-aside-resizer-overlay {
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 11;
}
.b-markguide-aside-resizer-overlay.js-dragging {
	display: block;
}

.b-markguide-search {
	position: relative;
}
.b-markguide-search__input {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 12px;
	font-weight: 400;
	line-height: 34px;
	background: transparent;
	border: 1px solid var(--color-mg-search-input__border);
	border-radius: 6px;
	box-sizing: border-box;
	height: 34px;
	outline: none;
	padding: 0 10px;
	text-indent: 18px;
	width: 100%;
}
.b-markguide-search__input:focus {
	background-color: var(--color-mg-search-input__background--focus);
}
.b-markguide-search__input::-webkit-search-cancel-button, .b-markguide-search__input::-webkit-search-decoration {
	display: none;
}
.b-markguide-search__input::-ms-clear {
	display: none;
}
.b-markguide-search__input::-webkit-input-placeholder {
	color: var(--color-mg-search-input__color--placeholder);
}
.b-markguide-search__input:-ms-input-placeholder {
	color: var(--color-mg-search-input__color--placeholder);
}
.b-markguide-search__input::-ms-input-placeholder {
	color: var(--color-mg-search-input__color--placeholder);
}
.b-markguide-search__input::placeholder {
	color: var(--color-mg-search-input__color--placeholder);
}
.b-markguide-search__icon {
	color: var(--color-mg-search-icon__color);
	height: 16px;
	left: 8px;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	width: 16px;
}
.js-found .b-markguide-search__icon {
	color: var(--color-mg-search-icon-found__color);
}
.b-markguide-search__clear {
	background-color: transparent;
	border: none;
	color: var(--color-mg-search-clear__color);
	cursor: pointer;
	height: 16px;
	line-height: 16px;
	margin-top: -8px;
	opacity: 0;
	outline: none;
	padding: 0;
	position: absolute;
	right: 8px;
	top: 50%;
	width: 16px;
}
.b-markguide-search__clear svg {
	display: block;
	color: var(--color-mg-search-icon-clear__color);
}
.b-markguide-search__clear:hover svg {
	color: var(--color-mg-search-icon-clear__color--hover);
}
.b-markguide-search__clear:focus svg {
	color: var(--color-mg-search-icon-clear__color--focus);
}
.b-markguide-search__clear:active svg {
	color: var(--color-mg-search-icon-clear__color--active);
}
.js-found .b-markguide-search__clear {
	opacity: 1;
}

.b-markguide-navigation {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	list-style: none;
	padding-bottom: 20px;
}
.b-markguide-navigation__item {
	display: block;
	position: relative;
}
.b-markguide-navigation__item:nth-child(1 of .b-markguide-navigation__item_plugin)::before {
	content: "";
	display: block;
	height: 1px;
	background-color: var(--color-mg-navigation-item-border__background);
}
.b-markguide-navigation__item:nth-last-child(1 of .b-markguide-navigation__item_plugin)::after, .b-markguide-navigation__item:nth-last-child(1 of .b-markguide-navigation__item_page)::after {
	content: "";
	display: block;
	height: 1px;
	background-color: var(--color-mg-navigation-item-border__background);
}
.b-markguide-navigation__item-line {
	display: flex;
	align-items: center;
	padding: 0 20px;
	text-decoration: none;
	color: var(--color-mg-navigation-item-line__color);
}
.b-markguide-navigation__item-line svg {
	color: var(--color-mg-navigation-icon__color);
}
.b-markguide-navigation__item-line:focus {
	outline: none !important;
}
.b-markguide-navigation__item-line._category .b-markguide-navigation__icon-active {
	display: block;
	color: var(--color-mg-navigation-icon__color--active);
}
.b-markguide-navigation__item-line._category .b-markguide-navigation__icon {
	display: none;
}
.b-markguide-navigation__item-line.js-collapsed._category .b-markguide-navigation__icon-active {
	display: none;
}
.b-markguide-navigation__item-line.js-collapsed._category .b-markguide-navigation__icon {
	display: block;
}
.b-markguide-navigation__item-line._empty {
	font-style: italic;
	color: var(--color-mg-navigation-item-empty__color);
}
.b-markguide-navigation__item-line.js-current-page {
	background-color: var(--color-mg-navigation-item-current__backgound);
	color: var(--color-mg-navigation-item-current__color);
	cursor: default;
	pointer-events: none;
	position: relative;
}
.b-markguide-navigation__item-line.js-current-page:before {
	content: "";
	position: absolute;
	left: 2px;
	top: 2px;
	width: 4px;
	bottom: 2px;
	border-radius: 2px;
	background-color: var(--color-mg-navigation-item-current-before__backgound);
}
.b-markguide-navigation__item-line svg {
	height: 16px;
	min-width: 16px;
	pointer-events: none;
	vertical-align: text-bottom;
	width: 16px;
	margin-right: 5px;
}
.b-markguide-navigation__item-line:hover {
	background-color: var(--color-mg-navigation-item-current__backgound--hover);
}
.b-markguide-navigation__indent {
	width: 25px;
	height: 30px;
	flex-shrink: 0;
	position: relative;
	display: block;
}
.b-markguide-navigation__indent::before {
	content: "";
	width: 2px;
	border-left: 1px solid var(--color-mg-navigation-indent__border);
	height: 100%;
	left: 50%;
	margin-left: -6px;
	position: absolute;
}
.b-markguide-navigation__indent:first-child {
	width: 1px;
}
.b-markguide-navigation__indent:first-child::before {
	display: none;
}
.b-markguide-navigation__text {
	all: initial;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: inherit;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	text-overflow: ellipsis;
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
	pointer-events: none;
}
.b-markguide-navigation__text:hover, .b-markguide-navigation__text:focus {
	color: var(--color-mg-navigation-text__color--hover);
	text-decoration: none;
}
.b-markguide-navigation__text:active {
	color: var(--color-mg-navigation-text__color--active);
}
.b-markguide-navigation .b-markguide-navigation__item-line._category.js-collapsed + .b-markguide-navigation__sub-nav {
	display: none;
}

.js-searching .b-markguide-navigation__item-line {
	color: var(--color-mg-navigation-searching-item-line__color);
	cursor: default;
	pointer-events: none;
}
.js-searching .b-markguide-navigation__item-line._category svg {
	color: var(--color-mg-navigation-searching-icon__color);
}

.js-found .b-markguide-navigation__item-line {
	color: var(--color-mg-navigation-found-item-line__color);
	cursor: default;
	display: none;
	pointer-events: none;
}
.js-found .b-markguide-navigation__item-line.js-relevant {
	color: var(--color-mg-navigation-relevant-item-line__color);
	cursor: pointer;
	display: flex;
	pointer-events: initial;
}
.js-found .b-markguide-navigation__item-line.js-relevant:hover, .js-found .b-markguide-navigation__item-line.js-relevant:focus {
	color: var(--color-mg-navigation-relevant-item-line__color--hover);
}
.js-found .b-markguide-navigation__item-line.js-relevant:active {
	color: var(--color-mg-navigation-relevant-item-line__color--active);
}
.js-found .b-markguide-navigation__sub-nav {
	display: block !important;
}
.js-found .b-markguide-navigation__item-line._category {
	display: flex !important;
}

.b-markguide-footer-copyright {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-mg-footer-copyright__color);
	display: block;
	margin: 0;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.b-markguide-footer-build-date {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-mg-footer-copyright__color);
	display: block;
	margin: 0;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.b-markguide-options-bar {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.b-markguide-options-bar__top, .b-markguide-options-bar__fullscreen, .b-markguide-options-bar__theme {
	align-items: center;
	border-radius: 3px;
	border: 1px solid var(--color-mg-options-bar-button__border);
	color: var(--color-mg-options-bar-button__color);
	cursor: pointer;
	display: flex;
	height: 24px;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 24px;
}
.b-markguide-options-bar__top:focus, .b-markguide-options-bar__fullscreen:focus, .b-markguide-options-bar__theme:focus {
	outline: none !important;
}
.b-markguide-options-bar__top:hover, .b-markguide-options-bar__fullscreen:hover, .b-markguide-options-bar__theme:hover {
	border-color: var(--color-mg-options-bar-button__border--hover);
	background-color: var(--color-mg-options-bar-button__background--hover);
	color: var(--color-mg-options-bar-button__color--hover);
}
.b-markguide-options-bar__fullscreen-full {
	display: block;
}
.b-markguide-options-bar__fullscreen-normal {
	display: none;
}
.b-markguide-options-bar__theme-light {
	display: none;
}

.js-aside-panel-hidden .b-markguide-options-bar__fullscreen-full {
	display: none;
}
.js-aside-panel-hidden .b-markguide-options-bar__fullscreen-normal {
	display: block;
}

[data-color-mode=light][data-light-theme*=dark] .b-markguide-options-bar__theme-light,
[data-color-mode=dark][data-dark-theme*=dark] .b-markguide-options-bar__theme-light {
	display: block;
}
[data-color-mode=light][data-light-theme*=dark] .b-markguide-options-bar__theme-dark,
[data-color-mode=dark][data-dark-theme*=dark] .b-markguide-options-bar__theme-dark {
	display: none;
}

.b-markguide-overline {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	display: flex;
	gap: 10px;
	align-items: center;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.b-markguide-overline svg {
	height: 24px;
	width: 24px;
}
.b-markguide-overline span {
	line-height: 1;
}

.b-markguide-section {
	margin-bottom: 50px;
}
.b-markguide-section:last-child {
	margin-bottom: 0;
}

.b-markguide-html {
	padding: 10px;
	margin-bottom: 20px;
	background-color: var(--color-mg-html__background);
	border: 1px solid var(--color-mg-html__border);
}
.b-markguide-html__item {
	margin-bottom: 20px;
}
.b-markguide-html__item:last-child {
	margin: 0;
}
.b-markguide-html__item-heading {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	padding: 0 0 10px;
	margin: 0;
}

.b-markguide-markup {
	margin: 10px 0 20px;
	outline: none !important;
	position: relative;
	border: 1px solid var(--color-mg-markup__border);
}
.b-markguide-markup__summary {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	cursor: pointer;
	display: list-item;
	outline: revert !important;
	padding: 10px;
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.b-markguide-markup__summary:focus {
	outline: none !important;
}
.b-markguide-markup pre {
	margin: 0;
	border-radius: 0;
}
.b-markguide-markup code {
	border-radius: 0;
}
.b-markguide-markup:focus {
	outline: none !important;
}
.b-markguide-markup__copy-button {
	align-items: center;
	border-radius: 3px;
	border: 1px solid var(--color-mg-options-bar-button__border);
	color: var(--color-mg-options-bar-button__color);
	cursor: pointer;
	display: flex;
	height: 24px;
	justify-content: center;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 15px;
	top: 8px;
	width: 24px;
}
.b-markguide-markup__copy-button:focus {
	outline: none !important;
}
.b-markguide-markup__copy-button:hover {
	border-color: var(--color-mg-options-bar-button__border--hover);
	background-color: var(--color-mg-options-bar-button__background--hover);
	color: var(--color-mg-options-bar-button__color--hover);
}
.b-markguide-markup__copy-message {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	right: 54px;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: 11px;
	transition-property: opacity, visibility;
	transition: ease 0.6s;
	z-index: 10;
}

.b-markguide-toc {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	padding-top: 30px;
}
.b-markguide-toc__info {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	display: flex;
	flex-flow: column nowrap;
	gap: 10px;
	margin-bottom: 30px;
	padding: 10px;
}
.b-markguide-toc__item {
	display: block;
	padding: 3px 0;
}
.b-markguide-toc__ln {
	display: block;
	text-decoration: underline;
	text-overflow: ellipsis;
}
.plugin-body h2,
.plugin-body h3,
.plugin-body h4,
.plugin-body h5,
.plugin-body h6 {
	margin-bottom: 16px;
	margin-top: 24px;
}
.plugin-body h2:hover .anchor,
.plugin-body h3:hover .anchor,
.plugin-body h4:hover .anchor,
.plugin-body h5:hover .anchor,
.plugin-body h6:hover .anchor {
	text-decoration: none;
}
.plugin-body h2:first-child,
.plugin-body h3:first-child,
.plugin-body h4:first-child,
.plugin-body h5:first-child,
.plugin-body h6:first-child {
	margin-top: 0;
}
.plugin-body h2 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 1.5em;
	font-weight: 600;
	line-height: 1.25;
	border-bottom: 1px solid var(--color-markdown-body-heading__border);
	padding-bottom: 0.3em;
}
.plugin-body h3 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 1.25em;
	font-weight: 600;
	line-height: 1.25;
}
.plugin-body h4 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 1em;
	font-weight: 600;
	line-height: 1.25;
}
.plugin-body h5 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 0.875em;
	font-weight: 600;
	line-height: 1.25;
}
.plugin-body h6 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 0.85em;
	font-weight: 600;
	line-height: 1.25;
}
.plugin-body .octicon {
	display: inline-block;
	fill: currentColor;
	overflow: visible !important;
	vertical-align: text-bottom;
}
.plugin-body .plugin-heading {
	position: relative;
}
.plugin-body .plugin-heading .anchor {
	align-items: center;
	border-radius: 2px;
	display: flex;
	height: 28px;
	justify-content: center;
	left: -28px;
	margin: auto;
	opacity: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 28px;
}
.plugin-body .plugin-heading .anchor:focus {
	outline: none;
}
.plugin-body .plugin-heading .anchor:hover {
	opacity: 1;
}
.plugin-body .plugin-heading .heading-element:hover + .anchor {
	opacity: 1;
}

.b-markguide-colors {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.b-markguide-colors.b-markguide-colors--list {
	flex-direction: column;
	gap: 4px;
}

.b-markguide-colors__item {
	width: calc(20% - 8px);
	margin-bottom: 10px;
	box-sizing: border-box;
}
.b-markguide-colors--list .b-markguide-colors__item {
	width: auto;
	margin: 0;
}

.b-markguide-color {
	background: var(--color-mg-color__background);
	border: 1px solid var(--color-mg-color__border);
	margin: 0;
	padding: 0;
}
.b-markguide-color.b-markguide-color--list {
	display: flex;
	gap: 15px;
	align-items: center;
	border: none;
	background: transparent;
}

.b-markguide-color__figure {
	position: relative;
	background-image: linear-gradient(45deg, #f1f1f1 25%, transparent 25%, transparent 75%, #f1f1f1 75%, #f1f1f1), linear-gradient(45deg, #f1f1f1 25%, transparent 25%, transparent 75%, #f1f1f1 75%, #f1f1f1);
	background-position: 0 0, 6px 6px;
	background-size: 12px 12px;
	height: 3em;
}
.b-markguide-color--list .b-markguide-color__figure {
	width: 60px;
	height: 25px;
	border-radius: 4px;
}

.b-markguide-color__figure-color {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.b-markguide-color--list .b-markguide-color__figure-color {
	border-radius: 4px;
	border: 1px solid var(--color-mg-list-color-figure__border);
}

.b-markguide-color__caption {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	padding: 0.5em;
}
.b-markguide-color--list .b-markguide-color__caption {
	display: flex;
	padding: 0;
	gap: 10px;
}

.b-markguide-color__name {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	display: block;
	color: var(--color-mg-color-name__color);
}
.b-markguide-color--list .b-markguide-color__name {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	border: 1px solid var(--color-mg-list-color-name__border);
	background-color: var(--color-mg-list-color-name__background);
	padding: 2px 8px;
	border-radius: 8px;
}

.b-markguide-color__code {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	display: block;
	color: var(--color-mg-color-code__color);
}
.b-markguide-color__code:empty {
	display: none;
}
.b-markguide-color--list .b-markguide-color__code {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	border: 1px solid var(--color-mg-list-color-code__border);
	background-color: var(--color-mg-list-color-code__background);
	padding: 2px 8px;
	border-radius: 8px;
}

.b-markguide-color__hex {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	display: block;
	color: var(--color-mg-color-code__color);
}
.b-markguide-color--list .b-markguide-color__hex {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	border: 1px solid var(--color-mg-list-color-hex__border);
	background-color: var(--color-mg-list-color-hex__background);
	padding: 2px 8px;
	border-radius: 8px;
}

.b-markguide-icons {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.b-markguide-icons__item {
	box-sizing: border-box;
	width: calc(20% - 8px);
}

.b-markguide-icon {
	border: 1px solid var(--color-mg-icon__border);
	border-radius: 5px;
	padding: 10px 10px 40px;
	position: relative;
}
.b-markguide-icon:hover .b-markguide-icon__data {
	display: none;
}
.b-markguide-icon:hover .b-markguide-icon__code {
	display: block;
}
.b-markguide-icon:hover .b-markguide-icon__grid {
	display: block;
}
.b-markguide-icon:hover .b-markguide-icon__svg {
	background-color: var(--color-mg-icon-svg__background--hover);
}
.b-markguide-icon__svg {
	text-align: center;
	max-width: 64px;
	height: 64px;
	margin: 0 auto 10px;
	position: relative;
	color: var(--color-mg-icon-svg__background);
	fill: var(--color-mg-icon-svg__background);
}
.b-markguide-icon__svg svg {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	display: block;
}
.b-markguide-icon__grid {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	--padding: 4px;
}
.b-markguide-icon__grid-top, .b-markguide-icon__grid-bottom, .b-markguide-icon__grid-left, .b-markguide-icon__grid-right {
	position: absolute;
	background-color: var(--color-mg-icon-grid__background);
}
.b-markguide-icon__grid-top, .b-markguide-icon__grid-bottom {
	left: 0;
	right: 0;
	height: 1px;
}
.b-markguide-icon__grid-top {
	top: var(--padding);
	bottom: auto;
}
.b-markguide-icon__grid-bottom {
	bottom: var(--padding);
	top: auto;
}
.b-markguide-icon__grid-left, .b-markguide-icon__grid-right {
	top: 0;
	bottom: 0;
	width: 1px;
}
.b-markguide-icon__grid-left {
	left: var(--padding);
	right: auto;
}
.b-markguide-icon__grid-right {
	left: auto;
	right: var(--padding);
}
.b-markguide-icon__data {
	background: var(--color-mg-icon__background);
	border-radius: 6px;
	border-top: 1px solid var(--color-mg-icon__border);
	bottom: 0;
	left: 0;
	padding: 5px 0;
	position: absolute;
	right: 0;
}
.b-markguide-icon__data pre {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	text-align: center;
	white-space: normal;
}
.b-markguide-icon__name {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: var(--color-mg-icon-name__color);
	padding: 5px 0;
}
.b-markguide-icon__font {
	color: var(--color-mg-icon-font__color);
	text-align: center;
	padding: 5px 0;
}
.b-markguide-icon__code {
	bottom: 0;
	display: none;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	text-align: center;
}
.b-markguide-icon__code code {
	background-color: var(--color-mg-icon-code__background);
	color: var(--color-mg-icon-code__color);
	border-top: 1px solid var(--color-mg-icon-code__border);
}
.b-markguide-icon__code ::selection {
	background-color: var(--color-mg-icon-code__background--selection);
	color: var(--color-mg-icon-code__color--selection);
}

.b-markguide-typography {
	margin-bottom: 30px;
}
.b-markguide-typography__symbols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 10px;
}
.b-markguide-typography__symbol {
	font-size: 22px;
	width: 2em;
	border: 1px solid var(--color-mg-typography-symbol__border);
	text-align: center;
}
.b-markguide-typography__example {
	font-size: 42px;
	padding: 20px 0;
}

.highlight-element {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}
.highlight-element:hover {
	outline: 1px solid #dd06fd;
	outline-offset: -1px;
}

.show-box-model-parent-in {
	position: relative;
	display: block;
	margin: 0 auto;
}
.show-box-model-parent-in::before {
	content: "";
	display: table;
	clear: both;
}
.show-box-model-parent-in::after {
	content: "";
	display: table;
	clear: both;
}

.padding-bottom,
.padding-top,
.padding-right,
.padding-left,
.margin-bottom,
.margin-top,
.margin-right,
.margin-left {
	position: absolute;
	background-blend-mode: screen;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFAQMAAAC3obSmAAAABlBMVEX///8AAABVwtN+AAAAEklEQVQI12M4wNDBIMFgwJAAAAvqAfHBRIxpAAAAAElFTkSuQmCC");
}
.padding-bottom span,
.padding-top span,
.padding-right span,
.padding-left span,
.margin-bottom span,
.margin-top span,
.margin-right span,
.margin-left span {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	position: absolute;
	color: #0c4b7c;
	z-index: 1000;
	padding: 4px;
	border-radius: 2px;
}
.padding-bottom span::before,
.padding-top span::before,
.padding-right span::before,
.padding-left span::before,
.margin-bottom span::before,
.margin-top span::before,
.margin-right span::before,
.margin-left span::before {
	position: absolute;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100%;
	content: "";
}
.padding-bottom:hover,
.padding-top:hover,
.padding-right:hover,
.padding-left:hover,
.margin-bottom:hover,
.margin-top:hover,
.margin-right:hover,
.margin-left:hover {
	outline: 1px solid #dd06fd;
	outline-offset: -1px;
}

.padding-bottom,
.padding-top,
.padding-right,
.padding-left {
	background-color: #ffd2a5;
}
.padding-bottom span,
.padding-top span,
.padding-right span,
.padding-left span {
	background-color: #ffd2a5;
	color: #000;
}
.padding-bottom .show-box-model-position-left::before,
.padding-top .show-box-model-position-left::before,
.padding-right .show-box-model-position-left::before,
.padding-left .show-box-model-position-left::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="8px" height="14px"%3E%3Cpath fill="%23ffd2a5" d="M-0 0l8 7-8 7"/%3E%3C/svg%3E%0A');
}
.padding-bottom .show-box-model-position-right::before,
.padding-top .show-box-model-position-right::before,
.padding-right .show-box-model-position-right::before,
.padding-left .show-box-model-position-right::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="8px" height="14px"%3E%3Cpath fill="%23ffd2a5" d="M8 14l-8-7 8-7"/%3E%3C/svg%3E%0A');
}
.padding-bottom .show-box-model-position-top::before,
.padding-top .show-box-model-position-top::before,
.padding-right .show-box-model-position-top::before,
.padding-left .show-box-model-position-top::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="14px" height="8px"%3E%3Cpath fill="%23ffd2a5" d="M14 0l-7 8-7-8"/%3E%3C/svg%3E%0A');
}
.padding-bottom .show-box-model-position-bottom::before,
.padding-top .show-box-model-position-bottom::before,
.padding-right .show-box-model-position-bottom::before,
.padding-left .show-box-model-position-bottom::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="14px" height="8px"%3E%3Cpath fill="%23ffd2a5" d="M-0 8l7-8 7 8"/%3E%3C/svg%3E%0A');
}

.margin-bottom,
.margin-top,
.margin-right,
.margin-left {
	background-color: #cae4fd;
}
.margin-bottom span,
.margin-top span,
.margin-right span,
.margin-left span {
	background-color: #cae4fd;
	color: #000;
}
.margin-bottom .show-box-model-position-left::before,
.margin-top .show-box-model-position-left::before,
.margin-right .show-box-model-position-left::before,
.margin-left .show-box-model-position-left::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="8px" height="14px"%3E%3Cpath fill="%23cae4fd" d="M-0 0l8 7-8 7"/%3E%3C/svg%3E%0A');
}
.margin-bottom .show-box-model-position-right::before,
.margin-top .show-box-model-position-right::before,
.margin-right .show-box-model-position-right::before,
.margin-left .show-box-model-position-right::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="8px" height="14px"%3E%3Cpath fill="%23cae4fd" d="M8 14l-8-7 8-7"/%3E%3C/svg%3E%0A');
}
.margin-bottom .show-box-model-position-top::before,
.margin-top .show-box-model-position-top::before,
.margin-right .show-box-model-position-top::before,
.margin-left .show-box-model-position-top::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="14px" height="8px"%3E%3Cpath fill="%23cae4fd" d="M14 0l-7 8-7-8"/%3E%3C/svg%3E%0A');
}
.margin-bottom .show-box-model-position-bottom::before,
.margin-top .show-box-model-position-bottom::before,
.margin-right .show-box-model-position-bottom::before,
.margin-left .show-box-model-position-bottom::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="14px" height="8px"%3E%3Cpath fill="%23cae4fd" d="M-0 8l7-8 7 8"/%3E%3C/svg%3E%0A');
}

.show-box-model-position-left,
.show-box-model-position-right {
	top: 50%;
}
.show-box-model-position-left::before,
.show-box-model-position-right::before {
	width: 8px;
	height: 14px;
	top: calc(50% - 7px);
}

.show-box-model-position-left {
	left: -10px;
	-webkit-transform: translate(-100%, -50%);
	        transform: translate(-100%, -50%);
}
.show-box-model-position-left::before {
	right: -6px;
}

.show-box-model-position-right {
	right: -10px;
	-webkit-transform: translate(100%, -50%);
	        transform: translate(100%, -50%);
}
.show-box-model-position-right::before {
	left: -6px;
}

.show-box-model-position-top,
.show-box-model-position-bottom {
	left: 50%;
}
.show-box-model-position-top::before,
.show-box-model-position-bottom::before {
	width: 14px;
	height: 8px;
	left: calc(50% - 7px);
}

.show-box-model-position-top {
	top: -10px;
	-webkit-transform: translate(-50%, -100%);
	        transform: translate(-50%, -100%);
}
.show-box-model-position-top::before {
	bottom: -6px;
}

.show-box-model-position-bottom {
	bottom: -10px;
	-webkit-transform: translate(-50%, 100%);
	        transform: translate(-50%, 100%);
}
.show-box-model-position-bottom::before {
	top: -6px;
}

.markdown-body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	margin: 0;
	word-wrap: break-word;
	scroll-behavior: auto;
}
.markdown-body [hidden] {
	display: none !important;
}
.markdown-body::before, .markdown-body::after {
	display: table;
	content: " ";
}
.markdown-body::after {
	clear: both;
}
.markdown-body hr {
	box-sizing: content-box;
	overflow: hidden;
	background: transparent;
	border-bottom: 1px solid var(--color-markdown-hr__border);
	height: 0.25em;
	padding: 0;
	margin: 24px 0;
	background-color: var(--color-markdown-hr__background);
	border: 0;
}
.markdown-body hr::before, .markdown-body hr::after {
	display: table;
	content: " ";
}
.markdown-body hr::after {
	clear: both;
}

.markdown-body p {
	margin-top: 0;
	margin-bottom: 16px;
}
.markdown-body mark {
	background-color: var(--color-markdown-mark__background);
	color: var(--color-markdown-mark__color);
}
.markdown-body small {
	font-size: 90%;
}
.markdown-body sub,
.markdown-body sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
.markdown-body sub {
	bottom: -0.25em;
}
.markdown-body sup {
	top: -0.5em;
}
.markdown-body abbr[title] {
	border-bottom: none;
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}
.markdown-body dfn {
	font-style: italic;
}
.markdown-body samp {
	font-size: 85%;
}
.markdown-body blockquote {
	border-left: 0.25em solid var(--color-markdown-blockquote__border);
	color: var(--color-markdown-blockquote__color);
	margin-bottom: 16px;
	margin-top: 0;
}
.markdown-body blockquote > :first-child {
	margin-top: 0;
}
.markdown-body blockquote > :last-child {
	margin-bottom: 0;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
	margin-bottom: 16px;
	margin-top: 24px;
}
.markdown-body h1:hover .anchor,
.markdown-body h2:hover .anchor,
.markdown-body h3:hover .anchor,
.markdown-body h4:hover .anchor,
.markdown-body h5:hover .anchor,
.markdown-body h6:hover .anchor {
	text-decoration: none;
}
.markdown-body h1 tt,
.markdown-body h1 code,
.markdown-body h2 tt,
.markdown-body h2 code,
.markdown-body h3 tt,
.markdown-body h3 code,
.markdown-body h4 tt,
.markdown-body h4 code,
.markdown-body h5 tt,
.markdown-body h5 code,
.markdown-body h6 tt,
.markdown-body h6 code {
	font-size: inherit;
	padding: 0 0.2em;
}
.markdown-body h1 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 2em;
	font-weight: 600;
	line-height: 1.25;
	border-bottom: 1px solid var(--color-markdown-body-heading__border);
	margin: 0.67em 0;
	padding-bottom: 0.3em;
}
.markdown-body h2 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 1.5em;
	font-weight: 600;
	line-height: 1.25;
	border-bottom: 1px solid var(--color-markdown-body-heading__border);
	padding-bottom: 0.3em;
}
.markdown-body h3 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 1.25em;
	font-weight: 600;
	line-height: 1.25;
}
.markdown-body h4 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 1em;
	font-weight: 600;
	line-height: 1.25;
}
.markdown-body h5 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 0.875em;
	font-weight: 600;
	line-height: 1.25;
}
.markdown-body h6 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 0.85em;
	font-weight: 600;
	line-height: 1.25;
}
.markdown-body summary h1,
.markdown-body summary h2,
.markdown-body summary h3,
.markdown-body summary h4,
.markdown-body summary h5,
.markdown-body summary h6 {
	display: inline-block;
}
.markdown-body summary h1 .anchor,
.markdown-body summary h2 .anchor,
.markdown-body summary h3 .anchor,
.markdown-body summary h4 .anchor,
.markdown-body summary h5 .anchor,
.markdown-body summary h6 .anchor {
	margin-left: -40px;
}
.markdown-body .octicon {
	display: inline-block;
	fill: currentColor;
	overflow: visible !important;
	vertical-align: text-bottom;
}

.markdown-heading {
	position: relative;
}
.markdown-heading .anchor {
	align-items: center;
	border-radius: 2px;
	display: flex;
	height: 28px;
	justify-content: center;
	left: -28px;
	margin: auto;
	opacity: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 28px;
}
.markdown-heading .anchor:focus {
	outline: none;
}
.markdown-heading .anchor:hover {
	opacity: 1;
}
.markdown-heading .heading-element:hover + .anchor {
	opacity: 1;
}

.markdown-body table {
	border-collapse: collapse;
	border-spacing: 0;
	display: block;
	margin-bottom: 16px;
	margin-top: 0;
	max-width: 100%;
	overflow: auto;
	width: -webkit-max-content;
	width: max-content;
}
.markdown-body table tr {
	background-color: var(--color-markdown-tr__background);
	border-top: 1px solid var(--color-markdown-tr__border);
}
.markdown-body table tr:nth-child(2n) {
	background-color: var(--color-markdown-tr-2n__background);
}
.markdown-body table td,
.markdown-body table th {
	border: 1px solid var(--color-markdown-th-td_border);
	padding: 6px 13px;
}
.markdown-body table td > :last-child {
	margin-bottom: 0;
}
.markdown-body table th {
	font-weight: 600;
}
.markdown-body table img {
	background-color: transparent;
}

.markdown-body a {
	background-color: transparent;
	color: var(--color-markdown-a__color);
	text-decoration: none;
}
.markdown-body a:focus {
	box-shadow: none;
	outline-offset: -2px;
	outline: 2px solid var(--color-markdown-a__outline--focus);
}
.markdown-body a:hover {
	text-decoration: underline;
}
.markdown-body a:focus:not(:focus-visible) {
	box-shadow: none;
	outline: none;
}
.markdown-body a:focus-visible {
	box-shadow: none;
	outline-offset: -2px;
	outline: 2px solid var(--color-markdown-a__outline--focus);
}
.markdown-body a:not([class]):focus, .markdown-body a:not([class]):focus-visible {
	outline-offset: 0;
}
.markdown-body a:not([href]) {
	color: inherit;
	text-decoration: none;
}

.markdown-body ul,
.markdown-body ol {
	list-style: initial;
	margin-bottom: 0;
	margin-top: 0;
	padding-left: 2em;
}
.markdown-body ol ol,
.markdown-body ul ol {
	list-style-type: lower-roman;
}
.markdown-body ul ul ol,
.markdown-body ul ol ol,
.markdown-body ol ul ol,
.markdown-body ol ol ol {
	list-style-type: lower-alpha;
}
.markdown-body summary h1,
.markdown-body summary h2 {
	border-bottom: 0;
	padding-bottom: 0;
}
.markdown-body ul.no-list,
.markdown-body ol.no-list {
	list-style-type: none;
	padding: 0;
}
.markdown-body ol[type="a s"] {
	list-style-type: lower-alpha;
}
.markdown-body ol[type="A s"] {
	list-style-type: upper-alpha;
}
.markdown-body ol[type="i s"] {
	list-style-type: lower-roman;
}
.markdown-body ol[type="I s"] {
	list-style-type: upper-roman;
}
.markdown-body ol[type="1"] {
	list-style-type: decimal;
}
.markdown-body div > ol:not([type]) {
	list-style-type: decimal;
}
.markdown-body ul ul,
.markdown-body ul ol,
.markdown-body ol ol,
.markdown-body ol ul {
	margin-bottom: 0;
	margin-top: 0;
}
.markdown-body li > p {
	margin-top: 16px;
}
.markdown-body li + li {
	margin-top: 0.25em;
}
.markdown-body dl {
	padding: 0;
}
.markdown-body dl dt {
	margin-top: 16px;
	padding: 0;
}
.markdown-body dl dd {
	margin-bottom: 16px;
	margin-left: 0;
	padding: 0 16px;
}
.markdown-body ul,
.markdown-body ol,
.markdown-body dl {
	margin-bottom: 16px;
	margin-top: 0;
}

.markdown-code {
	margin-bottom: 16px;
}
.markdown-code .b-markguide-code {
	width: 100%;
	overflow: auto;
}
.markdown-code pre[class*=language-] {
	margin: 0 !important;
}

.markdown-body pre {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 85%;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 16px;
	margin-top: 0;
}
.markdown-body pre br {
	display: none;
}
.markdown-body code {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 85%;
	font-weight: 400;
	line-height: 1.5;
	background-color: var(--color-markdown-code__background);
	border-radius: 6px;
	margin: 0;
	padding: 0.2em 0.4em;
	white-space: break-spaces;
}
.markdown-body code br {
	display: none;
}

.markdown-body img {
	background-color: var(--color-markdown-img__background);
	border-style: none;
	box-sizing: content-box;
	max-width: 100%;
}
.markdown-body img[align=right] {
	padding-left: 20px;
}
.markdown-body img[align=left] {
	padding-right: 20px;
}
.markdown-body .emoji {
	background-color: transparent;
	max-width: none;
	vertical-align: text-top;
}
.markdown-body span.frame {
	display: block;
	overflow: hidden;
}
.markdown-body span.frame > span {
	border: 1px solid var(--color-markdown-span__border);
	display: block;
	float: left;
	margin: 13px 0 0;
	overflow: hidden;
	padding: 7px;
	width: auto;
}
.markdown-body span.frame span img {
	display: block;
	float: left;
}
.markdown-body span.frame span span {
	clear: both;
	color: var(--color-markdown-span__color);
	display: block;
	padding: 5px 0 0;
}
.markdown-body span.align-center {
	clear: both;
	display: block;
	overflow: hidden;
}
.markdown-body span.align-center > span {
	display: block;
	margin: 13px auto 0;
	overflow: hidden;
	text-align: center;
}
.markdown-body span.align-center span img {
	margin: 0 auto;
	text-align: center;
}
.markdown-body span.align-right {
	clear: both;
	display: block;
	overflow: hidden;
}
.markdown-body span.align-right > span {
	display: block;
	margin: 13px 0 0;
	overflow: hidden;
	text-align: right;
}
.markdown-body span.align-right span img {
	margin: 0;
	text-align: right;
}
.markdown-body span.float-left {
	display: block;
	float: left;
	margin-right: 13px;
	overflow: hidden;
}
.markdown-body span.float-left span {
	margin: 13px 0 0;
}
.markdown-body span.float-right {
	display: block;
	float: right;
	margin-left: 13px;
	overflow: hidden;
}
.markdown-body span.float-right > span {
	display: block;
	margin: 13px auto 0;
	overflow: hidden;
	text-align: right;
}
.markdown-body g-emoji {
	display: inline-block;
	font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 1em;
	font-style: normal !important;
	font-weight: 400;
	line-height: 1;
	min-width: 1ch;
	vertical-align: -0.075em;
}
.markdown-body g-emoji img {
	height: 1em;
	width: 1em;
}

.markdown-body ::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}
.markdown-body ::-webkit-file-upload-button {
	-webkit-appearance: button;
	        appearance: button;
	font: inherit;
}
.markdown-body ::-webkit-input-placeholder {
	color: var(--color-markdown-body__color--placeholder);
	opacity: 1;
}
.markdown-body :-ms-input-placeholder {
	color: var(--color-markdown-body__color--placeholder);
	opacity: 1;
}
.markdown-body ::-ms-input-placeholder {
	color: var(--color-markdown-body__color--placeholder);
	opacity: 1;
}
.markdown-body ::placeholder {
	color: var(--color-markdown-body__color--placeholder);
	opacity: 1;
}
.markdown-body input {
	font-family: inherit;
	font-size: inherit;
	font: inherit;
	line-height: inherit;
	margin: 0;
	overflow: visible;
}
.markdown-body [type=button],
.markdown-body [type=reset],
.markdown-body [type=submit] {
	-webkit-appearance: button;
	        appearance: button;
}
.markdown-body button:focus:not(:focus-visible) {
	outline: none;
	box-shadow: none;
}
.markdown-body [type=checkbox],
.markdown-body [type=radio] {
	box-sizing: border-box;
	padding: 0;
}
.markdown-body [type=number]::-webkit-inner-spin-button,
.markdown-body [type=number]::-webkit-outer-spin-button {
	height: auto;
}
.markdown-body [type=search]::-webkit-search-cancel-button,
.markdown-body [type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
	        appearance: none;
}
.markdown-body [role=button]:focus, .markdown-body [role=button]:focus-visible,
.markdown-body input[type=radio]:focus,
.markdown-body input[type=radio]:focus-visible,
.markdown-body input[type=checkbox]:focus,
.markdown-body input[type=checkbox]:focus-visible {
	box-shadow: none;
	outline-offset: -2px;
	outline: 2px solid var(--color-markdown-input__outline--focus);
}
.markdown-body [role=button]:focus:not(:focus-visible),
.markdown-body input[type=radio]:focus:not(:focus-visible),
.markdown-body input[type=checkbox]:focus:not(:focus-visible) {
	outline: solid 1px transparent;
}
.markdown-body input[type=radio]:focus, .markdown-body input[type=radio]:focus-visible,
.markdown-body input[type=checkbox]:focus,
.markdown-body input[type=checkbox]:focus-visible {
	outline-offset: 0;
}
.markdown-body input::-webkit-outer-spin-button,
.markdown-body input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	        appearance: none;
	margin: 0;
}
.markdown-body details {
	display: block;
	margin-bottom: 16px;
	margin-top: 0;
}
.markdown-body details summary {
	cursor: pointer;
	display: list-item;
}
.markdown-body details summary:focus:not(:focus-visible) {
	box-shadow: none;
	outline: none;
}
.markdown-body details:not([open]) > *:not(summary) {
	display: none;
}
.markdown-body details-dialog:focus:not(:focus-visible) {
	outline: none;
}
.markdown-body figure {
	display: block;
	margin: 1em 40px;
}
.markdown-body figcaption {
	display: block;
}
.markdown-body kbd {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 11px;
	font-weight: 400;
	line-height: 10px;
	background-color: var(--color-markdown-kbd__background);
	border-radius: 6px;
	border: 1px solid var(--color-markdown-kbd__border);
	box-shadow: inset 0 -1px 0 var(--color-markdown-kbd__box-shadow);
	color: var(--color-markdown-kbd__color);
	display: inline-block;
	padding: 3px 5px;
	vertical-align: middle;
}
.markdown-body samp {
	font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
}

.markdown-body > *:first-child > .heading-element:first-child {
	margin-top: 0 !important;
}

/* PrismJS 1.29.0
https://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript+bash+diff+git+handlebars+json+markdown+markup-templating+php+pug+scss+sql+typescript&plugins=show-language+toolbar */
/**
 * okaidia theme for JavaScript, CSS and HTML
 * Loosely based on Monokai textmate theme by http://www.monokai.nl/
 * @author ocodia
 */
code[class*=language-],
pre[class*=language-] {
	color: #f8f8f2;
	background: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	-ms-hyphens: none;
	hyphens: none;
}

/* Code blocks */
pre[class*=language-] {
	padding: 1em;
	margin: 0.5em 0;
	overflow: auto;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
	background: #272822;
}

/* Inline code */
:not(pre) > code[class*=language-] {
	padding: 0.1em;
	border-radius: 0.3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #8292a2;
}

.token.punctuation {
	color: #f8f8f2;
}

.token.namespace {
	opacity: 0.7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	color: #f92672;
}

.token.boolean,
.token.number {
	color: #ae81ff;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #a6e22e;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
	color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
	color: #e6db74;
}

.token.keyword {
	color: #66d9ef;
}

.token.regex,
.token.important {
	color: #fd971f;
}

.token.important,
.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

div.code-toolbar {
	position: relative;
}

div.code-toolbar > .toolbar {
	position: absolute;
	z-index: 10;
	top: 0.3em;
	right: 0.2em;
	transition: opacity 0.3s ease-in-out;
	opacity: 0;
}

div.code-toolbar:hover > .toolbar {
	opacity: 1;
}

/* Separate line b/c rules are thrown out if selector is invalid.
   IE11 and old Edge versions don't support :focus-within. */
div.code-toolbar:focus-within > .toolbar {
	opacity: 1;
}

div.code-toolbar > .toolbar > .toolbar-item {
	display: inline-block;
}

div.code-toolbar > .toolbar > .toolbar-item > a {
	cursor: pointer;
}

div.code-toolbar > .toolbar > .toolbar-item > button {
	background: none;
	border: 0;
	color: inherit;
	font: inherit;
	line-height: normal;
	overflow: visible;
	padding: 0;
	-webkit-user-select: none; /* for button */
	-moz-user-select: none;
	-ms-user-select: none;
}

div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
	color: #bbb;
	font-size: 0.8em;
	padding: 0 0.5em;
	background: #f5f2f0;
	background: rgba(224, 224, 224, 0.2);
	box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
	border-radius: 0.5em;
}

div.code-toolbar > .toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
	color: inherit;
	text-decoration: none;
}

[data-color-mode=light][data-light-theme*=dark] code[class*=language-],
[data-color-mode=light][data-light-theme*=dark] pre[class*=language-],
[data-color-mode=dark][data-dark-theme*=dark] code[class*=language-],
[data-color-mode=dark][data-dark-theme*=dark] pre[class*=language-] {
	color: #c5d1de;
	background: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
[data-color-mode=light][data-light-theme*=dark] :not(pre) > code[class*=language-],
[data-color-mode=light][data-light-theme*=dark] pre[class*=language-],
[data-color-mode=dark][data-dark-theme*=dark] :not(pre) > code[class*=language-],
[data-color-mode=dark][data-dark-theme*=dark] pre[class*=language-] {
	background: #191e25;
}
[data-color-mode=light][data-light-theme*=dark] .token.comment,
[data-color-mode=light][data-light-theme*=dark] .token.prolog,
[data-color-mode=light][data-light-theme*=dark] .token.doctype,
[data-color-mode=light][data-light-theme*=dark] .token.cdata,
[data-color-mode=dark][data-dark-theme*=dark] .token.comment,
[data-color-mode=dark][data-dark-theme*=dark] .token.prolog,
[data-color-mode=dark][data-dark-theme*=dark] .token.doctype,
[data-color-mode=dark][data-dark-theme*=dark] .token.cdata {
	color: #688390;
}
[data-color-mode=light][data-light-theme*=dark] .token.punctuation,
[data-color-mode=dark][data-dark-theme*=dark] .token.punctuation {
	color: #f8f8f2;
}
[data-color-mode=light][data-light-theme*=dark] .token.property,
[data-color-mode=light][data-light-theme*=dark] .token.tag,
[data-color-mode=light][data-light-theme*=dark] .token.constant,
[data-color-mode=light][data-light-theme*=dark] .token.symbol,
[data-color-mode=light][data-light-theme*=dark] .token.deleted,
[data-color-mode=dark][data-dark-theme*=dark] .token.property,
[data-color-mode=dark][data-dark-theme*=dark] .token.tag,
[data-color-mode=dark][data-dark-theme*=dark] .token.constant,
[data-color-mode=dark][data-dark-theme*=dark] .token.symbol,
[data-color-mode=dark][data-dark-theme*=dark] .token.deleted {
	color: #8ddb8c;
}
[data-color-mode=light][data-light-theme*=dark] .token.boolean,
[data-color-mode=light][data-light-theme*=dark] .token.number,
[data-color-mode=dark][data-dark-theme*=dark] .token.boolean,
[data-color-mode=dark][data-dark-theme*=dark] .token.number {
	color: #ae81ff;
}
[data-color-mode=light][data-light-theme*=dark] .token.selector,
[data-color-mode=light][data-light-theme*=dark] .token.attr-name,
[data-color-mode=light][data-light-theme*=dark] .token.string,
[data-color-mode=light][data-light-theme*=dark] .token.char,
[data-color-mode=light][data-light-theme*=dark] .token.builtin,
[data-color-mode=light][data-light-theme*=dark] .token.inserted,
[data-color-mode=dark][data-dark-theme*=dark] .token.selector,
[data-color-mode=dark][data-dark-theme*=dark] .token.attr-name,
[data-color-mode=dark][data-dark-theme*=dark] .token.string,
[data-color-mode=dark][data-dark-theme*=dark] .token.char,
[data-color-mode=dark][data-dark-theme*=dark] .token.builtin,
[data-color-mode=dark][data-dark-theme*=dark] .token.inserted {
	color: #96d0ff;
}
[data-color-mode=light][data-light-theme*=dark] .token.operator,
[data-color-mode=light][data-light-theme*=dark] .token.entity,
[data-color-mode=light][data-light-theme*=dark] .token.url,
[data-color-mode=light][data-light-theme*=dark] .language-css .token.string,
[data-color-mode=light][data-light-theme*=dark] .style .token.string,
[data-color-mode=light][data-light-theme*=dark] .token.variable,
[data-color-mode=dark][data-dark-theme*=dark] .token.operator,
[data-color-mode=dark][data-dark-theme*=dark] .token.entity,
[data-color-mode=dark][data-dark-theme*=dark] .token.url,
[data-color-mode=dark][data-dark-theme*=dark] .language-css .token.string,
[data-color-mode=dark][data-dark-theme*=dark] .style .token.string,
[data-color-mode=dark][data-dark-theme*=dark] .token.variable {
	color: #f69d50;
}
[data-color-mode=light][data-light-theme*=dark] .token.atrule,
[data-color-mode=light][data-light-theme*=dark] .token.attr-value,
[data-color-mode=light][data-light-theme*=dark] .token.function,
[data-color-mode=light][data-light-theme*=dark] .token.class-name,
[data-color-mode=dark][data-dark-theme*=dark] .token.atrule,
[data-color-mode=dark][data-dark-theme*=dark] .token.attr-value,
[data-color-mode=dark][data-dark-theme*=dark] .token.function,
[data-color-mode=dark][data-dark-theme*=dark] .token.class-name {
	color: #dcbdfb;
}
[data-color-mode=light][data-light-theme*=dark] .token.keyword,
[data-color-mode=dark][data-dark-theme*=dark] .token.keyword {
	color: #f47067;
}
[data-color-mode=light][data-light-theme*=dark] .token.regex,
[data-color-mode=light][data-light-theme*=dark] .token.important,
[data-color-mode=dark][data-dark-theme*=dark] .token.regex,
[data-color-mode=dark][data-dark-theme*=dark] .token.important {
	color: #fd971f;
}
[data-color-mode=light][data-light-theme*=dark] div.code-toolbar > .toolbar > .toolbar-item > a,
[data-color-mode=light][data-light-theme*=dark] div.code-toolbar > .toolbar > .toolbar-item > button,
[data-color-mode=light][data-light-theme*=dark] div.code-toolbar > .toolbar > .toolbar-item > span,
[data-color-mode=dark][data-dark-theme*=dark] div.code-toolbar > .toolbar > .toolbar-item > a,
[data-color-mode=dark][data-dark-theme*=dark] div.code-toolbar > .toolbar > .toolbar-item > button,
[data-color-mode=dark][data-dark-theme*=dark] div.code-toolbar > .toolbar > .toolbar-item > span {
	color: #bbb;
	background: #f5f2f0;
	background: rgba(224, 224, 224, 0.2);
	box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
}