html, body {
    background: white;
    font-family: 'Open Sans', sans-serif;
    color: #424242;
    cursor: default;
}

body {
    margin: 0;
    margin-top: 156px;
    margin-bottom: 150px;
}

contenteditable{
    cursor: text;
}

.main{
    position: absolute;
    /* top: 90px; */
    right: 0;
    left: 0;
    /* bottom: 0; */
    min-height: 100%;
}

.container {
    margin-top: 90px;
    margin-bottom: 180px;
}

.buttoncontainer {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.buttoncontainer .mhbtn{
    margin: 30px;
}

input[type="text"],input[type="password"],input[type="submit"],.buttonLink{
    border: 1px solid #828282;
    padding-left: 5px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: black;
    width:100%;
}

input[type="submit"],.buttonLink{
    padding: 5px;
}

textarea{
    outline: none;
}

#loginContainer, #forgotPasswordContainer, #resetPasswordContainer, #changeEmailContainer, #userOptionsContainer{
    width: 340px;
    margin: auto;
    margin-top: 160px;
}

#ResetPasswordContainer p{
    text-align: center;
}

#forgotPasswordContainer, #resetPasswordContainer, #changeEmailContainer, #userOptionsContainer{
        padding: 30px;
        padding-top: 6px;
        border-top: 1px solid #eee;
        border-right: 1px solid #eee;
        border-radius: 6px;
        text-align: center;
        -webkit-box-shadow: -6px 6px 6px 0px rgba(0,0,0,0.37);
        -moz-box-shadow: -6px 6px 6px 0px rgba(0,0,0,0.37);
        box-shadow: -2px 2px 6px 0px rgba(0,0,0,0.1);
}

input[type="submit"],.buttonLink{
    text-transform: uppercase;
    width: 120px;
    border-radius: 10px;
    font-size: 10pt;
    background-color: #dddddd;
    cursor: pointer;
}

input[type="submit"]{
    float:right;
}

input[type="submit"]:hover,.buttonLink:hover{
    background-color: #e4e4e4;  
}

form>span.action{
    font-size: 11pt;
    line-height: 30px;
}

span.action{
    color:#528cff;
    cursor: pointer;
}

span.action:hover{
    color:inherit;
}

h1{
    font-size: 16pt;
    text-decoration: underline;
}

h2{
    font-size: 18px;
    font-weight: normal;
}

a, a:visited{
    text-decoration:none;
    color: #ca0000;
    cursor:pointer;
}

a:hover{
    color: #ff9595;
}

.homeNav {
    text-align: center;
    max-height: 60px;
    font-size: 11pt;
}

#tooltip{
    display: none;
    position: fixed;
    padding: 6px 20px;
    background-color: #7d7d7d;
    border: 1px solid #5f5f5f;
    color: #ffffff;
    font-size: 10pt;
    border-radius: 8px;
}

#tooltip>i{
    color: #7d7d7d;
    position: absolute;
    right: -18px;
    top: 3px;
    font-size: 30pt;
}

.unselectable{
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    
    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
}


/* Boolean UI Element */
.bool{
    margin-top:1px;
    width:120px;
    height:16px;
    border-radius: 10px;
    background: #dddddd;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size:9pt; 
    text-transform: uppercase;
    cursor: pointer;
    
    -webkit-box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
    box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
}

.bool>div{
    overflow:visible;
    width:200%;
}

.bool>div>span{
    width:25%;
    line-height:16px;
    text-align:center;
    display: inline-block; 
}

.bool>div>span.on:first-child{
    background: #39c639;
    color:white;
}

.bool>div>span:first-child{
    background: #98b398;
    color: #7b9d7b;
    border-right: 1px solid #ddd;
    border-radius: 10px 0 0 10px;
    
    -webkit-box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
    box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
}

.bool>div>span.on:last-child{
    background: #c63939;
    color:white;
}

.bool>div>span:last-child{
    background: #b89494;
    color: #a37575;
    border-radius: 0 10px 10px 0;
    
    -webkit-box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
    box-shadow: inset 0px -3px 6px 0px rgba(0,0,0,0.25);
}

.bool>div>span:first-child:hover:not(.on){
    background:#19e619;
}

.bool>div>span:last-child:hover:not(.on){
    background:red;
}


.mhbtn_container{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ccc;
    background-color: #eaeaea;
}

.mhbtn.disabled, .mhbtn.disabled:hover {
    border: 1px solid #ddd;
    color: #c9c9c9;
    background: #f0f0f0;
    cursor: default;
}

.mhbtn{
    border: 1px solid #ccc;
    color: #666;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 16px;
    background: white;
    cursor: pointer;    
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.mhbtn:hover {
    background-color: #fafafa;
    color: #333;
}

#cancelOrder{
    text-decoration:none;
    color: #ca0000;
    cursor:pointer;
}

#modal{
    position: fixed;
    top: 0;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    display:none;
}

#modal > div {
    
    margin: auto;
    margin-top: 60px;
    max-width:1200px;
    width: 60%;
    border: 1px solid #ccc;
    background: white;
    border-radius: 22px;
    overflow: hidden;
    display: table;
}

.docContainer, .imgContainer {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
}

.uploadContainer{
    width: 250px;
    display: table-cell;
    border-left: 1px solid #ccc; 
    background-color: #fafafa;
    text-align: center;
    padding-bottom: 20px;
}

.uploadContainer > .image-upload {
    margin: 20px auto;
    height: 200px;
    width: 200px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eaeaea;  
    line-height: 200px;
    font-size:20px;
    color: #ccc;
    text-align: center;
}

.uploadcontainer > button {
    outline: none;
}

.docContainer > .doc{
    padding:12px;
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    width: 42%;
    transition: background 0.5s;
    flex-shrink: 0;
}

.docContainer > .doc:hover {
    background: #ddeeff;
}

.docContainer > .doc > img{
    float: left;
    margin-right: 12px;
}

.imgContainer > .img {
    flex-shrink: 0;
    border: 1px solid #ccc;
    height: 80px;
    transition: width 0.5s, height 0.5s;
    margin: 6px 6px;
    cursor: pointer;
}

.imgContainer > .img > img {
    margin: auto;
}

.imgContainer > .img:hover{
    opacity:0.7;
}


#pswd_info{
    margin: auto;
    margin-top:50px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 1px solid #ccc;
    text-align: left;
    width: 400px;
}

#pswd_info h4{
    margin-bottom:12px;
}

#pswd_info li{
    line-height:24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    display: block;
}

#pswd_info ul{
    list-style-type: none;
    text-align: left;
    margin: 0;
    padding-left: 24px;
}

#pswd_info li.invalid{
    color: red;
}

#pswd_info li.valid{
    color: #00d200;
}

#pswd_info strong{
    font-family: 'Montserrat', sans-serif;
}

#pswd_info ul li:before {    
    font-family: 'Font Awesome 5 Free';
    margin: 0 5px 0 -15px;
    font-weight: 900;
}

#pswd_info ul li.invalid:before {    
    content: '\f00d';
}

#pswd_info ul li.valid:before {    
    content: '\f00c';
}