
/* preloader-style.css */
.loadifypreloader-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
}


/*dot preloader */

.loadifypreloader-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.dot {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    background-color: #333;
    border-radius: 100%;
    animation: scaleDot 1s infinite ease-in-out;
}

@keyframes scaleDot {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
}

/*dot scale preloader*/
.dotscalepreloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.dotscale {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #ff6f61;
    border-radius: 100%;
    animation: dotscaleanim 1.2s infinite ease-in-out;
}

.dotscale:nth-child(2) {
    animation-delay: 0.2s;
}

.dotscale:nth-child(3) {
    animation-delay: 0.4s;
}

.dotscale:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes dotscaleanim {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(2);
        opacity: 1;
    }
}