html {
	box-sizing: border-box;
	font-size: 100%;
	overflow-x: hidden;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	background: #fdfeff;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: 400;
	line-height: 1.67;
	font-size: 16px;
	color: #777;
	-webkit-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-smoothing: grayscale;
	-webkit-text-rendering: optimizeSpeed;
	-moz-text-rendering: optimizeSpeed;
	-ms-text-rendering: optimizeSpeed;
	-o-text-rendering: optimizeSpeed;
	text-rendering: optimizeSpeed;
	-webkit-font-kerning: none;
	font-kerning: none;
	overflow-x: hidden;
}

img {
    display: block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}
iframe {
    display: block;
    width: 100%;
}
:focus {
    outline: transparent;
}
::selection {
    background: #1f1f1f;
    color: #fdfeff;
}
::-moz-selection {
    background: #1f1f1f;
    color: #fdfeff;
}

::marker {
    color: #1f1f1f;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}


h1, h2, h3, h4, h5, h6 {
    font-style: normal;
    font-weight: 400;
    color: #1f1f1f;
    line-height: 1.2;
    margin: 48px 0 36px;
    text-rendering: optimizeLegibility;
    word-break: break-word;
}
h1 {
    font-size: 64px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}

p {
	margin-bottom: 18px;
	margin-top: 18px;
	font-size: inherit;
	line-height: 1.67;
	-moz-osx-font-smoothing: grayscale;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

a {   
    line-height: inherit;
    cursor: pointer;
    text-decoration: none;
    color: #1f1f1f;
    word-break: break-all;
    word-break: break-word;
	border-bottom: 1px solid #1f1f1f;
}

strong, b  {   
    font-weight: 600;
    color: #1f1f1f; 
}
em, i {   
    font-style: italic; 
}

ul, ol, dl {
    margin-bottom: 32px;
    list-style-position: outside;
}

li {
    font-size: inherit;
    margin-bottom: 8px;
}

ol {
    margin-top: 32px;
}
ol ol {
	margin-top: 24px;
}
ul {
    margin-left: 32px;
    list-style-type: disc;
}

ol {
    margin-left: 32px;
}


pre {
    font-family: monospace;
    margin-bottom: 40px;
    font-size: 16px; 
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;
}
pre code {
	display: block;
    padding: 16px 24px;
    white-space: pre;
}
code {
    padding: 2px 5px 1px;
    border: none;
    background: #1f1f1f;
    color: #f7f8f9;
    border: 1px solid $grey;
    border-radius: 4px;
    font-family: monospace;
    font-size: 16px; 
    overflow: auto;
}

table {
    border-collapse: collapse;
    margin-bottom: 24px;
}
tr {
    border-bottom: 1px solid #1f1f1f;
}
th {
    text-align: left;
    padding: 10px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
}
td {
    text-align: left;
    padding: 16px 10px;
}
/*SIDEBAR*/
.sidebar {
	position: fixed;
	left: 0;
	width: 230px;
	height: 100%;
	min-height: 100%;
	z-index: 100;
	box-shadow: none;
	background-color: #ccc;
	color: #fff;
}
.logo {
	width: 100%;
	height: 20%;
	min-height: 80px;
	max-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo img {
	max-width: 48px;
}
.sidebar a {
	display: block;
	padding: 13px 27px;
	font-size: 14px;
	color: #1f1f1f;
	font-weight: 500;
	transition: 0.2s color, 0.2s background-color;
	border-bottom: none;
}
.sidebar a.active {
	color: #1f1f1f;
	background: #f7f8f9;
}
.nav {
	height: 80%;
	overflow: auto;
}


/*CONTAINER*/
.container {
	position: absolute;
	right: 18px;
	left: 218px;
	padding-left: 10px;
	padding-bottom: 500px;
	min-height: 100%;
	height: auto;
	z-index: 1;
	left: 230px;
	padding-left: 47px;
	padding-right: 47px;
}
.section {
	display: block;
	padding-top: 64px;
}
.section-header {
	font-size: 32px;
	margin: 0 0 48px 0;
	box-sizing: border-box;
	background-color: #d9d9d9;
	padding: 65px 30px;
	border-top: 2px solid #333;
	border-bottom: 2px solid #333;
}
.section-header > h2 {
	margin: 0;
}
#intro {
	position: relative;
	min-height: 800px;
	padding-top: 200px;
}
#intro > ul {
	list-style: none;
	margin-left: 8px;
}
.alert {
	border: 2px solid #ff4800;
	padding: 20px;
	margin: 20px 20px 20px 0;
}
.note {
	border: 2px solid #ffbf00;
	padding: 20px;
	margin: 20px 20px 20px 0;
}
.col-2 {
	display: flex;
	flex-wrap: wrap;
}
.col-2 p:nth-child(1) {
	margin-right: 32px;
}

.change-log-tab--item h6 {
	margin-bottom: 18px;
}
.change-log-tab--list span {
	display: block;
}