/* CSS FOR STEPS ON TOP */
html{
  height: 100%;
}
body{
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
footer{
  margin-top: auto;
}

.stepwizard-step p {
    margin-top: 10px;
  }
  .stepwizard-row {
    display: table-row;
  }
  .stepwizard {
    margin-top: 4rem;
    display: table;
    width: 80%;
    position: relative;
  }
  .stepwizard-step a[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
  }
  .stepwizard-row:before {
    top: 18px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
  }
  .stepwizard-step{
    display: table-cell;
    text-align: center;
    position: relative;
  }
  .btn-circle {
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 50% !important; 
  }

  @media only screen and (max-width : 600px){
    .stepwizard {
        width: 90%;
      }   

      .stepwizard-row:before {
        top: 13.5px;
      }
      .stepwizard-step p{
        font-size: 1.2rem;
        margin-top: 5px;
      }

      .btn-circle {
        width: 25px;
        height: 25px;
        padding: 4px 0;
        font-size: 10px;
      }
  }