﻿

#processViewer {
    /*width: 75%;*/
    position: relative;
    margin: auto
}

    #processViewer #processViewerInner {
        /*width: 80%;*/
        position: relative;
        margin: 20px auto;
    }


    #processViewer ul {
        display: flex;
        list-style: none;
        margin: 0px;
        padding-inline-start: 0;
        /*height:200px;*/
        /*border:groove;*/
    }

    #processViewer li {
        float: left;
        text-align: center;
        position: relative;
        margin: 0;
        /*height:100%;*/
        /*border:inset;*/
    }

        #processViewer li .proc-step-notlast {
            background: none !important;
        }

.proc-inactive circle {
    fill: #666666;
    stroke: #666666;
    stroke-width: 4;
}

.proc-step-done circle {
    stroke: green;
    fill: url(#check);
    stroke-width: 4;
}

.proc-step-future circle {
    fill: #666666;
    stroke: #666666;
    stroke-width: 4;
}
.proc-step-current circle {
    fill: darkblue;
    stroke: green;
    stroke-width: 4;
}

#processViewer li span {
    /*position:relative;*/
    display: block;
    text-transform: uppercase;
    text-align: center;
    width: 50px;
    font-size: xx-small;
    font-weight: bold;
    /*border:dotted;*/
    /*width:100%*/
}

#processViewer li svg {
    position: relative;
    display: inline;
    width: 100%;
    height: 60px;
    text-transform: uppercase;
    text-align: center;
    z-index: 10;
    background-color: #1B64B1;
}

#processViewer #processViewerLine {
    position: absolute;
    display: inline;
    width: 92%;
    height: 5px;
    top: 22px;
    left: 2.5%;
    background-color: darkblue;
}
