.progress-bar {
    position: relative;
    width: 100%;
    height: 2rem;
    border: 2px solid #fff;
    border-radius: 999px;
    background: transparent;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    /* background-color: #5a8f3d;  */
    background-color: #ffffff; /* зелёный */
    /* border-radius: 999px 0 0 999px; */
    border-radius: 999px;
    opacity: 0.9;
  }
  
  .progress-text {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-weight: bold;
    color: #fff;
  }  