html,
body {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}

.centerUp {
    margin: 0;
    position: absolute;
    top: 35%;
    left: 50%;
    margin-right: -40%;
    transform: translate(-50%, -50%);
}

.centerDown {
    margin: 0;
    position: absolute;
    top: 85%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.centerLoadingBar {
    margin: 0;
    position: relative;
    /* top: 25%;
    left: 50%;
    margin-right: -50%;
    margin-top: 100%; */
    /* transform: translate(-50%, -50%); */
}


/* @media (min-width: 576px) {
    .centerLoadingBar {
        margin-top: 60%;
    }
}

@media (min-width: 992px) {
    .centerLoadingBar {
        margin-top: 40%;
    }
}

@media (min-width: 1200px) {
    .centerLoadingBar {
        margin-top: 35%;
    }
} */

.meter {
    width: 100%;
    border-radius: 2px;
    height: 4px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    margin-top: 20px;
}

.meter span {
    display: block;
    height: 100%;
}

.progress {
    background-color: #F37F26;
    animation: progressBar 500ms ease-in-out;
    animation-fill-mode: both;
}

@keyframes progressBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}