/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
	margin-bottom: 0;
	border-radius: 0;
}

/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {
	height: 450px
}

/* Set gray background color and 100% height */
.sidenav {
	padding-top: 20px;
	background-color: #f1f1f1;
	height: 100%;
	overflow-y: scroll;
}

/* Set black background color, white text and some padding */
footer {
	background-color: #555;
	color: white;
	padding: 15px;
}

/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
	.sidenav {
		height: 50%;
		padding: 15px;
	}
	.row.content {
		height: auto;
	}
}


/* BASIC */

html {
  background-color: #56baed;
}

body {
	font: 15px Arial, sans-serif;
   height: 100vh;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

button  {
  background-color: #56baed;
  border: none;
/*   color: white; */
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button  {
  background-color: #39ace7;
}

button  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.login-error-message {
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 5px;
	width: 85%;
	border: 2px solid #f6f6f6;
}

button[disabled] {
  background-color: #9cafb9;
}

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text], input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  /*padding: 15px 32px;*/
  /*text-align: center;*/
  text-decoration: none;
  display: inline-block;
  /*margin-left: 5px;*/
  /*margin: 5px;*/
  /*width: 85%;*/
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

.date-acceptable{
	background-color: white;
}

.date-warning{
	background-color: orange;
}

.date-alarm{
	background-color:orangered;
}


.fuel-level-violation{
	color:  red;
}

.fuel-level-non-violation{
	color: lawngreen;
}

.mains-failure{
	color:  red;
}

.mains-avaliable{
	color: lawngreen;
}

.generator-running{
	color:  red;
}

.generator-not-running{
	color: lawngreen;
}

.login-input {
  padding: 15px 32px;
  text-align: center;
  margin: 5px;
  width: 85%;
}

input[type=text], input[type=password]:focus {
  background-color: #fff;
  /*border-bottom: 2px solid #5fbae9; */
}

input[type=text], input[type=password]:placeholder {
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.fadeIn.fifth {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}


/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}



.pace .pace-progress:before {
  background: #39ace7;
}

.status=panel div{
	display: block;	
}

@media (max-width: 767px){
	.gauges-panel div {
		display: block;
	}
	.center-content {
    padding-right: 10px
	}
}

.gauges-panel {
	    padding-top: 10px;
}

.gauges-panel div {
	display: inline-block;
}

.gauge-panel div {
	display: block;
}

.device-details-panel  {
    padding-left: 20px;
}

.label-value div {
	margin-top: 5px;
	margin-bottom: 5px;
	display: inline-block;
}


.label-value-with-button div {
	display: inline-block;
    margin-right: 10px;
}


.no-readings{
	font: bold 15px Arial, sans-serif;
    padding-right: 10px;
    padding-top: 10px;
}

.label-div {
	font: bold 15px Arial, sans-serif;
    padding-right: 5px;
}

.value-div {
    outline: solid;
    outline-width: 1px;
    outline-color: #ccc;	
}

.pace .pace-activity {
  border: 5px solid #39ace7;
}

.change-status-button {
	display: inline-block;
}

.pace .pace-activity:after {
  border: 5px solid #39ace7;
}

.pace .pace-activity:before {
  border: 5px solid #39ace7;
}


.gwt-TabLayoutPanelTab.com-google-gwt-resources-client-CommonResources-InlineBlockStyle-inlineBlock.gwt-TabLayoutPanelTab-selected{
	background: #39ace7;
}


.gwt-TabLayoutPanelTab.com-google-gwt-resources-client-CommonResources-InlineBlockStyle-inlineBlock.gwt-TabLayoutPanelTab-selected  div.gwt-TabLayoutPanelTabInner div.gwt-Label{
	background: #39ace7;
}



div.gwt-StackLayoutPanel .gwt-StackLayoutPanelHeader {
	background: #39ace7;
}

a, a:visited, a:hover {
    color: #39ace7;
}


.fas {
	color: #39ace7;
    margin-right: 5px;
}


.fa-industry{
	color: #39ace7;
    margin-right: 5px;
}

.fa-building{
	color: #39ace7;
    margin-right: 5px;
}

.fa-user{
	color: #39ace7;
    margin-right: 5px;
}

.fa-bolt{
	color: #39ace7;
    margin-right: 5px;
}

.fa-gas-pump{
	color: #39ace7;
    margin-right: 5px;
}

.fa-simplybuilt{
	color: #39ace7;
    margin-right: 5px;
}


.fa-fire-extinguisher{
	color: #39ace7;
    margin-right: 5px;
}

.gwt-TreeItem div {
	text-align: left;
}



.nav-tabs>li>a {
	background: #d0e4f6
}

.parameter-chart-panel {
	overflow: auto;
}

.tab-content-panel {
	padding: 10px;
	border: black;
	border-style: inset;
	overflow-y: scroll;
}

.tab-panel {
}

.top-navigation-bar-client-logo{
	
}



@media screen and (max-width: 767px) {
	.top-navigation-bar-client-logo{
		height: 5em;	
	}

}


#footer-navigation-bar {
  background-color: #e7e7e7;
}


.social-media-links {
    font-size: 32px;
    margin: 5px;
}


hr {
    border-top: 1px solid #39ace7;
}

@media screen and (min-width: 767px) {
	.navbar-right {
		position: absolute;
	    bottom: 10px;
	    right: 15px;
	}
	#hide-show-tree-panel {
		display: none;
	}
}

.top-navivation-bar-username {
	margin-left: 0.5em;
}

.button-hide-tree{
	float: right;
}


.dialogContent button {
	margin-left: auto;
    margin-right: auto;
    display: inherit;
}

.alert {
    padding: 1em;
    margin: 1em;
    border: 0px solid transparent;
    border-radius: 4px;
}

.device-dashboard-fault-panel {
	padding-top: 10px;
    padding-left: 0px;
}


.device-dashboard-fault-table {
    margin-left: 10px;
}

#main-content {
	height: 100%;
	background-color: white;
	overflow-y: scroll;
}


div.device-header div.label-value {
	display: inline-block;
}


div.device-header a.glyphicon {
	display: inline-block;
	padding-left: 5px;
}

div iframe.demo-videos-panel {
    padding-top: 1.5em;
    height: 20em;
}

.parameter-chart {
	padding: 10px;
	border: black;
	border-top-style: inset;
}

.section-delimiter {
	padding: 10px;
	border: black;
	border-top-style: inset;
	overflow: auto;
}

.parameter-chart-panel .button  {
	margin-left: 0px;
}

.parameter-chart-panel .button  {
	margin-left: 0px;
}

.parameter-chart-panel input[type=text] {
  padding: 0px;
  margin: 0px;
  width: auto;
  border-bottom: 0px;
}



.parameter-chart-panel .label-value div {
    padding-top: 0px;
	padding: 0px;    
}


.entities-type-filter-panel {
	margin: 1em;
}

.entities-type-filter-panel span {
    margin-left: 1em;
	display: block;
}

.section-separator-line {
	border-top: 2px solid black;
	overflow-y: scroll;
}

.electronic-delivery-header-panel {
	border-bottom: 2px solid black;
}

.electronic-delivery-header-text {
	font: bold 15px Arial, sans-serif;
    padding-top: 15px;
}


.electronic-delivery-signature {
	border:1px solid black;
}

.electronic-delivery-address {
	margin-top: 5px;
	border:1px solid black;
	line-height: 2.5ex;
  	height: 15ex; /* 2.5ex for each visible line */
  	overflow: hidden;
  	margin-bottom: 5px;
}


.section-separator-line table {
	margin: 1em;
}

.entities-filter-button-panel {
	height: 2em;
	display: block;;
}

.pagination-custom div {
	display: inline-block
}


.pagination-custom  {
	text-align: center;
}

.paging-menu-page-menu {
	margin-left: 0.5em;
	margin-right: 0.5em;
}

.paging-menu-active-page {
	    color: orange;
}

.new-entity-selection {
	margin-left: 1em;
}

.new-entity-details {
	margin: 1.5em;
}


.back-button {
	float:right;
}

.add-order-item-button {
	float:right;
}


.delete-button, .default-button  {
  background-color: rgb(255, 0, 0);
}


.default-button  {
  background-color: #56baed;
  border: none;
/*   color: white; */
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 10px 20px 20px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.permissions-table {
	margin-left: 2em;
}

.entity-facility-list {
	width: 100%;
}

.entity-facility-button-panel {
	text-align: center;
}

.position-right-button {
	float: right;
}




div.facility-fuel-level-table-panel {
	padding-top: 2%;
    padding-bottom: 2%;
	padding-left: 2%;
}


div.facility-fuel-level-totals-panel { 
	padding-left: 3%;
	padding-bottom: 2%;
 }