body {
	margin: 0;
    padding: 0;
	background:#fff;
	font-family: 'Quicksand', sans-serif;
}
input {
	height: 45px;
    line-height: 45px;
    user-select: none;
}
.inputText {
    display: block;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff !important;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px;
}
.inputField {
	--border-color: #B3BBC1;
    --border-radius: 4px;
    position: relative;
    display: block;
	margin-bottom: 18px;
}
.blueButton {
    background: #49a2ff;
    border: 1px solid #777;
    font-size: 1em;
	cursor:pointer;
	border-radius: 4px;
	padding: 1px 10px;
}
.greenButton {
	background: #00ff00;
    border: 1px solid #777;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    padding: 0 10px;
    font-weight: bold;
    color: #777;
}
.greyButton {
	background: #bbb;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    padding: 0 10px;
    font-weight: bold;
    color: #777;
	height: 45px;
    line-height: 45px;
    user-select: none;
    display: inline-block;
}
input:-internal-autofill-selected {
	background: #fff !important;
}
div#pageTop {
    background: #eee;
    text-align: center;
    height: 42px;
    padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
div#pageTop h1 {
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 2px #aaa;
}
div#pageBody {
    margin: 140px 0 0 0;
    text-align: center;
	padding-bottom:70px;
}
div#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    height: 50;
    border-top: 1px solid #ddd;
	background: #fff;
}
div#loginContainer {
    max-width: 400px;
    margin: 0 auto;
}
div#loginContainer h4 {
    margin: 0 0 10px;
    font-size: 1.2em;
    text-transform: uppercase;
}
p.label {
	    z-index: 0;
    pointer-events: none;
    position: absolute;
    left: 7px;
    padding: 0 5px;
    margin: 0;
    line-height: 45px;
    transition: transform 130ms;
    transform-origin: 0 50%;
    transition-delay: 500ms, 0ms;
    transition-property: z-index, transform;
}
p.label.small {
    transform: translate(1px, -22px) scale(.72);
	background: #fff;
}
p.copyRight {
    color: #777;
    font-size: .9em;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
#preloadSpinner {
	background: url('/img/ajax-spinner.svg') no-repeat -9999px -9999px;
}
.spinner {
    position: fixed;
    top: 30%;
    text-align: center;
    width: 100%;
    z-index: 99999;
}
.spinnerSmall {
	position:absolute;
	margin-top: -30px;
	text-align:center;
	width:100%;
	z-index:99999;
}
.spinner img {
    height: 180px;
    padding: 0 0 20px;
}
.spinnerSmall img {
	height: 80px;
	padding: 0 0 20px;
}
.spinner .spinnerText {
    margin: -67px auto 0;
    color: #0000ff;
    display: block;
    font-weight: bold;
    font-size: 1.2em;
}
.spinnerSmall .spinnerText {
    margin: -42px auto 0;
    color: #0000ff;
    display: block;
    font-weight: bold;
    font-size: .8em;
}
.notificationDiv {
	transition: max-height 200ms linear;
	-webkit-transition: max-height 200ms linear;
    background: #eeff84;
	padding: 2px 0;
	max-height: 30px;
	height: auto;
	overflow: hidden;
    color: #6c5812;
	width: 100%;
}
.notificationDiv {
    background: #eeff84;
	color: #6c5812;
	margin-top: 20px;
	border-bottom: 5px solid #fff;
}
.notificationDiv.error {
	background: #ff0000;
	color:#fff;
}
.notificationDiv.hide {
	transition: max-height 200ms linear;
	-webkit-transition: max-height 200ms linear;
	max-height: 0px;
	border: 0 none;
	padding: 0;
}
div#notification {
    font-weight: bold;
    text-align: center;
    font-size: .9em;
}
div#closeNote, div#closeError {
    float: right;
	cursor: pointer;
}
div#closeError {
   	color:#fff;
}
div#closeNote {
	color: #6c5812;
}
.notificationDiv.error div#closeNote {
	color:#fff;
}
.lightOverlay {
	transition:opacity 200ms linear;
	-webkit-transition:opacity 200ms linear;
	z-index:-1;
	opacity:0;
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:rgba(255,255,255,.8);
}
.lightOverlay.show {
	transition:opacity 200ms linear;
	-webkit-transition:opacity 200ms linear;
	z-index:999;
	opacity:1;
}
#invoiceTable {
	margin-top: 20px;
	text-align: left;
}
#invoiceTable .tableRow {
    display: flex;
    padding: 3px 1%;
    border-bottom: 1px solid #333;
}
#invoiceTable .tableRow.greenRow {
	background-color: #a7ffa7;
}
#invoiceTable .tableRow.redRow {
	background-color: #fa9e7b;
}
#invoiceTable .tableRow.greyRow {
	background-color: #ddd;
	text-decoration: line-through;
}
#invoiceTable .tableRow.whiteRow {
	background-color: #fff;
}
#invoiceTable .tableRow.headers {
	font-weight: bold;
	border-bottom: 2px solid #777;
}
#invoiceTable .colDate {
	width: 15%;
}
#invoiceTable .colContractor {
	width: 30%;
}
#invoiceTable .colJob {
	width: 30%;
}
#invoiceTable .colAmount {
	width: 7%;
}
#invoiceTable .colFile {
	width: 8%;
}
#invoiceTable .colStatus {
	width: 10%;
}
div#optionsDiv {
	text-align: center;
	margin: 30px 1% 10px 0;
}
#newInvoiceForm {
	display:flex;
	width: 100%;
}
.addInvoiceUI {
	transition: max-height 300ms linear;
	-webkit-transition: max-height 300ms linear;
	max-height: 500px;
    padding: 10px 1%;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
form#newInvoiceForm>div {
    margin: 0 10px;
}
.hide {
	transition: max-height 300ms linear;
	-webkit-transition: max-height 300ms linear;
    max-height: 0;
    opacity: 0;
	overflow:hidden;
}
.selectOption {
	font-size: 1em;
    border-radius: 4px;
    width: 150px;
	padding: 1px 2px;
}
select#filter {
    margin: 0 30px;
}
div#ipAddressNotice {
    text-align: center;
    font-size: 10px;
    color: #999;
}