@charset 'utf-8';


/* Reset */
* {
	font-weight: normal;
	font-style: normal;

	margin: 0;
	padding: 0;

	outline: none;
	box-sizing: border-box;
}
*:focus {
	outline: 0;
}
a {
	text-decoration: underline;
	transition: .15s;
	color: #EE2D24;
}
a:hover {
	text-decoration: none;
}
fieldset,
img {
	border: none;
}
html {
	font-size: 14px;
}
body {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	color: #787878;

	min-width: 900px;

	-webkit-tab-size: 4;
	   -moz-tab-size: 4;
		 -o-tab-size: 4;
			tab-size: 4;
}
header,
main,
footer,
section,
aside,
nav {
	position: relative;

	display: block;
}
.clear {
	clear: both;
}
.clear:after {
	display: table;
	clear: both;

	content: '';
}

[class^="row-"] {
	display: flex;
	flex-wrap: nowrap;
	position: relative;
}
[class^="row-"] xmp + xmp {
	margin-left: -1px;
	margin-top: 0;
}
[class^="row-"] xmp:focus {
	overflow-x: scroll;
	padding-bottom: 3.5px;
}
[class^="row-"][style] xmp {
	opacity: .1;
}
[class^="row-"][style] xmp:focus {
	opacity: 1;
}
.row-2 xmp,
.row-2 input {
	width: 50%;
}
.row-2-3 xmp:first-child  {
	width: 60%;
}
.row-2-3 xmp:last-child {
	width: calc(40% + 1px);
	position: absolute;
	right: 0;
	max-height: 100%;
}
.row-3-2 xmp {
	padding-bottom: 20px !important;
}
.row-3-2 xmp:first-child {
	width: calc(40% + 1px);
	overflow: unset;
}
.row-3-2 xmp:last-child {
	width: 60%;
	overflow: unset;
}
.row-2-3 xmp:last-child:focus {
	overflow: scroll;
}
.row-3 xmp {
	width: 33.3336%;
}

@keyframes push {
	0% { transform: scale(1); }
	10% { transform: scale(.8); }
	70% { transform: scale(1); }
}


/* Sidebar */
#sidebar {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;

	overflow-y: auto;

	width: 250px;
	height: 100%;

	background: #191919;
}


/* Logo */
#sidebar .logo {
	display: block;
	text-decoration: none;
	transition: .15s;
	user-select: none;
	padding: 30px 15px;
}
#sidebar .logo:hover {
	filter: grayscale(60%);
}
#sidebar .logo .logo-image {
	display: block;
}
#sidebar .logo .logo-image img {
	display: block;
	max-width: 75%;
}


/* Menu */
#sidebar .menu {
	position: relative;
	z-index: 4;

	overflow: auto;

	padding: 0 0 20px;

	background: #191919;
}
#sidebar .menu li,
#sidebar .menu li a {
	text-decoration: none;

	color: #FFF;
	user-select: none;
}
#sidebar .menu li.active .sub-menu {
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;

	opacity: 1;
}


/* Menu Depth 0 */
#sidebar .menu > li {
	list-style: none;
}
#sidebar .menu > li > a {
	font-size: 14px;
	display: block;
	padding: 9px 15px;
}
#sidebar .menu > li > a:not(.active):hover {
	-webkit-transition: .15s;
			transition: .15s;
}
#sidebar .menu > li > a:hover,
#sidebar .menu > li.active > a,
#sidebar .menu > li.active > a:hover {
	background: #EE2D24;
}


/* Menu Depth 1 */
#sidebar .sub-menu {
	display: block;
	overflow: hidden;

	height: 0;
	padding: 0 15px 0 35px;

	-webkit-transition: .15s;
			transition: .15s;

	opacity: 0;
	background: #191919;
}
#sidebar .sub-menu > li {
	font-size: 13px;
	line-height: 28px;

	list-style: disc outside;
}
#sidebar .sub-menu > li > a {
	font-size: 13px;
	display: block;
	padding: 2px 0;
}
#sidebar .sub-menu > li > a:hover,
#sidebar .sub-menu > li.active,
#sidebar .sub-menu > li.active > a {
	color: #EE2D24;
}


/* Content */
#content {
	min-width: 700px;
	max-width: 1600px;
	padding: 0 30px 0 280px;
}
section {
	padding: 30px 0 100px;
}
article {
	margin-bottom: 30px;
	padding-top: 16px;
}
h1,
h2,
h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;

	margin-bottom: 20px;
	padding: 0 0 12px;

	color: #222;
	border-bottom: 1px solid #ddd;
}
h1 {
	font-size: 30px;
	line-height: 50px;

	padding: 21px 0;
}
h2 {
	font-size: 24px;
	line-height: 40px;
}
h3 {
	font-size: 20px;
	line-height: 30px;
}
xmp,
textarea,
input {
	width: 100%;
	border: 1px solid #DDDDDD;
	padding: 20px;
	font-size: 12px;
	transition: color .15s, background-color .15s, border-color .15s;
	overflow: hidden;
	position: relative;
	z-index: 1;
	font-family: Consolas, monospace;
	line-height: 1.4;
	background: #FFF;
}
xmp + xmp,
xmp + [class^="row-"] {
	margin-top: -1px;
}
xmp:focus,
textarea:focus,
input:focus {
	background: #FBFBFB;
	outline: none;
	color: #000;
	border-color: #9D9D9D;
	z-index: 2;
}
xmp:not([contenteditable]) {
	background: #FDFDFD;
	outline: none;
	color: #000;
}


/* Entry Content */
article p {
	margin-bottom: 12px;
}
article .hr {
	height: 1px;
	margin-bottom: 12px;

	background: #eee;
}
article img + .hr {
	margin-top: 24px;
}
article p:after {
	display: table;
	clear: both;

	content: '';
}
article strong,
article b {
	font-weight: 700;
}
article em,
article i {
	font-style: italic;

	padding: 0 3px 0 0;

	color: #000;
	background: rgba(0,0,0,.025);
}
article img {
	-webkit-box-sizing: border-box;
			box-sizing: border-box;

	display: block;

	max-width: 100%;
	height: auto;
	margin: 12px 0;

	border: 1px solid #f1f1f1;
}
article img + img {
	margin-top: 20px;
}


/* SVG Icons */
.svg-icons {
	display: flex;
	flex-wrap: wrap;
}
.svg-icons .group {
	display: flex;
	min-width: 322px;
}
.svg-icons .group.clear {
	width: 100%;
}
.svg-icons .group div {
	padding-bottom: 25px;
	text-align: center;
	line-height: 1;
}
.svg-icons .group .svg-icon {
	width: 60px;
	height: 60px;
	padding: 13px;
	transition: .15s;
	cursor: pointer;
	position: relative;
	display: block;
}
.svg-icons .group .push .svg-icon {
	fill: #EE2D24;
	background: #EEEEEE;
	animation-name: push;
	animation-duration: 0.2s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
}
.svg-icons .svg-icon:hover {
	background: #EEEEEE;
}
.svg-icons .group span {
	position: absolute;
	transform: translatex(-50%);
	font-size: 12px;
	padding-top: 5px;
	opacity: 0;
	transition: .15s;
}
.svg-icons .svg-icon:hover + span {
	opacity: 1;
}


/* Messages */
#messages {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99999;
}
#messages .item {
	position: relative;
	margin-top: 10px;
	background: #FFFFFF;
	border-width: 1px 1px 1px 3px;
	border-style: solid;
	border-color: #F48024;
	padding: 20px 15px;
	width: 400px;
	display: none;
}
#messages .item b {
	color: #242729;
	font-weight: bold;
}
#messages .item:first-child {
	margin-top: 0;
}
#messages .item.error {
	border-color: #C91D2E;
}
#messages .item.success {
	border-color: #5fba7d;
}


/* Server */
#server p {
	margin-top: 20px;
	margin-bottom: 3px;
	color: #222;
}
#server xmp,
#server textarea,
#server input {
	padding: 10px;
	display: block;
}
#server textarea + input,
#server input + input {
	margin-top: -1px;
}
#server .row-2 input + input {
	margin-left: -1px;
	margin-top: 0;
}
#server .row-2 {
	margin-top: -1px;
}

#server input[id*="-output"] {
	color: #383d41;
	background-color: #e2e3e5;
	border-color: #d6d8db;
}
#server input[id*="-output"][id*="-new"]:not([id*="-1"]):not([id*="-3"]) {
	color: #0c5460;
	background-color: #d1ecf1;
	border-color: #bee5eb;
}
#server xmp:focus {
	overflow: hidden;
}

#server-scripts textarea {
	height: 100px;
	overflow: unset;
}

#server-data xmp:not(:focus) {
	color: transparent;
}

#server .inline {
	display: flex;
	align-items: center;
	margin-top: 10px;
	flex-wrap: wrap;
}
#server .inline span,
#server .inline a {
	border: 1px solid #DDDDDD;
	padding: 7px;
	font-size: 12px;
	transition: color .15s, background-color .15s, border-color .15s;
	overflow: hidden;
	position: relative;
	z-index: 1;
	font-family: Consolas, monospace;
	line-height: 1.4;
	background: #FFF;
	margin: 0 5px;
}
#server .inline span:first-child,
#server .inline a:first-child {
	margin-left: 0;
}
#server .inline a {
	text-decoration: none;
}
#server .inline a:hover {
	background: #FBFBFB;
	color: #000;
	border-color: #9D9D9D;
}
#server .inline span[title],
#server .inline a[title] {
	position: relative;
	cursor: help;
}
#server .inline span[title]:before,
#server .inline a[title]:before {
	border: 4px solid transparent;
	border-top: 4px solid #DDDDDD;
	border-right: 4px solid #DDDDDD;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
}