.step-wizard {

    display: inline-block;
    position: relative;
    width: 100%;
    height: 110px;
    border-radius: 10px !important;
    padding: 5px 0;
    text-align: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(126, 136, 172, 0.44) !important;
    box-shadow: 0 2px 4px 0 rgba(126, 136, 172, 0.44) !important;
    background-color: #fff;
    margin-bottom: 25px;

}

.step-wizard .progress {
    position: absolute;
    top: calc(50% - 16px);
    left: 12.5%;
    width: 75%;
    margin: 0;
    height:3px;
}

.step-wizard .progressbar {
    position: absolute;
    background: linear-gradient(to left, rgb(52, 194, 235), rgb(26, 127, 195));
    opacity: 1;
    height: 3px;
    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: #e5ecff;
}

.step-wizard ul {
    position: absolute;
    width: 100%;
    list-style-type: none;
    padding: 0;
    left: 0;
}

.step-wizard li {
    display: inline-block;
    text-align: center;
    width: 24%;
}

.step-wizard li .step {
    text-align: center;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #e5ecff;
    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;
}

.step-wizard li .title {
    width: 100%;
    padding-top: 10px;
    color: #939bb3;
    -webkit-transition: color 0.6s ease;
    -o-transition: color 0.6s ease;
    transition: color 0.6s ease;
}
.step-wizard li.active .step {
    border-color: #2BACDE;
    color: #2BACDE;
}
.step-wizard li.active .title {
    color: #2BACDE;
    font-weight: bold;
}
.step-wizard li.done .title {
    color: #2BACDE;
}
.step-wizard li.done .title:hover {
    color: #2BACDE;
}
.step-wizard li.done .step {
    color: white;
    background-color: #2BACDE;
    border-color: #2BACDE;
}
.step-wizard li > .step-wrapper {
    background: none;
    cursor: pointer;
    border: none;
    display: block;
    width: 100%;
    color: #939bb3;
    position: relative;
    text-align: center;
}
.step-wizard li > .step-wrapper:hover .step {
    border-color: #2BACDE;
    background: #eee;
    color: #2BACDE;
}
.step-wizard li > .step-wrapper:hover .title {
    color: #192832;
}
@media only screen and (max-width: 1200px) {
    .step-wizard li {
        width: 24%;
    }
}
@media only screen and (max-width: 375px) {
    .step-wizard li {
        width: 22%;
    }
}
li.done .step-wrapper div.step {
    font-size: 0;
}
li.done .step-wrapper div.step::before {
    content: "\2713 ";
    font-size: 18px;
}

.step-content {
    display: none;
    min-height: 120px;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(126, 136, 172, 0.44);
    box-shadow: 0 2px 4px 0 rgba(126, 136, 172, 0.44);
    border-radius: 10px;
    padding: 20px;
}

.step-content.active {
    display:block;
}

.step-title {
    font-weight: 700;
    font-family: Myriad Pro, Roboto, serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-description {
    color: #767e95;
    margin: 0 0 20px;
}

/*
* For demo styles 
*/
body {
  font-family:Roboto,serif;
  background-color:#eee;
}

.container {
  width:70%;
  margin:50px auto;
}