
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loader-logo {
    width: 150px;
    height: 150px;
    background-image: url('/images/default.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#loader-dots {
    display: flex;
    margin-top: 20px;
}

.loader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: red;
    margin: 0 5px;
    animation: dot-animation 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes dot-animation {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
