:root {
	--light-color: #fff;
	--light-color-2: #f5f5f5;
	--light-color-3: #f7f7f7;
	--light-color-4: #ebebeb;
	--dark-color: #000;
	--dark-color-1: #1a1a1a;
	--dark-color-2: #2a2a2a;
	--dark-color-3: #333;
	--dark-color-4: #666;
	--dark-color-5: #999;
	--underline-color: #dadada;
	--warning-color: #ddd;

	--body-text-color: var(--dark-color);
	--body-bg-color: var(--light-color-3);
	--content-bg-color: var(--light-color);
	--content-text-color: var(--dark-color);
	--pre-bg-color: var(--light-color-2);
	--button-text-color: var(--light-color);
	--button-bg-color: var(--dark-color);
	--border-color: var(--light-color-4);
	--accent-bg-color: var(--dark-color-2);
	--footer-text-color: var(--dark-color-5);
	--footer-border-color: var(--dark-color-5);
	--meta-text-color: var(--dark-color-4);
	--mode-bg-color: var(--light-color-4);
	--search-bg-color: var(--light-color-3);

  --syntax-color-1: #008800;
  --syntax-color-2: #282a36;
  --syntax-color-3: #e2e4e5;
  --syntax-color-4:  #ff5c57;
  --syntax-color-5: #dd2200;
  --syntax-color-6: #ff9f43;
  --syntax-color-7: #7f7f7f;
  --syntax-color-8: #78787e;
  --syntax-color-9: #57c7ff;
  --keyword-type-color: #9aedfe;
  --line-highlight-color: #ffffcc;
  --name-class-color: #f3f99d;
  --generic-output-color: #43454f;

	--ease: ease;

	--highlight-color: #e22d30;
	--font-primary: "Open Sans", Helvetica, Arial, sans-serif;
	--font-secondary: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --copied-text: "Copied";
}

:root[data-mode="dark"] {
	
	--body-bg-color: var(--dark-color-1);
	--body-text-color: var(--light-color);
	--content-bg-color: var(--dark-color-2);
	--content-text-color: var(--light-color-3);
	--pre-bg-color: var(--body-bg-color);
	--border-color: rgb(63, 65, 68);
	--border-color-2: rgb(44, 45, 45);
	--button-text-color: var(--light-color-3);
	--button-bg-color: transparent;
	--underline-color: var(--border-color);
	--accent-bg-color: var(--dark-color-3);
	--footer-border-color: transparent;
	--meta-text-color: var(--dark-color-5);
	--mode-bg-color: var(--dark-color-3);
	--search-bg-color: var(--dark-color-3);

  --syntax-color-1: #5af78e;
	--syntax-color-5: #ff6ac1;

}

@media (prefers-color-scheme: dark) {
	:root[data-mode="auto"]:not([data-mode="light"]) {
		
	--body-bg-color: var(--dark-color-1);
	--body-text-color: var(--light-color);
	--content-bg-color: var(--dark-color-2);
	--content-text-color: var(--light-color-3);
	--pre-bg-color: var(--body-bg-color);
	--border-color: rgb(63, 65, 68);
	--border-color-2: rgb(44, 45, 45);
	--button-text-color: var(--light-color-3);
	--button-bg-color: transparent;
	--underline-color: var(--border-color);
	--accent-bg-color: var(--dark-color-3);
	--footer-border-color: transparent;
	--meta-text-color: var(--dark-color-5);
	--mode-bg-color: var(--dark-color-3);
	--search-bg-color: var(--dark-color-3);

  --syntax-color-1: #5af78e;
	--syntax-color-5: #ff6ac1;

	}
}

/* unused color options */
/* --syntax-color-1: #ffffff;
--syntax-color-2: #fff0f0;
--syntax-color-4: #aa0000;
--syntax-color-5: #008800;
--syntax-color-6: #0000dd;
--syntax-color-7: #7f7f7f;
--syntax-color-8: #888888;
--syntax-color-9: #dd2200;
--syntax-color-10: #22bb22;
--syntax-color-11: #a61717;
--syntax-color-12: #336699;
--syntax-color-13: #3333bb;
--syntax-color-14: #dd7700;
--syntax-color-15: #aa6600;
--syntax-color-16: #bb0066; */*,
*::before,
*::after {
	box-sizing: border-box;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

:placeholder {
	color: var(--content-text-color);
}
:focus::-webkit-input-placeholder,
:focus::-moz-placeholder,
:focus:-moz-placeholder,
:focus:-ms-input-placeholder {
	color: transparent;
}

/* Structure */
html {
	font-size: 100%;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

body {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 14px;
	font-size: .875rem;
	line-height: 1.6;
	word-wrap: break-word;
	background: var(--body-bg-color);
	-webkit-font-smoothing: antialiased;
}

.container {
	position: relative;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

.container--outer {
	margin: 25px auto;
	box-shadow: 0 0 10px rgba(50, 50, 50, .17);
}

.wrapper {
	padding: 25px;
	background: var(--content-bg-color);
	color: var(--content-text-color);
}

.flex {
	display: -webkit-flex;
	display: flex;
}

.primary {
	-webkit-flex: 1 0 65.83%;
	flex: 1 0 65.83%;
	-webkit-order: 1;
	order: 1;
	min-width: 0;
}

.sidebar {
	-webkit-flex: 1 0 31.66%;
	flex: 1 0 31.66%;
	-webkit-order: 2;
	order: 2;
	min-width: 0;
	margin: 0 0 0 2.5%;
}

.sidebar--left {
	-webkit-order: 0;
	order: 0;
	margin: 0 2.5% 0 0;
}

.clearfix {
	display: block;
}

.clearfix::after {
	display: block;
	height: 0;
	padding: 0;
	margin: 0;
	clear: both;
	line-height: 0;
	visibility: hidden;
	content: "";
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

/* Button */
.btn {
	padding: 5px 10px;
	font-weight: 700;
	color: var(--button-text-color);
	white-space: pre-line;
	border: 1px solid var(--border-color);
	background: var(--button-bg-color);
}

.btn:hover {
	--border-color: var(--highlight-color);
	color: var(--light-color);
	background: var(--highlight-color);
}

/* Animation */
.menu__item,
.btn {
	transition: background-color .25s ease-out;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--body-text-color);
}

h1 {
	font-size: 32px;
	font-size: 2rem;
}

h2 {
	font-size: 24px;
	font-size: 1.5rem;
}

h3 {
	font-size: 20px;
	font-size: 1.25rem;
}

h4 {
	font-size: 18px;
	font-size: 1.125rem;
}

h5 {
	font-size: 16px;
	font-size: 1rem;
}

h6 {
	font-size: 16px;
	font-size: 1rem;
}

a {
	color: var(--body-text-color);
	text-decoration: none;
}

a:hover {
	color: var(--highlight-color);
}

hr {
	margin: 0 0 20px;
	border: 0;
	border-top: 1px solid var(--underline-color);
}

p {
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
}

b,
strong {
	font: inherit;
	font-weight: 700;
}

i,
em {
	font: inherit;
	font-style: italic;
}

ol,
ul {
	padding: 0;
	margin: 0;
}

small {
	font-size: 12px;
	font-size: .75rem;
}

mark {
	background-color: #fd5;
}

figure {
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
}

figcaption {
	margin-top: 4px;
	margin-top: .25rem;
	color: var(--meta-text-color);
}

figcaption h4 {
	margin: 0;
	color: inherit;
}

pre,
code,
kbd,
samp {
	font-family: var(--font-secondary);
	font-size: inherit;
}

pre,
code {
	background-color: var(--pre-bg-color);
}


code {
	border: 1px solid var(--border-color);
	padding: 0 5px;
	color: #c33;
}

pre {
	display: block;
	padding: 0;
	padding: 1.25rem;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	overflow: auto;
	color: var(--body-text-color);
}

pre:hover {
	word-wrap: break-word;
	white-space: pre-wrap;
}

pre:hover code {
	word-break: break-all;
}

pre:hover .shell {
	align-items: flex-start;
}

pre code {
	padding: 0;
	color: inherit;
	white-space: inherit;
	background: inherit;
	border: 0;
}

kbd {
	padding: 2px 3px;
	color: var(--light-color);
	background-color: var(--accent-bg-color);
}

blockquote {
	display: block;
	padding: 5px 0 5px 15px;
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
	line-height: 1.6;
	border-left: 5px solid var(--highlight-color);
}

blockquote p:last-child {
	margin: 0;
}

blockquote footer {
	text-align: right;
}

sup,
sub {
	font-size: 10px;
	font-size: .625rem;
	font-style: normal;
}

sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

abbr[title] {
	text-decoration: none;
	cursor: help;
	border-bottom: 1px dotted var(--body-text-color);
}

q {
	font-style: italic;
}

address {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	font-family: "Consolas", Courier New, Courier, monospace;
	line-height: 1.5;
}

dl {
	margin: 0 0 10px 20px;
}

dt,
dd {
	display: list-item;
}

dt {
	font-weight: bold;
	list-style-type: square;
}

dd {
	margin-left: 20px;
	list-style-type: circle;
}

select {
	max-width: 100%;
}

.warning {
	padding: 20px 10px;
	text-align: center;
	border: 1px solid var(--warning-color);
}

.warning__icon {
	margin-bottom: 20px;
	fill: var(--warning-color);
}

/* Header */
.header {
	background: var(--content-bg-color);
}

.logo {
	padding: 25px;
}

.logo__link {
	display: inline-block;
}

.logo__item {
	display: inline-block;
	vertical-align: middle;
}

.logo__img {
	max-height: 256px;
}

.logo__text {
	text-transform: uppercase;
}

.logo--mixed .logo__item {
	margin: .5rem auto;
}

.logo--mixed .logo__img {
	max-width: 128px;
	max-height: 128px;
}

.logo--mixed .logo__text {
	padding: 0 1rem;
}

.logo__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: var(--body-text-color);
}

.logo__tagline {
	display: inline-block;
	padding-top: 10px;
	margin-top: 10px;
	font-size: 14px;
	font-size: .875rem;
	font-weight: 700;
	line-height: 1;
	color: var(--highlight-color);
	border-top: 1px solid var(--border-color);
}

.divider {
	height: 5px;
	margin: 0;
	background: var(--highlight-color);
	border: 0;
}

/* Main menu */
.no-js .menu__btn {
	display: none;
}

.menu__btn {
	display: block;
	width: 100%;
	padding: 0;
	font: inherit;
	color: var(--light-color);
	background: var(--dark-color-2);
	border: 0;
	outline: 0;
}

.menu__btn-title {
	position: relative;
	display: block;
	padding: 10px 15px;
	padding: .625rem .9375rem;
	font-weight: 700;
	text-align: right;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

:focus > .menu__btn-title {
	box-shadow: inset 0 0 1px 3px var(--highlight-color);
}

button:not(:-moz-focusring):focus > .menu__btn-title {
	box-shadow: none;
}

.menu__btn:focus,
.menu__btn-title:focus {
	outline: 0;
}

.js .menu__btn--active {
	color: var(--highlight-color);
}

.menu__list {
	list-style: none;
	background: var(--accent-bg-color);
}

.menu__item:hover {
	background: var(--highlight-color);
}

.menu__item:first-child {
	border: 0;
}

.menu__item--active {
	background: var(--highlight-color);
}

.menu__link {
	display: block;
	padding: 10px 15px;
	padding: .625rem .9375rem;
	font-weight: 700;
	color: var(--light-color);
	text-transform: uppercase;
}

.menu__link:hover {
	color: var(--light-color);
}

.js .menu__list {
	position: absolute;
	z-index: 1;
	width: 100%;
	visibility: hidden;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top left;
	transform-origin: top left;
}

.js .menu__list--active {
	visibility: visible;
	border-top: 1px solid rgba(255, 255, 255, .1);
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.menu__list--transition {
	transition: visibility .15s ease, transform .15s ease, -webkit-transform .15s ease;
}

@media screen and (min-width: 767px) {
	.menu {
		border-bottom: 5px solid var(--highlight-color);
	}

	.menu__btn {
		display: none;
	}

	.menu__list,
	.js .menu__list {
		position: relative;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		visibility: visible;
		border: 0;
		-webkit-transform: none;
		transform: none;
	}

	.menu__item {
		border-left: 1px solid rgba(255, 255, 255, .1);
	}
}

/* Posts/Pages */
.post__header,
.main__header {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}

.main__title {
	font-size: 28px;
	font-size: 1.75rem;
}

.main__content {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}

.meta {
	font-size: 13px;
	font-size: .8125rem;
	vertical-align: baseline;
}

.meta,
.meta a {
	color: var(--meta-text-color);
}

.meta a:hover {
	color: var(--highlight-color);
}

.meta__item {
	display: inline;
	margin-left: 15px;
}

.meta__item:first-child {
	margin-left: 0;
}

.meta__icon {
	margin-right: 5px;
	vertical-align: middle;
	fill: #c4c4c4;
}

.meta__text {
	vertical-align: middle;
}

.post__title {
	margin: 0;
}

.post__meta {
	padding: 5px 0;
	margin-top: 10px;
	margin-top: .625rem;
	border-top: 1px dotted var(--border-color);
	border-bottom: 1px dotted var(--border-color);
}

.post__lead {
	margin-top: 4px;
	margin-top: .25rem;
	margin-bottom: 0;
	font-size: 16px;
	font-size: 1rem;
	font-style: italic;
}

.post__thumbnail {
	max-width: 1030px;
	margin: 0 0 20px;
	margin-bottom: 0 0 1.25rem;
}

.post__thumbnail img {
	width: 100%;
}

.content a,
.warning a,
.authorbox__description a {
	font-weight: 700;
	color: var(--highlight-color);
}

.content a:hover,
.warning a:hover,
.authorbox__description a:hover {
	color: var(--highlight-color);
	text-decoration: underline;
}

.content .alignnone {
	display: block;
	margin: 20px 0;
	margin: 1.25rem 0;
}

.content .aligncenter {
	display: block;
	margin: 20px auto;
	margin: 1.25rem auto;
}

.content .alignleft {
	display: inline;
	float: left;
	margin: 5px 20px 20px 0;
	margin: .3125rem 1.25rem 1.25rem 0;
}

.content .alignright {
	display: inline;
	float: right;
	margin: 5px 0 20px 20px;
	margin: .3125rem 0 1.25rem 1.25rem;
}

.content ul {
	list-style: square;
}

.content ol {
	list-style: decimal;
}

.content ul,
.content ol {
	margin: 0 0 20px 40px;
}

.content ul ul,
.content ol ol,
.content ol ul,
.content ul ol {
	margin: 0 0 0 40px;
}

.content li {
	margin-bottom: 5px;
}

.post__footer {
	margin-top: 20px;
	margin-top: 1.25rem;
}

/* Post tags */
.tags {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	font-size: 12px;
	font-size: .75rem;
	line-height: 1;
	color: var(--light-color);
}

.tags__list {
	list-style: none;
}

.tags__item {
	float: left;
	margin: 0 6px 6px 0;
	margin: 0 .375rem .375rem 0;
	text-transform: uppercase;
	background: var(--dark-color-2);
}

.tags__item:hover {
	background: var(--highlight-color);
}

.tags__link,
.tags__link:hover {
	display: block;
	padding: 10px 15px;
}

.tags__badge {
	float: left;
	width: 33px;
	height: 33px;
	padding: 8px;
	margin-right: 6px;
	background: var(--highlight-color);
	border: 1px solid var(--highlight-color);
	fill: var(--light-color);
}

/* Table of Contents */
.toc {
	margin-bottom: 20px;
	font-weight: 700;
	color: var(--dark-color-5);
	background: var(--content-bg-color);
	border-color: var(--border-color);
	border-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0;
	border-left-width: 1px;
}

.toc__title {
	padding: 5px 10px;
	color: var(--light-color);
	text-transform: uppercase;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	background: var(--accent-bg-color);
}

.toc__menu ul {
	margin: 0;
	list-style: none;
}

.toc__menu li li a {
	padding-left: 25px;
}

.toc__menu li li li a {
	padding-left: 45px;
}

.toc__menu li li li li a {
	padding-left: 65px;
}

.toc__menu li li li li li a {
	padding-left: 85px;
}

.toc__menu li li li li li li a {
	padding-left: 105px;
}

.toc__menu li {
	margin: 0;
}

.toc__menu a {
	display: block;
	padding: 5px 10px;
	color: var(--highlight-color);
	border-bottom: 1px solid var(--border-color);
}

.toc__menu a:hover {
	text-decoration: underline;
}

/* Author Box */
.authorbox {
	padding: 25px 0;
	margin-bottom: 25px;
	line-height: 1.5;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.authorbox__avatar {
	float: left;
	padding: 3px;
	margin: 0 25px 0 0;
	border: 1px solid var(--border-color);
}

.authorbox__header {
	margin-bottom: 10px;
}

.authorbox__name {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
}

/* List content */
.list__item {
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid var(--border-color);
}

.list__header {
	margin-bottom: 10px;
	margin-bottom: .625rem;
}

.list__title {
	font-size: 20px;
	font-size: 1.25rem;
}

.list__meta {
	margin-top: 5px;
}

.list__thumbnail {
	float: left;
	margin: 0 20px 0 0;
}

.list__thumbnail img {
	width: 100%;
	max-width: 235px;
}

.list__footer-readmore {
	float: right;
	margin-top: 10px;
}

/* Pagination */
.pagination {
	margin-top: 20px;
}

.pagination__item {
	display: inline-block;
	padding: 10px 15px;
	font-weight: 700;
	color: var(--body-text-color);
	background: var(--accent-bg-color);
}

.pagination__item:hover,
.pagination__item--current {
	color: var(--light-color);
	background: var(--highlight-color);
}

/* Pager (prev/next links) navigation */
.pager {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-top: 25px;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid var(--border-color);
}

.pager__subtitle {
	display: block;
	margin-bottom: 5px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.pager__title {
	margin-bottom: 0;
	overflow: hidden;
	font-size: 13px;
	font-size: .8125rem;
}

.pager__item {
	-webkit-flex: 1 1 50%;
	flex: 1 1 50%;
	max-width: 48%;
}

.pager__item--next {
	margin-left: auto;
	text-align: right;
}

.pager__link {
	display: block;
}

/* Images / Video */
img {
	width: auto\9; /* ie8 */
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

iframe,
embed,
object,
video {
	max-width: 100%;
}

/* Table */
table {
	width: 100%;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	border-spacing: 0;
	border-collapse: collapse;
	border-top: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
}

td,
th {
	padding: 5px 10px;
	border-right: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

th {
	font-weight: 700;
}

/* Forms */
input {
	padding: 5px;
	font-size: 12px;
	vertical-align: middle;
	background: var(--light-color-2);
	color: var(--content-text-color);
	border: 1px solid var(--border-color);
	transition: all .25s ease-in-out;
}

input:focus {
	border: 1px solid var(--accent-bg-color);
	outline: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url] {
	width: 60%;
}

input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover,
input[type=url]:hover,
textarea:hover {
	border: 1px solid var(--light-color-4);
}

input[type=submit],
input[type=reset] {
	display: inline-block;
	min-width: 150px;
	padding: 10px 15px;
	font-weight: 700;
	color: var(--light-color);
	text-transform: uppercase;
	cursor: pointer;
	background: var(--dark-color-2);
	border: 0;
	transition: all .1s linear;
	-webkit-appearance: none;
}

input[type=submit]:hover,
input[type=reset]:hover {
	background: var(--highlight-color);
}

textarea {
	width: 96%;
	padding: 5px;
	overflow: auto;
	line-height: 1.5;
	resize: vertical;
	background: var(--light-color-2);
	border: 1px solid rgba(0, 0, 0, .1);
}

/* Widgets */
.widget {
	margin-bottom: 25px;
	overflow: hidden;
}

.widget:last-child {
	margin-bottom: 0;
}

.widget__title {
	position: relative;
	padding-bottom: 5px;
	font-size: 16px;
	font-size: 1rem;
	text-transform: uppercase;
	border-bottom: 3px solid var(--highlight-color);
}

.widget__item {
	display: block;
	padding: 5px 0;
	border-bottom: 1px dotted var(--border-color);
}

.widget__item:first-child {
	padding-top: 0;
}

.widget__counter--bubble {
	display: inline-block;
	padding: 0 6px;
	font-size: .75rem;
	color: var(--meta-text-color);
	text-align: center;
	background: var(--border-color);
	border-radius: 2em;
}

/* Search widget */
.widget-search__form {
	display: block;
	padding: 5%;
	margin: 0 auto;
	background: var(--search-bg-color);
}

.widget-search__form .widget-search__submit {
	display: none;
}

.widget-search__field {
	position: relative;
	display: block;
	width: 90%;
	padding: 8px;
	margin: 0 auto;
	font-size: 11px;
	cursor: pointer;
	background: var(--content-bg-color);
	border: 1px solid var(--border-color);
	border-radius: 0;
	outline-offset: -2px;
	transition: none;
	-webkit-appearance: none;
}

.widget-search__field:active,
.widget-search__field:focus {
	cursor: text;
}

/* Social widget */
.widget-social__item {
	padding: 0;
	border: 0;
}

.widget-social__link {
	display: block;
	margin: 0 0 8px;
	white-space: normal;
}

.widget-social__link-icon {
	margin: 0 5px 0 0;
	vertical-align: middle;
	fill: var(--light-color);
}

/* Tags Widget */
.widget-taglist__link {
	display: inline-block;
	margin: 0 4px 8px 0;
	font-size: 12px;
	text-transform: uppercase;
}

/* Languages Widget */
.widget-languages__link {
	display: block;
}

.widget-languages__link:hover .widget-languages__link-btn {
	color: var(--light-color);
	background: var(--highlight-color);
}

.widget-languages__link-btn {
	display: inline-block;
}

/* Footer */
.footer {
	padding: 10px 25px;
	font-size: 12px;
	font-size: .75rem;
	color: var(--footer-text-color);
	background: var(--accent-bg-color);
	border-top: 3px solid var(--footer-border-color);
}

.footer__container {
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.footer__links {
	-webkit-order: 1;
	order: 1;
}

.footer a {
	color: var(--light-color);
}

.footer a:hover {
	text-decoration: underline;
}

/* Media Queries */
@media screen and (max-width: 1475px) {
	.container--outer {
		width: 95%;
	}
}

@media screen and (max-width: 900px) {
	.container--outer {
		width: 100%;
		margin: 0 auto;
	}

	.wrapper,
	.logo {
		padding: 20px;
	}

	.widget {
		margin-bottom: 20px;
	}

	.footer__container {
		display: block;
	}

	.footer__links {
		padding-bottom: 8px;
		padding-bottom: 0.5rem;
		text-align: center;
	}

	.footer__copyright {
		text-align: center;
	}
}

@media screen and (max-width: 767px) {
	.wrapper {
		display: block;
	}

	.sidebar {
		float: none;
		width: 100%;
		margin: 0;
	}

	.logo {
		text-align: center;
	}

	.logo__link {
		margin: 0 auto;
	}

	.logo__title {
		font-size: 24px;
		font-size: 1.5rem;
	}

	.sidebar {
		margin-top: 20px;
	}
}

@media screen and (max-width: 620px) {
	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=url] {
		width: 88%;
	}

	.meta__item {
		display: block;
		margin-left: 0;
	}

	.authorbox {
		text-align: center;
	}

	.authorbox__avatar {
		display: inline-block;
		float: none;
		margin: 0 0 20px;
	}

	.pager {
		display: block;
	}

	.pager__item {
		min-width: 100%;
		text-align: center;
	}

	.pager__item--prev {
		padding-bottom: 25px;
	}

	.content ul,
	.content ol {
		margin: 0 0 20px 20px;
	}

	.content ul ul,
	.content ol ol,
	.content ol ul,
	.content ul ol {
		margin: 0 0 0 20px;
	}

	.list__thumbnail {
		max-width: 80px;
	}

	.list__title {
		font-size: 16px;
		font-size: 1rem;
	}

	.list__lead {
		font-size: 14px;
		font-size: .875rem;
	}

	.list__meta {
		display: block;
		font-size: 11px;
		font-size: .6875rem;
	}
}

.light__toggle {
	--size: 2.5rem;
	position: absolute;
	right: 1.5rem;
	cursor: pointer;
	background: transparent;
	outline: none;
	border: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: var(--size);
	width: var(--size);
	border-radius: 50%;
}

.light__toggle:hover {
	background: var(--mode-bg-color);
}

.light__toggle svg {
	display: none;
	opacity: 0;
	transform: scale(0.9);
}

.light__toggle svg.active {
	display: inline-block;
	opacity: 1;
}

.link {
	opacity: 0;
	position: absolute;
	left: -2.1rem;
	color: var(--body-text-color);
	text-decoration: none;
	display: inline-flex;
	top: 0;
	padding-top: calc(0.2 * var(--height));
	min-height: 2rem;
	padding-left: 0.5rem;
	cursor: pointer;
}
.link svg,
.link img {
	--size: 1.5rem;
	width: var(--size);
	height: var(--size);
	fill: var(--body-text-color);
}

.link__owner {
	position: relative;
}
.link__owner:hover .link {
	opacity: 1;
}
.link__copy {
	opacity: 1;
}

.copied::before,
.copied::after{
	position: absolute;
	--search-bg-color: var(--generic-output-color);
}
.copied::before {
	--horizontal-offset: 2.4rem;
	content: var(--copied-text);
	top: 0;
	background-color: var(--search-bg-color);
	color: #5af78e;
	font-weight: 700;
	min-width: 5rem;
	padding: 0.3rem 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	border-radius: 0.33rem;
	text-align: center;
	display: flex;
	text-transform: capitalize;
	align-items: center;
	justify-content: center;
}
.copied::after {
	--horizontal-offset: 1.65rem;
	position: absolute;
	top: 0.67rem;
	content: "";
	border-color: var(--search-bg-color) transparent;
	border-style: solid;
	border-width: 0.5rem 0.5rem 0 0.5rem;
	height: 0;
	width: 0;
	transform-origin: 50% 50%;
	transform: rotate(90deg);
}
.copied:not(.js-left)::before,
.copied:not(.js-left)::after {
	left: var(--horizontal-offset);
}
.copied.js-left::before,
.copied.js-left::after {
  right: var(--horizontal-offset);
}

.copied.js-left::after {
	transform: rotate(-90deg);
}

.highlight_wrap .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem;
	--size: 2rem;
	width: var(--size);
	height: var(--size);
	border: 1.1px solid var(--syntax-color-1);
	background-color: var(--pre-bg-color);
	border-radius: 0.33rem;
	opacity: 1 !important;
	position: relative !important;
	left: initial !important;
	min-height: auto !important;
}

.windows .highlight {
  overflow-x: hidden;
}
.windows .highlight:hover {
  overflow-x: auto;
}

.highlight {
  display: grid;
  width: 100%;
  border-radius: 0 0.2rem 0.2rem 0;
  overflow-x: auto;
  position: relative;
}
.highlight_wrap {
  position: relative;
}
.highlight_wrap:hover > div {
  opacity: 1;
}

.highlight .highlight {
  margin: 0;
}

.highlight table {
  display: grid;
  max-width: 100%;
  margin-bottom: 0;
  background: transparent;
}
.highlight td,
.highlight th {
  padding: 0;
}
.highlight .lntd {
  width: 100%;
  border: none;
}

.highlight .lntd:first-child pre {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.panel_box {
  display: inline-flex;
  perspective: 300px;
  grid-gap: 0.5rem;
  transition: opacity 0.3s var(--easing);
  background: var(--code-bg);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  align-items: center;
  position: absolute;
  right: -1rem;
  top: 1.5rem;
  opacity: 0;
}

.panel_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.1rem;
  transform-origin: 50% 50%;
  background-size: 100%;
  background-repeat: no-repeat;
	color: var(--light-color);
}

.panel_icon svg {
	--size: 1rem;
	opacity: 0.8;
  fill: var(--content-text-color);
	width: var(--size);
	height: var(--size);
}

.panel_hide {
  display: none;
}

.shell {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.shell::before {
	content: "$";
	position: relative;
	font-weight: 500;
	transform: scale(1.1);
	transform-origin: 50% 50%;
	margin-right: 0.5rem;
}
.highlight .lnlinks {
  outline: none;
  text-decoration: none;
  color: inherit
}

.highlight .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0;

}
.highlight .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.highlight .lnt {
  white-space: pre;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
}

.highlight .ln {
  white-space: pre;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
}

.highlight .line {
  display: flex;
}

/* .bg {
  color: var(--syntax-color-3);
  background-color: var(--syntax-color-2);
} */
.highlight {
  color: var(--syntax-color-3);
  /* background-color: var(--syntax-color-2); */
}

.highlight .err {
  color: var(--syntax-color-4);
}

.highlight .hl {
  background-color: var(--line-highlight-color);
}
.highlight .lnt {
  color: var(--syntax-color-7);
}
.highlight .ln {
  color: var(--syntax-color-7);
}
.highlight .k,
.highlight .kc {
  color: var(--syntax-color-5);
}
.highlight .kd {
  color: var(--syntax-color-4);
}
.highlight .kn,
.highlight .kp,
.highlight .kr {
  color: var(--syntax-color-5);
}
.highlight .kt {
  color: var(--keyword-type-color);
}
.highlight .na {
  color: var(--syntax-color-9);
}
.highlight .nb {
  color: var(--syntax-color-4);
}
.highlight .nc {
  color: var(--name-class-color);
}
.highlight .no,
.highlight .nd {
  color: var(--syntax-color-6);
}

.highlight .nf {
  color: var(--syntax-color-9);
}

.highlight .nl {
  color: var(--syntax-color-4);
}
.highlight .nt {
  color: var(--syntax-color-5);
}
.highlight .nv,
.highlight .vc,
.highlight .vg,
.highlight .vi {
  color: var(--syntax-color-4);
}

.highlight .s,
.highlight .sa,
.highlight .sb,
.highlight .sc,
.highlight .dl,
.highlight .sd,
.highlight .s2,
.highlight .se,
.highlight .sh,
.highlight .si,
.highlight .sx,
.highlight .sr,
.highlight .s1,
.highlight .ss {
  color: var(--syntax-color-1);
}
.highlight .m,
.highlight .mb,
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .il,
.highlight .mo {
  color: var(--syntax-color-6);
}
.highlight .o,
.highlight .ow {
  color: var(--syntax-color-5);
}
.highlight .c,
.highlight .ch,
.highlight .cm,
.highlight .c1,
.highlight .cs,
.highlight .cp,
.highlight .cpf {
  color: var(--syntax-color-8);
}

.highlight .gd {
  color: var(--syntax-color-4);
}
.highlight .ge {
  text-decoration: underline
}
.highlight .gr {
  color: var(--syntax-color-4);
}
.highlight .gh,
.highlight .gi {
  font-weight: bold
}
.highlight .go {
  color: var(--generic-output-color);
}
.highlight .gs {
  font-style: italic
}
.highlight .gu {
  font-weight: bold
}
.highlight .gl {
  text-decoration: underline
}
