@import url('https://fonts.googleapis.com/css?family=Heebo:100,300,400,500,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}


/*** 

====================================================================
    Global Settings
====================================================================

 ***/

body {
    font-size: 15px;
    color: #777777;
    line-height: 1.8em;
    font-weight: 400;
    background: #efefef;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #30AAE4;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

#topHeader {
	width: 100%;
	height: 110px;
	background-color: #0055A5;
}

#headerInfo {
	width: 500px;
	padding: 40px;
	color: white;
	font-size: 20pt;
}

#homeContainer {
	width: 100%;
	height: auto;
}

#leftSideNav {
	width: 8%;
	height: auto;
	min-height: 900px;
	float: left;
	padding: 20px 40px 0px 40px;
	border-right: solid 1px #999;
	background-color: #fff;
	line-height: 50px;
}

#rightHomeContent {
	width: 70%;
	height: auto;
	float: left;
	padding: 30px;
}

.homeHeader {
    font-size: 20px;
	color: #000000;
	font-weight: 500;
}

input[type=text], [type=password], [type=date], [type=color] {
    width: 415px;
    height: 30px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #F5C110;
    background-color: #f9f9f9;
	margin-top: 10px;
	font-family: 'Roboto', sans-serif;
	padding: 5px;
}

textarea{
    width: 415px;
    height: 100px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #F5C110;
    background-color: #f9f9f9;
	margin-top: 10px;
	font-family: 'Roboto', sans-serif;
	padding: 5px;
}

input[name=username], [name=password]{
    width: 95%;
    height: 30px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #F5C110;
    background-color: #f9f9f9;
	margin-top: 10px;
	font-family: 'Roboto', sans-serif;
	padding: 5px;
}

select {
    width: 427px;
    height: 40px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #F5C110;
    background-color: #f9f9f9;
	margin-top: 10px;
	font-family: 'Roboto', sans-serif;
	padding: 5px;
}

input[name=reoccuring_job] {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #F5C110;
    background-color: #f9f9f9;
	margin-top: 10px;
	padding: 5px;
}

.createButton {
    width: 99%;
    height: 40px;
    font-size: 20px;
    background-color: #013368;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
}

.formButton {
    width: 300px;
    height: 40px;
    font-size: 15px;
    background-color: #013368;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
}

.required {
    font-size: 13px;
	color: red;
	text-transform: uppercase;
	margin-top: 5px;
}

.error{
	background-image:url(../images/error-bg.png);
}

table {
  	border-collapse: collapse;
	background-color: #fff;
}

table, th, td {
  	border: 1px solid black;
	padding: 5px;
	text-align: center;
}
label {
  	cursor: default;
	width: 200px;
	display:inline-block;
}

#mobile-nav, #myNav{
	display: none;
}

#piechart{
	width: 800px;
	height: 500px;	
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}