/*step form navigation start*/

.inner-content .sf-content li {
    padding: 0;
}

.sf-steps {
    padding: 30px 0 32px;
    background-color: #eeeeee;
}

.sf-steps-content {
    display: flex;
    counter-reset: step;
}

.sf-steps-content>div {
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding-top: 50px;
    z-index: 1;
}


.sf-steps-content>div:after {
    content: counter(step);
    counter-increment: step;
    display: block;
    height: 40px;
    width: 40px;
    margin: 0 auto 10px auto;
    background-color: #3e3e3e;
    color: #fff;
    line-height: 40px;
    font-size: 16px;
    border-radius: 50%;
    font-weight: bold;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /*cursor: pointer;*/
}

.sf-steps-content>div.sf-active:after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #ED1C24;
    top: -5px;
    cursor: pointer;
}

.sf-steps-content>div.sf-active {
    color: #ED1C24;
}

.sf-steps-content>div:before {
    width: 100%;
    height: 4px;
    position: absolute;
    top: 18px;
    left: -50%;
    margin-left: 20px;
    content: '';
    background-color: #e6e4e4;
    z-index: -11;
}

.sf-steps-content>div:first-child:before {
    content: none;
}


.sf-steps-content>div.sf-active+div:before {
    margin-left: 25px;
}

.sf-steps-content>div.sf-active:before {
    background-color: #ED1C24;
}
@media(max-width:768px){
    .sf-steps-content{
        flex-wrap:wrap;
        justify-content: center;

    }
    .sf-steps-content>div{
        width:33.33%;
        margin-bottom: 15px;
    }
    .sf-steps-content>div:before{
        content:none;
    }
}

/*step form navigation end*/

/* for invalid token expire message */

.invalid-token-expire-message {
    padding: 30px 0;
    font-size: 14px;
    text-align: center;
}

.invalid-token-expire-message a {
    color: rgb(228, 49, 52);
}