:root {
    --font-stack: 'Inter UI',
                  -apple-system,
                  BlinkMacSystemFont,
                  "Segoe UI",
                  Roboto,
                  "Helvetica Neue",
                  Arial,
                  Noto Sans,
                  sans-serif,
                  "Apple Color Emoji",
                  "Segoe UI Emoji",
                  "Segoe UI Symbol",
                  "Noto Color Emoji";
    /* Colors */
    --color-blue: rgba(0, 82, 155, 1);
    --color-blue-20: rgba(0, 82, 155, .2);
    --color-fontBlack: rgba(46, 46, 46, 1);
    --color-fontMain: rgba(51, 51, 51, 1);
    --color-fontLight: rgba(155, 155, 155, 1);
    --color-fontSecondary: rgba(74, 74, 74, 1);
    --color-fontSecondary-70: rgba(74, 74, 74, .7);
    --color-bgMain: rgba(253, 253, 253, 1);
    --color-bgMain-99: rgba(253, 253, 253, .99);
    --color-bgYellow: rgba(255, 224, 102, .1);
    --color-bgBlack: rgba(32, 32, 32, 1);
    --color-bgCode: rgba(40, 44, 52, 1);
    /* Size */
    --size-font-main: 14px;
    --size-fontLH-main: 22px;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

@-ms-viewport {
    width: device-width;
}

ol, ul, dl {
    list-style: none;
    margin-top: 0;
}

ol ol, ul ul, ol ul, ul ol {
    margin-bottom: 0;
}

a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

blockquote p, h1 p, h2 p, h3 p {
    margin-bottom: 0;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

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

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    font-size: 14px;
    font-size: var(--size-font-main);
    line-height: 22px;
    line-height: var(--size-fontLH-main);
    -webkit-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-feature-settings: "cv05";
            font-feature-settings: "cv05";
}

body {
    margin: 0;
    font-family: 'Inter UI',
                 -apple-system,
                 BlinkMacSystemFont,
                 "Segoe UI",
                 Roboto,
                 "Helvetica Neue",
                 Arial,
                 Noto Sans,
                 sans-serif,
                 "Apple Color Emoji",
                 "Segoe UI Emoji",
                 "Segoe UI Symbol",
                 "Noto Color Emoji";
    font-family: var(--font-stack);
    font-size: 1rem;
    font-weight: 400;
    line-height: inherit;
    color: rgba(51, 51, 51, 1);
    color: var(--color-fontMain);
    text-align: left;
    background-color: rgba(253, 253, 253, 1);
    background-color: var(--color-bgMain);
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

p {
    margin-top: 0;
    margin-bottom: 22px;
}

ol, ul, dl {
    margin-bottom: 22px;
}

.margin-top--1 {
    margin-top: 11px;
}

.margin-bottom--0 {
    margin-bottom: 0;
}

.margin-bottom--1 {
    margin-bottom: 11px;
}

.display--flex {
    display: flex !important;
}

.display--inline-block {
    display: inline-block !important;
}

.display--none {
    display: none !important;
}

.display--block {
    display: block !important;
}

@media (min-width: 992px) {
    .display-sm--flex {
        display: flex !important;
    }

    .display-sm--inline-block {
        display: inline-block !important;
    }

    .display-sm--none {
        display: none !important;
    }

    .display-sm--block {
        display: block !important;
    }
}

/* colors */

.text--color--blue {
    color: rgba(0, 82, 155, 1) !important;
    color: var(--color-blue) !important;
}

.text--color--secondary {
    color: rgba(74, 74, 74, 1) !important;
    color: var(--color-fontSecondary) !important;
}

.text--color--secondary--light {
    color: rgba(74, 74, 74, .7) !important;
    color: var(--color-fontSecondary-70) !important;
}

.text--color--light {
    color: rgba(155, 155, 155, 1) !important;
    color: var(--color-fontLight) !important;
}

/* weight */

.text--weight--medium {
    font-weight: 500 !important;
}

.text--weight--semi-bold {
    font-weight: 600 !important;
}

.text--weight--bold {
    font-weight: 700 !important;
}

/* alignment */

.text--right {
    text-align: right !important;
}

.text--left {
    text-align: right !important;
}

/* size */

.text--size--small {
    font-size: 11px;
    line-height: 33px;
    vertical-align: middle;
}

.text--size--medium {
    font-size: 12px;
    line-height: 33px;
    vertical-align: middle;
}

.text--size--normal {
    font-size: 15px;
    line-height: 33px;
    letter-spacing: .002em;
    vertical-align: middle;
}

/* decoration */

.text--no-decoration {
    text-decoration: none !important;
}

.list--inline li {
    display: inline-block;
    vertical-align: top;
}

.list--inline li::after {
    content: '|';
    margin: 0 .8em 0 1em;
}

.list--inline li:nth-last-of-type(1)::after {
    content: '';
}

.list--style-none li::before {
    display: none !important;
}

.list-item--style-none::before {
    display: none !important;
}

.justify-content--between {
    justify-content: space-between !important;
}

.lead {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: .008em;
}

.blockcode {
    display: block;
    max-width: 594px;
    padding: 22px 22px 22px 33px;
    margin: 22px 0;
    margin-left: -33px;
    margin-right: -22px;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background-color: rgba(40, 44, 52, 1);
    background-color: var(--color-bgCode);
}

@media (min-width: 576px) {
    .blockcode {
        padding: 22px 22px;
        margin-right: -22px;
        margin-left: -22px;
        border-radius: 2px;
    }
}

.layout {
    width: 100%;
    padding: 33px 0 0;
}

@media (min-width: 992px) {
    .layout {
        padding: 44px 0 0 363px;
    }
}

.content {
    width: 100%;
    max-width: 715px;
    padding: 0 22px 0 33px;
    margin-bottom: 88px;
}

@media (min-width: 576px) {
    .content {
        padding: 0 99px 0 66px;
    }
}

.aside {
    position: fixed;
    display: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 33px 0 44px 33px;
    background-color: rgba(253, 253, 253, .99);
    background-color: var(--color-bgMain-99);
}

.aside__logo {
    display: inline-block;
    max-height: 33px;
    margin-bottom: 143px;
}

.aside__logo img {
    margin-left: 0 !important;
}

@media (min-width: 992px) {
    .aside__logo {
        margin-bottom: 253px;
    }
}

@media (min-width: 992px) {
    .aside {
        display: block;
        width: 363px;
        padding: 44px 0 44px 88px;
    }
}

.aside.is-shown {
    display: block;
}

.hr {
    margin-top: 0;
    margin-bottom: 32px;
    border: 0;
    border-top: 1px solid rgba(221, 221, 221, 1);
}

.strong {
    font-weight: 600;
}

.em {
    font-style: italic;
}

.small {
    font-size: 11px;
    line-height: 33px;
    font-weight: 500;
}

.link {
    color: rgba(0, 82, 155, 1);
    color: var(--color-blue);
    text-decoration: underline;
    background-color: transparent;
    cursor: pointer;
}

.link:hover {
    color: rgba(0, 82, 155, 1);
    color: var(--color-blue);
    text-decoration: underline;
}

.blockquote {
    max-width: 594px;
    padding: 22px 22px 22px 33px;
    margin: 33px 0;
    margin-left: -33px;
    margin-right: -22px;
    font-size: 12px;
    color: rgba(46, 46, 46, 1);
    color: var(--color-fontBlack);
    background-color: rgba(255, 224, 102, .1);
    background-color: var(--color-bgYellow);
}

@media (min-width: 576px) {
    .blockquote {
        padding: 22px;
        margin-right: -22px;
        margin-left: -22px;
        border-radius: 2px;
    }
}

.h1 {
    font-size: 24px;
    line-height: 33px;
    font-weight: 700;
    letter-spacing: -0.014em;
    color: rgba(46, 46, 46, 1);
    color: var(--color-fontBlack);
    margin-bottom: 66px;
}

.h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: -0.008em;
    color: rgba(46, 46, 46, 1);
    color: var(--color-fontBlack);
    margin-bottom: 22px;
    margin-top: 40px;
}

.h3 {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: -0.002em;
    color: rgba(46, 46, 46, 1);
    color: var(--color-fontBlack);
    margin-bottom: 22px;
    margin-top: 33px;
}

.list {
    padding-left: 0;
}

.list ol, .list ul, .list .list {
    padding-left: 22px;
}

.list li {
    position: relative;
    font-size: 13px;
    line-height: 22px;
}

.list li::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: rgba(74, 74, 74, 1);
    border-radius: 50%;
    left: -18px;
    top: 10px;
}

@media (min-width: 576px) {
    .list li::before {
        left: -22px;
    }
}

.button {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: transparent;
    border: none;
    font-weight: 500;
    color: rgba(155, 155, 155, 1);
    color: var(--color-fontLight);
    padding: 0;
    font-size: 13px;
    line-height: 22px;
    transition: color .15s ease-in-out,
                background-color .15s ease-in-out,
                border-color .15s ease-in-out,
                box-shadow .15s ease-in-out;
}

.button:hover {
    color: rgba(74, 74, 74, 1);
    color: var(--color-fontSecondary);
    text-decoration: none;
}

.button:focus, .button.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 82, 155, .2);
    box-shadow: 0 0 0 .2rem var(--color-blue-20);
}

.button.disabled, .button:disabled {
    opacity: .65;
}

.button:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.code {
    padding-left: 4px;
    padding-right: 4px;
    color: rgba(46, 46, 46, 1);
    color: var(--color-fontBlack);
    background-color: rgba(255, 224, 102, .1);
    background-color: var(--color-bgYellow);
}

.img {
    display: inline-block;
    max-width: 100%;
    max-width: calc(100% + 55px);
    margin-left: -33px;
}

@media (min-width: 576px) {
    .img {
        max-width: 100%;
        max-width: calc(100% + 44px);
        margin-left: -22px;
        border-radius: 2px;
    }
}

.table {
    width: 100%;
    margin: 22px 0 44px;
    background-color: transparent;
    line-height: 22px;
}

.table th, .table td {
    padding: 11px 0 10px;
    vertical-align: top;
    border-bottom: 1px solid rgba(221, 221, 221, .5);
}

.table thead th {
    font-size: 11px;
    font-weight: 600;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
}

.table tbody + tbody {
    border-top: 1px solid rgba(221, 221, 221, .5);
}

.table table {
    background-color: #fff;
}

