/**
 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/chriskempson/tomorrow-theme
 * @author Rose Pritchard
 */

code[class*="language-"],
pre[class*="language-"] {
	color: #ccc;
	background: none;
	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;

	-webkit-hyphens: none;
	hyphens: none;

}

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

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

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

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #999;
}

.token.punctuation {
	color: #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
	color: #e2777a;
}

.token.function-name {
	color: #6196cc;
}

.token.boolean,
.token.number,
.token.function {
	color: #f08d49;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
	color: #f8c555;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
	color: #cc99cd;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
	color: #7ec699;
}

.token.operator,
.token.entity,
.token.url {
	color: #67cdcc;
}

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

.token.entity {
	cursor: help;
}

.token.inserted {
	color: green;
}

.mi-code {
  position: relative;
}
.mi-code pre[class*="language-"] {
  white-space: pre-line;
  background: var(--mi-code-pre-bg, #000);
  border: 1px solid var(--mi-code-border, #505050);
  position: relative;
}
.mi-code pre[class*="language-"] code {
  padding: 0;
  margin: 0;
}
.mi-code code {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  margin-right: 0.375rem;
  margin-left: 0.375rem;
}
.mi-code div.code code {
  padding-top: 0.1875rem;
  padding-bottom: 0.1875rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  background: var(--mi-code-bg, #5d5d5d);
  border-radius: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}
.mi-code .token.tag {
  background: transparent;
  margin: 0;
  border-radius: unset;
  max-width: unset;
  line-height: unset;
  padding: 0;
  font-size: var(--mi-font-size-normal, 14px);
  height: auto;
  overflow: auto;
}
.mi-code-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  position: sticky;
  top: 0;
  left: 0;
  margin-bottom: 0.5rem;
}
.mi-code-title span {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  margin-right: 0.75rem;
}
.mi-code-title span:last-child {
  margin-right: 0;
}
.mi-code-dot-red {
  background-color: var(--mi-danger, #eb5651);
}
.mi-code-dot-orange {
  background-color: var(--mi-warning, #ba5a26);
}
.mi-code-dot-green {
  background-color: var(--mi-success, #598569);
}
