

/*step form navigation start*/

.inner-content .sf-content li {
    padding: 0;
}

.sf-steps {
    padding: 30px 0 32px;
    background-color: #eeeeee;
}
.sf-steps-content span {
    color: #717171;
}
.sf-steps-content {
    display: flex;
    counter-reset: step;
}
ul.sf-content, ul.sf-content li {
    padding: 0;
}
.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: #ffffff;
    color: #0c4da2;
    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; */
    border: 1px solid #0c4da2;
}

.sf-steps-content>div.sf-active:after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #0c4da2;
    top: -5px;
    cursor: pointer;
    color: #fff;
}

.sf-steps-content>div.sf-active,
.sf-steps-content>div.sf-active span{
    color: #0c4da2 !important  ;
}
.sf-steps-content>div:before {
    width: 100%;
    height: 4px;
    position: absolute;
    top: 18px;
    left: -50%;
    margin-left: 20px;
    content: '';
    background-color: #e6e4e4;
    /*border-left: 14px solid #3e3e3e;*/
    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: #0c4da2;
}
@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);
}

.alert {
    margin-bottom: 15px;
    border-radius: 4px;
}
.alert-success {
    border-left: 5px solid #155724;
}
.alert-warning {
    border-left: 5px solid #f0ad4e;
}
.alert-danger {
    border-left: 5px solid #ED1C24;
}
.alert-info {
    border-left: 5px solid #0c4da2;
}
.alert-danger {
    background-color: #f2dede;
    color: #ED1C24;
    border-color: #f2dede;
}

.alert span {
    font-size: 24px;
    font-weight: 800;
    color: #eee;
    line-height: 0;
    vertical-align: sub;
}

.stepsForm ul li:before {
    content: none;
}

span.input-group-text {
    color: #ed1c24;
    background-color: #FFE9EA;
    border-radius: 0 4px 4px 0;
    border: none;
}
select#residence_period_type {
    background-color: #FFE9EA;
    color: #ed1c24;
}
select#residence_period_type:focus {
    border-color: transparent !important;
}
span#residence_period-error {
    bottom: -33px;
}
form#documents-form label.error {
    bottom: -15px;
}

div#terms-conditions-text {
    max-height: 350px;
    overflow-y: scroll;
}