/*
    TextProgress
*/

.textProgress {
    display: block;
    width:auto;
    height: 120px;
}

.tp
{
    float:left;
    position: absolute;
    white-space: nowrap;
    font-size:50px;
    color:lightgray;
}
.tp + .tp
{
    float:left;
    color: #b01112;
    width:0px;
    padding-left:30px;
    margin-left:-30px;
    overflow: hidden;
}
.tp .underline
{
    border-bottom:5px solid #b01112;
}
.tp .percent
{
    float:right;
    font-size:25px;
    display: block;
    margin-top:5px;
}
.tp .percent:after
{
    content:"%";
}
.tp.bar .underline
{
    display: block;
}
.tp.bar:first-of-type
{
    width:200px;
    height:20px;
}
