/* Styles for the body element  */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: var(--bg-color, #fff);
    overscroll-behavior-x: none;
}


.progress-container {
    width: 128px;
    height: 2px;
    background-color: var(--progress-bg, #F5F5F5);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: opacity 0.5s ease;
}

.progress-bar {
    position: absolute;
    height: 100%;
    background-color: var(--progress-bar, #4945FF);
    width: 30%;
    animation: loader 1.5s infinite ease-in-out;
}

@keyframes loader {
    0% {
        left: -30%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -30%;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn .5s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }


    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: var(--bg-color, #ffffff);
}

.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 128px;
    height: auto;
    filter: var(--logo-filter, invert(0));
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flutter-loader {
    display: none;
}