.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #1B1B1B
}

.progress-bar__container {
    width: 94%;
    height: 0.3rem;
    left: 3%;
    border-radius: .20rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    will-change: transform;
    box-shadow: 0 0 2px #C50010;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #C50010;
    top: 0;
    bottom: 0;
    left: -100%;
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1B1B1B;
    font-family: sans-serif;
}

.progress-bar__text {
    display: none;
}

body {
    background: #1B1B1B; 
}