/* .wizard-conatiner
{
    gap: 100px;
    
} */
@media (max-width:767px){
.wizard-conatiner{
    gap: 10px;
    
}
}
/* .wiz-step
{
    color: #909090;
}
.wiz-step.active
{
    color:#000000;
} */

.wiz-step .wiz-count
{
    color:#586894;
    background-color: #FFF;
    width: 38px;
    height: 38px;
    display: inline-flex;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    border: 1px solid #586894;
}
.wiz-step.active .wiz-count
{
    color:#8E3FFF;
    background-color: #FFF;
    width: 38px;
    height: 38px;
    display: inline-flex;
    border-radius: 30px;
    justify-content: center;
    align-items: center; 
    /* background-image: url(../Images/Number-round-2.svg);
    background-size: 38px;
    background-position: 57%;
    background-repeat: no-repeat; */
    /* position: absolute;
    left: 0; */
    border: 1px solid #8E3FFF;
}

.wiz-step.active.completed .wiz-count
{
    color: transparent;
    background-color: #28C83C;
    width: 38px;
    height: 38px;
    display: inline-flex;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    background-image: url(../Images/wizard-completed-tick.svg);
    background-size: 18px;
    background-position: 57%;
    background-repeat: no-repeat;
    border: 1px solid #28C83C;
}

.wiz-step.active.completed .wiz-text{
    color: #28C83C;
   
}
.wiz-step.active .wiz-text{
    color: #8E3FFF;
   
}
.wiz-step .wiz-text{
    color: #586894;
   
}
.wiz-step.active.completed .wiz-count .wiz-count-number {
    display:none !important;
}
.wizard-conatiner li.wiz-step.active::after{
    border: 1px solid #3A4974 !important;
  
}

@media screen and (min-width:1280px) {
    .wizard-after:after
    {
        content: "";
        width: 15%;
        border-bottom: 1px solid #3A4974;
        position: absolute;
        height: 1px;
        top: 34%;
        /* margin-left: 6px; */
    }   
    .wizard-after:last-child:after
    {
        /* content: ""; */
        display: none;
    }   
}
@media screen and (min-width:768px) and (max-width:1279px) {
    .wizard-after::after
    {
        content: "";
        width: 15%;
        border-bottom: 1px solid #3A4974;
        position: absolute;
        height: 1px;
        top: 39%;
        margin-left: 15px;
    }   
}

@media screen and (min-width:350px) and (max-width:767px) {
    .wizard-after::after
    {
        content: "";
        width: 11%;
        border-bottom: 1px solid #3A4974;
        position: absolute;
        height: 1px;
        top: 47%;
        margin-left: 53px;
    }   
}


