.step_div {
    /*background: #fff;*/
    padding: 40px;
    width: 90%;
    margin: 0 auto;
}

.stepwizard-step p {
    margin-top: 10px;
    color: #333;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}
.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}
.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.stepwizard-link {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 0px;
    box-sizing: border-box;
    transition: all 0.5s;
    position: relative;
    z-index: 2;
    background-image: -webkit-linear-gradient(top, lightgray 0%, rgba(252,252,252) 100%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    display: inline-block;
    position: relative;
    top: -2px;
    outline: 0;
    cursor: pointer;
}

.stepwizard-link:hover, .stepwizard-link.step-active {
    color: white;
    border-color: transparent;
    border-radius: 4px;
    background-image: -webkit-linear-gradient(left, #3238c5 0%, #7a5cff 100%);
    background-image: linear-gradient(to right, #3238c5 0%, #7a5cff 100%);
}