* {
	padding: 0;
	margin: 0;
	box-sizing: border-box
}

html {
	height: 100%;
	font-size: 100%;
	/*width: 320px;*/
}

body {
	font-family: system-ui;
	font-size: 17px;
	/*font-size: 100%;*/
	font-weight: 400;
	/*min-width: 320px;*/
	/*width: 100%;*/
	height: 100%;
	background: #eee;
	word-break: break-word;
}

.header, .footer {
	background: #6194E1;
	color: #ffffff;
	padding: 8px 20px 10px 20px;
	position: relative;
	height: 40px;
	text-wrap: nowrap;
}

.header > div:first-child {
	float: left;
	position: relative;
}

@media only screen and (max-width: 380px) {
	.header > div:first-child span {
		display: none;
	}
}


.header > div:last-child {
	float: right;
	position: relative;
	top: -3px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	z-index: 1;
}

.header > div:last-child > div:before,
.header > div:last-child > div:after,
.header > div:last-child > div {
	position: absolute;
	width: 25px;
	height: 3px;
	background-color: #ffffff;
	transition: 0.4s;
}

.header > div:last-child > div {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header > div:last-child > div:before {
	content: '';
	top: -7px;
}
.header > div:last-child > div:after {
	content: '';
	top: 7px;
}

.header > div:last-child > ul {
	visibility: hidden;
	opacity: 0;
	transition: all 0s ease 0s;
	overflow: hidden;
}

.header > div:last-child:hover > ul,
.header > div:last-child:focus > ul,
.header > div:last-child:active > ul {
	cursor: default;
	background: #6194E1;
	position: absolute;
	visibility: visible;
	top: -5px;
	right: -20px;
	list-style: none;
	text-wrap: nowrap;
	opacity: 1;
	transition: all 0.3s ease 0.1s;
}

.header > div:last-child > ul > li:first-child {
	border-left: 1px solid #c6ddff;
}

.header > div:last-child > ul > li {
	border-bottom: 1px solid #c6ddff;
}

.header > div:last-child > ul > li > a {
	display: block;
	padding: 8px 20px 8px 15px;
	height: 40px;
}






a {
	color: #6194E1;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


.header a, .footer a {
	color: #ffffff;
}

.footer a:last-child {
	float: right;
}


a:visited {
	/*color: #A8BDE1;*/
}

body > div {
	max-width: 1000px;
	min-width: 300px;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
	/*line-height: 20px;*/
}

body > div > ol {
	list-style: none;
	margin: 20px 0;
	background: #ffffff;
	padding: 20px;
}

body > div > ol > li {
	display: inline-block;
	padding-right: 10px;
}

body > div > ol > li b {
	font-weight: normal;
	background: #6194E1;
	color: #ffffff;
	padding: 0 5px;
}

.topics {
	list-style: none;
}

.topics li {
	background: #ffffff no-repeat bottom right;
	padding: 20px;
	margin: 20px 0
}

.topics li[data-pin]:before {
	content: '';
	background-image: url('data:image/svg+xml,<svg viewBox="0 0 320 320" xmlns="http://www.w3.org/2000/svg"> <line x1="10" y1="310" x2="160" y2="160" stroke-width="30" stroke="%23A6A6A6"/> <line x1="10" y1="160" x2="160" y2="310" stroke-width="30" stroke="%23A6A6A6"/> <line x1="30" y1="161" x2="161" y2="30" stroke-width="30" stroke="%23A6A6A6"/> <line x1="140" y1="310" x2="310" y2="140" stroke-width="30" stroke="%23A6A6A6"/> <line x1="160" y1="10" x2="310" y2="160" stroke-width="30" stroke="%23A6A6A6"/></svg>');
	position: absolute;
	width: 12px;
	height: 12px;
	margin-left: -14px;
	margin-top: -14px;
}

.topics li b {
	margin: 5px 0 0 0;
	color: #A6A6A6;
	font-size: 0.8rem;
	font-weight: normal;
	display: block;
}

.topics li > i {
	font-size: 0.8rem;
	display: block;
	color: #A6A6A6;
	font-style: normal;
	margin: 5px 0 5px 0;
}

.topic {
	background: #ffffff;
	padding: 20px;
	margin: 20px 0;
	/*height: 100%;*/
}

.topic > img.logo {
	float: left;
	width: 42px;
	margin-right: 8px;
	border: 0 !important;
}

.topic h1 {
	display: block;
	margin: 0 0 10px 0;
}

.topic h2 {
	display: block;
	margin: 10px 0;
	font-size: 21px;
}

.topic h3, .topic h4 {
	display: block;
	margin: 10px 0;
}


.topic > i {
	font-size: 0.8rem;
	display: block;
	color: #A6A6A6;
	font-style: normal;
	margin: 5px 0 0 0;
}


.topic > div {

}

.topic ul, .topic ol {
	margin-left: 20px;
	padding: 10px 0;
}

.topic ul {
	list-style: square;
}

.topic ul li, .topic ol li {
	padding: 5px 0;
}

.topic img {
	max-width: 100%;
}

.topic img:not(.no) {
	border: 1px solid #A6A6A6;
}


.topic > div p {
	padding: 5px 0;
	line-height: 120%;
}

.topic code.wrap {
	text-wrap: wrap;
	/*text-wrap-mode: nowrap;*/
}


span code {
	background: #dddddd;
	padding: 0 3px;
	font-weight: lighter;
}

.topic p b , .topic li b {
	/*background: #d4d0ab;*/
	background: #dddddd;
	padding: 0 5px;
	font-weight: normal;
	display: inline-block;
	/*border-bottom: 1px solid #fff;*/
	box-shadow: inset 0 1px 0 1px #fff;
	font-size: 0.9em;
}

.alert {
	display: block;
}

.alert {
	border: 1px solid #A6A6A6;
	padding: 10px 20px;
	margin: 20px 0;
}

.alert b {
	display: block;
	color: #e16161;
	/*margin: 10px 0;*/
}

.alert i {
	font-style: normal;
}

.update {
	display: block;
}

.update > div {
	/*border-top: 1px solid #6194E1;*/
	border: 1px solid rgba(97, 148, 225, 0.5);
	border-left: 5px solid #6194E1;
	padding: 5px 10px 5px 5px;
	margin: 7px 0;
}

.update b {
	display: block;
	color: #e16161;
}

.update i {
	font-weight: lighter;
	font-style: normal;
}

.update i:after {
	content: ':';
}

.topic a[href^="http"]:after, a[href^="//"]:after {
	content: '\2197';
}

.topic a[href^="/"]:after {
	/*content: '\2192';*/
}

.topic a.in[href^="/"]:after {
	content: '\2192';
}

.topic a.check:after {
	content: '\2713';
}

.topic a[href^="#"]:after {
	content: '\2193';
}

.topic a[href^="#"].up:after {
	content: '\2191';
}

.x64disasm {

}

.x64disasm textarea {
	max-width: 100%;
	width: 100%;
	padding: 5px;
	min-height: 100px;
}

.x64disasm button {
	padding: 2px 10px;
}

.x64disasm select {
	padding: 2px 10px;
}

.x64disasm input {
	width: 100px;
	padding: 2px 10px 2px 10px;
}

.x64disasm .input:before {
	content: '0x0';
	position: absolute;
	padding: 2px 10px 0 0;
}

.x64disasm pre {
	margin: 20px 0;
}

.x64il {

}

.x64il textarea {
	max-width: 100%;
	width: 100%;
	padding: 5px;
	min-height: 100px;
}

.x64il button {
	padding: 2px 10px;
}

.x64il select {
	padding: 2px 10px;
}

.x64il pre {
	margin: 20px 0;
}

pre {
	overflow: hidden;
}

pre code {
	margin: 10px 0;
}

.fail {
}

.fail:after {
	content: '\2297';
	color: #f00;
	position: relative;
	top: -1px;
}

.attention:after {
	content: '\229B';
	color: #f00;
	position: relative;
	top: -1px;
}

.also {
	border-top: 1px solid #A6A6A6;
	margin-top: 10px;
	padding-top: 10px;
}

.copy {
	cursor: copy;
}

.cmp {
	border: 0;
	border-collapse: collapse;
}

.cmp tr th, .cmp tr td {
	padding: 10px  20px 10px 20px;
}

.cmp tr th:not(:last-child) {
	border-right: 1px solid;
}

.cmp tr td {
	border-top: 1px solid;
}

.cmp.center tr td:not(:first-child) {
	text-align: center;
}

.cmp tr:not(:first-child) td:not(:last-child) {
	border-right: 1px solid;
}

.cmp tr td b {
	color: #2b2b2b;
	background: #dddddd;
	padding: 0 5px;
	font-weight: normal;
	display: inline-block;
	border-bottom: 1px solid #fff;
}

.cmp tr td a {
	color: #abe338;
	text-decoration: underline;
}

img.stickypin {
	border: 0 !important;
	float: right;
	width: 150px;
}

.topic .language {
	float: right;
	font-size: 1.5em;
	padding: 5px 0 0 10px;
}

.topics .language {
	float: right;
	padding: 0 0 0 10px;
}

@media only screen and (max-width: 360px) {
	img.stickypin {
		width: 45%;
	}
}

.hod {
	float: right;
	padding: 10px 0 10px 20px;
}

@media only screen and (max-width: 700px) {
	.hod {
		float: none;
		padding: 10px 0;
	}
}

.topic strike:hover {
	text-decoration-line: none;
}

.select {
	user-select: all;
}

/*
pre:before {
	position: absolute;
	content: '\2194';
	color: #FFFFFF;
	padding: 2px 5px;
}
*/

.lego-games {
	display: block;
	overflow-x: auto;
	padding: 0.2em 1em;
}

.lego-games [type="file"] {
	max-width: 150px;
}

.lego-games [type="button"] {
	padding: 0 0.5em;
}

.lego-games > div {
	margin: 0.5em 0;
}


pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
  Theme: a11y-dark
  Author: @ericwbailey
  Maintainer: @ericwbailey

  Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css
*/.hljs{background:#2b2b2b;color:#f8f8f2}.hljs-comment,.hljs-quote{color:#d4d0ab}.hljs-deletion,.hljs-name,.hljs-regexp,.hljs-selector-class,.hljs-selector-id,.hljs-tag,.hljs-template-variable,.hljs-variable{color:#ffa07a}.hljs-built_in,.hljs-link,.hljs-literal,.hljs-meta,.hljs-number,.hljs-params,.hljs-type{color:#f5ab35}.hljs-attribute{color:gold}.hljs-addition,.hljs-bullet,.hljs-string,.hljs-symbol{color:#abe338}.hljs-section,.hljs-title{color:#00e0e0}.hljs-keyword,.hljs-selector-tag{color:#dcc6e0}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}@media screen and (-ms-high-contrast:active){.hljs-addition,.hljs-attribute,.hljs-built_in,.hljs-bullet,.hljs-comment,.hljs-link,.hljs-literal,.hljs-meta,.hljs-number,.hljs-params,.hljs-quote,.hljs-string,.hljs-symbol,.hljs-type{color:highlight}.hljs-keyword,.hljs-selector-tag{font-weight:700}}
