#donuts_container {
    position: fixed;
    top: 100px;
    width: 100vw;
    margin: auto;
    opacity: 0;
}

.donuts_display-container {
    margin: auto;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .donuts_note-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 25px;
  }

  .donuts_circle {
    position: relative;
  }

  .donuts_circle__svg {
    transform: rotate(-90deg);
  }

  .donuts_circle__progress {
    fill: none;
    stroke: #fb120e;
    stroke-width: 6;
    stroke-opacity: 0.3;
    stroke-linecap: round;
  }

  .donuts_circle__progress--fill {
    --initialStroke: 0;
    --transitionDuration: 0;
    stroke-opacity: 1.0;
    stroke-dasharray: var(--initialStroke);
    /* stroke-dashoffset: var(--initialStroke); */
    transition: stroke-dashoffset var(--transitionDuration) ease;
  }


  .donuts_percent {
    width: 100%;
    top: 50%;
    left: 50%;
    position: absolute;
    font-weight: bold;
    color: #fb120e;
    text-align: center;
    line-height: 28px;
    transform: translate(-50%, -50%);
  }

  .donuts_percent__int {
    font-size: 28px;
  }


  .donuts_label {
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.08;
    letter-spacing: normal;
    text-align: center;
    color: #231f20;
  }
