

.progress-bar-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.progress-bar-container .progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.progress-bar-container .progress-wrap .progress-name {
    color: var(--common-foreground);
    font-size: 18px;
    font-weight: 500;
}
.progress-bar-container .progress-wrap .sd-progress-bar {
    height: 20px;
    background-color: #32c8967a;
    border-radius: 8px;
}
.progress-bar-container .progress-wrap .progress-per {
    height: 20px;
    background: #18644a;
    border-radius: 8px;
    width: 0;
    transition: 1s linear;
    position: relative;
    width: 20%;
}
.progress-bar-container .progress-wrap .progress-per:before {
    content: attr(per);
    position: absolute;
    padding: 3px 6px;
    background-color: #18644a;
    color: #fff;
    font-size: 10px;
    border-radius: 4px;
    top: -30px;
    right: 0;
    transform: translateX(50%);
}
.progress-bar-container .progress-wrap .progress-per:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #18644a;
    top: -10px;
    right: 0;
    transform: translateX(50%) rotate(45deg);
    border-radius: 0px;
}