.loadingLayout {
    text-align: center;
    margin: 0 auto;
    width: 250px;
    padding: 150px 50px;
}

/* Progressbar */

.meter {
    height: 5px;
    position: relative;
    background: #f3efe6;
    overflow: hidden;
}

.meter span {
    display: block;
    height: 100%;
}

.progressAnimated {
    background-color: #218414;
    animation: progressBar 2s ease-in-out;
    animation-fill-mode: both;
}

@keyframes progressBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}