.thermometer {
  background-color: #F6F3E3;
  border-radius: 0.1rem;
  box-sizing: border-box;
  color: white;
  display: block !important;
  height: 1rem;
  position: relative;
  width: 100%;
}

.thermometer::before {
  box-sizing: border-box;
  content: "";
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(var(--width, 0) * 1%);
  min-width: 2rem;
  max-width: 100%;
  background-color: #4BC0BF;
  border-radius: 0.1rem;
  padding: 0.3rem;
}