/**
 * Solarized dark atom theme for `prism.js`
 * Based on Atom's `atom-dark` theme: https://github.com/atom/atom-dark-syntax
 * @author Pranay Chauhan (@PranayChauhan2516)
 */
:root {
	--ch-scrollycoding-sticker-width: 50%;
}
div.remark-highlight {
	margin-top: calc(var(--chakra-space-6) * -1);
	position: relative;
}

code[class*="language-"],
pre[class*="language-"] {
	color: #839496;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier, monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: 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;

	font-size: 16px;
}

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

:not(pre):not(div.ch-code):not(div.ch-code-wrapper) > code[class*="language-"],
pre[class*="language-"], code[data-ch-lang] {
	background: #002b36;
}
.ch-codeblock.not-prose {
	max-width: 40em;
}

.ch-scrollycoding-step-content {
	transition: opacity 0.7s ease-in-out;
	opacity: 0.15;
}

.ch-codeblock .ch-code-button {
  display: none;
}
  
.ch-codeblock:hover .ch-code-button {
  display: block;
  color: white;
}

.ch-scrollycoding-step-content[data-selected] {
	opacity: 1;
	border-color: transparent !important;
}

/* Inline code */
:not(pre):not(div.ch-code):not(div.ch-code-wrapper) > code {
	padding: .3em;
	border-radius: .3em;
	font-size: 0.8em;
	background-image: linear-gradient(142.21deg, rgba(79, 218, 184, 0.5) 4.44%, rgba(82, 199, 234, 0.5) 94.64%);
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #586e75;
}

.token.punctuation {
	color: #93a1a1;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.keyword,
.token.tag {
	color: #268bd2;
}

.token.class-name {
	color: #FFFFB6;
	text-decoration: underline;
}

.token.boolean,
.token.constant {
	color: #b58900;
}

.token.symbol,
.token.deleted {
	color: #dc322f;
}

.token.number {
	color: #859900;
}

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

.token.variable {
	color: #268bd2;
}

.token.operator {
	color: #EDEDED;
}

.token.function {
	color: #268bd2;
}

.token.regex {
	color: #E9C062;
}

.token.important {
	color: #fd971f;
}

.token.entity {
	color: #FFFFB6;
	cursor: help;
}

.token.url {
	color: #96CBFE;
}

.language-css .token.string,
.style .token.string {
	color: #87C38A;
}

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

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

.token.atrule,
.token.attr-value {
	color: #F9EE98;
}

pre[class*="language-bash"], 
pre[class*="language-shell"] {
	padding-left: 2em;
}
pre[class*="language-bash"]::before, 
pre[class*="language-shell"]::before {
	content: "$ ";
	margin: -1em;
}
code[class*="language-bash"], 
codepre[class*="language-shell"] {
	padding-left: 0.8em;
}
