@font-face {
    font-family: "futura-lt";
    src: url("futura-300.woff2") format("woff2");
    font-weight: 300;
}
@font-face {
    font-family: "futura-lt";
    src: url("futura-400.woff2") format("woff2");
    font-weight: 400;
}
@font-face {
    font-family: "futura-lt";
    src: url("futura-500.woff2") format("woff2");
    font-weight: 500;
}
@font-face {
    font-family: "futura-lt";
    src: url("futura-600.woff2") format("woff2");
    font-weight: 600;
}
@font-face {
    font-family: "futura-lt";
    src: url("futura-700.woff2") format("woff2");
    font-weight: 700;
}
@font-face {
    font-family: "futura-lt";
    src: url("futura-800.woff2") format("woff2");
    font-weight: 800;
}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    background: black;
}

body {
    font-family: futura-lt, sans-serif;
    font-weight: 100;
    color: white;
    font-size: 20px;
    text-align: center;
}

/* extra bold */
b {
    font-weight: 600;
}

bb {
    font-weight: 900;
}

hr {
    border: none;
    height: 1px;
    background-color: white;
}

code {
    font-size: 0.8em;
    font-family: monospace;
    border-radius: 4px;
}

pre > code {
    font-size: 0.7em;
    line-height: 1.7em;
    background: transparent;
    background-image: radial-gradient(
        transparent, transparent, rgba(0,0,0,0.5));
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px;
    display: block;
    overflow: auto;
    text-wrap-mode: wrap;
}


code a {
    text-decoration: underline;
}

.page-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

a {
    text-underline-position: below;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 0.04em;
    color: white;
}

a.button, button {
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: white;
    background: transparent;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 2.2em;
    padding: 2px 20px 0 20px;
    display: inline-block;
    background-image: radial-gradient(
        transparent, transparent, rgba(0,0,0,0.2));
}

 
a.button:hover, button:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none !important;
}

a.nounderline {
    text-decoration: none;
}

a.nounderline:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
}

input[type=text], textarea {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    font-family: futura-lt, sans-serif;
    font-size: 20px;
    padding: 10px 15px;
    color: white;
    outline:none;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, .33);
  border-radius: 4px;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  top: -2px;
  left: 2px;
}

.custom-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 1);
  border-radius: 2px;
}


.errmsg {
    color: rgb(255, 117, 170);
}

.clear {
    clear: both;
}

.left {
    text-align: left;
}
.justify {
    text-align: justify;
}

.body-table {
    display: table;
    width: 100%;
    height: 100%;
}
.body-table > div {
    display: table-row;
}
.body-table > div > div {
    display: table-cell;
}

.body-table > div > div > div {
    width: 100%;
    max-width: 940px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.main-row {
    height: 100%;
}

.header-content {
    height: 100%;
}
.main-content {
    height: 100%;
    padding: 30px 0 70px 0;
}
.footer-content {
    height: 100%;
}

.body-table {
    background-image: 
        linear-gradient(10deg, black, transparent 15%),
        linear-gradient(0deg, black, transparent 10%),
        linear-gradient(-10deg, black, transparent 15%),
        linear-gradient(160deg, black,transparent 15%),
        linear-gradient(180deg, black, transparent 15%),
        linear-gradient(210deg,
            black, 
            #03112c 5%,
            #401d17 14%,
            #3f140c 19%,
            black 40%);
    background-size:
        100% 1000px,
        100% 1000px,
        100% 1000px,
        100% 1000px,
        100% 1000px,
        100% 10000px;
    background-position:
        bottom left,
        bottom left,
        bottom left,
        top left,
        top left,
        top left;
    background-repeat: no-repeat;
}

@media screen and (max-width: 777px) {
    .body-table {
        background-image: 
            linear-gradient(10deg, black, transparent 15%),
            linear-gradient(0deg, black, transparent 10%),
            linear-gradient(-10deg, black, transparent 15%),
            linear-gradient(160deg, black,transparent 15%),
            linear-gradient(180deg, black, transparent 15%),
            linear-gradient(273deg,
                #03112c,
                transparent),
            linear-gradient(210deg,
                black, 
                #03112c 3%,
                #401d17 7%,
                #3f140c 10%,
                black 20%);
        background-size:
            100% 1000px,
            100% 1000px,
            100% 1000px,
            100% 1000px,
            100% 1000px,
            100% 10000px,
            100% 10000px;
        background-position:
            bottom left,
            bottom left,
            bottom left,
            top left,
            top left,
            top left,
            top left;
        background-repeat: no-repeat;
    }
}

/**********
top nav
***********/
.nav {
    height: 80px;
}
.nav .links {
    display: table;
    height: 100%;
    float: right;
}
.nav .links > div {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    padding: 0 0 0 20px;
}
.nav .links > div:first-child {
    padding: 0;
}
.nav .logo {
    float: left;
    display: table;
    height: 100%;
}
.nav .logo > div {
    display: table-cell;
    vertical-align: middle;
}
.nav .logo img {
    height: 26px;
    display: block;
}
.nav a {
    text-decoration: none;
}
.nav a:hover {
    text-decoration: underline;
}
.nav .github {
    font-size: 0;
    width: 34px;
    height: 34px;
    background: url("/assets/github-mark-white.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

@media screen and (max-width: 777px) {
    .nav {
        margin-top: 30px;
        height: initial;
        text-align: center;
        font-size: 0.9em;
    }
    .nav .links {
        float: none;
        margin: 20px auto;
    }
    .nav .links > div {
        padding: 0 0 0 16px;
    }
    .nav .logo {
        float: none;
        margin: 20px auto;
    }
    .nav .button {
        line-height: inherit;
        font-weight: inherit;
        padding: 0;
        margin: 0;
        border: 0;
    }
    .nav .button:hover {
        text-decoration: underline !important;
        background: none;
    }
    .nav .github {
        font-size: inherit;
        width: initial;
        height: initial;
        background: none;
    }
}

/**********
top bottom
***********/

.bottom-nav {
    text-align: center;
    margin: 0px auto 30px auto;
}
.bottom-nav a {
    text-decoration: none;
}
.bottom-nav a:hover {
    text-decoration: underline;
    color: white;
}
.bottom-nav {
    line-height: 2em;
}

.bottom-nav .links a {
    margin: 0 5px;
}


@media screen and (max-width: 777px) {
    .bottom-nav {
        font-size: 0.8em;
    }
    .bottom-nav .links a {
        margin: 0 3px;
    }
}

.tightpara {
    margin-left: auto; 
    margin-right: auto; 
    width: 100%; 
    max-width: 460px;
}

/**********
index page
***********/

.pure-speed {
    text-align: center;
    white-space: nowrap;
    white-space-collapse: collapse;
    font-size: 0;
    font-weight: 100;
    margin: 70px auto 40px auto;
}
.pure-speed > div:nth-child(1) > span {
    font-size: 92px;
    line-height: 70px;
}
.pure-speed > div:nth-child(2) > span {
    font-size: 52.5px;
    line-height: 52.5px;
}
.pure-speed > div:nth-child(1) > span:nth-child(even) {
    font-weight: 900;
}
.pure-speed > div:nth-child(1) > span:nth-child(odd) {
    font-weight: 100;
}
.pure-speed > div:nth-child(2) > span:nth-child(even) {
    font-weight: 100;
}
.pure-speed > div:nth-child(2) > span:nth-child(odd) {
    font-weight: 900;
}

.about {
    font-size: 23.7px;
    line-height: 28px;
    font-weight: 100;
    margin: 0 auto;
    text-transform: uppercase;
    text-align: center;
}

.about > span {
    display: block;
    white-space: nowrap;
    font-weight: 100;
}
.about.faster > span:nth-child(1)  { font-size: 1.300em; }
.about.faster > span:nth-child(2)  { font-size: 1.150em; }
.about.faster > span:nth-child(3)  { font-size: 1.000em; }

.about.desc   > span:nth-child(1)  { font-size: 1.019em; }
.about.desc   > span:nth-child(2)  { font-size: 1.016em; }
.about.desc   > span:nth-child(3)  { font-size: 0.976em; }
.about.desc   > span:nth-child(4)  { font-size: 1.040em; } 
.about.desc   > span:nth-child(5)  { font-size: 1.015em; }
.about.desc   > span:nth-child(6)  { font-size: 1.050em; }
.about.desc   > span:nth-child(7)  { font-size: 1.051em; }


.about.faster {
    margin-bottom: 25px;
}
.about.desc {
    margin-top: 25px;
}

.buttons {
    margin: 40px auto 0 auto;
    text-align: center;
}

.bench {
    margin: 40px auto 0 auto;
    width: 460px;
}

.bbar {
    text-align: left;
    border: 1px solid white;
    padding: 3px 8px;
    font-size: 0.7em;
    margin: 8px 0;
}

.bbar > div:nth-child(1) {
    font-weight: 700;
    float:left;
}

.bbar > div:nth-child(2) {
    font-weight: 300;
    float: right;
}

.bbar > div:nth-child(3) {
    clear: both;
}

.bench > .bbar.pogo {
    background-color: #d64f96;
}
.bench .desc {
    text-align: right;
    font-size: 0.8em;
    opacity: 0.8;
}

@media screen and (max-width: 777px) {
    .pure-speed {
        margin: 10px auto 40px auto;
    }
    .pure-speed > div:nth-child(1) > span {
        font-size: 66px;
        line-height: 50px;
    }
    .pure-speed > div:nth-child(2) > span {
        font-size: 37.7px;
        line-height: 37.7px;
    }
    .about {
        margin: 0px auto 0 auto;
        font-size: 17.2px;
        line-height: 22px;
    }
    .buttons {
        margin: 30px auto 20px auto;
        text-align: center;
    }
    .bench {
        width: 330px;
    }
}

.pricing-table {
    margin: 30px auto;
}

.pricing-cell {
    padding: 20px;
    text-align: left;
    width: 286px;
    display: inline-block;
    margin: 7px 5px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background-image: radial-gradient(transparent, rgba(0,0,0,0.4));
}
.pricing-cell > div:nth-child(1) {
    margin-left: 0;
    font-size: 1.5em;
}
.pricing-cell > div:nth-child(2) {
    font-weight: 900;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.pricing-cell > div:nth-child(2) > span {
    font-size: 0.8em;
    font-weight: 100;
}

.pricing-cell > div:last-child {
    font-size: 1.2em;
    text-align: center;
    margin-top: 20px;
}

.pricing-cell > div:last-child a {
    text-transform: uppercase;
    font-size: 0.8em;
    line-height: 2.5em;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.5);
}

.pricing-cell hr {
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 15px -1px;
}

.pricing-cell .pricing-details {
    min-height: 100px;
}

@media screen and (max-width: 777px) {
    .pricing-cell {
        margin: 10px 0;
        width: 330px;
    }
}

input[type='text'].reqfield, textarea.reqfield, 
    input[type='text'].reqfieldemail
{
    border-color: rgb(255, 117, 170);
}

.docs-table {
    margin: 0 auto;
    width: 100%;
    display: flex;
}

.docs-left {
    flex: none;
    width: 200px;
    max-width: 200px;
    text-align: left;
    margin: 38px 20px 0 0;
}
.docs-table a {
    text-decoration: none;
}
.docs-table a:hover {
    text-decoration: underline;
}
.docs-table li {
    margin-top: 2px;
    margin-bottom: 2px;
}
.docs-right {
    flex: auto;
    text-align: left;
    padding: 0 0 0 20px;
}

ul.cmds  {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.docs-title {
    font-size: 40px;
    font-weight: 900;
    margin: 27px 0 27px 0;

}

.playground-pre { 
    background: transparent;
    background-image: radial-gradient(
        transparent, transparent, rgba(0,0,0,0.5));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    max-height: 400px;
    max-width: 100%;
    overflow: auto;
}

.playground-pre > code {
    border-radius: 0;
    border: 0;
    background: transparent;
    margin: 0;
}

.playground-input {
    display: block;
    position: relative !important;
    z-index: 1 !important;
    width: 100%;
    font-family: monospace !important;
    font-size: 0.7em !important;
    line-height: 24px !important;
    height: 36px;
    border-radius: 0 !important;
    border: 0 !important;
    background: transparent !important;
    margin-top: -45px !important;
    margin-bottom: 9px !important;
    padding: 0 !important;
    padding-left: 32px !important;
}

.playground-cmd, .playground-resp {
    word-wrap: break-word;
    text-wrap-mode: wrap;
}

.playground-comment {
    color: rgba(0, 255, 140, 0.4);
    font-style: italic;
}

.playground-resp {
    color: rgba(255,255,255,0.5);
}

.docs-content h1 {
    font-weight: 900;
}

.docs-content a {
    text-decoration: underline
}

.docs-content table {
    font-size: 0.9em;
    background-image: radial-gradient(
        transparent, transparent, rgba(0,0,0,0.3));
}

.docs-content table {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    border-collapse: separate;
    border-spacing: 0;
}

.docs-content table tbody tr td, .docs-content table th {
    padding: 10px 15px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.docs-content table tbody tr td:last-child,
.docs-content table thead tr th:last-child {
    border-right: 0;
}

.docs-content table tbody tr:last-child td {
    border-bottom: 0
}

.related-commands a {
    text-decoration: none;
    margin-right: 10px;
}

.docs-nav {
    line-height: 1.2em;
}

.docs-nav > div > div {
    margin-left: 20px;
}

.docs-nav > div > div.docs-nav-title {
    font-weight: 900;
    margin-left: 0;
    margin-top: 20px !important;
}

.docs-nav > div:first-child > div.docs-nav-title {
    margin-top: 0 !important;
}

.command-buttons {
    margin-top: 30px;
    margin-bottom: -73px;
}
.command-buttons > div {
    text-align: right
}

.docs-breadcrumbs {
    width: 100%;
    text-align: left;
    font-size: 0;
}
.docs-breadcrumbs > div {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 24px;
}
.bc-hamburger {
    position: relative;
    height: 24px;
    margin-right: 6px;
    cursor: pointer;
}
.bc-seperator {
    padding: 0 8px;
}
.bc-category {
    text-transform: uppercase;
    font-weight: 900;
}
.docs-breadcrumbs {
    display: none;
}
@media screen and (max-width: 777px) {
.docs-table {
    display: initial;
}
.docs-left {
    display: block;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    height: 100% !important;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    position: absolute;
}
.docs-left > div {
    flex: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    padding: 144px 0 0 0;
}

.docs-nav {
    width: fit-content;
    white-space: nowrap;
    margin: 0 0 0 50px;
    font-size: 1.1em;
}

.docs-right {
    flex: none;
    margin: 0;
    padding: 0;
}
.docs-left {
    display: none;
}
.docs-breadcrumbs {
    display: block;
}

.command-buttons {
    margin-top: 36px;
}

.command-buttons .button {
    font-size: 0.65em;
    padding: 2px 7px 1px 7px;
    margin-bottom: 4px;
}

}

/* 
.body-table > div > div > div {
    border: 1px solid green;
}
.header-content {
    border: 1px solid violet;
}
.main-content {
    border: 1px solid turquoise;
}
.footer-content {
    border: 1px solid gold;
}
*/
