.woosub_loader_wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;

    &.woosubshowloader {
        display: flex !important;
    }
    .woosubloader {
        width: 20px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: #262626;
        box-shadow: 0 0 0 0 #0004;
        animation: woosubloaderanimation 1.5s infinite linear;
        position: relative;

        &:before,
        &:after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            box-shadow: 0 0 0 0 #0004;
            animation: inherit;
            animation-delay: -0.5s;
        }
        &:after {
            animation-delay: -1s;
        }
    }
}
@keyframes woosubloaderanimation {
    100% {
        box-shadow: 0 0 0 40px #0000
    }
}