.benorganic-loader {
    display: none;
}

.benorganic-loader.active {
    position: fixed;
    background: var(--white);
    width: 100%;
    height: 100%;
    z-index: 2000;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benorganic-loader .dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    animation: slide 1s infinite;
}

@keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

.benorganic-loader .dot:nth-child(1) {
    animation-delay: 0.1s;
    background: #79d1d6;
}

.benorganic-loader .dot:nth-child(2) {
    animation-delay: 0.2s;
    background: #5ec6ce;
}

.benorganic-loader .dot:nth-child(3) {
    animation-delay: 0.3s;
    background: #90d3a6;
}

.benorganic-loader .dot:nth-child(4) {
    animation-delay: 0.4s;
    background: #b8c800;
}

.benorganic-loader .dot:nth-child(5) {
    animation-delay: 0.5s;
    background: #7fba00;
}