/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	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;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */

pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

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

/* Inline code */

:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

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

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	/* This background color was intended by the author of this theme. */
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function,
.token.class-name {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

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

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

.token.entity {
	cursor: help;
}

html,
body {
  margin: 0;
  padding: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: var(--font-family);
  line-height: 1.4;
  font-size: 1.14em;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section {
  position: absolute;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: 0 40px 60px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--slide-background);
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s all;
  transition: .5s all
}

section:target,
  section.is-active {
	z-index: 1;
	opacity: 1;
}

h1, h2 {
  margin-top: 0;
  margin-left: -40px;
  margin-right: -40px;
  padding: .5em 40px;
  border-bottom: var(--header-border);
  /* color: var(--header-text);
  background-color: var(--header-background); */
}

a {
  color: var(--link-color);
}

img {
  max-width: 100%;
}

blockquote {
  margin-left: 0;
  padding-left: 40px;
  border-left: 10px solid #ccc
}

blockquote::after {
	content: "— " attr(cite);
	display: block;
	text-align: right;
	font-style: italic;
	border-left: 0;
}

pre {
  overflow-x: auto;
}

:root {
  --font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --slide-text: #333;
  --slide-background: #e4f3ff;
  --link-color: #952a2a;

  --header-text: #fff;
  --header-background: #338;
  --header-border: 1px solid #fff;

  --pager-text: #ddd;
  --pager-background: rgba(51, 51, 136, .88);
  --pager-link: #fff;
  --pager-active-text: #338;
  --pager-active-background: #fff;
}

pre {
  margin-bottom: .2em;
  padding: 1em;
  background-color: #fff;
  font-size: 1.3em;
}

[data-code]::after {
  content: attr(data-code);
  display: block;
  margin-bottom: 1em;
  font-style: italic;
  color: #777;
  text-align: right;
}

.Pager {
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 100%;
  color: var(--pager-text)
}

.Pager a {
	display: inline-block;
	color: var(--pager-link);
	margin-top: 8px;
	padding: 3px 6px;
	text-decoration: none;
}

.Pager a.is-active {
	background-color: var(--pager-active-background);
	color: var(--pager-active-text);
}

.Pager-content {
  z-index: 10;
  padding: 10px 40px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .4s;
  transition: all .4s;
  background-color: var(--pager-background)
}

.Pager.is-hidden .Pager-content span {
	-webkit-transform: scale(.1);
	        transform: scale(.1);
	opacity: 0;
	z-index: -2;
	background-color: whitesmoke;
}

.Pager-toggle {
  z-index: 15;
  position: absolute;
  right: 16px;
  bottom: 16px;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, .3);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, .3);
  border-radius: 50%;
  border: 1px solid #333;
  padding: 0;
  text-align: center
}

.Pager-toggle span {
	display: block;
	-webkit-transform: rotateZ(45deg);
	        transform: rotateZ(45deg);
	-webkit-transition: -webkit-transform .4s;
	transition: -webkit-transform .4s;
	transition: transform .4s;
	transition: transform .4s, -webkit-transform .4s;
	height: 16px;
	width: 16px;
	line-height: 16px;
}

.Pager.ishidden .Pager-toggle span {
	-webkit-transform: rotateZ(0deg);
	        transform: rotateZ(0deg);
	background-color: whitesmoke;
}

.Alert {
  color: #070;
  background-color: #efe;
  border: 1px solid #070;
  position: fixed;
  right: 20px;
  top: 20px;
  padding: 10px;
  z-index: 10;
}

.is-offline .Alert {
	color: #700;
	background-color: #fee;
	border: 1px solid #700;
}

.is-offline form {
	position: relative;
	opacity: .5;
	cursor: not-allowed;
	pointer-events: none;
}

.is-offline a:not(.is-cached) {
	opacity: .5;
	cursor: not-allowed;
	pointer-events: none;
	text-decoration: none;
}

.is-offline a:not(.is-cached)::before {
	content: '\26D4';
	text-decoration: none;
	font-family: Helvetica, Arial, sans-serif;
	margin-right: .25em;
}

.center {
  text-align: center;
}

[hidden] {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .5s all;
  transition: .5s all;
}

.strike {
  text-decoration: line-through;
}
