/*Loader*/

:root {
    --body-color: hsl(var(--hue-color), 28%, 12%);
}

body {
    background: unset;
    background-color: var(--body-color);
    transition: all 1s ease-in;
}

.lds-dual-ring {
    display: grid;
    align-content: center;
    justify-items: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: all 1s ease-in;
}

#loader_txt {
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
    background: linear-gradient(70deg, #ffffff, #5c5c5c99);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: AnimationName 4s ease infinite;
    animation: AnimationName 4s ease infinite;
    transition: all 1s ease-in;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

.lds-dual-ring:after {
    content: " ";
    display: inline-block;
    width: 84px;
    height: 84px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid rgb(90, 90, 90);
    border-color: rgb(90, 90, 90) transparent rgb(90, 90, 90) transparent;
    animation: lds-dual-ring 0.6s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*Loader. Fin.*/
