.wizard{
    padding: 50px 0px;
      padding-bottom: 0px;
  }
  .wizard .nav-tabs {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
  }
  
  .wizard > div.wizard-inner {
    position: relative;
  }
  
  .wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
  }
  .wizard .connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
  }
  .wizard span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
  }
  .wizard span.round-tab i{
    color:#555555;
  }
  
  .wizard li.success span.round-tab {
    background: #48488e;
    color: #fae903;
    border-color: #04993d;
  }
  .wizard li.success span.round-tab i{
  color: #5bc0de;
  }

  .wizard .nav-tabs > li.success > a i{
    color: #000;
    }

  .wizard li.active span.round-tab {
    background: #0db02b;
    color: #fff;
    border-color: #0db02b;
  }


  .wizard .nav-tabs > li.active > a i{
  color: #000;
  }
  
.wizard .nav-tabs > li {
  width: 25%;
  }

  .wizard li:after {
  content: " ";
  position: absolute;
  left: 46%;
  opacity: 0;
  margin: 0 auto;
  bottom: 0px;
  border: 5px solid transparent;
  border-bottom-color: red;
  transition: 0.1s ease-in-out;
  
  }
  
  
  .wizard .nav-tabs > li a {
  width: 30px;
  height: 30px;
  margin: 20px auto;
  border-radius: 100%;
  padding: 0;
  background-color: transparent;
  position: relative;
  top: 0;
  }
  .wizard .nav-tabs > li a i{
  position: absolute;
  top: -15px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: normal;
  color: #ccc;
  }
  
  .wizard .nav-tabs > li a:hover {
    background: transparent;
  }
  
  .wizard .tab-pane {
  position: relative;
  padding-top: 20px;
  }
  
  
  .wizard h3 {
  margin-top: 0;
  }

  .wizard .nav-tabs li .active a{
    cursor:pointer!important
   }