/* This style CSS used  */

@import "fonts.googleapis.css";

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap'); */

.loader-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.loader {
    margin: 20px;
    position: relative;
}

/* Loader 2: Bouncing Dots */
.loader2 {
    display: flex;
    justify-content: space-between;
    width: 60px;
}

.loader2 div {
    width: 15px;
    height: 15px;
    background-color: #3498db;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
}

.loader2 div:nth-child(2) {
    animation-delay: -0.3s;
}

.loader2 div:nth-child(3) {
    animation-delay: -0.6s;
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    pointer-events: all;
}

.loader-overlay.show {
    display: flex;
}
