.stepper-bar {
    width: 100%;
    padding:15px 30px;
    background:rgba(0,0,0,.9);
    border-radius: 10px 10px 0 0;
  }
  .stepper {
    padding: 0 !important;
    display: inline-block;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
            box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    list-style: none;
    font-size: 12px;
    width: 75%;
    margin: 0 auto !important;
    position: relative;
    z-index:1;
  }
  .stepper:before {
    content: '';
    position: absolute;
    background: rgba(255,255,255,.8);
    height: 2px;
    top: calc(50% - 1px);
    z-index: -1;
    left: 10px; 
    right:10px;
  }
  .stepper li {
    border-radius:50%;
    width:42px;
    height:42px;
    text-align: center;
    color: #000;
    font-weight: bold;
    background: #fff;
    border: 2px solid #fff;
    transition: all .4s ease-in-out;
    box-shadow: 0 2px 3px #000;
    position: relative;
  }
  .stepper li a, .nav-pills .nav-link {
    background: none;
    border-radius: 50%;
    padding:10px;
    position: absolute;
    left:0px; right:0px;
    top:0px; bottom:0px;
    color: #000;
  }
  .stepper li.active, .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: #00c851;
    background: var(--success);
    color: #fff;
  }
  @media screen and (max-width: 500px) {
    .stepper {
      width: 100%;
    }
    .stepper li {
      width: 30px;
      height:30px;
    }
    .nav-pills .nav-link {
      padding:4px;
    }
  }
  @media screen and (max-width: 375px) {
    .stepper-bar {
      width: 100%;
      padding:15px 15px
    }
  }
  
  /* Stepper unclickable */

  .nav-link {
    pointer-events: none;
  }

  ul.stepper{
    padding: 3px 0px 3px!important;
  }