.contatore-debitopubblico {
  display: flex;
  font-size: 3rem;
  width: 100%;
  overflow: hidden;
}
.contatore-debitopubblico[data-size=big-1] {
  font-size: 3.5rem;
}
.contatore-debitopubblico[data-size=big] {
  font-size: 3rem;
}
.contatore-debitopubblico[data-size=size-2] {
  font-size: 2.5rem;
}
.contatore-debitopubblico[data-size=size-3] {
  font-size: 2rem;
}
.contatore-debitopubblico[data-size=size-4] {
  font-size: 1.5rem;
}
.contatore-debitopubblico .digit {
  width: 11.1111111111%;
  /*width: 3.5rem;*/
  /*height: 3.5rem;*/
  aspect-ratio: 1/2;
  background-color: #333;
  color: #fff;
  text-align: center;
  margin: 0 0.3rem;
  border-radius: 4px;
  perspective: 1000px;
  /* display: flex;
  align-items: center;
  justify-content: flex-start;

  flex-direction: column; */
  overflow: hidden;
  position: relative;
}
.contatore-debitopubblico .digit .inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}
.contatore-debitopubblico .dot {
  width: 8px;
  height: var(--block-height);
  max-height: 100%;
  display: block;
  position: relative;
}
.contatore-debitopubblico .dot::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: red;
}

.button {
  display: flex;
}