/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: rgb(0, 0, 0);
    animation: l15 1s infinite linear;
    margin:auto;
    left:0;
    right:0;
    top:0;
    bottom:0;
    position:fixed;
  }
  .loader::before,
  .loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
  }
  .loader::after {
    margin: 8px;
    animation-duration: 3s;
  }
  @keyframes l15{ 
    100%{transform: rotate(1turn)}
  }

.loaderbackground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
}

#DatetimeLocal {
    position: absolute;
    right: 15px;
}
#gaugecontainer {
  right: 10px;
  left: 10px;
  text-align: center;
}
#gauges {
  padding: 10px;
  display: inline-block;
}
.gauge {
  display: inline-block;
}
.label {
  color: #000000;
  text-align: center;
  font-size: 2vw;
}
@media screen and (min-width: 1000px) {
  .label {
     font-size: 16px;
  }
}

html{
    font-family: "Montserrat", sans-serif;  
  }