body {
    background: #292929;
    color: #f0f0f0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0 auto;
    padding: 12px 12px 24px 12px;
    max-width: 800px;
}
body.light {
    background: #f0f0f0;
    color: #333;
}
.top {

}
.breadcrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}
.light .breadcrumb {
    color: #b8b8b8;
}
.breadcrumb a {
    color: #666;
    text-decoration: underline;
}
.light .breadcrumb a {
    color: #b8b8b8;
}
.breadcrumb a:hover {
    color: #00b4e0;
}
.header {
    font-size: 24px;
    font-weight: bold;
    margin: 6px 0 10px 0;
    display: inline-block;
    padding: 0 2px;
}
.header a {
    color: #f0f0f0;
    text-decoration: none;
}
.light .header a {
    color: #333;
}
.header a:hover {
    text-decoration: underline;
}
.headerIcon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-bottom: -3px;
}
.headerSecondary {
    font-weight: 300;
    color: #474747;
}
.light .headerSecondary {
    color: #d6d6d6;
}
.copyright {
    font-size: 12px;
    line-height: 20px;
    color: #666;
}
.light .copyright {
    color: #b8b8b8;
}
.copyright a {
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}
.light .copyright a {
    color: #b8b8b8;
}

/*Colors*/
.color-green {
    color: #0cac64 !important;
}
.color-red {
    color: #ee4444 !important;
}

/*Align*/
.align-left {
    text-align: left !important;
}

/*Notification*/
.notification {
    padding: 8px 12px;
    background: #3d3d3d;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #777;
}
.light .notification {
    background: #e0e0e0;
    color: #999;
}
.notification a {
    text-decoration: underline;
    color: #777;
}
.light .notification a {
    color: #999;
}
.notification a:hover {
    color: #00b4e0;
}

/*Table*/
.table {
    margin: 12px 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-bottom: 1px solid #333;
}
.light .table {
    border-bottom: 1px solid #e0e0e0;
}
.tableHead {
    padding: 6px;
    white-space: nowrap;
    color: #666;
    border-top: 1px solid #333;
    line-height: 32px;
    text-align: right;
}
.tableHead th {
    font-weight: 400;
}
.light .tableHead {
    color: #b8b8b8;
    border-top: 1px solid #e0e0e0;
}
.tableCell {
    border-top: 1px solid #333;
    padding: 9px 0;
    line-height: 18px;
    text-align: right;
}
.light .tableCell {
    border-top: 1px solid #e0e0e0;
}
.tableCell b {
    font-weight: 500;
}
.tableCell-row2 {
    color: #666;
    font-size: 12px;
}
.light .tableCell-row2 {
    color: #b8b8b8;
}
.tableCell-fullLink {
    display: block;
    text-decoration: none;
    color: #f0f0f0;
}
.light .tableCell-fullLink {
    color: #333;
}

/*Forms*/
.formSubmit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    padding: 14px 28px;
    background: #0cac64;
    background: linear-gradient(#0cac64, #0b9959);
    color: #fff;
    border-radius: 8px;
    border: none;
    float: right;
    font-weight: bold;
    cursor: pointer;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.formSubmit:hover {
    background: #0fd27a;
}
.formSubmit--red {
    float: none;
    background: #ee4444;
}
.formSubmit--red:hover {
    background: #f16a6a;
}
.formItems {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 6px;
    padding: 12px 0;
}
.formItem {
    padding-bottom: 4px;
}
.formItem--full {
    grid-column: 1 / 3;
}
.formInput {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    padding: 8px 10px;
    height: 40px;
    border: 1px solid #1f1f1f;
    background: #3d3d3d;
    color: #f0f0f0;
    width: calc(100% - 4px);
    box-sizing: border-box;
    text-align: left;
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.light .formInput {
    color: #222;
    border: 1px solid #e0e0e0;
    background: #fff;
}
.formItem-title {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: light;
    margin-bottom: 4px;
    color: #666;
    letter-spacing: .5px
}
.light .formItem-title {
    color: #b8b8b8;
}
.formButtons {

}
.formButtons input[type="radio"] {
    display: none;
}
.formButton {
    display: inline-block;
    background: #3d3d3d;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    font-size: 16px;
}
.light .formButton {
    background: #e0e0e0;
    color: #333;
}
.formButton--small {
    font-weight: normal;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
}
.formButton:hover,
.formButton--selected,
.formButtons input:checked + .formButton {
    background: #00b4e0;
    background: linear-gradient(#00b4e0, #00a3cc);
    color: #fff;
}
.light .formButton:hover,
.light .formButton--selected,
.light .formButtons input:checked + .formButton {
    background: #00b4e0;
    background: linear-gradient(#00b4e0, #00a3cc);
    color: #fff;
}
.formSepTitle {
    border-bottom: 1px solid #3d3d3d;
    padding: 6px 0;
    margin-bottom: 6px;
    font-weight: bold;
}
.light .formSepTitle {
    border-bottom: 1px solid #e0e0e0;
}

/*Button*/
.button {
    text-decoration: none;
    color: #f0f0f0;
    background: #3d3d3d;
    display: block;
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    margin: 12px 0;
    padding: 12px;
    font-size: 14px;
}
.light .button {
    color: #333;
    background: #d6d6d6;
}
.button:hover {
    background: #00b4e0;
    background: linear-gradient(#00b4e0, #00a3cc);
    color: #fff;
}

/*Summary*/
.summary {
    display: grid;
    columns: 3;
    gap: 12px;
    padding: 4px 0;
}
.summaryCell {

}
.summaryCell--full {
    grid-column: 1 / 4;
}
.summaryTitle {
    text-transform: uppercase;
    font-size: 11px;
    color: #666;
    margin-bottom: 3px;
    letter-spacing: .5px;
}
.light .summaryTitle {
    color: #b8b8b8;
}
.summaryValue {
    font-size: 16px;
    font-weight: 500;
}
.summaryValue--large {
    font-size: 24px;
    font-weight: 600;
}

/*Asset List*/
.assetsTable .tableCell {
    width: 25%;
}
.assetsTable-asset {
    text-align: left;
    min-width: 100px;
    padding-left: 34px !important;
    background-image: linear-gradient(to right, #292929 90%, rgba(41, 41, 41, 0));
    background-clip: padding-box;
    position: relative;
}
.light .assetsTable-asset {
    background-image: linear-gradient(to right, #f0f0f0 90%, rgba(240, 240, 240, 0));
}
.assetsTable-assetIcon {
    position: absolute;
    top: 13px;
    left: 0;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
 }
.assetsTable-assetLink {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*Welcome*/
.welcome {
    font-size: 16px;
    margin: 18px auto;
    line-height: 22px;
    font-weight: normal;
    letter-spacing: 0.3px;
}
.welcome-number {
    color: #0cac64;
    font-weight: 600;
}

/*Home*/
.home {
    margin: 15% auto;
    text-align: center;
}
.home-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    background: #f0f0f0;
}
.light .home-title {
    background: #333;
    color: #f0f0f0;
    padding: 0 2px;
}
.home-title--highlighted {
    font-size: 38px;
    font-weight: 600;
    /*background: linear-gradient(135deg, #00c4f5, #0093b8);*/
    background: linear-gradient(135deg, #0dbf6f, #0b9959);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.light .home-title--highlighted {
    /*background: linear-gradient(135deg, #00c4f5, #0093b8);*/
    background: linear-gradient(135deg, #0dbf6f, #0b9959);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.home-details {
    margin: 80px auto;
    font-size: 20px;
    font-weight: 500;
}
.home-form {
    margin: 0 auto;
    text-align: center;
}
.home-formPwd {
    display: block;
    width: 280px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    margin: 8px auto;
    padding: 14px 16px;
    border: 1px solid #1f1f1f;
    background: #3d3d3d;
    color: #f0f0f0;
    text-align: left;
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.light .home-formPwd {
    color: #222;
    border: 1px solid #e0e0e0;
    background: #fff;
}
.home-formSubmit {
    display: block;
    width: 280px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    margin: 8px auto;
    padding: 14px 28px;
    background: #0cac64;
    background: linear-gradient(#0cac64, #0b9959);
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.home-demo {
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    color: #666;
}
.light .home-demo {
    color: #b8b8b8;
}
.home-demo:hover,
.light .home-demo:hover {
    text-decoration: underline;
}