/** Progressbar class css*/
.progressbar {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 25px;
    position: relative;
    background-color: #EEEEEE;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,.1);
}

.proggress{
	height: 8px;
	width: 10px;
	background-color: #3498db;
}
.percentCount {
    float: right;
    margin-top: 8px;
    clear: both;
    color: #fff;
    line-height: 1.5;
    background: #000;
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 13px;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
}

.percentCount:after {
    content: '';
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #222;
    position: absolute;
    top: 5px;
    right: 8px;
    z-index: 6;
}