﻿.section-box {
    -webkit-box-shadow: 0px 0px 191px 0px rgb(0 0 0 / 6%);
    box-shadow: 0px 0px 191px 0px rgb(0 0 0 / 6%);
    background-color: rgba(255, 255, 255, 0.95);
}

/**********************
 registeration-steps
***********************/

.title-stage {
    background-color: #005596;
    color: #ffffff;
    font-weight: bold;
}

#progressbar {
    overflow: hidden;
    color: #455A64;
    padding-left: 0px;
    counter-reset: stage-no;
}

    #progressbar li {
        list-style-type: none;
        width: 100%;
        position: relative;
        text-align: center;
        counter-increment: stage-no;
    }

        #progressbar li div {
            margin-top: 10px;
        }

        #progressbar li::before {
            content: counter(stage-no);
        }

    #progressbar li:before {
        width: 40px;
        height: 40px;
        line-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #455A64;
        border-radius: 50%;
        margin: auto;
        color: #fff;
        font-weight: bold;
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: #455A64;
        position: absolute;
        left: 0;
        top: 21px;
        z-index: -1
    }

    #progressbar li:last-child:after {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%
    }

    #progressbar li:first-child:after {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        left: 50%
    }

    #progressbar li:last-child:after {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px
    }

    #progressbar li:first-child:after {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px
    }

    #progressbar li.active:before {
        background: #ffc600;
        color: #455a64;
        border: 3px solid #455a64;
    }

    #progressbar li.active div {
        font-weight: bold;
        color: #005596;
    }

tr.row-head {
    background-color: #f9f9f9;
    color: #455a64;
}

@media (min-width: 992px) {
    .section-box {
        border: 1px solid #ced4da;
    }
}
