﻿*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    box-sizing: inherit;
    font-family: 'Lato', 'Open Sans', sans-serif;
    font-size: 16px;
    background: #f1f3f5;
    font-weight: 400;
}

body {
    background-color: #fff;
    color: #1d2329;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    line-height: 1.5rem;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(17,97,178,0.52);
}

figure {
    margin-left: 0;
    margin-right: 0;
}

img {
    width: 100%;
}

figcaption {
    font-style: italic;
    font-size: 0.9rem;
}

.hide-for-desktop {
    display: none;
}

.constrain {
    width: 700px;
}

thead tr {
    background: #ecf1f5;
}

th,
td {
    padding: 5px 12px;
}

th {
    font-size: 14px;
    text-align: left;
}

tr {
}

@media (max-width: 1000px) {
    .hide-for-mobile {
        display: none;
    }

    .hide-for-desktop {
        display: initial;
    }
}

@font-face {
    font-family: 'Karbon Slab';
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/KarbonSlabStencilWeb-Regular.eot");
    src: url("../fonts/KarbonSlabStencilWeb-Regular.eot#iefix") format('embedded-opentype'), url("../fonts/KarbonSlabStencilWeb-Regular.otf") format('opentype'), url("../fonts/KarbonSlabStencilWeb-Regular.woff") format('woff');
}

@font-face {
    font-family: 'Karbon Slab';
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/KarbonSlabStencilWeb-Bold.eot");
    src: url("../fonts/KarbonSlabStencilWeb-Bold.eot#iefix") format('embedded-opentype'), url("../fonts/KarbonSlabStencilWeb-Bold.otf") format('opentype'), url("../fonts/KarbonSlabStencilWeb-Bold.woff") format('woff');
}

.grid {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    -webkit-box-align: center;
    align-items: center;
}

.grid-column {
    -webkit-box-flex: 1;
    flex: 1;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.grid--12 > * {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    width: calc(50% - 1rem) !important;
}

@media (max-width: 1000px) {
    .grid--12 > * {
        width: 100% !important;
    }
}

.grid--6 > * {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    width: calc(25% - 1rem) !important;
}

@media (max-width: 1000px) {
    .grid--6 > * {
        width: 100% !important;
    }
}

h1 {
    font-weight: 900;
    margin-bottom: 0.2rem;
}

    h1:not(:first-child) {
        margin-top: 3rem;
    }

h2 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

a {
    color: #1161b2;
}

p {
    line-height: 1.75;
}

div.callout {
    font-size: 1.2rem;
    line-height: 1.5;
}

blockquote {
    border-left: 4px solid #007846;
    padding-left: 1.7rem;
    margin-left: 0;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #606975;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

a.headline-hash {
    color: #1d2329;
    text-decoration: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-left: -25px;
}

    a.headline-hash h1 {
        width: 100%;
    }

    a.headline-hash i {
        font-size: 1rem;
        -webkit-transition: opacity 100ms;
        transition: opacity 100ms;
        opacity: 0.1;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        width: 25px;
        flex-shrink: 0;
        position: relative;
    }

    a.headline-hash:hover i {
        opacity: 1;
    }

    a.headline-hash:not(:first-child) h1 {
        margin-top: 2rem;
    }

    a.headline-hash:not(:first-child) i {
        top: 6px;
    }

hr {
    display: block;
    margin-top: 2.5em;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #dbe0e5;
}

pre {
    padding: 1rem;
    border-radius: 8px;
    background-color: #ecf1f5 !important;
    border: 1px solid #dbe0e5;
    overflow-y: auto;
}

    pre code {
        border: none;
        background-color: none;
    }

code {
    background-color: #ecf1f5;
    padding: 1px 5px;
    border-radius: 4px;
    border: 1px solid #dbe0e5;
}

.note {
    background: #ecf1f5;
    border-radius: 5px;
    padding: 1.2rem 1.3rem 1.4rem 1.6rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

    .note * {
        font-size: 1rem;
    }

    .note h2 {
        margin-top: 0;
        margin-bottom: 0;
        color: #1161b2;
        text-transform: uppercase;
        font-size: 0.8rem;
        font-weight: 900;
        letter-spacing: 0.03rem;
    }

    .note p {
        margin-top: 0.3rem;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .note.warning {
        background: #fffae6;
    }

        .note.warning h2 {
            color: #db6b00;
        }

.btn-outline {
    text-decoration: none;
    color: #733878;
    border: 1px solid #733878;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
}

.signinDiv {
    background-color: #fff;
    width: 406px;
    margin: -70px auto 0 auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    padding: 20px 0 30px 0;
}

.btn-outline:hover {
    background: #733878;
    color: #fff;
}

.btn-outline.blue {
    border-color: #4ec3e0;
    color: #4ec3e0;
}

    .btn-outline.blue:hover {
        background: #4ec3e0;
        color: #fff;
    }

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: flex;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #c1c8d1;
    margin-right: 0.25rem;
}

    .breadcrumb i {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .breadcrumb:last-child i {
        display: none;
    }

    .breadcrumb a {
        text-decoration: none;
        color: #606975;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

.table-of-contents {
    border-left: 3px solid #c1c8d1;
    -webkit-box-flex: 1;
    flex: 1;
    padding-left: 1.5rem;
    margin-left: 3.5rem;
    margin-top: 4rem;
}

    .table-of-contents ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .table-of-contents ul li {
            margin-top: 0.5rem;
        }

        .table-of-contents ul a {
            color: #1161b2;
            text-decoration: none;
        }

            .table-of-contents ul a:hover {
                text-decoration: underline;
            }

        .table-of-contents ul ul {
            display: none;
        }

@media (max-width: 1000px) {
    .table-of-contents {
        display: none;
    }
}

.table-of-contents__title {
    font-size: 0.8rem;
    color: #606975;
    margin-top: 0;
    margin-bottom: 0;
}

.menu {
    background: #1d1934;
    bottom: 0;
    box-sizing: border-box;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    left: 0;
    position: absolute;
    top: 0;
    width: 250px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem;
    padding-bottom: 3rem;
}

    .menu .logo-container {
        position: relative;
    }

    .menu .lunchbox-logo {
        position: relative;
        width: 45px;
        height: 45px;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        z-index: 2;
    }

    .menu .lunchbox-logo__open {
        position: absolute;
        left: 2px;
        width: 56px;
        height: 56px;
        top: 4px;
        opacity: 0;
        z-index: 1;
    }

    .menu .lunchbox-logo:hover {
        opacity: 0;
    }

        .menu .lunchbox-logo:hover + .lunchbox-logo__open {
            opacity: 1;
        }

    .menu .mobile-lunchbox-logo {
        position: relative;
        width: 40px;
        height: 40px;
        z-index: 2;
        margin-top: 0.4rem;
    }

    .menu .footer__tos {
        position: fixed;
        bottom: 0;
        font-size: 0.8rem;
        margin-bottom: 0;
        width: 250px;
        left: 0;
        padding-left: 1.5rem;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(29,25,52,0)), color-stop(60%, #1d1934));
        background: linear-gradient(to bottom, rgba(29,25,52,0) 0%, #1d1934 60%);
    }

        .menu .footer__tos a {
            opacity: 0.8;
        }

@media (max-width: 1000px) {
    .menu {
        width: 100%;
        height: 60px;
        padding: 0 1.5rem;
        overflow: hidden;
        z-index: 3;
    }

        .menu .footer__tos {
            position: relative;
            padding-left: 0;
            padding-top: 0;
        }

        .menu.menu--open {
            height: 100%;
            overflow-y: auto;
        }
}

.menu__actions {
    color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .menu__actions {
        flex-shrink: 0;
        height: 60px;
    }

        .menu__actions i {
            font-size: 1.4rem;
        }
}

.menu__back {
    opacity: 0.6;
    color: #fff;
    text-decoration: none;
}

    .menu__back i {
        margin-right: 0.5rem;
        font-size: 0.8rem;
    }

    .menu__back:hover {
        cursor: pointer;
    }

.menu__search {
    opacity: 0.6;
    color: #fff;
}

.menu__section-container {
    position: relative;
}

.menu__section-name {
    text-decoration: none;
    display: block;
}

    .menu__section-name h1 {
        color: #fff;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        cursor: pointer;
    }

    .menu__section-name i {
        font-size: 0.8rem;
        margin-left: 0.5rem;
        color: #b676c1;
        -webkit-transition: -webkit-transform 60ms ease-in-out;
        transition: -webkit-transform 60ms ease-in-out;
        transition: transform 60ms ease-in-out;
        transition: transform 60ms ease-in-out, -webkit-transform 60ms ease-in-out;
    }

    .menu__section-name:hover i {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

.section-dropdown {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    display: none;
    background: #fff;
    position: absolute;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    top: 45px;
    z-index: 1;
}

.section-dropdown__item a {
    color: #505861;
    text-decoration: none;
    border-bottom: 1px solid #dbe0e5;
    width: 100%;
    display: block;
    padding: 0.5rem 0.8rem;
}

    .section-dropdown__item a :not(:last-child) {
        border-bottom: 1px solid #dbe0e5;
    }

    .section-dropdown__item a:hover {
        background: #ecf1f5;
    }

    .section-dropdown__item a:focus {
        box-shadow: none;
        background: #ecf1f5;
    }

.section-dropdown__item.active a {
    font-weight: 900;
    color: #733878;
}

.menu__list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

    .menu__list .sidebar-title {
        margin-top: 1.5rem;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
        color: #fff;
    }

        .menu__list .sidebar-title span {
            text-transform: uppercase;
            font-size: 0.8rem;
            opacity: 0.45;
            text-decoration: none;
        }

        .menu__list .sidebar-title i {
            margin-left: 0.5rem;
            opacity: 0.3;
            font-size: 0.8rem;
        }

        .menu__list .sidebar-title:hover span {
            opacity: 0.8;
        }

        .menu__list .sidebar-title:hover i {
            opacity: 0.8;
        }

    .menu__list .sidebar-item {
        position: relative;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    }

        .menu__list .sidebar-item a {
            padding: 0.2rem 0;
            display: block;
            color: #fff;
            font-weight: 400;
            text-decoration: none;
            font-size: 1rem;
        }

            .menu__list .sidebar-item a:hover {
                color: #6cccb3;
            }

        .menu__list .sidebar-item.active a {
            color: #6cccb3;
        }

@media (max-width: 1000px) {
    .menu__list .sidebar-item a {
        padding: 0.3rem 0;
        font-size: 1.2rem;
    }
}

.menu__list .sidebar-item__status {
    background: #000;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: 10px;
}

    .menu__list .sidebar-item__status.proposed {
        background: #db6b00;
    }

    .menu__list .sidebar-item__status.new {
        background: #1161b2;
    }

    .menu__list .sidebar-item__status.stable {
        background: #007846;
    }

    .menu__list .sidebar-item__status.deprecated {
        background: #c32b1c;
    }

.full-page-search-container {
    display: none;
    background: rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    padding-top: 15vh;
    opacity: 0;
    z-index: 100;
}

@media (max-width: 1000px) {
    .full-page-search-container {
        padding-top: 0;
    }
}

.search {
    position: relative;
    margin-top: 3.5rem;
    margin-bottom: 3rem;
    width: 90%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

    .search .search-icon {
        color: #606975;
        position: absolute;
        font-size: 1.4rem;
        top: 19px;
        left: 24px;
    }

    .search .search__label {
        display: none;
    }

    .search .search-box {
        height: 60px;
        line-height: 60px;
        padding: 1rem 1.3rem 1rem 3.5rem;
        font-size: 1.2rem;
        border-radius: 50px;
        border: none;
        -webkit-transition: box-shadow 200ms ease-in-out;
        transition: box-shadow 200ms ease-in-out;
        width: 100%;
        -webkit-appearance: none;
    }

        .search .search-box::-webkit-input-placeholder {
            color: #c1c8d1;
        }

        .search .search-box::-moz-placeholder {
            color: #c1c8d1;
        }

        .search .search-box:-ms-input-placeholder {
            color: #c1c8d1;
        }

        .search .search-box::-ms-input-placeholder {
            color: #c1c8d1;
        }

        .search .search-box::placeholder {
            color: #c1c8d1;
        }

        .search .search-box:focus {
            outline: none;
            box-shadow: 0px 0px 30px 0px rgba(255,255,255,0.5);
        }

    .search .search-results {
        position: absolute;
        width: calc(100% - 10rem);
        background: #fff;
        top: 80px;
        border: 1px solid #ecf1f5;
        text-align: left;
        margin-left: 5rem;
        border-radius: 3px;
        z-index: 2;
        opacity: 0;
        display: none;
    }

    .search .search-results__header {
        color: #c1c8d1;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom: 1px solid #ecf1f5;
        padding: 0.25rem 1.25rem;
    }

    .search .search-results__content {
        max-height: 240px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .search .search-results__item {
        border-bottom: 1px solid #ecf1f5;
        position: relative;
    }

        .search .search-results__item span {
            display: block;
            font-size: 0.8rem;
            line-height: 1.2;
        }

        .search .search-results__item a {
            display: block;
            padding: 0.5rem 1.25rem;
            text-decoration: none;
            color: #505861;
            font-weight: 700;
            line-height: 1.6;
        }

            .search .search-results__item a:focus {
                box-shadow: none;
                background: #ecf1f5;
            }

        .search .search-results__item i {
            color: #c1c8d1;
            position: absolute;
            right: 18px;
            top: 15px;
            -webkit-transition: -webkit-transform 100ms ease-in-out;
            transition: -webkit-transform 100ms ease-in-out;
            transition: transform 100ms ease-in-out;
            transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
            font-size: 0.8rem;
        }

        .search .search-results__item:hover {
            background: #ecf1f5;
        }

            .search .search-results__item:hover i {
                -webkit-transform: translateX(2px);
                transform: translateX(2px);
            }

        .search .search-results__item.search-results__item--no-results a {
            color: #c1c8d1;
        }

    .search.squared {
        max-width: 500px;
        height: 60px;
    }

        .search.squared .search-icon {
            left: 20px;
        }

        .search.squared .search-box {
            border-radius: 6px;
        }

        .search.squared .search-results {
            margin-left: 0;
            width: 100%;
            border-radius: 6px;
            border: 1px solid #c1c8d1;
        }

@media (max-width: 1000px) {
    .search {
        margin-top: 1.5rem;
        margin-bottom: 1.2rem;
        width: 100%;
    }

        .search.squared {
            max-width: 90vw;
        }

        .search .search-box {
            height: 50px;
            line-height: 50px;
            font-size: 1rem;
            padding-left: 3rem;
        }

        .search .search-icon {
            font-size: 1.2rem;
            top: 15px;
            left: 18px;
        }

        .search .search-results {
            width: calc(100% - 1rem);
            margin-left: 0.5rem;
        }
}

.asset-box {
    display: -webkit-box;
    display: flex;
    width: 300px;
    border: 1px solid #c1c8d1;
    padding: 0.6rem 1rem;
    border-radius: 3px;
    margin-top: 1rem;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    transition: -webkit-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

    .asset-box.disabled {
        opacity: 0.5;
        cursor: default;
    }

    .asset-box:not(.disabled):hover {
        background: #ecf1f5;
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
        box-shadow: 0 2px 0 rgba(0,0,0,0.17);
    }

.grid-column .asset-box {
    width: 100%;
}

.asset-box__icon {
    display: -webkit-box;
    display: flex;
    flex-shrink: 0;
    -webkit-box-align: center;
    align-items: center;
    width: 35px;
}

    .asset-box__icon i {
        font-size: 20px;
        color: #c1c8d1;
    }

.asset-box__name {
    font-weight: 700;
    line-height: 1.2;
    color: #303a45;
}

.asset-box__link {
    font-size: 0.9rem;
    color: #1161b2;
    line-height: 1.5;
    margin-top: 3px;
}

.page-status {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid #dbe0e5;
    border-radius: 6px;
    background: #fff;
    padding: 0 1rem;
    text-transform: capitalize;
    height: 32px;
    text-decoration: none;
    color: #303a45;
}

    .page-status:hover {
        background: #f2f2f2;
    }

    .page-status.page-status--no-link {
        border: none;
        padding: 0;
    }

        .page-status.page-status--no-link:hover {
            background: none;
        }

.page-status__bubble {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 10px;
    margin-right: 0.5rem;
}

.page-status.proposed .page-status__bubble {
    background: #db6b00;
}

.page-status.new .page-status__bubble {
    background: #1161b2;
}

.page-status.stable .page-status__bubble {
    background: #007846;
}

.page-status.deprecated .page-status__bubble {
    background: #c32b1c;
}

.color-lookup {
    position: relative;
}

    .color-lookup input[type=text] {
        margin-top: 1rem;
        font-size: 1rem;
        padding: 8px 10px;
        border: 1px solid #c0c8cf;
        border-radius: 3px;
    }

        .color-lookup input[type=text]:focus {
            outline: none;
            border: 1px solid #87939e;
        }

    .color-lookup button {
        font-size: 1rem;
        padding: 8px 12px;
        background: #fafbfb;
        -webkit-appearance: none;
        border: 1px solid #c0c8cf;
        border-radius: 3px;
    }

        .color-lookup button:hover {
            background: #e5e9ec;
        }

    .color-lookup .message {
        color: #65727d;
        margin-left: 8px;
    }

    .color-lookup .hide {
        height: 0;
        opacity: 0;
    }

section.has-sidebar {
    margin-left: 250px;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 1000px) {
    section.has-sidebar {
        margin-left: 0;
        margin-top: 60px;
    }
}

.page-header {
    padding: 2rem 4rem;
    padding-bottom: 0;
    background: #ecf1f5;
    border-bottom: 1px solid #dbe0e5;
}

    .page-header .page-title {
        font-family: 'Karbon Slab';
        font-weight: 300;
        font-size: 2.5rem;
        margin-top: 0;
        -webkit-box-flex: 1;
        flex-grow: 1;
        line-height: 0.8;
    }

    .page-header .title-container {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        margin-top: 0.75rem;
        margin-bottom: 2rem;
    }

    .page-header .content {
        max-width: 700px;
        width: 700px;
    }

@media (max-width: 1000px) {
    .page-header {
        padding: 1rem 1.5rem 0 1.5rem;
    }

        .page-header h1 {
            font-size: 1.8rem;
            line-height: 1.1;
            margin-bottom: 0.6rem;
            margin-top: 0.25rem;
        }

        .page-header .content {
            width: 100%;
            min-width: auto;
        }
}

.page-content {
    padding: 2rem 4rem;
    display: -webkit-box;
    display: flex;
}

    .page-content .content {
        max-width: 700px;
        width: 700px;
    }

        .page-content .content.content--wide {
            max-width: 1200px;
            width: 1200px;
        }

    .page-content h1 {
        border-bottom: 2px solid #ecf1f5;
        padding-bottom: 0.75rem;
    }

@media (max-width: 1000px) {
    .page-content {
        padding: 2rem 1.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
    }

        .page-content .content,
        .page-content .content--wide {
            width: 100% !important;
            min-width: auto;
        }
}

.tabs {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    top: 1px;
}

@media (max-width: 1000px) {
    .tabs {
        margin-top: 1rem;
    }
}

.tab {
    padding: 0.3rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    background: #dbe0e5;
    border: 1px solid #dbe0e5;
    border-bottom: none;
    color: #606975;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    text-decoration: none;
    margin-right: 0.3rem;
    cursor: pointer;
    -webkit-transition: background-color 100ms ease-in-out;
    transition: background-color 100ms ease-in-out;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

    .tab:not(.active):hover {
        background: #d3d9df;
    }

    .tab.active {
        background: #fff;
        color: #303a45;
        border-top: 3px solid #733878;
        border-bottom: none;
        padding-top: calc(0.3rem - 2px);
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.tab-content--constrain {
    width: 700px;
    max-width: 700px;
}

.page-nav-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 4rem;
}

.page-nav {
    padding: 0.1rem 1rem;
    font-size: 1.2rem;
    text-decoration: none;
    color: #1161b2;
    opacity: 0.8rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

    .page-nav i {
        opacity: 1;
        -webkit-transition: -webkit-transform 60ms;
        transition: -webkit-transform 60ms;
        transition: transform 60ms;
        transition: transform 60ms, -webkit-transform 60ms;
        font-size: 1rem;
    }

    .page-nav:hover {
        opacity: 1;
    }

        .page-nav:hover i {
            opacity: 1;
        }

@media (max-width: 1000px) {
    .page-nav {
        font-size: 1.1rem;
    }
}

.page-nav--next {
    text-align: right;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

    .page-nav--next i {
        margin-left: 0.75rem;
    }

    .page-nav--next:hover i {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

.page-nav--prev:not(:only-child) {
    border-right: 1px solid #c1c8d1;
}

.page-nav--prev i {
    margin-right: 0.75rem;
}

.page-nav--prev:hover i {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}

.swatches {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.color-swatch {
    background: #fff;
    border-radius: 6px;
    width: calc(25% - 1rem);
    margin-bottom: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 5px;
    border: 1px solid #dbe0e5;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    transition: -webkit-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

    .color-swatch:hover {
        border: 1px solid #c1c8d1;
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
        box-shadow: 0 2px 1px rgba(0,0,0,0.1);
    }

@media (max-width: 1000px) {
    .color-swatch {
        width: calc(50% - 1rem);
    }
}

.color-swatch__color {
    width: 100%;
    height: 75px;
    border-top-left-radius: 3px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-top-right-radius: 3px;
}

.color-swatch__name {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem 0.1rem 0.5rem;
}

.color-swatch__hex {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.25rem;
    opacity: 0;
    -webkit-transition: opacity 100ms ease-in-out;
    transition: opacity 100ms ease-in-out;
}

.color-swatch__color:hover .color-swatch__hex {
    opacity: 1;
}

.color-swatch__color.active .color-swatch__hex {
    opacity: 0 !important;
}

.color-swatch__copied {
    font-size: 0.8rem;
    position: absolute;
    bottom: 25px;
    opacity: 0;
    -webkit-transition: -webkit-transform 100ms ease-in-out;
    transition: -webkit-transform 100ms ease-in-out;
    transition: transform 100ms ease-in-out;
    transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
}

.color-swatch__color.active .color-swatch__copied {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.8;
}

.swatch-group {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

    .swatch-group .color {
        width: 33%;
    }

    .swatch-group .swatches {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        margin: 0;
    }

.swatch-container {
    width: calc(20% - 1rem);
    min-width: 200px;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 500px) {
    .swatch-container {
        width: calc(50% - 1rem);
        min-width: 0;
    }
}

.swatch-container__header {
    padding: 2rem 1rem 1rem 1rem;
}

    .swatch-container__header h3 {
        text-transform: capitalize;
        margin-top: 0;
        margin-bottom: 0;
    }

.color-palette-swatch {
    text-decoration: none;
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    -webkit-transition: height 100ms ease-in-out;
    transition: height 100ms ease-in-out;
}

    .color-palette-swatch:hover {
        z-index: 2;
    }

    .color-palette-swatch:focus {
        box-shadow: inset 0 0 0 2px rgba(17,97,178,0.52);
    }

.color-palette-swatch__right-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.color-palette-swatch__hex {
    font-size: 0.8rem;
}

    .color-palette-swatch__hex span:last-child {
        display: none;
    }

.color-palette-swatch__number {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.color-palette-swatch__fl-logo svg {
    fill: #fff;
    width: 14px;
    vertical-align: middle;
    margin-left: 14px;
}

.color-palette-swatch.active .color-palette-swatch__hex span:first-child {
    display: none;
}

.color-palette-swatch.active .color-palette-swatch__hex span:last-child {
    display: block;
}

.color-palette-swatch__wcag {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 18px;
    height: 18px;
    width: 32px;
    text-align: center;
    border-radius: 3px;
    margin-left: 8px;
}

.codepen {
    background: #ecf1f5;
}

.icons-iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #dbe0e5;
}

@media (max-width: 1000px) {
    .layout-svg {
        width: 100%;
    }
}

.color-palette-swatch {
    text-decoration: none;
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    -webkit-transition: height 100ms ease-in-out;
    transition: height 100ms ease-in-out;
}

    .color-palette-swatch:hover {
        z-index: 2;
    }

    .color-palette-swatch:focus {
        box-shadow: inset 0 0 0 2px rgba(17,97,178,0.52);
    }

.color-palette-swatch__right-content {
    display: -webkit-box;
    display: flex;
    font-weight: 500;
    -webkit-box-align: center;
    align-items: center;
}

.color-palette-swatch__hex {
    font-size: 0.8rem;
}

    .color-palette-swatch__hex span:last-child {
        display: none;
    }

.color-palette-swatch.active .color-palette-swatch__hex span:first-child {
    display: none;
}

.color-palette-swatch.active .color-palette-swatch__hex span:last-child {
    display: block;
}

.color-palette-swatch__wcag {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 18px;
    height: 18px;
    width: 32px;
    text-align: center;
    border-radius: 3px;
    margin-left: 8px;
}

.landing .content {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem 2rem;
}

.landing .lunchbox-logo {
    position: absolute;
    width: 45px;
    top: 1rem;
    left: 1rem;
}

.landing .frontline-logo {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 1rem;
    left: 1rem;
}

.landing .title {
    font-family: 'Karbon Slab';
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 100;
}

.landing .subtitle {
    font-size: 1.2rem;
}

@media (max-width: 1000px) {
    .landing .content {
        padding: 2rem 1.5rem 3rem 1.5rem;
    }

    .landing .subtitle {
        font-size: 1rem;
    }

    .landing .lunchbox-logo {
        width: 50px;
        top: 1.8rem;
        left: 50%;
        margin-left: -25px;
    }

    .landing .frontline-logo {
        display: none;
    }
}

.landing__hero {
    background-color: #1e1a34;
    background-image: url("../CSS/images/background-pattern-dark.png");
    color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 1rem 0;
    text-align: center;
}

    .landing__hero .content {
        padding-bottom: 3rem;
    }

@media (max-width: 1000px) {
    .landing__hero .lunchbox-logo-full {
        width: 250px;
    }
}

.landing__title {
    font-family: 'Karbon Slab';
    font-size: 3.5rem;
    line-height: 0.7;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

@media (max-width: 1000px) {
    .landing__title {
        font-size: 2.2rem;
        margin-bottom: 0;
        margin-top: 3rem;
    }
}

.landing__subtitle {
    font-size: 2.2rem;
    opacity: 0.75;
    margin-top: 2rem;
}

@media (max-width: 1000px) {
    .landing__subtitle {
        font-size: 1rem;
        margin-top: 0;
    }
}

.nav-boxes {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}

@media (max-width: 1000px) {
    .nav-boxes {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
    }
}

.nav-box {
    -webkit-box-flex: 1;
    flex: 1;
    max-width: 210px;
    padding: 0.5rem 2rem;
    background: none;
    border-radius: 1rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    color: #5b6770;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    transition: -webkit-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

    .nav-box.getting-started svg g {
        fill: #6dcbb3;
    }

    .nav-box.getting-started .nav-box__button {
        border-color: #6dcbb3;
        color: #6dcbb3;
    }

    .nav-box.brand svg path {
        stroke: #b676c1;
    }

    .nav-box.brand .nav-box__button {
        border-color: #b676c1;
        color: #b676c1;
    }

    .nav-box.product svg g {
        stroke: #f5dd72;
    }

    .nav-box.product .nav-box__button {
        border-color: #f5dd72;
        color: #f5dd72;
    }

    .nav-box:hover {
        box-shadow: 0px 2px 0 rgba(0,0,0,0.17);
    }

        .nav-box:hover.getting-started {
            color: #ffffff;
            background: #2C4C59;
        }

            .nav-box:hover.getting-started svg g {
                fill: #2a343e;
            }

            .nav-box:hover.getting-started .nav-box__button {
                border-color: #2a343e;
                color: #2a343e;
            }

        .nav-box:hover.brand {
            background: #7e4082;
        }

            .nav-box:hover.brand svg path {
                stroke: #fff;
            }

            .nav-box:hover.brand .nav-box__button {
                border-color: #fff;
                color: #fff;
            }

        .nav-box:hover.product {
            color: #2a343e;
            background: #f4df89;
        }

            .nav-box:hover.product svg path {
                fill: #2a343e;
            }

            .nav-box:hover.product .nav-box__button {
                border-color: #2a343e;
                color: #2a343e;
            }

@media (max-width: 1000px) {
    .nav-box:not(:first-child) {
        margin-top: 2rem;
    }
}

.nav-box__icon {
    height: 54px;
    width: 54px;
    flex-shrink: 0;
    margin-bottom: 1.2rem;
    opacity: 1;
}

.nav-box__title {
    font-size: 1.2rem;
    margin: 0;
    margin-bottom: 0.3rem;
    font-weight: 900;
}

.nav-box__description {
    margin: 0;
}

.nav-box__button {
    border: 1px solid;
    border-radius: 10px;
    padding: 0.1rem 1rem;
    margin: 0.5rem 0;
}

.learn-more {
    text-align: center;
    background: #ecf0f1;
}

    .learn-more .btn-outline {
        margin-top: 2rem;
    }

.learn-more-items {
    margin-top: 2rem;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}

    .learn-more-items .item-box {
        display: inline-block;
    }

@media (max-width: 1000px) {
    .learn-more-items {
        margin-top: 1rem;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

.item-box {
    background: #fff;
    border: 1px solid #dbe0e5;
    border-radius: 3px;
    width: 100%;
    text-align: left;
    margin-top: 1rem;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    transition: -webkit-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
    color: #1d2329;
    text-decoration: none;
}

    .item-box:hover {
        border: 1px solid #c1c8d1;
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
        box-shadow: 0px 2px 1px rgba(0,0,0,0.1);
    }

.item-box__image {
    height: 140px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.item-box__content {
    padding: 1rem 1rem 0.7rem 1rem;
}

.item-box__title {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.8em;
}

.item-box__text {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    margin-bottom: 0.5em;
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
}

.item-box__metadata-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.item-box__metadata {
    color: #606975;
    font-size: 0.7rem;
}

.more-details {
    background: #fff;
}

    .more-details .content > div:first-child {
        margin-right: 3rem;
    }

    .more-details h1 {
        margin-top: 0.5rem;
    }

    .more-details .content {
        display: -webkit-box;
        display: flex;
    }

    .more-details a {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: baseline;
        align-items: baseline;
        text-decoration: none;
        color: #733878;
    }

        .more-details a i {
            margin-left: 0.4rem;
            font-size: 0.8rem;
            -webkit-transition: -webkit-transform 100ms ease-in-out;
            transition: -webkit-transform 100ms ease-in-out;
            transition: transform 100ms ease-in-out;
            transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
        }

        .more-details a:hover i {
            -webkit-transform: translateX(3px);
            transform: translateX(3px);
        }

@media (max-width: 1000px) {
    .more-details .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

        .more-details .content > div:not(:first-child) {
            margin-top: 3rem;
        }
}

.footer {
    background: #2a343e;
    color: #fff;
    text-align: center;
}

    .footer .content {
        padding-bottom: 2rem;
    }

    .footer .subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
        width: 630px;
        margin-left: auto;
        margin-right: auto;
        color: #d1d3d3;
    }

@media (max-width: 1000px) {
    .footer .subtitle {
        width: auto;
        font-size: 1rem;
    }
}

.footer__buttons,
.footer__links {
    margin-top: 2.5rem;
}

    .footer__buttons .btn-outline {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }

@media (max-width: 1000px) {
    .footer__buttons {
        margin-top: 0;
    }

        .footer__buttons .btn-outline {
            width: 200px;
            margin-top: 1rem;
        }
}

.footer__links {
    text-align: left;
    width: 240px;
    margin: 3.5rem auto 0 auto;
}

    .footer__links a {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
        margin-top: 1rem;
    }

        .footer__links a i {
            margin-right: 1rem;
            opacity: 0.5;
            font-size: 1.5rem;
        }

@media (max-width: 1000px) {
    .footer__links {
        margin-top: 2.5rem;
    }
}

.footer__logo {
    margin-top: 5rem;
}

.footer__copyright {
    font-size: 0.8rem;
    color: #a4a9ad;
    margin-bottom: 0;
}

.footer__tos {
    margin-top: 0;
}

    .footer__tos a {
        color: #fff;
    }

.signinDiv label {
    padding: 0.5rem 0;
    display: block;
}

.signinDiv .signin-details {
    margin: 0;
}

    .signinDiv .signin-details tr table tr:nth-child(3) td {
        color: #EB0000!important;
    }

#Login1_LoginButton:hover {
    background-color: #2C4C59;
    border-color: #2C4C59!important;
    color: #ffffff !important;
    cursor: pointer !important;
}

#Login1_UserNameRequired, #Login1_PasswordRequired {
    display: none;
}

.validation-summary ul {
    margin: 0;
}

.validation-summary:empty {
    display: none;
}

#btnCloseModal {
    width: 60px;
    font-size: 14px;
    box-sizing: border-box;
    height: 30px;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #999999;
    background-color: #fff;
    cursor: pointer;
    margin-right: 2px;
}

#btnCloseModal:hover {
    color: #ffffff;
    background-color: #2C4C59;
    border-color: #2C4C59;
}

.forgot-pass-info {
    padding-top: 20px;
}

.forgot-pass-btns {
    display: flex;
    justify-content: center;
}

    .forgot-pass-btns .nav-box {
        margin: 5px;
        max-width: 190px;
    }

.forgot-pass-info .forgot-pass-text {
    padding: 10px;
    max-width: 438px;
    word-wrap: break-word;
    font-size: 14px;
    margin: 0 auto;
    border-radius: 10px;
    margin: 10px auto;
}

    .forgot-pass-info .forgot-pass-text p {
        margin-top: 0;
    }

    .lbl-users {
        text-align: left;
        font-family: Arial, Verdana, Helvetica, Tahoma, sans-serif;
        color: #EB0000;
    }

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.terms {
    text-align: center;
    padding: 30px 0 10px 0;
}

.validation-summary {
    color: #eb0000;
    padding: 0 24px;
    display: inline-block;
}

.signinbutton {
    color: #5B6770;
    border-color: #000000;
    font-family: Helvetica;
    font-size: 1.2em;
    height: 40px;
}

.signinbutton:hover {
    background-color: #2C4C59;
    border-color: #2C4C59 !important;
    color: #ffffff !important;
    cursor: pointer !important;
}

#lblSSO_Error {
    display:block;
}