:root {
	--reach-tabs: 1;
}

[data-reach-tabs][data-orientation="vertical"] {
	display: flex;
}

[data-reach-tab-list] {
	display: flex;
	background: hsla(0, 0%, 0%, 0.05);
}

[data-reach-tab-list][aria-orientation="vertical"] {
	flex-direction: column;
}

[data-reach-tab] {
	display: inline-block;
	border: none;
	padding: 0.25em 0.5em;
	margin: 0;
	border-bottom: 1px solid transparent;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
}

[data-reach-tab]:active {
	background: hsla(0, 0%, 0%, 0.05);
}

[data-reach-tab]:disabled {
	opacity: 0.25;
	cursor: default;
}

[data-reach-tab][data-selected] {
	border-bottom-color: currentColor;
}

.react-dots-loader {
  line-height: 0px;
}

.react-dots-loader__circle {
  border-radius: 50%;
  margin-left: 10px;
  background-color: black;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: inline-block;
}

.react-dots-loader__circle--one {
  opacity: 1;
  -webkit-animation: react-dots-loader__animation--one 1s infinite linear;
          animation: react-dots-loader__animation--one 1s infinite linear;
}

.react-dots-loader__circle--two,
.react-dots-loader__circle--three {
  opacity: 0.25;
}

.react-dots-loader__circle--two {
  -webkit-animation: react-dots-loader__animation--two 1s infinite linear;
          animation: react-dots-loader__animation--two 1s infinite linear;
}
.react-dots-loader__circle--three {
  -webkit-animation: react-dots-loader__animation--three 1s infinite linear;
          animation: react-dots-loader__animation--three 1s infinite linear;
}

@-webkit-keyframes react-dots-loader__animation--one {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.25;
  }
  66% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}

@keyframes react-dots-loader__animation--one {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.25;
  }
  66% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes react-dots-loader__animation--two {
  0% {
    opacity: 0.25;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0.25;
  }
}

@keyframes react-dots-loader__animation--two {
  0% {
    opacity: 0.25;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0.25;
  }
}

@-webkit-keyframes react-dots-loader__animation--three {
  33% {
    opacity: 0.25;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}

@keyframes react-dots-loader__animation--three {
  33% {
    opacity: 0.25;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}

/**
 * a11y-light theme for JavaScript, CSS, and HTML
 * Based on the okaidia theme: https://github.com/PrismJS/prism/blob/gh-pages/themes/prism-okaidia.css
 * @author ericwbailey
 */

.codeblock-light code[class*="language-"],
.codeblock-light pre[class*="language-"] {
	color: #545454;
	background: #fbfbfb;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.65em;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/* Code blocks */
.codeblock-light pre[class*="language-"] {
	padding: 1em;
	margin: 0;
	overflow: auto;
	border-radius: 0.3em;
}

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

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

.codeblock-light .token.comment,
.codeblock-light .token.prolog,
.codeblock-light .token.doctype,
.codeblock-light .token.cdata {
	color: #696969;
}

.codeblock-light .token.punctuation {
	color: #545454;
}

.codeblock-light .token.property,
.codeblock-light .token.tag,
.codeblock-light .token.constant,
.codeblock-light .token.symbol,
.codeblock-light .token.deleted {
	color: #007faa;
}

.codeblock-light .token.boolean,
.codeblock-light .token.number {
	color: #008000;
}

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

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

.codeblock-light .token.atrule,
.codeblock-light .token.attr-value,
.codeblock-light .token.function {
	color: #aa5d00;
}

.codeblock-light .token.keyword {
	color: #d91e18;
}

.codeblock-light .token.regex,
.codeblock-light .token.important {
	color: #d91e18;
}

.codeblock-light .token.important,
.codeblock-light .token.bold {
	font-weight: bold;
}
.codeblock-light .token.italic {
	font-style: italic;
}

.codeblock-light .token.entity {
	cursor: help;
}

@media screen and (-ms-high-contrast: active) {
	.codeblock-light code[class*="language-"],
	.codeblock-light pre[class*="language-"] {
		color: windowText;
		background: window;
	}

	.codeblock-light :not(pre) > code[class*="language-"],
	.codeblock-light pre[class*="language-"] {
		background: window;
	}

	.codeblock-light .token.important {
		background: highlight;
		color: window;
		font-weight: normal;
	}

	.codeblock-light .token.atrule,
	.codeblock-light .token.attr-value,
	.codeblock-light .token.function,
	.codeblock-light .token.keyword,
	.codeblock-light .token.operator,
	.codeblock-light .token.selector {
		font-weight: bold;
	}

	.codeblock-light .token.attr-value,
	.codeblock-light .token.comment,
	.codeblock-light .token.doctype,
	.codeblock-light .token.function,
	.codeblock-light .token.keyword,
	.codeblock-light .token.operator,
	.codeblock-light .token.property,
	.codeblock-light .token.string {
		color: highlight;
	}

	.codeblock-light .token.attr-value,
	.codeblock-light .token.url {
		font-weight: normal;
	}
}

/**
* a11y-dark theme for JavaScript, CSS, and HTML
* Based on the okaidia theme: https://github.com/PrismJS/prism/blob/gh-pages/themes/prism-okaidia.css
* @author ericwbailey
*/

.codeblock-dark code[class*="language-"],
.codeblock-dark pre[class*="language-"] {
  color: #f8f8f2;
  background: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.65;

  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;

  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
.codeblock-dark pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}

.codeblock-dark :not(pre) > code[class*="language-"],
.codeblock-dark pre[class*="language-"] {
  background: #2b2b2b;
}

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

.codeblock-dark .token.comment,
.codeblock-dark .token.prolog,
.codeblock-dark .token.doctype,
.codeblock-dark .token.cdata {
  color: #d4d0ab;
}

.codeblock-dark .token.punctuation {
  color: #fefefe;
}

.codeblock-dark .token.property,
.codeblock-dark .token.tag,
.codeblock-dark .token.constant,
.codeblock-dark .token.symbol,
.codeblock-dark .token.deleted {
  color: #ffa07a;
}

.codeblock-dark .token.boolean,
.codeblock-dark .token.number {
  color: #00e0e0;
}

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

.codeblock-dark .token.operator,
.codeblock-dark .token.entity,
.codeblock-dark .token.url,
.codeblock-dark .language-css .token.string,
.codeblock-dark .style .token.string,
.codeblock-dark .token.variable {
  color: #00e0e0;
}

.codeblock-dark .token.atrule,
.codeblock-dark .token.attr-value,
.codeblock-dark .token.function {
  color: #ffd700;
}

.codeblock-dark .token.keyword {
  color: #00e0e0;
}

.codeblock-dark .token.regex,
.codeblock-dark .token.important {
  color: #ffd700;
}

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

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

.codeblock-dark .token.entity {
  cursor: help;
}

@media screen and (-ms-high-contrast: active) {
  .codeblock-dark code[class*="language-"],
  .codeblock-dark pre[class*="language-"] {
    color: windowText;
    background: window;
  }

  .codeblock-dark :not(pre) > code[class*="language-"],
  .codeblock-dark pre[class*="language-"] {
    background: window;
  }

  .codeblock-dark .token.important {
    background: highlight;
    color: window;
    font-weight: normal;
  }

  .codeblock-dark .token.atrule,
  .codeblock-dark .token.attr-value,
  .codeblock-dark .token.function,
  .codeblock-dark .token.keyword,
  .codeblock-dark .token.operator,
  .codeblock-dark .token.selector {
    font-weight: bold;
  }

  .codeblock-dark .token.attr-value,
  .codeblock-dark .token.comment,
  .codeblock-dark .token.doctype,
  .codeblock-dark .token.function,
  .codeblock-dark .token.keyword,
  .codeblock-dark .token.operator,
  .codeblock-dark .token.property,
  .codeblock-dark .token.string {
    color: highlight;
  }

  .codeblock-dark .token.attr-value,
  .codeblock-dark .token.url {
    font-weight: normal;
  }
}


/*# sourceMappingURL=main.e0df6e66.css.map*/