.code-figure {
  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
  border: 1.3px solid gray;
  border-radius: 5px;
  position: relative;
}
.code-figure:hover .code-copy-btn {
  opacity: 1;
}

.code-caption {
  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
  font-size: 0.95em;
  color: #393A34;
  border-bottom: 1.3px solid rgba(57, 58, 52, 0.3098039216);
  padding: 1em;
}

.copy-code-btn-only-on-hover {
  opacity: 0;
}

.code-copy-btn {
  position: absolute;
  top: 0.7em;
  right: 0.7em;
  width: 2.7em;
  height: 2.7em;
  color: white;
  border: 1px solid #cfbaba;
  border-radius: 5px;
  background-color: #f8efe9;
  cursor: pointer;
}
.code-copy-btn:hover {
  background-color: #f1e5d9;
}
.code-copy-btn {
  transition: background-color 100ms;
  transition: opacity 220ms ease-in-out;
}
.code-copy-btn > * {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  transition: opacity 220ms ease-in-out, transform 500ms ease-in-out;
}
.code-copy-btn .code-copy-icon-clipboard {
  transform: scale(1);
  width: 1.1em;
  fill: #70604d;
  transition: opacity 220ms ease-in-out, transform 500ms ease-in-out;
}
.code-copy-btn .code-copy-icon-tick {
  transform: scale(0);
  opacity: 0;
  width: 0.9em;
  fill: green;
}

code[class*=language-] {
  display: block;
  overflow-x: auto;
  padding: 1em;
  color: #393A34;
  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
  font-size: 0.95em;
  hyphens: none;
}
code[class*=language-]::selection {
  text-shadow: none;
  background: #b3d4fc;
}
code[class*=language-]::-webkit-scrollbar {
  height: 12px;
}
code[class*=language-]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3.7px;
}
code[class*=language-]::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3.7px;
}
code[class*=language-]::-webkit-scrollbar-thumb:hover {
  background: #7b7b7b;
}

/**
 * Theme inspired by GitHub Colors theme by Avi Aryan
 * https://github.com/PrismJS/prism-themes/blob/master/themes/prism-ghcolors.css
 */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #999988;
  font-style: italic;
}

.token.namespace {
  opacity: 0.7;
}

.token.string,
.token.attr-value {
  color: #e3116c;
}

.token.punctuation,
.token.operator {
  color: #393A34;
  /* no highlight */
}

.token.entity,
.token.url,
.token.symbol,
.token.number,
.token.boolean,
.token.variable,
.token.constant,
.token.property,
.token.regex,
.token.inserted {
  color: #36acaa;
}

.token.atrule,
.token.keyword,
.token.attr-name,
.language-autohotkey .token.selector {
  color: #00a4db;
}

.token.function,
.token.deleted,
.language-autohotkey .token.tag {
  color: #9a050f;
}

.token.tag,
.token.selector,
.language-autohotkey .token.keyword {
  color: #00009f;
}

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

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

/*# sourceMappingURL=code.css.map */