#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

#loadingScreen img{
    width: 16%;
    display: block;
    margin: 0 auto 2rem auto;
}

.progress-bar {
    display: block;
    width: 300px;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #8c8c8c;
    transition: width 0.2s ease;
}

.fadeupOut {
    animation: fadeupOut 0.5s ease-in-out;
}

@keyframes fadeupOut {
    0% {
        opacity: 1;
        transform: translateY(0);

    }

    100% {
        opacity: 0;
        transform: translateY(-10px);

    }

}

@media (max-width:991px) {
    #loadingScreen img{
        width: 30%;
    }
}

@media (max-width:767px) {
    #loadingScreen img{
        width: 50%;
    }
}
