[data-component-id="itg:steps_tracker"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;

  .step-line {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 90%;
    max-width: 90%;
    margin-bottom: 20px;
  }

  .step-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d6d6d6;
    transform: translateY(-50%);
    z-index: 1;
  }

  .circle {
    width: 16px;
    height: 16px;
    background-color: #fafafa;
    border: 1px solid #d6d6d6;
    border-radius: 50%;
    z-index: 2;
  }

  .step-labels {
    display: flex;
    justify-content: space-between;
    width: 95%;
    padding-left: 0;
  }

  .step-btn {
    background-color: #4aa47a;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
  }
}
