.loadingContainer {
    height: 100%;
    width: 100%;
    background-color: hsla(0, 0%, 100%, 0.999);
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* z-index: 9999;
    display: flex; */
    display: none;
}

.loadingContainer .LoaderBars {
    width: 90px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loadingContainer .LoaderBars .Bar:first-child {
    background-color: #f26948;
    animation: loadbars 0.9s ease-in-out 0s infinite;
    -webkit-animation: loadbars 1s ease-in-out 0s infinite;
}

.loadingContainer .LoaderBars .Bar:nth-child(2) {
    background-color: #f4876c;
    animation: loadbars 0.9s ease-in-out -0.2s infinite;
    -webkit-animation: loadbars 1s ease-in-out -0.2s infinite;
}

.loadingContainer .LoaderBars .Bar:nth-child(3) {
    background-color: #f9c3b5;
    animation: loadbars 0.9s ease-in-out -0.4s infinite;
    -webkit-animation: loadbars 1s ease-in-out -0.4s infinite;
}

.loadingContainer img {
    margin-bottom: 20px;
    height: 80px;
    width: 300px;
}
.loadingContainer h4 {
    text-align: center;
}

.loadingContainer .LoaderBars .Bar {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    box-shadow: 0 100px 20px rgba(0, 0, 0, 0.2);
}

@keyframes loadbars {
    0% {
        height: 10px;
        margin-top: 25px;
    }
    50% {
        height: 50px;
        margin-top: 0;
    }
    100% {
        height: 10px;
        margin-top: 25px;
    }
}
