.progress {
    padding: 0px;
    margin: 16px 0;
    border-radius: 8px;
    height: 8px;
    background: #e5e9ec;
}
.progress-bar {
    height: 8px;
    border-radius: 8px;
    transition: 0.4s linear;
    transition-property: width, background-color;
}
.progress-move .progress-bar {
    width: 0%; 
    --key-width: 0%;
    background-color: var(--color-navy);
   
}

.animation {
    animation: progressAnimation 3s;
}
@keyframes progressAnimation {
    0% {
        width: 0%;
    } 
    100% {
        width: var(--key-width);
    }
}

.usage-breakdown-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.el-grant{
    padding: 16px;
    margin: 16px 8px;
    border-radius: 4px;
    background: #fff;
}