﻿.loader-container {
    background-color: #3bb04a;
    width: 100%;
    height: 5px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    animation: fillUp 5s ease-in-out infinite;
}

.loader-bar {
    width: 0;
    height: 100%;
    background-color: #3bb04a; /* Cor da barra de carregamento */
}

@keyframes fillUp {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
