﻿/**General Styling for textboxes, dropdownlists etc*/
body, html
{
    font-family: "Helvetica Neue" ,Helvetica,Arial,sans-serif !important;
}

.header-item
{
    padding-top: 13px;
    color: White;
    font-weight: bold;
    font-size: medium;
}

.header-item .header-normal
{
    font-weight: normal;
}

.mobile-visible
{
    display: none !important;
}

input[type="text"]
{
    font-size: 12px !important;
    font-weight: normal;
    border: 1px solid #CCC;
    border-radius: 0px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    margin: 4px;
    padding: 5px 5px 4px 5px;
    max-width: 100%;
}

input[type="text"]:focus
{
    border-color: #0098db !important;
}

textarea
{
    font-weight: normal;
    border-radius: 0px !important;
}

textarea:focus
{
    border-color: #0098db !important;
}

select
{
    font-weight: normal;
    font-size: 12px;
    border: 1px solid #CCC;
    border-radius: 0px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    margin: 4px;
    padding: 5px;
    max-width: 100%;
}

input[type="password"]
{
    font-weight: normal;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    margin: 4px;
    padding: 5px;
    max-width: 100%;
}

input[type="password"]:focus
{
    border-color: #0098db !important;
}
