/* General Reset */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.loader-body {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    /* background-color: red; */
    z-index: 10000;
    display: grid;
    place-items: center;
    place-content: center;
}

.loader_div {
    background-color: #0005;
    padding: 70px 100px;
    border-radius: .3rem;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

/* Dot Loader Styles */
.dot-loader {
    display: flex;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

/* Individual Dot Delays */
.dot:nth-child(1) {
    animation-delay: 0s;
}
.dot:nth-child(2) {
    animation-delay: 0.3s;
}
.dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
