.loading {
    position: relative;
    opacity: 0.8;
    pointer-events: none;
    min-height: 150px;

}

.loading::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: black;
    transition: all 0.5s;
    animation: circleRotate 6s both infinite;
    transform-origin: 0 250% 0;
}

.loading::before {}

@keyframes circleRotate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(1440deg)
    }
}

@keyframes loading {
    /* 0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    } */
}