  #container {
    position: relative;
    width: 80%;
    margin: auto;
    text-align: center;
    margin-top: 50px;
    cursor: pointer;
  }
  .step-wizard {
    display: inline-block;
    position: relative;
    width: 100%;
  }
  .step-wizard .progress {
    position: absolute;
    top: 15px;
    width: 100%;
  }
  .step-wizard .progressbar {
    position: absolute;
    background-color: #1235fe;
    height: 12px;
    border: 1px solid #1235fe;
    width: 0%;
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
  }
  .step-wizard .progressbar.empty {
    opacity: 1;
    width: 100%;
    background-color: #909090;
  }
  .step-wizard ul {
    position: absolute;
    width: 100%;
    list-style-type: none;
    padding: 0;
  }
  .step-wizard li {
    display: inline-block;
    text-align: center;
    width: 33.2%;
    font-size: 17px;
  }
  .step-wizard li .step {
    position: absolute;
    display: inline-block;
    line-height: 30px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 4px solid;
    border-color: #909090;
    background: #ffffff;
    -webkit-transition: background-color 0.6s ease, border-color 0.6s ease;
    -o-transition: background-color 0.6s ease, border-color 0.6s ease;
    transition: background-color 0.6s ease, border-color 0.6s ease;
    cursor: pointer;
  }
  .step-wizard li .title {
    position: absolute;
    width: 100%;
    left: 20px;
    padding-top: 42px;
    color: #969c9c;
    -webkit-transition: color 0.6s ease;
    -o-transition: color 0.6s ease;
    transition: color 0.6s ease;
  }
  .step-wizard li.active .step {
    border-color: #1235fe;
  }
  .step-wizard li.active .title {
    color: black;
  }
  .step-wizard li.done .step {
    color: white;
    background-color: #1235fe;
    border-color: #1235fe;
  }
  .step-wizard li > a {
    display: block;
    width: 100%;
    color: black;
    position: relative;
    text-align: center;
  }
  .step-wizard li > a:hover .step {
    border-color: #1235fe;
  }
  .step-wizard li > a:hover .title {
    color: black;
  }
  @media only screen and (max-width: 1200px) {
    .step-wizard li {
      width: 24%;
    }
  }
  @media only screen and (max-width: 375px) {
    .step-wizard li {
      width: 22%;
    }
  }