/* --------------------------------------
            START LOADER
-------------------------------------- */
div.container_loader {
    position: relative;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.loader {
    display: inline-grid;
    width: 200px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-conic-gradient(from 30deg, #f3f4f6 0 60deg, #821fa0 0 120deg);
    animation: l10-0 2s linear infinite;
}

div.loader:before,
div.loader:after {
    content:"";
    grid-area: 1/1;
    border-radius: 50%;
    background: inherit;
    transform: rotate(0turn) translate(100%,0);
    animation: l10-1 3s infinite ease-in-out;
}

div.loader:after {
    animation-delay: -1.5s;
}

@keyframes l10-0 {to{rotate: -1turn}}
@keyframes l10-1 {to{transform: rotate(1turn) translate(100%,0) rotate(1turn)}}

@media only screen and (max-width: 1440px) {
    
}

@media only screen and (max-width: 1200px) {
    
}

@media only screen and (max-width: 1024px) {
    div.loader {
        width: 150px;
    }
}

@media only screen and (max-width: 992px) {
    
}

@media only screen and (max-width: 768px) {
    div.container_loader {
        height: 100%;
        position: absolute;
    }

    div.loader {
        width: 100px;
    }
}

@media only screen and (max-width: 468px) {
    
}
/* --------------------------------------
            END LOADER
-------------------------------------- */