.custom-wizard .nav-wizard {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e3e6ec;
    padding-bottom: 1rem;
  }
  
  .custom-wizard .nav-item-circle-parent {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-wizard .nav-item-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--falcon-theme-wizard-nav-item-circle-bg, #fff);
    box-shadow: 0 0 0 2px #2c7be5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c7be5;
  }
  
  .custom-wizard .nav-link.active .nav-item-circle {
    background-color: #2c7be5;
    color: white;
  }
  
  .custom-wizard .nav-link {
    text-align: center;
    color: #5e6e82;
    transition: color 0.3s ease;
  }
  
  .custom-wizard .nav-link:hover {
    color: #2c7be5;
  }
  