.gauge {
  width: 100%;
  max-width: 500px;
  font-size: 1.1rem;
  position: relative;
}

.gauge__body {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background: #b4c0be;
  position: relative;
  border-top-left-radius: 100% 200%;
  border-top-right-radius: 100% 200%;
  overflow: hidden;
}

.gauge__fill {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: 100%;
  background-color: var(--highlight-background-color);
  transform-origin: center top;
  transform: rotate(0turn);
  transition: transform 0.4s ease-out;
}

.gauge__cover {
  width: 75%;
  height: 150%;
  background: var(--secondary-background-color);
  border-radius: 50%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);

  /* Text */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 25%;
  box-sizing: border-box;
}

.gauge__min {
  position: absolute;
  left: 10px;
  bottom: 25%;
  padding-bottom: 25%;
}
.gauge__mid {
  position: absolute;
  top: 10px;
}
.gauge__mid.small {
  font-size: 0.9rem;
}
.gauge__loader.small {
  font-size: 0.9rem;
}
.gauge__title {
  font-size: 1.2rem;
  position: absolute;
  top: 70%;
  width: inherit;
  display: flex;
  justify-content: center;
}
/* .gauge__title.small {
  font-size: 0.8em;
  font-weight: 600;
  line-height: 0.9em;
} */
/* .gauge__max {
  position: absolute;
  right: 10px;
  bottom: 25%;
  padding-bottom: 25%;
} */

.gaugeLabelBottom {
  font-size: 1.1em;
  max-width: 500px;
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 501px) {
  .gauge__title.small {
    top: 85%;
  }
}

/* */

.big__display {
  height: 100%;
  display: grid;
  grid-auto-rows: min-content;
  place-items: center;
  place-content: center;
}
/* .big__display__top {
} */
.big__display__middle {
  font-size: 2rem;
}
/* .big__display__bottom {
} */
