﻿
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1000;
}

.loading {
    font-size: 20px;
    text-align: center;
    color: #FFF;
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
}


.progress-bar__mainContainer {
    text-align: center;
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 0;
    width: 80%;
}

.progress-bar__container {
    width: 80%;
    height: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    will-change: transform;
    box-shadow: 0 0 5px #b6ff00;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #b6ff00;
    top: 0;
    bottom: 0;
    left: -100%;
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
}

.progress-bar__text {
    display: none;
}
