/*WIZARD*/

.wizard {
    margin:2rem 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8 0px;    
}

.wizard>div{
    display: inline-grid;
    justify-items: center;
}

.check-off{
    width: 52px;
    height: 52px;
    border: 3px solid #DFE3EB;
    background: #F5F5F5;
    border-radius: 50%;
}

.check-off::before{
    content: '';
    display: block;
    position: relative;
    width: 170px!important;
    height: 3px;
    background: #DFE3EB;
    top: 24px;
    left: 40px;
    z-index: -1;
}

.wizard>div:last-child .check-off::before {
    display: none;
}

.check-on{
    position: relative;
    border: 0!important;
    background: -moz-linear-gradient(top, rgba(4,12,29,1) 23%, rgba(35,61,133,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(23%, rgba(4,12,29,1)), color-stop(100%, rgba(35,61,133,1)));
    background: -webkit-linear-gradient(top, rgba(4,12,29,1) 23%, rgba(35,61,133,1) 100%);
    background: -o-linear-gradient(top, rgba(4,12,29,1) 23%, rgba(35,61,133,1) 100%);
    background: -ms-linear-gradient(top, rgba(4,12,29,1) 23%, rgba(35,61,133,1) 100%);
    background: linear-gradient(to bottom, rgba(4,12,29,1) 23%, rgba(35,61,133,1) 100%);
}

.check-on::after {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f00c";
    position: absolute;
    color: #fff;
    font-size: 18px;
    left: 17px;
    top: 15px;
}

.check-on::before {
    background: #0E2362;
    top: 26px;
}

.step-text {
    color: #343434;
    margin-top: 2rem;
    text-align: center;
    width: 150px;
}

@media (max-width: 1200px){
    .check-off::before{
        width: 140px!important;
    }
}

@media (max-width: 991px){
    .check-off::before{
        width: 100px!important;
    }
}

@media (max-width: 767px){
    .check-off::before{
        width: 60px!important;
    }
}