div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  z-index: 100;
  background-color: rgba(230,230,230,0.8);
}

div.sticky2 {
  position: fixed;
  top: 0px;
  height: 20px;
  z-index: 99;
  background-color: rgba(230,230,230,1);
}


.odometer {
	font-size: 25px;
	text-align: center;
	color: rgba(68,157,209,1);
}

.odometer[id="denergy"] .odometer-inside:after {
    content: " kWh";
	font-size: 18px;	
}

.odometer[id="menergy"] .odometer-inside:after {
    content: " kWh";
	font-size: 18px;	
}

.odometer[id="meenergy1T"] .odometer-inside:after {
    content: " €";
	font-size: 18px;	
}

.odometer[id="meenergy2T"] .odometer-inside:after {
    content: " € - ";
	font-size: 18px;
}

.odometer[id="meenergy2TW"] .odometer-inside:after {
    content: " €";
	font-size: 18px;
}

.odometer[id="denergy_1"] .odometer-inside:after {
    content: " kWh";
	font-size: 18px;	
}

.odometer[id="menergy_1"] .odometer-inside:after {
    content: " kWh";
	font-size: 18px;	
}

.odometer[id="meenergy1T_1"] .odometer-inside:after {
    content: " €";
	font-size: 18px;	
}

.odometer[id="meenergy2T_1"] .odometer-inside:after {
    content: " €";
	font-size: 18px;
}


.logaInfo {
	font-size: 12px;
	color: rgba(148, 148, 148, 1);
}

.spinner {
	margin: 0px auto 0;
	width: 60px;
	position: absolute;
	top: 10px;
	margin: 0px auto;  
}

.spinner > div {
	width: 15px;
	height: 15px;
	background-color: #999;

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}



@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% { 
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/*------------------------------------------------*/
/* gauge SECTION START*/
/*------------------------------------------------*/

.gauge-container.power {
	width: 120px;
	height: 100px;
	display: block;
	padding: 0px;	
}

.gauge-container.power > .gauge > .dial {
	stroke: #e6e6e6;
	stroke-width: 2;
	/*stroke-dasharray: 125, 20;*/
}
  
.gauge-container.power > .gauge > .value {
	stroke: #449DD1	;
	stroke-width: 6;
	/*stroke-dasharray: 125, 20;*/
}
.gauge-container.power > .gauge > .value-text {
	fill: rgba(68,157,209,1);
/* 	font-weight: bold; */
	font-size: 18px;
}







