
.bx-sty-new{
    padding:0 10px;
}

.card-sty-new{
    border-radius:10px;
    box-shadow:none !important; 
    border:1px solid #c9c9c9;
    padding:10px;
}

track {
    position: relative;
    background-color: #ddd;
    height: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
    margin-top: 50px;
    
}

.track .step {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-top: -18px;
    text-align: center;
    position: relative;
    display:inline-block;
    
}

.track .step.active:before {
    background: #FF5722;
}

.track .step::before {
    height: 7px;
    position: absolute;
    content: "";
    width: 100%;
    left: 0px;
    top: 18px
}

.track .step.active .icon {
    background: #ee5435;
    color: #fff
}

.track .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    border-radius: 100%;
    background: #ddd
}

.track .step.active .text {
    font-weight: 400;
    color: #000
}

.track .text {
    display: block;
    margin-top: 7px
}

.btn-shw{
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-radius:10px;
    display: none;
}

/* MOBILE */
.mobile-track{
    display: none;
}

@media only screen and (max-device-width: 768px) {
    .track {
        display: none;
    }

    /* MOBILE */
    .mobile-track{
        display: block;
        margin-top: 20px;
        text-align: center;
    }

    .step-mobile{
        padding:5px;
    }

    .step-mobile .inside-step{
        width: 70%;
        padding: 10px 5px;
        border-radius:20px;
        background: #ededed;

    }

    .active-mob{
        color: #fff;
        background: #ee5435 !important;
    }

    .dot-mob{
        height:4px;
        width:4px;
        margin:4px;
        border-radius:10px;
        background: #dbdbdb;
    }

    .active-dot{
        height:8px;
        width:8px;
        background: #ee5435 !important;
    }

    .dot-mob-sm{
        height:4px;
        width:4px;
        border-radius:10px;
        background: #dbdbdb; 
        margin:4px;
    }
    
}

@media only screen and (max-device-width: 450px) {
    .step-mobile .inside-step{
        width: 80%;
    }
}

@media only screen and (max-device-width: 400px) {
    .step-mobile .inside-step{
        width: 90%;
    }
}