

#login-user-result-box .modal-body{
    padding-top: 0px;
    padding-bottom: 30px;
    position: relative;
}
#login-user-result-box .close-icon{
    position: absolute;
    top: 10px;
    right: 10px;
}
#login-user-result-box .close-icon i{
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
}
#login-user-result-box .close-icon i:hover{
    opacity: 1;
}
#login-user-result-box .head{
    text-align: center;
    background-color: #ca57d2;
    padding: 10px 20px;

    font-size: 16px;
    color: white;
    font-weight: bold;

    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
#login-user-result-box .head-icon-cont{
    margin-top: 25px;
}
#login-user-result-box .head-icon{
    background-color: #f3f0ff;
    text-align: center;
    padding: 15px;

    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
#login-user-result-box .head-icon i{
    font-size: 79px;
    color: #7c57fc;
}

#login-user-result-box .main-head{
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
#login-user-result-box .head2{
    color: #838383;
    font-size: 14px;
    margin-top: 25px;
    text-align: center;
}
#login-user-result-box .head2 b{
    color: black;
}
#login-user-result-box .steps{
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    position: relative;
}
#login-user-result-box .steps > div{
    width: 155px;
    max-width: 155px;
    flex-grow: 0;
    flex-shrink: 0;

    text-align: center;
    background-color: #fbfaff;
    border-radius: 10px;
    padding: 5px 7px;
    position: relative;
    z-index: 1000;
}
#login-user-result-box .steps > div i{
    display: block;
    font-style: normal;
    color: #efccf1;
    font-weight: bold;
    font-size: 22px;
    position: absolute;
    top: -16px;
    left: 50%;
    margin-left: -6px;
}
#login-user-result-box .steps > div span{
    display: block;
    font-size: 13px;
    color: #dddddd;
    margin-top: 7px;
}
#login-user-result-box .steps > div div{
    font-size: 16px;
    font-weight: bold;
    color: #b2b2b2;
}
#login-user-result-box .steps > div.active{
    background-color: #f3f0ff;
}
#login-user-result-box .steps > div.active i{
    color: #ca57d2;
}
#login-user-result-box .steps > div.active span{
    color: #8f8f8f;
}
#login-user-result-box .steps > div.active div{
    color: black;
}
#login-user-result-box .steps:after{
    content: "";
    position: absolute;
    height: 0px;
    width: 170px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #e2e2e2;
    display: block;
    left: 205px;
    top: 50%;
}
#login-user-result-box .steps:before{
    content: "";
    position: absolute;
    height: 0px;
    width: 170px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #e2e2e2;
    display: block;
    right: 205px;
    top: 50%;
}
#login-user-result-box .button-cont{
    text-align: center;
    margin-top: 30px;
}
#login-user-result-box .button-cont a{
    background-color: #7c57fc;
    border-color: #7c57fc;
    color: white;
}
#login-user-result-box .button-cont a:hover{
    background-color: #6540e5;
    border-color: #6540e5;
}


@media (max-width: 991px) {
    #login-user-result-box .steps:after{
        left: 150px;
    }
    #login-user-result-box .steps:before{
        right: 150px;
    }
}
@media (max-width: 600px) {
    #login-user-result-box .steps{
        flex-direction: column;
        align-items: center;
    }
    #login-user-result-box .steps > div.step1,
    #login-user-result-box .steps > div.step2{
        margin-bottom: 30px;
    }
    #login-user-result-box .steps:after{
        height: auto;
        top: 0px;
        bottom: 0px;
        width: 0px;

        border-right: 1px solid #f5f5f5;
        border-left: 1px solid #e2e2e2;
        left: 50%;
    }
    #login-user-result-box .steps:before{
        display: none;
    }
}























