main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h3 {
    margin: 0;
    font-size: 18px;
    text-align: center;
}

a {
    /* don't show dotted lines around the link after it's been clicked and
       the browser returned back */
    outline: none;
    color: black;
}

a.hover {
    text-decoration: none;
}

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


html,
body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, Ubuntu, Verdana, Geneva, sans-serif;
    font-size: 13.3333px;
    background: #fffcfc;
    background-color: #f6f6ef;
}
    
* {
    box-sizing: border-box;
}

.label {
    font-size: 18px;
    vertical-align: bottom;
}

.input-title {
    width: 340px;
    padding: 6px;
}

.input-blank {
    border: transparent;
    font-size: 16px;
    font-family: -apple-system, Ubuntu, Verdana, Geneva, sans-serif;
    height: 50px;
    height: 30px;
    width: 550px;
}

.input-amount {
    border: transparent;
    font-size: 16px;
    font-family: -apple-system, Ubuntu, Verdana, Geneva, sans-serif;
    height: 50px;
    height: 30px;    
    width: 55px;
}

.input-amount-border {
    font-size: 16px;
    font-family: -apple-system, Ubuntu, Verdana, Geneva, sans-serif;    
    height: 50px;
    height: 30px;
    width: 60px;
    text-align: right;
}

.input-address {
    border: transparent;
    font-size: 16px;
    font-family: -apple-system, Ubuntu, Verdana, Geneva, sans-serif;
    height: 50px;
    height: 30px;    
    width: 360px;
}

.input-address-crypto {
    border: transparent;
    font-size: 16px;
    font-family: -apple-system, Ubuntu, Verdana, Geneva, sans-serif;
    height: 50px;
    height: 30px;    
    width: 600px;
}

.button {
    font-size: 16px;
    width: 230px;
    line-height: 1.75;
    border-radius: 4px;
    background-color: #f4803a;
    color: #ffffff;
    background-color: #ffffff;
    color: #295AB4;
}

.button:hover {
    background-color: #295AB4;
    color: #ffffff;
}

input {
    /* vertical-align: bottom; */
}

.plaintext {
    font-size: 16px;
    line-height: 23.3px;
}

.colortext {
    color: #295AB4;
}

.flashtext {
    text-decoration: none;
    color: black;
    border-bottom: 3px solid black;
}

.sitetext {
    /* Truth color */
    /* https://www.crispedge.com/faq/what-is-the-color-of-truth/ */
    color: #344989;
}

.orangetext {
    color: #F26822;
}

.redtext {
    color: darkred;
}

.greentext {
    color: green;
}

.greydarktext {
    color: #969696;
}

.greytext {
    color: #d8d8d8;
}

.nottooblacktext {
    color: #252b3e;
    color: #383838;
    color: #585858;
    color: #484848;    
}

.error {
    background-color: red;
    color: white;
}

/* Hiding the initial checkbox */
input[type=checkbox] {
    width: 25px;
    height: 25px;
    -moz-appearance: none;
    width:25px;
    height:25px;
    background:white;
    border-radius:9px;
    border:1px solid #d8d8d8;
}

input[type=checkbox]:focus {
    outline: 0px none transparent;
}

input[type=checkbox]:checked {
    border-radius: 4px;
    background: #295AB4;
    border: 1px solid #295AB4;
    background: #f4803a;
    border: 1px solid #f4803a;
    background: #383838;
    border: 1px solid #383838;
    background: #585858;
    border: 1px solid #585858;
    /* background: #d8d8d8; */
    /* border: 1px solid #d8d8d8; */
}

.align-left {
    text-align: left;
    display: inline-block;
}

.align-center {
    text-align: center;
    margin: auto;
    display: inline-block;
}

.align-right {
    text-align: right;
    display: inline-block;
}

.table {
    display: table;
    margin: auto;
}

.row  {
    display: table-row;
}

.cell {
    display: table-cell;
    /* border: solid; */
    border-width: thin;
    padding-left: 0px;
    padding-right: 0px;
}
