/* PrismJS 1.17.1
https://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript+bash+json+jsonp+json5+typescript&plugins=toolbar+jsonp-highlight+command-line+copy-to-clipboard */
/**
 * okaidia theme for JavaScript, CSS and HTML
 * Loosely based on Monokai textmate theme by http://www.monokai.nl/
 * @author ocodia
 */

 code[class*="language-"]:not(.language-plaintext),
 pre[class*="language-"]:not(.language-plaintext) {
	color: #d4d4d4;
	 background: none;
	 text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	 font-size: .9em;
	 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;
	 -moz-hyphens: none;
	 -ms-hyphens: none;
	 hyphens: none;
 }
 
 /* Code blocks */
 pre[class*="language-"]:not(.language-plaintext) {
	 padding: 1em;
	 margin: .5em 0;
	 overflow: auto;
	 border-radius: 0.3em;
 }
 
 :not(pre) > code[class*="language-"]:not(.language-plaintext),
 pre[class*="language-"]:not(.language-plaintext) {
	background: #252526;
 }
 
 /* Inline code */
 :not(pre) > code[class*="language-"]:not(.language-plaintext) {
	 padding: .1em;
	 border-radius: .3em;
	 white-space: normal;
 }
 
 .token.comment,
 .token.prolog,
 .token.doctype,
 .token.cdata {
	color: #6a9955;
 }
 
 .token.punctuation {
	 color: #f8f8f2;
 }
 
 .namespace {
	 opacity: .7;
 }
 
 .token.property,
 .token.tag,
 .token.constant,
 .token.symbol,
 .token.deleted {
	color: #9cdcfe;
 }
 
 .token.boolean,
 .token.number {
	color: #b5cea8;
 }
 
 .token.selector,
 .token.attr-name,
 .token.string,
 .token.char,
 .token.builtin,
 .token.inserted {
	color: #ce9178;
 }
 
 .token.operator,
 .token.entity,
 .token.url,
 .language-css .token.string,
 .style .token.string,
 .token.variable {
	color: #d4d4d4;
 }
 
 .token.atrule,
 .token.attr-value,
 .token.function,
 .token.class-name {
	color: #4ec9b0;
 }
 
 .token.keyword {
	color: #569cd6;
 }
 
 .token.regex,
 .token.important {
	color: #d16969;
 }
 
 .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;
	 top: .6em;
	 right: .6em;
	 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 a {
	 cursor: pointer;
 }
 
 div.code-toolbar > .toolbar 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 a,
 div.code-toolbar > .toolbar button,
 div.code-toolbar > .toolbar span {
	 color: #eee;
	 font-size: .8em;
	 padding: .4em 1.5em .5em 1.5em;
	 background: rgba(95, 176, 80, 0.7);
	 border-radius: .5em;
     outline: none;
 }
 
 div.code-toolbar > .toolbar a:hover,
 div.code-toolbar > .toolbar a:focus,
 div.code-toolbar > .toolbar button:hover,
 div.code-toolbar > .toolbar button:focus,
 div.code-toolbar > .toolbar span:hover,
 div.code-toolbar > .toolbar span:focus {
	 color: white;
	 text-decoration: none;
 }
 
 .command-line-prompt {
	 border-right: 1px solid #999;
	 display: block;
	 float: left;
	 font-size: 100%;
	 letter-spacing: -1px;
	 margin-right: 1em;
	 pointer-events: none;
 
	 -webkit-user-select: none;
	 -moz-user-select: none;
	 -ms-user-select: none;
	 user-select: none;
 }
 
 .command-line-prompt > span:before {
	 color: #999;
	 content: ' ';
	 display: block;
	 padding-right: 0.8em;
 }
 
 .command-line-prompt > span[data-user]:before {
	 content: "$";
 }

.command-line-prompt > span[data-user="root"]:before {
	 content: "#";
 }
 
 .command-line-prompt > span[data-prompt]:before {
	 content: attr(data-prompt);
 }
 