div
{
    -webkit-overflow-scrolling: touch;
}

table
{
    border-spacing: 0px;
}

a
{
    color: cornflowerblue;
}

.normal-content
{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: black;
    line-height: 26px;
}

/* Desktop */
@media screen and (min-width: 800px) 
{
    input[type=text].user-content, input[type=password].user-content
    {
        color: #217DC4;
        text-align: center;
        font-family: "Lato";
        font-size: 11pt;
        font-weight: bold;
        padding: 5px;
        border: 0px;
    }

    input[type=text]:focus.user-content, input[type=password]:focus.user-content
    {
        color: #217DC4;
        text-align: center;
        font-family: "Lato";
        font-size: 11pt;
        font-weight: bold;
        padding: 5px;
        border: 0px;
    }
}

/* Mobile */
@media screen and (max-width: 800px) 
{
    input[type=text].user-content, input[type=password].user-content
    {
        color: #217DC4;
        text-align: center;
        font-family: "Lato";
        font-size: 11pt;
        font-weight: bold;
        padding: 5px;
        border-width: 1px;
        border-color: #bbbbbb;
    }

    input[type=text]:focus.user-content, input[type=password]:focus.user-content
    {
        color: #217DC4;
        text-align: center;
        font-family: "Lato";
        font-size: 11pt;
        font-weight: bold;
        padding: 5px;
        border-width: 1px;
        border-color: #bbbbbb;
    }
}

input[type=text], input[type=password], input[type=email]
{
    outline: none;
    padding: 10px 14px; 
    margin: 3px 0px;
    border: 1px solid lightgray;
    border-radius: 4px;
    font-family: "Lato";
    font-size: 11pt;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus
{
    padding: 10px 14px; 
    margin: 3px 0px;
    border: 1px solid #70A909;
    border-radius: 4px;
}

input[type=text].blue
{
    outline: none;
    padding: 10px 14px; 
    margin: 3px 0px;
    border: 1px solid lightgray;
    border-radius: 4px;
    font-family: "Lato";
    font-size: 11pt;
    color: cornflowerblue;
}

input[type=text].blue:focus
{
    padding: 10px 14px; 
    margin: 3px 0px;
    border: 1px solid #70A909;
    border-radius: 4px;
}

/*Fixed Chrome auto yellow background*/
input:-webkit-autofill 
{
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

select
{
    font-family: "Lato";
    font-size: 11pt;
    padding: 9px 0 9px 8px;
    margin-right: 6px;
    border: 1px solid lightgray;
    border-radius: 4px;
    color: #444;
    min-width: 69px;
}

.mobile-mainmenu-content
{
    background-color: white;
    border: solid 1px #e1e1e1;
    text-align: left;
    padding: 8px 0px 6px 0px;
    max-height: 600px;
    min-width: 100px;
    overflow-y: auto;
    /*box-shadow: 0px 2px 3px 2px rgba(0, 0, 0, 0.2);*/
}

.mobile-mainmenu-listitem
{
    color: #2c2d30;
    font-family: 'Lato', sans-serif;
    font-size: 120%;
    font-weight: 500;
    line-height: 200%;
    padding: 0px 55px 0px 15px;
    white-space: nowrap;
    cursor: pointer;
}

.mobile-mainmenu-listitem:hover
{
    cursor: pointer;
    background-color: #9ED43D;
    color: white;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background-color: whitesmoke;
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

button
{
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 9pt;
    font-weight: 600;
    height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    color: #666666;
    background: rgb(240, 240, 240);
    border: solid 1px #e0e0e0;
}

button:hover
{
    color: #222;
    border: solid 1px #c0c0c0;
}

button.button-hollow
{
    border-radius: 3px;
    border: solid 1px #eeeeee;
    color: #444444;
    height: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: transparent;
}

button.button-hollow:hover
{
    background-color: #f6f6f6;
}

button.button-green
{
    color: white;
    background-color: rgb(112, 169, 9);
    border: 0px;
}

button.button-green:hover
{
    background-color: rgb(132, 189, 29);
}

button.button-lightgray
{
    color: rgb(112, 112, 112);
    background-color: rgb(230, 230, 230);
    border: 0px;
}

button.button-lightgray:hover
{
    background-color: rgb(220, 220, 220);
}

button.button-blue
{
    background-color: rgb(33,125,196);
    color: white;
    border: 0px;
}

button.button-blue:hover
{
    background-color: rgb(23,115,186);
}

button.button-cornflowerblue
{
    background-color: RGB(100, 149, 237);
    color: white;
    border: 0px;
}

button.button-cornflowerblue:hover
{
    background-color: RGB(90, 139, 227);
}

button.button-orange
{
    background-color: RGB(255, 165, 0);
    color: white;
    border: 0px;
}

button.button-purple
{
    background-color: #560c79;
    color: white;
    border: 0px;
}

button.button-red
{
    background-color: #B6120A;
    color: white;
    border: 0px;
}

button.button-gray
{
    background-color: gray;
    color: white;
    border: 0px;
}

button.button-darkgray
{
    background-color: gray;
    color: white;
    border: 0px;
}

button.button-darkgray:hover
{
    opacity: 1;
}

button.black
{
    background-color: black;
    opacity: .55;
    color: #ADD466;
    border: 0px;
}

button.black:hover
{
    opacity: 1;
}

button.discard-button
{
    border-radius: 5px;
    border-color:  rgb(112, 169, 9);
    font-family: 'Open Sans', sans-serif;
    font-size: 9pt;
    font-weight: 600;
    height: 30px;
    background-color: transparent;
    color:  rgb(112, 169, 9);
    text-align: center;
}

button.discard-button:hover
{
    border-color:  red;
    background-color: red;  
    color: white;
}

div.button-green
{
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 9pt;
    font-weight: 600;
    height: 30px;
    line-height: 29px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgb(112, 169, 9);
    color: white;
    text-align: center;
}

div.button-green:hover
{
    background-color: rgb(102, 159, 9);
}

.button-link
{
    background: transparent;
    border-width: 0px;
    color: cornflowerblue;
    text-decoration: underline;
    text-align: left;
    font-weight: normal;
    cursor: pointer;
    padding: 0px;
    font-family: arial;
}

.button-link:hover
{
    background: transparent;
    border-width: 0px;
    color: blue;
    text-decoration: underline;
    text-align: left;
    font-weight: normal;
}


