*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    /*
    * Sets the default font-size to 10px for readability
    * while using rems.
    */
    font-size: 62.5%;
}

body {
    font-family: arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

h1 {
    font-size: 40px;
    font-weight: 500;
}

h2,
h3 {
    font-size: 2rem;
    font-weight: 400;
    margin: 1rem 0;
}

strong {
    font-weight: 600;
}

div {
    font-size: 1.65rem
}

p,
.article-page__row-2__col-1 img {
    font-size: 1.65rem;
    font-weight: 400;
    margin: 1.5rem 0
}

ol,
ul {
    list-style-position: inside;
}

li {
    font-size: 1.6rem;
}

img,
video {
    max-width: 100%;
}

* + img,
* + video,
* + ul,
* + ol,
* + p {
    margin-top: 1rem;
}

a {
    text-decoration: underline;
    transition: all .15s ease-in;
    font-weight: 400;
    color: #6aa4f8;
}

    a:focus {
        outline: 1px dotted #6aa4f8;
    }

    a:hover {
        opacity: 0.85;
    }

    a:active {
        opacity: 0.95;
    }

.u-color-logo {
    color: #0c74d7 !important;
}

.button {
    font-size: 1.4rem;
    font-weight: 600;
    outline: none;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.button--white {
    color: #0c74d7;
    border: 1px solid #0c74d7;
    background-color: #fff;
}

.button--blue {
    color: #fff;
    background-color: #6aa4f8;
}

.container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.input {
    font-family: arial, sans-serif;
    font-size: 1.6rem;
    position: relative;
    width: 100%;
}

    .input > input {
        box-sizing: border-box;
        border-radius: 5px;
        padding: 1.5rem 1rem;
        border: 2px solid #4b5b5f;
        width: 100%;
    }

        .input > input[type="search"] {
            padding-left: 4.5rem;
            padding-right: 1.5rem;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            border: 2px solid #6aa4f8;
        }

        .input > input:focus {
            outline: none;
        }

.pill {
    font-size: 1rem;
    font-weight: 600;
    padding: 2px 1rem;
    background-color: #6aa4f8;
    color: #232f41;
    border-radius: 5px;
}

.card {
    box-shadow: 0 0 2px 0 rgba(20, 52, 92, 0.05), 0 3px 1.5rem 0 rgba(20, 52, 92, 0.05), 0 1.5rem 4rem 0 rgba(20, 52, 92, 0.05);
    width: 100%;
    background-color: #fff;
    padding: 2rem;
}

.card_title {
    font-weight: 500;
}

.divider {
    height: 1px;
    border: 0;
    background-color: #e6eaee;
}

.list ul {
    list-style: none;
}

.list > li {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 1.6rem;
    color: #4b5b5f;
    padding: 2rem;
    border-top: 1px solid #e6eaee;
}

    .list > li:last-child {
        border-bottom: 1px solid #e6eaee;
    }

    .list > li:hover {
        background-color: #f5f8f9;
    }

.list--blue-hover > li:hover {
    background-color: rgba(73, 153, 255, 0.15);
}

.list--links > li {
    padding: 0;
}

    .list--links > li > a {
        text-decoration: none;
        display: flex;
        flex: 1;
        align-items: center;
        padding: 2rem;
        color: inherit;
    }

.list--links .list__nested-list {
    display: block;
    padding: 2rem;
}

    .list--links .list__nested-list:hover {
        background-color: inherit;
    }

    .list--links .list__nested-list > li > a {
        display: inline;
        padding: 0;
    }

.link {
    text-decoration: none;
    transition: all .15s ease-in;
    font-weight: 600;
    font-size: 1.4rem;
    color: #6aa4f8;
}

    .link:focus {
        outline: 1px dotted #6aa4f8;
    }

    .link:hover {
        opacity: 0.85;
    }

    .link:active {
        opacity: 0.95;
    }

.link--dark {
    color: #0c74d7;
}

    .link--dark:focus {
        outline: 1px dotted #0c74d7;
    }

.link--underline {
    text-decoration: underline;
}

.link--large {
    font-size: 1.6rem;
}

.breadcrumbs ol {
    list-style: none;
}

.breadcrumbs li {
    display: inline-block;
    font-weight: 600;
    color: #0c74d7;
    font-size: 1.4rem;
}

    .breadcrumbs li a {
        color: #0c74d7;
        font-size: 1.4rem;
        text-decoration: none;
        transition: all .15s ease-in;
        font-weight: 600;
    }

        .breadcrumbs li a:focus {
            outline: 1px dotted #6aa4f8;
        }

        .breadcrumbs li a:hover {
            opacity: 0.85;
        }

        .breadcrumbs li a:active {
            opacity: 0.95;
        }

    .breadcrumbs li:not(:last-child) {
        position: relative;
        padding-right: 2.3rem;
    }

        .breadcrumbs li:not(:last-child)::after {
            content: '';
            right: 0.6rem;
            height: 0.8rem;
            width: 0.6rem;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

    .breadcrumbs li:last-child {
        pointer-events: none;
        cursor: default;
        color: #575757;
    }

        .breadcrumbs li:last-child a {
            color: #575757;
        }

.sub-nav {
    align-items: center;
}

@media (min-width: 900px) {
    .sub-nav {
        display: flex;
    }
}

.sub-nav .input {
    max-width: 44rem;
    margin-top: 1rem;
}

@media (min-width: 900px) {
    .sub-nav .input {
        margin-left: auto;
        margin-top: 0;
    }
}

.sub-nav .input > input[type="search"] {
    border-color: #e6eaee;
}

.sub-nav ol {
    margin-left: 0
}

#cta {
    margin-bottom: 50px
}

    #cta h3 {
        margin-bottom: 3rem;
    }

.header {
    display: block;
    flex-wrap: wrap;
    padding: 2rem 2rem;
    font-weight: 600;
    box-shadow: 0 0 2px 0 rgba(20, 52, 92, 0.05), 0 3px 1.5rem 0 rgba(20, 52, 92, 0.05), 0 1.5rem 4rem 0 rgba(20, 52, 92, 0.05);
}

@media (min-width: 600px) {
    .header {
        display: flex;
    }
}

.header .dropdown-toggle {
    display: flex;
    align-items: center;
}

.header .login {
    display: none;
}

.header span[id="user-name"] {
    margin-left: 1rem;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c74d7;
}

    .header__logo img {
        margin-top: 0;
    }

@media (min-width: 600px) {
    .header__logo {
        justify-content: start;
    }
}

.header__logo__img {
    display: flex;
    align-items: center;
    border-right: 1px solid #eeeeee;
    padding-right: 1rem;
}

    .header__logo__img img {
    }

    .header__logo__img span {
        font-size: 1.6rem;
        margin-left: 1rem;
    }

.header__logo__support-link {
    font-size: 1.4rem;
    margin-left: 1rem;
}

.header__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-top: 1rem;
}

    .header__links .button {
        margin-left: 2rem;
    }

@media (min-width: 600px) {
    .header__links {
        margin-top: 0;
        justify-content: start;
    }
}

.header span[id="user-name"] {
    font-size: 1.4rem;
}

.header img[id="user-avatar"] {
    height: 3rem;
}

.footer {
    margin-top: 8rem;
    background-color: #0c74d7;
    color: #fff;
}

.footer__container {
    max-width: 130rem;
    padding: 1rem 1rem;
    margin: -1rem auto;
}

.footer__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__category {
    margin: 1rem 3rem;
}

.footer__category__title {
    font-size: 1.4rem;
    font-weight: 300;
}

.footer__copyright {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.footer__copyright-text {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 1rem;
    padding-top: 5px;
}

.footer__logo {
    height: 2rem;
    width: 2rem;
    background-color: #fff;
    border-radius: 5px;
}

.footer__logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-left: 1rem;
}

.footer ul {
    list-style: none;
    margin-top: 2rem;
}

.footer li a {
    display: flex;
    align-items: center;
}

    .footer li a .pill {
        margin-left: 1rem;
    }

.footer li:not(:first-child) {
    margin-top: 1rem;
}

.home-page__hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 325px;
    background: url("../images/layout.png");
    background-size: cover;
    background-repeat: no-repeat;
}

    .home-page__hero > .input {
        margin-top: 2rem;
        max-width: 70rem;
    }

    .home-page__hero h1 {
        text-align: center;
        color: #0c74d7;
        text-transform: uppercase;
    }

.home-page__article-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 900px) {
    .home-page__article-cards {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .home-page__article-cards {
        justify-content: initial;
    }
}

.home-page__article-cards > .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 100%;
    order: 2;
    color: #000;
    text-decoration: none;
    margin: 2rem;
    padding: 2rem 3rem;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(20, 52, 92, 0.05), 0 3px 1.5rem 0 rgba(20, 52, 92, 0.05), 0 1.5rem 4rem 0 rgba(20, 52, 92, 0.05);
    transition: all 0.15s ease-in;
}

@media (min-width: 900px) {
    .home-page__article-cards > .card {
        height: 35rem;
        flex: 0 0 38rem;
    }
}

.home-page__article-cards > .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 2rem 0 rgba(20, 52, 92, 0.05), 0 3rem 10.5rem 0 rgba(20, 52, 92, 0.05), 0 1.5rem 4rem 0 rgba(20, 52, 92, 0.05);
}

.home-page__article-cards > .card > .card__description {
    font-size: 1.6rem;
    text-align: center;
}

    .home-page__article-cards > .card > .card__description > .card__description__sub-text {
        color: #4b5b5f;
    }

.home-page__article-cards > .card > .card__logo {
    position: relative;
    height: 11rem;
    width: 11rem;
    margin: 2rem;
    border-radius: 50%;
    border: solid 2px #F5F5F5;
}

    .home-page__article-cards > .card > .card__logo:after {
        content: '';
        height: 5rem;
        width: 5rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.home-page__article-cards > .card > .card__link {
    margin-top: 1rem;
}

.home-page__article-cards > .card[name="General"] > .card__logo {
    background: url("../images/xml-file.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.home-page__article-cards > .card[name="JSON"] > .card__logo {
    background: url("../images/json-file.fw.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.category-page {
    margin-top: 2rem;
}

    .category-page .section-tree-with-article ul {
        list-style: none;
    }

    .category-page:target:before {
        content: "";
        display: block;
        height: 6rem;
        margin: -6rem 0 0;
    }

.category-page__hidden {
    display: none;
}

.category-page a {
    text-decoration: none;
}

.category-page__header {
    align-items: center;
}

@media (min-width: 900px) {
    .category-page__header {
        display: flex;
    }
}

.category-page__header .input {
    max-width: 44rem;
    margin-top: 1rem;
}

@media (min-width: 900px) {
    .category-page__header .input {
        margin-left: auto;
        margin-top: 0;
    }
}

.category-page__header .input > input[type="search"] {
    border-color: #e6eaee;
}

.category-page__home-link span {
    margin-left: 5px;
}

.category-page__content {
    margin-top: 3rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

@media (min-width: 900px) {
    .category-page__content {
        display: flex;
    }
}

.category-page__content > div {
    margin: 0 4rem 0 2rem;
}

.category-page__content__sections {
    flex: 0 0 40rem;
}

.category-page__content__sections__title {
    display: flex;
    align-items: center;
}

.category-page__content__sections li {
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.5px;
}

    .category-page__content__sections li > a {
        color: #000;
        font-size: 1.4rem
    }

.category-page__content__sections ul > a {
    letter-spacing: normal;
    text-transform: none;
    display: block;
    transition: all 0.15s ease-in;
}

    .category-page__content__sections ul > a:hover {
        background-color: #e0edff;
    }

    .category-page__content__sections ul > a:active {
        background-color: #3d7cd8;
        color: #fff;
    }

.category-page__content__description {
    color: #4b5b5f;
    font-size: 2rem;
}

.category-page__sections {
    margin-top: 3rem;
}

    .category-page__sections ul {
        margin-bottom: 2rem;
    }

    .category-page__sections a {
        color: #4b5b5f;
        font-weight: 400;
    }

.category-page__subsections__title {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #575757;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.category-page__content__info {
    min-width: 50%;
}

.article-page {
    margin-top: 3rem;
}

.article-page__row-2 {
    margin-top: 3rem;
}

.article-page__row-2__col-1 ul,
ol {
    margin-left: 2rem;
}

.article-page__row-2__col-1 li {
    margin: 1.5rem 0;
}

.article-page__row-2__col-1 h2 {
    font-weight: 600;
}

.article-page__row-2__col-1 a {
    font-weight: 600;
    text-decoration: none
}

@media (min-width: 900px) {
    .article-page__row-2 {
        display: flex;
    }
}

.article-page__row-2__col-1 {
    flex: 1;
}

@media (min-width: 900px) {
    .article-page__row-2__col-2 {
        margin-left: 5rem;
        width: 44rem;
    }
}

.article-page__row-2__col-2 .list a {
    font-weight: 400;
}

.article-page__see-more {
    padding: 2rem;
}

    .article-page__see-more a {
        display: inline-flex;
        align-items: center;
    }

.article-page__row-2__col-1 table {
    font-size: 1.6rem;
}

.article-page__row-2__col-1 h3 {
    font-weight: 600;
    font-size: 1.6rem
}

.article-page__row-2__col-1 table tbody td {
    padding: 2rem 2rem 2rem 0rem
}

.article-page__row-2__col-1 pre {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 15px;
    overflow: auto;
    white-space: pre;
    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;
    font-size: 1.6rem;
    max-width: 770px
}

.label-success {
    background-color: #5cb85c;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}