.steps-content .step-content{
    display: none
}
.steps-content .step-content.active{
    display: inline-block
}
.step-bar-wrapper{
    font-size:0;
    text-align:center;
    width:100%;
    position:relative;
    z-index:10;
    border-radius:10px
}
 
.step-wrapper{
    padding:0;
    margin:0;
    font-size:0;
    display:flex;
    align-items: center;
    justify-content: center;
    counter-reset: step;
    tr
}
.step-wrapper li{
    width:120px;
}
.step-wrapper li > a:before {
    content:'';
    width: 36px;
    height: 36px;
    display: block;
    font-size: 16px;
    font-weight:700;
    background-color: transparent;
    border-radius: 100%;
    z-index:1;
    position:absolute;
    text-align:center;
}
.step-wrapper li > a:after {
    content: counter(step);
    counter-increment: step;
    width: 36px;
    line-height: 36px;
    display: block;
    font-size: 16px;
    color:#bbb;
    font-weight:700;
    background-color: transparent;
    border-radius: 100%;
    z-index:1;
    position:absolute;
    text-align:center;
}
.step-wrapper li.completed > a:after {
    content:'\2713';
    color: currentColor;
}
.step-wrapper li:first-of-type a:before,
.step-wrapper li:first-of-type a:after{
    margin-left:-42px;
}
.step-wrapper li:last-of-type > a:before,
.step-wrapper li:last-of-type > a:after{
    margin-left:42px;
}
.step-wrapper li.completed > a:before{
    background: #fff;
    color:#c4c4c4;
    -webkit-box-shadow:0px 2px 4px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.15);
}
.step-wrapper li.active > a:before{
    background-color: currentColor;
    -webkit-box-shadow:0px 0px 0px 0px rgba(0,0,0,0.15), inset 0px 0px 0px 0px rgba(0,0,0,0.15), 0px 0px 9px 0px currentColor;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247,0.5)), to(rgba(231, 231, 231,.01)));
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247,0.5)), to(rgba(231, 231, 231,.01)));
    background-image: -webkit-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -moz-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -ms-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -o-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
}
.step-wrapper li.active > a:after{
    color:#fff;
}
.step-wrapper li span{
    display:block;
    width:100%;
    text-align:center;
    margin-bottom:5px;
}
.step-wrapper li span a{
    font-size: 14px;
    font-weight:700;
}
.step-wrapper li:not(.active):not(.completed) span a{
    color: #0d69a7;
}
.step-wrapper li > a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow:hidden;
    height:48px
}
.step-wrapper li:first-of-type > a{
    padding-left: 40px;
}
.step-wrapper li:last-of-type > a{
    padding-right:40px;
}
.step-wrapper li > a svg{
    height: 48px;
    min-height: 48px;
    width: auto;
    position: absolute;
    display: inline-block;
    stroke-width: 0;
    transition:all 300ms ease-in-out;
}
.step-wrapper li > a svg{
    filter:url(#inset-shadow);
}
/* a.button{
    margin:50px 15px;
    display:inline-block;
    border-radius:4px;
    width:100px;
    height:50px;
    text-align:center;
    line-height:50px;
    background-color: currentColor;
    -webkit-box-shadow:0px 2px 4px 0px rgba(0,0,0,0.15), inset 0px 0px 0px 2px rgba(0,0,0,0.15), 0px 0px 21px 0px currentColor;
    box-shadow:0px 2px 4px 0px rgba(0,0,0,0.15), inset 0px 0px 0px 2px rgba(0,0,0,0.15), 0px 0px 21px 0px currentColor;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247,0.5)), to(rgba(231, 231, 231,.01)));
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247,0.5)), to(rgba(231, 231, 231,.01)));
    background-image: -webkit-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -moz-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -ms-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -o-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
}
a.button span{color:#fff;font-size:16px;} */
