.Loading {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.Loading.hidden {
    display: none;
}

.loadingBar {
    width: 415px;
    height: 2px;
    margin-top: 25px;
    background-color: gray;
}

.loadingBarFull {
    height: 100%;
    background-color: white;
}

.progressText {
    color: white;
    font-size: 17px;
    margin-top: 10px;
}

.logo {}

@media screen and (max-width: 570px) {
    .progressText {
        font-size: 10px;
        margin-top: 7px;
    }
    .loadingBar {
        width: 265px;
        margin-top: 15px;
        height: 1px;
    }
    .logo {
        width: 150px;
    }
}

@media screen and (max-width: 320px) {
    .progressText {
        font-size: 10px;
        margin-top: 7px;
    }
    .loadingBar {
        width: 220px;
        margin-top: 10px;
    }
    .logo {
        width: 110px;
    }
}