﻿/* Div loader End */

/*----Div Wise Class---*/
.loader-for-create {
    display: none;
    justify-content: center;
    align-items: center;
    height: 5vh;
}

    .loader-for-create.load {
        display: flex;
    }

.loader_rr {
    display: flex;
    gap: 8px; 
}

    .loader_rr span {
        width: 20px;
        height: 20px;
        background-color: #dd1414;
        border-radius: 50%;
        animation: blink 1.5s infinite ease-in-out;
    }

        .loader_rr span:nth-child(1) {
            animation-delay: 0s;
        }

        .loader_rr span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader_rr span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes blink {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Div loader End */
