﻿/* HTML: <div class="loader"></div> */
.itemLoader{
    position:relative;
    /*overflow:hidden;*/
    border-radius:0 !important;
}
    .itemLoader::before {
        content: "";
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
        position: absolute;
        /*background: #00000029;*/
    }

    .itemLoader::after {
        content: "";
        position: absolute;
        width: 6%;
        aspect-ratio: 1;
        top: 25px !important;
        right: 80% !important;
        transform: translate(-59%, -50%);
        inset: -5px;
        border-radius: 50%;
        border: 3px solid #000000;
        animation: l18 0.2s infinite linear;
    }

@keyframes l18 {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0 )
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0 )
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0 )
    }
}

/* HTML: <div class="loader"></div> */

/*.loader1 {
    color: #000;
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    transform: translateX(-38px);
    animation: l21 .5s infinite alternate linear;
}

@keyframes l21 {
    50% {
        box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px
    }

    100% {
        box-shadow: 19px 0 0 0, 38px 0 0 3px, 57px 0 0 7px
    }
}*/
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.loader1 {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, orange 94%, #0000) top / 8px 8px no-repeat, conic-gradient(#0000 30%, orange);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
}

@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}