html,
ul,
li,
p,
h1,
h2,
h3,
h4,
body {
    margin: 0;
    padding: 0
}

main,
section,
footer,
header {
    display: block
}

ul {
    list-style: none
}

a {
    text-decoration: none;
    color: #9b9a97;
    transition: .3s color
}

a:hover {
    color: #fff
}

img {
    border: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges
}

h1 {
    font-size: 2em
}

p {
    margin: 1em 0
}

* {
    box-sizing: border-box
}

html,
body {
    overflow: hidden;
    height: 100%;
    -webkit-overflow-scrolling: auto
}

body {
    font-family: roboto mono, monospace;
    color: #fff;
    font-size: 16px;
    background: #000008;
    cursor: default;
    transition: transform 1.5s
}

body:not(.initialized) * {
    transition: none !important
}

body.initialized main {
    visibility: visible
}

body main {
    visibility: hidden;
    height: 100%;
    padding-bottom: 48px;
    margin-bottom: -48px;
    min-width: 320px
}

body footer {
    background: #000008;
    height: 48px;
    border-top: 1px solid #0099bb;
    padding: 0 24px;
    color: rgba(255, 255, 255, .7);
    min-width: 320px;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

body footer span:not(:last-child) {
    padding-right: 24px
}

body footer a {
    color: rgba(255, 255, 255, .7)
}

body footer .mail {
    margin-right: auto
}

.main-wrapper {
    height: 100%;
    overflow: hidden;
    overflow-x: auto
}

.main-wrapper::-webkit-scrollbar {
    height: 10px
}

.main-wrapper::-webkit-scrollbar-track {
    background: #000008
}

.main-wrapper::-webkit-scrollbar-thumb {
    background-color: #9e649b
}

.color-block-line {
    position: absolute
}

.color-block-line .wrap_color {
    width: 100%;
    height: 100%;
    display: none
}

.main-block header {
	height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px
}

.main-block header a {
    display: block;
    font-size: 0
}

.main-block header a img {
    width: 150px
}

.main-block .color-block-line {
    top: 0;
    right: 0;
    height: 0;
    width: 1px;
    transition: height 1s
}

.main-block.color-block-line.color-block-line__active {
    height: 100%
}

.main-block.main-block__hidden {
    width: 0;
    opacity: 0
}

.main-block.main-block__hidden .console-wrapper {
    overflow-y: hidden
}

.main-block.main-block__disabled {
    display: none
}

.content-wrapper {
    overflow: hidden;
    height: 100%;
    margin-top: -114px;
    padding-top: 114px
}

.content-block {
    height: 100%;
    padding: 0 24px;
    overflow: hidden;
    overflow-y: auto
}

.content-block_center {
    display: flex;
    align-items: center;
    justify-content: center
}

.content-block::-webkit-scrollbar {
    width: 10px
}

.content-block::-webkit-scrollbar-track {
    background: #000008
}

.content-block::-webkit-scrollbar-thumb {
    background-color: #9e649b
}

.content {
    color: #9b9a97
}

.content h1,
.content h2,
.content h3,
.content h4 {
    color: #b89856;
    font-weight: 500
}

.content_page {
    display: none
}

.content_page__active {
    display: block
}

.content .error {
    color: #b63e38
}

.static header {
	background: #000008;
    border-bottom: 1px solid #0099bb;
    margin-bottom: 2em;
}

.static .content {
    max-width: 1400px;
    margin: auto
}

.construction {
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, .7);
}

.construction_blink {
    display: inline-block;
    margin: 0 2px 0 10px;
    width: 4px;
    height: 1.5rem;
    background: #0099bb;
    animation: blink 1s infinite
}

.brakets::before {
    content: '<';
    content: '<'/'';
    opacity: .5
}

.brakets::after {
    content: '>';
    content: '>'/'';
    opacity: .5
}

@media(max-width:700px) {
    .static header {
        margin-bottom: 1em
    }
    .main-block header {
        padding-top: 6px;
        padding-bottom: 6px
    }
    .main-block header a img {
        width: 120px
    }
    .content-wrapper {
        margin-top: -64px;
        padding-top: 64px
    }
    body footer {
        font-size: 12px
    }
    h1 {
        font-size: 1.5rem
    }
    .construction {
        font-size: 1.3rem
    }
    .construction__blink {
        width: .4rem;
        height: 1.3rem
    }
}

@keyframes blink {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}