﻿@keyframes spinner-line-fade-more {
    0%, 100% {
        opacity: 0; /* minimum opacity */
    }

    1% {
        opacity: 1;
    }
}

@keyframes spinner-line-fade-quick {
    0%, 39%, 100% {
        opacity: 0.25; /* minimum opacity */
    }

    40% {
        opacity: 1;
    }
}

@keyframes spinner-line-fade-default {
    0%, 100% {
        opacity: 0.22; /* minimum opacity */
    }

    1% {
        opacity: 1;
    }
}

@keyframes spinner-line-shrink {
    0%, 25%, 100% {
        /* minimum scale and opacity */
        transform: scale(0.5);
        opacity: 0.25;
    }

    26% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes opacity-75-25-0-16 {
    0% {
        opacity: 0.25;
    }

     0.01% {
        opacity: 0.25;
    }

     0.02% {
        opacity: 1;
    }

     75.01% {
        opacity: 0.25;
    }

     100% {
        opacity: 0.25;
    }
}

@keyframes OgAI_SpinnerAni {
    0%, 25%, 100% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    26% {
        transform: scale(1);
        opacity: 1;
    }
}

.spinnerAI {
    position: absolute !important;
    z-index: 2000000000 !important;
    display: contents;
}

.spinnerAI_Container {
    width: 100%;
    position: relative;
    height: 12px;
    display: inline-flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    left: 1px;
}