.icontainer {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  .ilabel {
    font-size: 11px;
    font-weight: bold;
    color: black;
  }
}

.indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10%;
  width: 3.8vw;
  height: 45px;
  overflow: hidden;
  color: white;
  border: 3px solid black;
  font-size: clamp(8px, 1.3vw, 24px);
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  background-color: lightgray;
  &.positive {
    background-color: green;
  }
  &.negative {
    background-color: red;
  }
  &.deep-neg{
    background-color: darkred;
  }
}
