@charset "UTF-8";

.ch_process{
    height: 20px;  
    position: relative;
    padding: 0px;
    margin-bottom: 10px;
}

.ch_process ol {
    margin: 0;
    padding: 0;
    display: block;
    height: 100%;
    width: 99%;
    border-radius: 10px;
    background-color: #ddd;
    position: relative;
    list-style: none;
}

.ch_process ol li .stage {
    color: #fff;
    font-weight: 700;
}

.ch_process ol li span {
    right: -0.7em;
    display: block;
    text-align: center;
    padding-top: 1px;
}

.ch_process li
{
    float: left;
    margin: 0;
    padding: 0;
    text-align: right;
    width: 25%;
    position: relative;
    border-radius: 10px;
}

.ch_process li.active {
    font-weight:bold;
    height: 20px;
    background: #08c;
    -webkit-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.25);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.25);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, #08c 12px, #08c 24px);
    -webkit-animation: progress 3s infinite linear;
    -moz-animation: progress 3s infinite linear;
    -ms-animation: progress 3s infinite linear;
    -o-animation: progress 3s infinite linear;
    -webkit-animation: progress 3s infinite linear;
}

.ch_process ol li.active span.step {
    color: #000;
    border: 3px solid #08c;
}

.ch_process ol li .step {
    top: -0.3em;
    padding: .2em 0;
    border: 3px solid #ddd;
    z-index: 99;
    font-size: 1.5em;
    color: #ddd;
    width: 1.5em;
    font-weight: 700;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
}

.stage {
    color: #fff;
    font-weight: 700;
}