:root{
	--code--background:rgba(45,45,45,0.8);
	--highlight-current-line : #393939;
	--highlight-selection : rgba(0,0,0,0.8);
	--highlight-foreground : #cccccc;
	--highlight-comment : #999999;
	--highlight-red : #f2777a;
	--highlight-orange : #f99157;
	--highlight-yellow : #ffcc66;
	--highlight-green : #99cc99;
	--highlight-aqua : #66cccc;
	--highlight-blue : #6699cc;
	--highlight-purple : #cc99cc;
	--highlight-gutter : #888;
}
.CopyButton{
	background-color:rgba(0,0,0,0);
	color:var(--highlight-foreground);
	font-size:0.8em;
	font-family:"Comic Sans MS";
    border: none;
	transition:0.4s;
}
.CopyButton:hover{
	background-color:rgba(0,0,0,0.4);
	color:var(--highlight-foreground);
	background-image:none;
}

figure{
	background-color:var(--code--background);
}
figurepre,
figure.highlight {
  padding: 15px 20px;
  border-style: solid;
  border-color: #ddd;
  border-width: 1px 0;
  overflow: auto;
  color: var(--highlight-foreground);
  line-height: 22.4px;
}
figure.highlight .gutter pre,
figure.gist .gist-file .gist-data .line-numbers {
  color: var(--highlight-gutter);
}
figurepre,
figurecode {
  font-family: "Source Code Pro", Consolas, Monaco, Menlo, Consolas, monospace;
}
figurecode {
  background: #eee;
  text-shadow: 0 1px #fff;
  padding: 0 0.3em;
}
figurepre code {
  background: none;
  text-shadow: none;
  padding: 0;
}
figure.highlight pre {
  border: none;
  margin: 0;
  padding: 0;
}
figure.highlight table {
  margin: 0;
  width: auto;
}
figure.highlight td {
  border: none;
  padding: 0;
}
figure.highlight figcaption {
  font-size: 0.85em;
  color: var(--highlight-comment);
  line-height: 1em;
  margin-bottom: 1em;
}
figure.highlight figcaption a {
  float: right;
}
figure.highlight .gutter pre {
  text-align: right;
}
figure.highlight .code .line{
	width:90%;
}
/*figure.highlight .code .line:hover {
  background-color: var(--highlight-selection);
}*/
figure.gist {
  margin: 0 -20px;
  border-style: solid;
  border-color: #ddd;
  border-width: 1px 0;
  background: var(--code--background);
  padding: 15px 20px 15px 0;
}
figure.gist .gist-file {
  border: none;
  font-family: "Source Code Pro", Consolas, Monaco, Menlo, Consolas, monospace;
  margin: 0;
}
figure.gist .gist-file .gist-data {
  background: none;
  border: none;
}
figure.gist .gist-file .gist-data .line-numbers {
  background: none;
  border: none;
  padding: 0 20px 0 0;
}
figure.gist .gist-file .gist-data .line-data {
  padding: 0 !important;
}
figure.gist .gist-file .highlight {
  margin: 0;
  padding: 0;
  border: none;
}
figure.gist .gist-file .gist-meta {
  background: var(--code--background);
  color: var(--highlight-comment);
  font: 0.85em -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  text-shadow: 0 0;
  padding: 0;
  margin-top: 1em;
  margin-left: 20px;
}
figure.gist .gist-file .gist-meta a {
  color: #258fb8;
  font-weight: normal;
}
figure.gist .gist-file .gist-meta a:hover {
  text-decoration: underline;
}
pre .comment,
pre .title {
  color: var(--highlight-comment);
}
pre .variable,
pre .attribute,
pre .tag,
pre .regexp,
pre .ruby .constant,
pre .xml .tag .title,
pre .xml .pi,
pre .xml .doctype,
pre .html .doctype,
pre .css .id,
pre .css .class,
pre .css .pseudo {
  color: var(--highlight-red);
}
pre .number,
pre .preprocessor,
pre .built_in,
pre .literal,
pre .params,
pre .constant {
  color:var(--highlight-orange);
}
pre .class,
pre .ruby .class .title,
pre .css .rules .attribute {
  color: var(--highlight-green);
}
pre .string,
pre .value,
pre .inheritance,
pre .header,
pre .ruby .symbol,
pre .xml .cdata {
  color: var(--highlight-green);
}
pre .css .hexcolor {
  color: var(--highlight-aqua);
}
pre .function,
pre .python .decorator,
pre .python .title,
pre .ruby .function .title,
pre .ruby .title .keyword,
pre .perl .sub,
pre .javascript .title,
pre .coffeescript .title {
  color: var(--highlight-blue);
}
pre .keyword,
pre .javascript .function {
  color: var(--highlight-purple);
}
