.steps-main .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .steps-main .steps {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .steps-main .step {
    display: flex;
    position: relative;
  }
  .steps-main .step:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    height: 0;
    width: 2px;
    background-color: #e82a2a;
  }
  .steps-main .step .info {
    margin: 8px 0 20px;
  }
  .steps-main .step .title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: white;
    letter-spacing: 0px!important;
    line-height: 25px;
    margin-top: -8px;
  }
  .steps-main .step .text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 0;
    margin: 0;
  }
  .steps-main .step:not(:last-child):after {
    height: 75%;
  }
  
  .steps-main .number {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #e82a2a;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-right: 14px;
    background-color: #181818;
  }
  /*.steps-main .number.completed {
    background-color: #007EA7;
  }*/
  .steps-main .number svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }
  .steps-main .number svg path {
    fill: white;
  }
