﻿.stepflow {
font-size: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 0 0 1em;
padding: 0;
}

.stepflow > li {
position: relative;
display: block;
width: auto;
margin: 0;
padding: 0;
list-style: none;
text-overflow: ellipsis;
color: #b0bec5;
-ms-flex: 1;
-moz-flex: 1;
-webkit-box-flex: 1;
flex: 1;
}

.stepflow > li .title {
font-weight: bold;
}

.stepflow > li .text {
display: block;
padding-right: 2.5em;
}

.stepflow > li .bubble {
display: block;
width: 20px;
height: 20px;
margin: 0 0 0.5em;
border-radius: 1000px;
background-color: #b0bec5;
}

.stepflow > li .bubble::after,
.stepflow > li .bubble::before {
position: absolute;
top: 9px;
display: block;
width: 100%;
height: 3px;
content: '';
background-color: #b0bec5;
}

.stepflow > li.completed,
.stepflow > li.completed .bubble {
color: #00acc1;
}

.stepflow > li.completed .bubble,
.stepflow > li.completed .bubble::after,
.stepflow > li.completed .bubble::before {
background-color: #4dd0e1;
}

.stepflow > li:last-child .bubble::after,
.stepflow > li:last-child .bubble::before {
width: 0%;
margin-right: 50%;
}

.stepflow > li.active,
.stepflow > li.active .bubble {
color: #f57c00;
}

.stepflow > li.active .bubble,
.stepflow > li.active .bubble::after,
.stepflow > li.active .bubble::before {
    background-color: #fb8c00;
}


.stepflow > li.active .bubble::after,
.stepflow > li.active .bubble::before {
    animation: blinkAnime 3s infinite normal;
    
}

@keyframes blinkAnime {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}