html,
body {
    height: fit-content;
    height: 100%;
    width: 100%;
    margin: 0rem;
    padding: 0rem;
    box-sizing: border-box;
}

#loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    font-family: 'Quicksand';
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    color: #fdfdfd;
    background-color: #202338;
    padding: 2rem;
    /* border-radius: 6px; */
    height: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #303569;
    height: 0.6rem;
    width: 8rem;
    margin: 0 auto;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

#loader-shuttle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background-color: #fdfdfd;
    width: 0;
    animation: infiniteLoad 1.5s linear infinite;
}

@keyframes infiniteLoad {
    0% {
        left: 0%;
        right: 100%;
        width: 0%;
    }

    10% {
        left: 0%;
        right: 75%;
        width: 25%;
    }

    90% {
        right: 0%;
        left: 75%;
        width: 25%;
    }

    100% {
        left: 100%;
        right: 0%;
        width: 0%;
    }
}