@font-face {
    font-family: 'brighttech';
    src: url('/fonts/BrightTech.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

button:active,
button:focus {
    outline: 0 !important
}

button::-moz-focus-inner {
    border: 0 !important
}

input::-moz-focus-inner {
    border: 0 !important
}

::-moz-selection {
    background-color: #efefef;
    color: #0a0a0a;
    text-shadow: none
}

::selection {
    background-color: #efefef;
    color: #0a0a0a;
    text-shadow: none
}

html {
    font-family: brighttech, sans-serif;
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body,
html {
    width: 100%;
    height: 100%
}

body {
    position: relative;
    min-width: 320px;
    overflow-x: hidden !important;
    font: normal 400 1.6rem/1.6 brighttech, sans-serif;
    color: #444;
    background-color: #fff
}

section {
    position: relative;
    width: 100%;
    min-width: 320px;
    overflow: hidden
}

section.demo__intro {
    padding: 0;
    text-align: center
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #0a0a0a;
    font-weight: 500;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.no-touch a:hover {
    color: #616161
}

p {
    font: normal 400 1.6rem/1.6 brighttech, sans-serif;
    color: #444;
    padding: 0;
    margin: 0
}

p span {
    font-weight: 500;
    color: #0a0a0a
}

p.help-text {
    color: #616161
}

img {
    display: block;
    width: 100%;
    height: auto
}

pre[class*=language-] {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 2rem
}

code[class*=language-],
pre[class*=language-] {
    text-shadow: none;
    font-size: 1.6rem
}

.overflow-hidden {
    overflow: hidden !important
}

.color-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.color-layer-medium {
    background-color: rgba(20, 20, 20, .4)
}

.color-layer-dark {
    background-color: rgba(20, 20, 20, .6)
}

.header {
    position: relative;
    width: 100%;
    height: 70px;
    z-index: 1;
    background-color: #141414
}

.header .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    line-height: 70px;
    text-align: left;
    padding: 0 2.4rem
}

.header .logo a {
    display: block
}

.header .logo img {
    display: inline-block;
    width: auto
}

.header__logoblock {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1.4rem 2.4rem
}

.header__logoblock::after {
    clear: both;
    content: "";
    display: table
}

.logoblock__name {
    float: left
}

.logoblock__name a {
    display: block;
    font: normal 300 4rem/1 brighttech, sans-serif;
    color: #fff;
    text-decoration: none
}

.logoblock__name a:active,
.logoblock__name a:focus,
.logoblock__name a:visited {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-decoration: none
}

.no-touch .logoblock__name a:hover {
    color: #f2f5fc
}

@media only screen and (min-width:768px) {
    .logoblock__name {
        border-right: 2px solid rgba(255, 255, 255, .6);
        padding-right: 2.4rem
    }
}

.logoblock__descr {
    display: none
}

.logoblock__descr p {
    font: normal 300 1.5rem/1.4 brighttech, sans-serif;
    color: rgba(255, 255, 255, .8)
}

@media only screen and (min-width:768px) {
    .logoblock__descr {
        display: block;
        float: left;
        max-width: 360px;
        padding: 0 2.4rem
    }
}

.header__buttons {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    padding: 1.2rem 2.4rem
}

.headline {
    padding: 10rem 0;
    font: brighttech, sans-serif;

}

@media only screen and (min-width:1024px) {
    .headline {
        max-width: 1140px;
        padding: 12rem 0
    }
}

.help-text {
    position: relative;
    padding-left: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #888
}

.help-text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #cfcfcf
}

.button {
    position: relative;
    display: inline-block;
    border: none;
    outline: 0;
    background-color: transparent;
    height: 44px;
    line-height: 44px;
    padding: 0 2.4rem;
    margin-right: 1rem;
    font: normal 500 1.3rem/42px brighttech, sans-serif;
    color: #111;
    text-align: center;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.button:active,
.button:focus,
.button:visited {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-decoration: none
}

.button:last-of-type {
    margin-right: 0
}

.button-mobile-square {
    display: inline-block;
    font-size: 1.8rem;
    width: 44px;
    padding: 0
}

.button-mobile-square i {
    line-height: 1
}

.button-mobile-square .button-caption {
    display: none
}

@media only screen and (min-width:1024px) {
    .button-mobile-square {
        display: inline-block;
        width: auto;
        font: normal 400 1.6rem/42px brighttech, sans-serif;
        padding: 0 2.4rem
    }

    .button-mobile-square i {
        display: inline-block;
        margin-right: .4rem
    }

    .button-mobile-square .button-caption {
        display: inline-block
    }
}

.button-solid {
    background-color: #f2f5fc;
    border: 2px solid #f2f5fc;
    color: #0a0a0a;
    font-weight: 500
}

@media only screen and (min-width:1024px) {
    .button-solid {
        color: #111
    }

    .no-touch .button-solid:hover {
        background-color: transparent;
        border: 2px solid #f2f5fc;
        color: #fff;
        text-decoration: none
    }

    .button-solid:active,
    .button-solid:focus,
    .button-solid:visited {
        outline: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-decoration: none;
        background-color: #f2f5fc;
        border: 2px solid #f2f5fc;
        color: #0a0a0a
    }
}

.button-outline {
    background-color: transparent;
    border: 2px solid #f2f5fc;
    color: #fff
}

.no-touch .button-outline:hover {
    background-color: #f2f5fc;
    border: 2px solid #f2f5fc;
    color: #0a0a0a;
    text-decoration: none
}

.button-outline:active,
.button-outline:focus,
.button-outline:visited {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #f2f5fc;
    color: #fff
}

.affix {
    top: 0
}

.docs-navigation {
    display: none
}

@media only screen and (min-width:1024px) {
    .docs-navigation {
        display: block;
        height: 100%;
        float: left;
        width: 300px;
        background-color: #f7f7f7
    }
}

.docs-content {
    position: relative;
    right: 0;
    padding: 0 2.4rem;
    background-color: #fff
}

@media only screen and (min-width:1024px) {
    .docs-content {
        float: right !important;
        width: -moz-calc(100% - 300px);
        width: calc(100% - 300px);
        padding: 0 4.8rem
    }
}

@media only screen and (min-width:1600px) {
    .docs-content {
        padding: 0 15% 0 8rem
    }
}

.nav {
    display: none
}

@media only screen and (min-width:1024px) {
    .nav {
        display: block;
        margin: 0;
        height: 100%
    }
}

.nav li {
    display: block;
    margin: 0;
    padding: 0
}

.nav-stacked>li+li {
    margin: 0
}

.nav>li>a {
    display: block;
    padding: 1.7rem 2.4rem 1.5rem 2.4rem;
    font-size: 1.4rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 500;
    color: #0a0a0a;
    -moz-border-radius: 0;
    border-radius: 0;
    border-bottom: 1px solid #e7e7e7;
    -webkit-transition: background-color .3s, color .3s ease-in-out;
    -o-transition: background-color .3s, color .3s ease-in-out;
    -moz-transition: background-color .3s, color .3s ease-in-out;
    transition: background-color .3s, color .3s ease-in-out
}

.nav>li>a:focus,
.nav>li>a:hover {
    background-color: transparent;
    color: #0a0a0a;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: #e7e7e7
}

.nav-pills>li.active>a {
    font-weight: 500;
    background-color: transparent;
    color: #0a0a0a;
    background-color: #f2f5fc;
    -moz-border-radius: 0;
    border-radius: 0
}

.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #0a0a0a;
    background-color: #f2f5fc;
    -moz-border-radius: 0;
    border-radius: 0
}

.inner-nav {
    padding: 0;
    margin: 0
}

.inner-nav a,
.inner-nav li {
    display: block
}

.inner-link {
    padding: 1.3rem 4.8rem 1.2rem 4.8rem;
    font-size: 1.3rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 400;
    color: #444;
    border-bottom: 1px solid #e7e7e7;
    -webkit-transition: background-color .3s, color .3s ease-in-out;
    -o-transition: background-color .3s, color .3s ease-in-out;
    -moz-transition: background-color .3s, color .3s ease-in-out;
    transition: background-color .3s, color .3s ease-in-out
}

.no-touch .inner-link:hover {
    background-color: #e7e7e7;
    text-decoration: none;
    color: #444
}

.inner-link:active,
.inner-link:focus,
.inner-link:visited {
    background-color: #e7e7e7;
    text-decoration: none;
    color: #444
}

.inner-nav>li.active>a {
    background-color: #e7e7e7
}

.mCSB_inside>.mCSB_container {
    margin-right: 0
}

.mCSB_scrollTools {
    opacity: 1;
    position: absolute;
    width: 2px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgba(0, 0, 0, .2)
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    background-color: #141414
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #141414;
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)"
}

#docs {
    background-color: #f9f9f9
}

h1 {
    font: normal 300 4rem/1.2 brighttech, sans-serif;
    color: #0a0a0a;
    letter-spacing: -.1rem;
    margin-bottom: 2rem
}

@media only screen and (min-width:768px) {
    h1 {
        max-width: 650px
    }
}

@media only screen and (min-width:1200px) {
    h1 {
        font-size: 6rem;
        max-width: 800px
    }
}

.docs__item {
    margin: 0 0 6rem 0
}

.docs__item a {
    text-decoration: underline
}

.docs__item a.demo-item {
    text-decoration: none
}

@media only screen and (min-width:1024px) {
    .docs__item {
        max-width: 1140px
    }
}

.docs__title {
    padding: 0 0 2rem 0
}

.docs__title .number {
    color: rgba(0, 0, 0, .1);
    font: normal 600 10rem/.84 brighttech, sans-serif;
    text-transform: uppercase;
    letter-spacing: -.1rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, .2)
}

.docs__title .title {
    font: normal 300 4rem/.9 brighttech, sans-serif;
    letter-spacing: -.1rem;
    color: #0a0a0a;
    margin: -3.6rem 0 0 0
}

@media only screen and (min-width:1200px) {
    .docs__title {
        padding: 0 0 2.4rem 0
    }

    .docs__title .number {
        font-size: 14rem
    }

    .docs__title .title {
        font-size: 6rem;
        margin: -5.6rem 0 0 0
    }
}

.docs__content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 2.4rem 0
}

.docs__content h3 {
    font: normal 300 3.6rem/1.2 brighttech, sans-serif;
    letter-spacing: -.1rem;
    color: #0a0a0a;
    padding: 0;
    margin: 0 0 1.2rem 0
}

.docs__content h3 span {
    font-weight: 400;
    font-family: brighttech, sans-serif;
    font-size: 1.4rem;
    color: #b8b8b8
}

.docs__content p {
    font-size: 1.8rem;
    margin: 0 0 2rem 0
}

.docs__content p span {
    font-weight: 500;
    color: #0a0a0a
}

.docs__content p.help-text {
    position: relative;
    padding-left: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #888
}

.docs__content p.help-text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #cfcfcf
}

.docs__content ul {
    list-style: none;
    margin: 0 0 2.4rem 0;
    padding: 0
}

.docs__content ul li {
    position: relative;
    padding: .4rem 0 .4rem 4.8rem;
    color: #444
}

.docs__content ul li span {
    font-weight: 500;
    color: #0a0a0a
}

.docs__content ul li::after,
.docs__content ul li::before {
    content: "";
    display: block;
    position: absolute
}

.docs__content ul li::before {
    top: 0;
    left: 2.4rem;
    width: 1px;
    height: 100%;
    background-color: #cfcfcf
}

.docs__content ul li::after {
    width: .9rem;
    height: .9rem;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg) scale(1);
    -moz-transform: translateY(-50%) rotate(45deg) scale(1);
    -ms-transform: translateY(-50%) rotate(45deg) scale(1);
    transform: translateY(-50%) rotate(45deg) scale(1);
    background-color: #f9f9f9;
    border: 1px solid #cfcfcf;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.docs__content ul li .list-caption {
    display: block;
    margin-bottom: .6rem
}

.no-touch .docs__content ul li:hover::after {
    -webkit-transform: translateY(-50%) rotate(45deg) scale(1.3);
    -moz-transform: translateY(-50%) rotate(45deg) scale(1.3);
    -ms-transform: translateY(-50%) rotate(45deg) scale(1.3);
    transform: translateY(-50%) rotate(45deg) scale(1.3)
}

@media only screen and (min-width:768px) {
    .docs__content p {
        font-size: 1.8rem
    }
}

.content__item {
    padding-top: 2.4rem
}

.prettyprint {
    max-height: 500px;
    overflow-y: auto
}

.demo-container {
    padding: 0
}

.demo-item {
    display: block;
    margin-bottom: 24px;
    text-decoration: none
}

.demo-item img {
    margin: 0;
    -webkit-box-shadow: 0 1px 3px rgba(242, 245, 252, .12), 0 1px 2px rgba(242, 245, 252, .24);
    -moz-box-shadow: 0 1px 3px rgba(242, 245, 252, .12), 0 1px 2px rgba(242, 245, 252, .24);
    box-shadow: 0 1px 3px rgba(242, 245, 252, .12), 0 1px 2px rgba(242, 245, 252, .24);
    -webkit-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    -moz-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.demo-item span {
    display: block;
    font: normal 400 1.3rem/1.2 brighttech, sans-serif;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #444;
    margin-top: 1.2rem
}

.no-touch .demo-item:hover img {
    -webkit-box-shadow: 0 14px 28px rgba(242, 245, 252, .25), 0 10px 10px rgba(242, 245, 252, .22);
    -moz-box-shadow: 0 14px 28px rgba(242, 245, 252, .25), 0 10px 10px rgba(242, 245, 252, .22);
    box-shadow: 0 14px 28px rgba(242, 245, 252, .25), 0 10px 10px rgba(242, 245, 252, .22)
}

.to-top-button {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 45px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #f2f5fc;
    overflow: hidden;
    z-index: 3;
    color: #0a0a0a;
    font-size: 1.6rem;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -o-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s
}

.to-top-button.fade-out,
.to-top-button.is-visible {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -o-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s
}

.no-touch .to-top-button:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -o-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
    opacity: 1;
    color: #0a0a0a
}

.to-top-button.is-visible {
    visibility: visible;
    opacity: 1
}

.to-top-button.fade-out {
    opacity: .4
}

@media only screen and (min-width:768px) {
    .to-top-button {
        position: fixed;
        right: 20px;
        bottom: 20px
    }
}

.demo__footer {
    background-color: #141414;
    position: relative;
    padding: 5rem -moz-calc(10% - 15px);
    padding: 5rem calc(10% - 15px);
    text-align: center
}

.demo__footer p {
    font: normal 400 1.4rem/1.2 brighttech, sans-serif;
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: rgba(255, 255, 255, .6)
}

.demo__footer a {
    font: normal 400 1.4rem/1.2 brighttech, sans-serif;
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: #fff
}

.no-touch .demo__footer a:hover {
    color: rgba(255, 255, 255, .6);
    text-decoration: none
}

.demo__footer i {
    color: #f2f5fc
}

@media only screen and (min-width:1024px) {
    .demo__footer {
        width: -moz-calc(100% - 300px);
        width: calc(100% - 300px);
        margin-left: 300px;
        padding: 5rem 8.5rem
    }
}

@media only screen and (min-width:1600px) {
    .demo__footer {
        padding: 5rem 10.5rem
    }
}