.loader-container {
    justify-self: center;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: var(--gap-small);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 6px;
    min-width: 70px;
}

.koodi-loader {
    width: 90px;
    height: 90px;
}

#koodi-loader {
    stroke: #FFF;
    stroke-width: 0.03em;
    fill-opacity: 0;
    stroke-dasharray: 100;
    animation: koodiLoader 6s infinite ease-in-out;
}

@keyframes koodiLoader {
    0% {
        stroke-dashoffset: 100;
    }
    45% {
        stroke-dashoffset: 0;
    }
    55% {
        stroke-dashoffset: 0;
    }
    90% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 100;
    }
}

.loading-word {
    color: #FFF;
    font-size: 1rem;
    font-weight: var(--font-weight-light);
    animation: loadingWord 6s infinite ease-in-out;
}

@keyframes loadingWord {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}