<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 400px;
    width: 100%;
  }



  .container .steps {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .steps .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #999;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #e0e0e0;
    transition: all 200ms ease;
    transition-delay: 0s;
  }
  .steps .circle.active {
    transition-delay: 100ms;
    border-color: #0b9133;
    color: #0b9133;
  }
  .steps .progress-bar {
    position: absolute;
    height: 4px;
    width: 100%;
    background: #e0e0e0;
    z-index: -1;
  }
  .progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 0%;
    background: #0b9133;
    transition: all 300ms ease;
  }
  .container .buttons {
    display: flex;
    gap: 20px;
  }
  .buttons button {
    padding: 8px 25px;
    background: #0b9133;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 200ms linear;
  }
  .buttons button:active {
    transform: scale(0.97);
  }
  .buttons button:disabled {
    background: #80a68c;
    cursor: not-allowed;
  }

  .container-progress-bar {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

@media(max-width: 991px) {
    .container-progress-bar {
      margin-bottom: 30px;
    }
}</pre></body></html>