html, body {
	height: 100%;
}
.clear{
	clear:both;
}
.page-wrapper{
	height: 100%;
}
.main-container{
	min-height: 90%;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #fff;
}

.header {
	width:100%;
	height:85px;
	background: #a2e6ff;
	/*background: rgb(172,210,237);
	background: linear-gradient(90deg, rgb(172, 210, 237) 0%, rgb(10, 83, 157) 100%);*/
	padding: 15px 15px 15px 15px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.header .logo {
	width: auto; /*remove it later*/
	/*height:100%;*/
	height: 50%;
}
.header .logo img{
	height: 100%;
}
.header nav.mainmenu {
	margin-left: auto;
	margin-bottom: 0;
	font-size: 1.5rem;
	background-color: transparent;
	border-color: transparent;
}

/* message box */
#msg_box{
	padding: 8px 30px;
	margin-bottom: 8px;
	border-radius: 25px;
	display: none;
}
#msg_box.bg-success{
	border: 1px solid #29ABE2;
}
#msg_box.bg-danger{
	border: 1px solid #E28888;
}

/* dropdown submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover  > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #bbb;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.content-area{
	padding: 15px 20px;
	border: 1px solid #ACD2ED;
}

#map {
	height: 600px;
}
.red_border{
	border: 1px solid #f00;
}
.action_buttons{
	width: 100%;
	text-align: center;
	margin-top: 15px;
}
.action_buttons .btn{
	margin: 0 2px;
}
.btn:hover{
	background-color: #ddd;
}
.title{
	text-align: center;
	padding: 0 0 15px;
}
.infobar{
	text-align: right;
	margin-bottom: 5px;
	padding: 0 30px;
}
.logoutbtn{
	margin-left: 15px;
}

#loginForm button {
  background-color: #ACD2ED;
  border-color: #ACD2ED;
  color: #000;
}

/* Input Forms */
.formtable td{
	padding: 3px 8px;
}
.formtable input, .formtable select{
	width: 200px;
}
.formtable span.required{
	color: #f00;
	margin-left: 8px;
}

/* footer */
#footer{
	min-height: 10%;
	padding: 15px 0;
	font-size: 0.75em;
	line-height: 1.2em;
	background-image:url("../images/graphic6.png");
 	width: 100%;
 	background-size: 100% 100%;
  	background-repeat: no-repeat;
	color: #fff;
	position: fixed;
	bottom: 0;
}
#footer img{
	height: 35px;
	float: left;
	padding-right: 15px;
}
#footer .right img{
	padding-right:0;
	padding-left: 15px;
	float: right;
}

#footer .logos_list {
  text-align: center;
  padding-top: 65px;
}

#footer .logos_list li {
	display: inline-block;
	vertical-align: middle;
	margin: 10px;
}

/* Data Analysis */
#metrics-block{
	display: none;
}
#categories-block{
	display: none;
}
.metrics .hidden{
	display:none;
}
#get_data_btn{
	min-width: 30%;
}
/* Tabs */
#tabs_wrapper{
	margin-top: 20px;
	display: none;
}
.tab-content{
	padding: 8px 0;
}
/* Data Presentation */
#chart_div{
	width: 100% !important;
}
/* Statistics */
.infotable{
	width: 100%;
	border: 1px solid #ababab;
	border-collapse: collapse;
}
.infotable th{
	background: #ccc;
	padding: 4px 8px;
}
.infotable td{
	padding: 4px 8px;
}
.infotable tr:nth-child(odd){
	background: #eee;
}
.infotable .number{
	text-align: right;
}
/* Modeling */
.function-block{
	border-bottom: 1px solid #ccc;
	padding: 15px 8px;
}
.function-block div{
	display: inline-block;
}
.function-block label{
	margin-right: 5px;
}
.function-block input[type="number"]{
	width: 60px;
}
.function-block .result{
	font-weight: bold;
}
.function-table{
}
.function-table td{
	padding: 0 15px;
}

.radio_button
{
	width: 100%;
	text-align: center;
}
.radio_button table
{
  margin: 0 auto;
}
.radio_button td
{
	padding: 10px 15px 10px 0px;
}
.radio_button label
{
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	vertical-align: middle;
}
.radio_button input[type="radio"]
{
	cursor: pointer;
	vertical-align: baseline;
}

.upload-content
{
	width:70%;
	margin:auto;
}

.upload-content #filedrag
{
	display: none;
	font-weight: bold;
	text-align: center;
	padding: 30px;
	margin: 1em 0;
	color: #555;
	border: 2px dashed #555;
	border-radius: 7px;
	cursor: default;
}

.upload-content #dropzone.hover
{
	color: #919191;
	border-color: #e1e1e1;
	border-style: solid;
	box-shadow: inset 0 3px 4px #888;
}

.list-type2{
width:500px;
margin:0 auto;
}

.list-type2 ol{
counter-reset: li;
list-style: none;
*list-style: decimal;
font-size: 15px;
font-family: 'Raleway', sans-serif;
padding: 0;
margin-bottom: 4em;
}

.list-type2 ol ol{
margin: 0 0 0 2em;
}

.list-type2 a{
	position: relative;
	display: block;
	padding: .4em .4em .4em 2em;
	margin: .5em 0;
	color: #000;
	text-decoration: none;
	transition: all .2s ease-in-out;
	background: linear-gradient(90deg, rgba(172,210,237,1) 20%, rgb(10, 83, 157) 100%);
	height: 3em;
}

.list-type2 a:hover{
	text-decoration:none;
	transform: scale(1.1);
}

.list-type2 a:before{
	content: counter(li);
	counter-increment: li;
	position: absolute;
	left: -4.3em;
	top: 50%;
	height: 3em;
	width: 3em;
	line-height: 2em;
	border: .3em solid #fff;
	text-align: center;
	font-weight: bold;
	color: #000;
	background: linear-gradient(90deg, rgba(172,210,237,1) 0%, rgb(10, 83, 157) 100%);
	margin-top: -23px;
}


/* -------OVERRIDES-------- */

.btn-primary {
  background-color: #ACD2ED !important;
  border-color: #ACD2ED !important;
  color: #000 !important;
}

/* Main Menu */
.mainmenu.navbar-inverse .navbar-nav > li > a{
	color: #fff;
}
.mainmenu.navbar-inverse .navbar-nav > li > a:hover, .mainmenu.navbar-inverse .navbar-nav > li > a:focus{
	color: #01668b;
	background-color: transparent;
}

.mainmenu.navbar-inverse .navbar-nav li.active > a, .mainmenu.navbar-inverse .navbar-nav li.active > a:focus, .mainmenu.navbar-inverse .navbar-nav li.active > a:hover{
	background-color: transparent;
	color: #01668b;
}
.mainmenu.navbar-inverse .navbar-nav > .open > a, .mainmenu.navbar-inverse .navbar-nav > .open > a:hover, .mainmenu.navbar-inverse .navbar-nav > .open > a:focus{
	background-color: transparent;
	color: #01668b;
}
.mainmenu.navbar-inverse .navbar-toggle{
	border:none;
}
.mainmenu.navbar-inverse .navbar-toggle:focus, .mainmenu.navbar-inverse .navbar-toggle:hover{
	background: none;
}

@media (max-width: 768px) {

	.navbar-collapse {
		background: #78a9d3;
		margin-top: 0px;
		z-index: 1;
		position: fixed;
	}

	#footer {
		position: relative;
	}

	#footer .logos_list {
	  	padding-top: 125px;
	}

	#footer img {
		height:  35px;
	}

}

@media only screen 
  and (max-device-width: 768px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
  	.container {
  		padding-right: 0px !important;
  		padding-left: 0px !important;
	}

	.main-container {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}

@media only screen 
  and (max-device-width: 768px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
  	.container {
  		padding-right: 0px !important;
  		padding-left: 0px !important;
	}

	.main-container {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}

