.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-gambar {
    width: 100px;
    height: 100px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }

    
}
/** bunder bunder */

.loading {

    display: flex;

    justify-content: space-between;

    width: 100px;
    padding-left: 15px;

}


.circle {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background-color: #333;

    animation: loading 1s infinite;

}


.circle:nth-child(1) {

    animation-delay: 0s;

}


.circle:nth-child(2) {

    animation-delay: 0.2s;

}


.circle:nth-child(3) {

    animation-delay: 0.4s;

}


@keyframes loading {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.2);

    }

    100% {

        transform: scale(1);

    }

}