#progress-bar {
    width: 37.5vh;
    position: absolute;
    bottom: 12vh;
    border-radius: 20px;
}

#unity-progress-bar-empty {
    height: 3vh;
    margin-top: 1.4vh;
    text-align: left;
    padding: 3px;
    border-radius: 100px;
    background-color: white;
    transform: scale(0.85);
}

#progress-bar-full-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 100px;
}

#unity-progress-bar-full {
    width: 100%;
    height: 100%;
    background-image: url(bar.png);
    /* background-size: 100% 100%; */
    background-size: contain;
    background-repeat: repeat-x;
    background-position: left center;
    /* Smooth reveal without scaling: slide under a clipped container */
    transform: translateX(-100%);
    will-change: transform;
}

.progress-bar__title {
    font-weight: 500;
    font-family: Inter;
    font-size: 2.2vh;
    display: flex;
    justify-content: center;
    color: white;
}

.progress-bar__dots {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9vh;
    right: 0;
}

.progress-bar__text-container {
    position: relative;
}
