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

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* disable webkit tap highlight */
    height: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-overflow-scrolling: touch;
}

* html body {
    height: 100%;
}

body {
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4em;
    min-height:100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    position:relative;
    color: #233244;
    height:100%;
    background: #eaedf2;
}

hr {
    display: block;
    width: 100%;
    height: 0;
    border: none;
    border-bottom: 1px solid #d7dce2;
    margin: 2.875em 0;
    padding: 0;
    line-height: 0;
    background: none;
    overflow: hidden;
}

.chromeframe {
    margin: 0.2em 0;
    padding: 0.2em 0;
}

:focus {
    outline:0;
}

b, strong {
    font-weight: 700;
}

a {
    color: #233244;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 0 0 1.75em 0;
    font-size: 105%;
    line-height: 1.7;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    display:block;
    padding:0;
    margin: 0 0 1.2em 0;
    line-height: 1;
    color: #233244;
}

h1, h2 {
    font-size: 190%;
    font-weight: 700;
    letter-spacing: -1px;
}

h3 {
    font-size: 160%;
    color: #1ebcd6;
}

h4 {
    font-size:150%;
    color: #1ebcd6;
}

h5 {
    font-size: 130%;
    color: #1ebcd6;
}

h6 {
    font-size:120%;
    color: #1ebcd6;
}

svg {
    pointer-events: none;
}

img {
    vertical-align: middle;
}

img, object {
    max-width: 100%;
    height: auto;
}

iframe, object, embed, video {
    max-width:100%;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex--nowrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex--spacebetween {
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

.flex--flexstart {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
}

.flex--align-items-center {
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
}

.container {
    width: 100%;
    max-width: 75em;
    margin: auto;
    padding-left: 1em;
    padding-right: 1em;
}

.btn-primary {
    color: white;
    background: transparent;
    border:2px solid #1ebcd6;
    padding: 0.5em 2em;
    font-size: 90%;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    -moz-border-radius: 50px;
    border-radius: 50px;

    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.btn-primary:hover {
    background: #1ebcd6;
}

/** Header **/
.l-docs-header {
    width:100%;
    background: #233244;
    padding: 14px 0;
    margin-bottom: 50px;
    color: #fff;
}

.l-docs-header--title{
    color: #fff;
    font-size: 100%;
    margin: 0;
    font-weight: 400;
}

.l-docs-header--title img {
    margin-right: 10px;
}

/** Main **/
.l-docs-main {
    padding: 40px;
    background: white;
    margin-bottom: 40px;
}

.l-docs-main--column {
    width: 30%;
}

.l-docs-main--content {
    width: 65%;
    margin-left: 5%;
}

/** Sidebar **/
.m-side-bar {
    background: #eaedf2;
}

.m-side-bar h5,
.m-side-bar li {
    border-bottom: 1px solid white;
}

.m-side-bar h5{
    margin-bottom: 0;
    padding: 20px;
    color: #233244;
    font-size: 115%;
}

.m-side-bar ul,
.m-side-bar li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: list-item;
}
.m-side-bar li{
    font-size: 100%;
    font-weight: 400;
}

.m-side-bar li a{
    display: block;
    text-decoration: none;
    padding: 16px 20px;
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.m-side-bar li.active a,
.m-side-bar li a:hover {
    background: #1ebcd6;
    color: #fff;
}

/** Footer **/
.l-docs-footer {
    text-align: center;
    padding: 0 1em;
    margin-bottom: 40px;
}

.l-docs-footer a {
    color: #929db1;
}

.l-docs-footer p{
    margin: 0;
    font-size: 85%;
    font-weight: 400;
    color: #929db1;
    line-height: 1;
}

/** Media Queries **/
@media (max-width: 768px) {

    .l-docs-header {
        margin-bottom: 20px;
        text-align: center;
    }

    .l-docs-header--title{
        margin: 0 0 15px;
    }

    .l-docs-header--btn {
        display: block;
        max-width: 15em;
        margin: auto;
    }

    .l-docs-header--title img {
        display: block;
        margin: auto;
    }

    .flex {
        display: block;
    }

    .l-docs-main {
        padding: 30px;
        margin-bottom: 30px;
    }

    .l-docs-main--column,
    .l-docs-main--content {
        width: 100%;
        margin-left: 0;
    }

    .l-docs-main--column {
        margin-bottom: 30px;
    }

    .l-docs-footer {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .l-docs-main {
        padding: 25px;
    }
}
