.center{
    text-align: center;
}

body{
    background-color: whitesmoke;
    margin: 0;
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

.close-x{
    text-align: right;
    padding-right: 5px;
    padding-top: 5px;
}

.navbar{
    background-color: black;
    color: whitesmoke;
    font-size: 18px;
    position: fixed;
    height: 40px;
}

.a{
    text-decoration: none;
    color: whitesmoke;
    font-size: 18px;
}
.a:hover{
    font-size: 20px;
    color: red;
}

.toppadding{
    padding-top: 40px;
}

.payments-screen{
    width: 500px;
    margin: 20px auto;
    background-color: antiquewhite;
    border: 2px gold solid;
}

.lwrapper{
    display: inline-block;
    text-align: left;
    padding-left: 10px;
}

label{
    display: block;
    padding-left: 5px;
    padding-top: 3px;
    font-size: 14px;
}

.text input[type='text'], input[type='password'], input[type='number'], input[type='email'], input[type='file']{
    background: #fafafa;
    width:210px;
    border:1px solid #ccc;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    -ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    -webkit-box-sizing:content-box;
    font-size: 16px;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.text select{
    background: #fafafa;
    width:210px;
    border:1px solid #ccc;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    -ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    -webkit-box-sizing:content-box;
    font-size: 16px;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button-cool ,
a.button-cool{
    display: inline-block;
    padding: 0.3rem 1.2rem;
    margin: 0 0.1em 0.1em 0;
    border: 0.16em solid rgba(255,255,255,0);
    border-radius: 2em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', serif;
    font-weight: 300;
    font-size: 1.2rem;
    color:white;
    text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
    text-align: center;
    transition: all .2s;
    cursor: pointer;
}
.button-cool:hover{
    border-color: rgba(0,0,0,1);
}
@media all and (max-width: 30em){
    a.button-cool, .button-cool{
        display: block;
        margin: 0.2em auto;
    }
}

.back-mask{
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 100px;
    z-index: 100;
}

.back-mask-table{
    width: 500px;
    padding-bottom: 20px;
    background-color: black;
    color: white;
    top: 50%;
    left: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
}

.back-mask-table-opaque{
    width: 500px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    top: 50%;
    left: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
}