.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.2);*/
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.dots-wave {
    display: flex;
}

.dot {
    width: 15px;
    height: 15px;
    margin: 5px;
    background-color: white;
    border-radius: 50%;
    animation: wave 1.2s linear infinite;
    border-color: #935c42;
    border-style: solid;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0%, 60%, 100% {
        transform: initial;
    }
    30% {
        transform: translateY(-15px);
    }
}