#interface {
    position: fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:999;
}
.gauge-container {
    width: 150px;
    height: 150px;
    display: block;
    padding: 10px;
}
.gauge-container > .gauge > .dial {
    stroke: #eee;
    stroke-width: 13;
    fill: rgba(0,0,0,0);
}
.gauge-container > .gauge > .value {
    stroke: rgb(47, 227, 255);
    stroke-width: 13;
    fill: rgba(0,0,0,0);
}
.gauge-container > .gauge > .value-text {
    fill: rgb(47, 227, 255);
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1em;
}
#powerGauge {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 92px;
}