/* cellgo progress bar */
.cg-progress-bar-container {
    gap: var(--spacing-3);
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cg-progress-bar {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    height: 13px;
    width: 100%;
}

.cg-progress {
    white-space: nowrap;
    overflow: hidden;
    background-color: var(--color-progress-bar-bg);
    border-radius: var(--border-radius-lg);
    height: 100%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cg-progress-info {
    height: fit-content;
}

.cg-progress-bar-thin, .cg-progress-thin {
    height: 0.5rem;
}
