.progress-bar {
    background-color: rgb(245, 244, 244);
        height: 13px;
       text-align: right;
           
   
}
.prgressunit
{
        position: relative;
    width: 100%;
    top: 4px;
    left: 0;
}

.progress-bar span {
    display: inline-block;
    height: 100%;
    
    transition: width 1s ease-in-out;    
}
.blue span {
    background-color: #fb9623;   
}
.thecard:hover .blue span{
    background-color: #9FD14F;
}


.stripes span {
   /* background-size: 30px 30px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                        transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                        transparent 75%, transparent);            
    
    animation: animate-stripes 3s linear infinite;     */        
}

@keyframes animate-stripes {
    0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}
