.round {
  transform: rotate(-90deg);
  transition: all 1s ease-in-out;

  /* SVG */
  fill: none;
  stroke: var(--color-navy-200);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0 999;
}

.placeholder {
  stroke-dasharray: 999;
  stroke: #ced4da;
}

.point p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(7, 7, 7, 1);
  font-size: 28px;
  font-weight: bold;
}