.container-general-loader {
    position: fixed;
    width: 100vw;
    height: var(--heightPage);
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 70000;
    pointer-events: none!important;
}

.general-loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
}
.general-loader::after,
.general-loader::before {
    content: '';
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #75F461;
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}
.general-loader::after {
    animation-delay: 1s;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}