:root {
    --accent: #82bdf8;
    --negative: #db4437;
    --disabled: #ccc;
    --alt: #e3e3e3;
}
@font-face {
    font-family: "Hack";
    src: url(/fonts/Hack-Regular-webfont.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}
a:link,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    color: var(--accent);
}
a:hover {
    opacity: 0.7;
}
.center {
    text-align: center;
}
::selection {
    color: #fff;
    background: var(--accent);
}
::-moz-selection {
    color: #fff;
    background: var(--accent);
}
html,
body {
    margin: 0;
    padding: 0;
    font-family: "Hack";
    background: #fff;
    scroll-behavior: smooth;
}
#wrapper {
    width: 100%;
    min-width: 320px;
    height: 100%;
    background: #f5f5f5;
    word-break: break-word;
}
#scrollTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--accent) url(/images/layout/arrow.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    display: none;
}
#scrollTop:hover {
    opacity: 0.7;
    cursor: pointer;
}
#banner {
    min-height: 350px;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-flow: row wrap;
    padding: 50px 0;
    box-sizing: border-box;
    margin-top: -20px;
}
#banner div {
    flex: 1 0 100%;
}
#banner #icon {
    height: 140px;
    max-width: 140px;
}
#banner #icon a #image {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    background: url(/images/appicon.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 10px -10px #696969;
    transition: box-shadow 0.25s ease-in-out;
    -webkit-transition: box-shadow 0.25s ease-in-out;
}
#banner #icon a #image:hover {
    cursor: pointer;
    box-shadow: 0 10px 10px -5px #696969;
}
#banner .text {
    text-align: center;
    padding: 20px;
}
.text {
    width: 100%;
    color: #000;
    box-sizing: border-box;
}
.downloadText {
    width: 100%;
    color: #000;
    text-align: center;
    box-sizing: border-box;
}
.title {
    font-size: 25px;
}
.subtitle {
    font-size: 20px;
    color: #666;
}
.links {
    padding: 20px 20px 0;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sections {
    text-align: center;
}
.links .link a,
.sections .link a,
.caps .link a {
    padding: 0;
}
.links .link:not(:last-child):after,
.sections .link:not(:last-child):after,
.caps .link:not(:last-child):after {
    content: "\a0\2022\a0";
}
#content {
    position: relative;
    box-sizing: border-box;
    padding: 0 20px;
    max-width: 1000px;
    margin: -54px auto 10px;
}
#mockups {
    height: 500px;
    width: 100%;
    margin-top: 5px;
}
.mockup {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#ipad {
    z-index: 1;
    background: url(/images/ss/ipad2.png);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
#iphone {
    z-index: 2;
    background: url(/images/ss/iphonex.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
#download {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-flow: row wrap;
    padding: 40px 0;
    box-sizing: border-box;
}
#download div:not(.downloadText) {
    margin: 10px;
}
#stable {
    height: 50px;
    width: 175px;
    background: url(/images/layout/stable.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 10px -10px #000;
}
#beta {
    height: 50px;
    width: 175px;
    background: url(/images/layout/beta.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 10px -10px #000;
}
.pageTitle {
    margin-top: 5px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
}
.pageContent {
    padding: 10px;
}
.swag {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.question,
.answer,
div.command,
.explanation {
    padding: 5px;
}
.question,
div.command {
    background: #fff;
    border-left: 5px solid var(--accent);
}
.question .icon,
.answer .icon {
    vertical-align: top;
    font-size: 30px;
    padding: 0 20px;
}
.question .text {
    font-weight: 700;
}
.answer .text,
.explanation .text {
    color: #333;
}
.warning {
    color: var(--negative);
}
.explanation span.command,
.explanation span.alias {
    background: #efefef;
}
.answer,
.explanation {
    background: #fbfbfb;
    border-left: 5px solid var(--alt);
}
.answer:not(:last-child),
.explanation:not(:last-child) {
    margin-bottom: 20px;
}
.section {
    font-size: 20px;
    padding-bottom: 10px;
    text-align: center;
}
.section:not(:first-child) {
    padding-top: 20px;
}
.merch {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}
.merch .product {
    width: 200px;
    height: 200px;
    background: #fbfbfb;
    margin: 10px;
    padding: 10px;
}
.merch .product.large {
    width: 320px !important;
    height: 320px !important;
}
.merch .product .title {
    text-align: center;
    height: 20px;
}
.merch .product .image {
    width: 100%;
    height: calc(100% - 30px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.merch .product .image:hover {
    cursor: pointer;
}
.merch .product .buy {
    margin-top: 10px;
    text-align: center;
    height: 20px;
}
#footer {
    text-align: center;
    background: #fff;
    height: 30px;
    line-height: 30px;
    padding-bottom: 10px;
}
form {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}
form input, form table, form div {
    width: 100%;
}
form div {
    text-align: center;
    margin: 5px 0px 5px 0px;
}
input {
    height: 31px;
    border-radius: 5px;
    border: 2px solid transparent;
    box-sizing: border-box;
    font-size: 15px;
}
input:focus {
    outline: none;
    border: 2px solid var(--accent);
}
.checkoutButton {
    height: 31px;
    background: var(--accent);
    color: #fff;
    -webkit-appearance: none;
    margin: 5px 0px 5px 0px;
    line-height: 31px;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
}
#btcButton {
    height: 50px;
    width: 100%; 
    margin: 5px auto 0 auto;
    border-radius: 5px;
    background-color: #000;
    background-image: url(/images/layout/btcpay.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.checkoutButton:hover, #btcButton:hover {
    cursor: pointer;
    opacity: 0.7;
}
.checkoutButton.disabled, #btcButton.disabled {
    background-color: var(--disabled);
}
.checkoutButton.disabled:hover, #btcButton.disabled:hover {
    cursor: not-allowed;
}
form table {
    font-weight: 700;
}
form table td:last-child {
    text-align: right;
}
.small {
    font-size: 12px;
}
.priceHeader {
    margin-bottom: 20px;
}
.group {
    width: 100%;
    text-align: left;
}
table#admin tr:not(:first-child):nth-child(odd) {
    background-color: var(--alt);
}
table#admin input {
    width: 100%;
}