.glidy--progress-bar {
    width: 100%;
    overflow: hidden;
}

/* Style One */
.glidy--progress-bar.style-1 .progress-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}

.glidy--progress-bar.style-1 .progress-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.glidy--progress-bar.style-1 .progress-percentage {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.glidy--progress-bar.style-1 .progress-track {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.glidy--progress-bar.style-1 .progress-fill {
    height: 100%;
    width: 0%;
    background-color: #1a1a1a;
    border-radius: 10px;
}

/* Style Two */
.glidy--progress-bar.style-2 .progress-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 62px;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    box-sizing: border-box;
}

.glidy--progress-bar.style-2 .progress-fill {
    position: relative;
    height: 100%;
    width: 0%;
    background-color: #111111;
    border-radius: 100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
}

.glidy--progress-bar.style-2 .progress-fill .progress-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-left: 20px;
}

.glidy--progress-bar.style-2 .progress-percentage {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}