.waiting-buttons-container {
    font-family: sans-serif;
    display: flex;
}

.waiting-button-group {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.waiting-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*.waiting-button:hover {
    transform: translateY(-2px);
}*/

.waiting-loader {
    margin-top: 16px;
    width: 60px;
    height: 60px;
    position: relative;
    display: none;
}

.waiting-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #6e0000;
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
}

.waiting-dot:nth-child(1) {
    left: 0px;
    animation: appearBounce 1.2s infinite ease-in-out;
    animation-delay: 0s;
}

.waiting-dot:nth-child(2) {
    left: 20px;
    animation: appearBounce 1.2s infinite ease-in-out;
    animation-delay: 0.2s;
}

.waiting-dot:nth-child(3) {
    left: 40px;
    animation: appearBounce 1.2s infinite ease-in-out;
    animation-delay: 0.4s;
}

@keyframes appearBounce {

    0%,
    100% {
        /*transform: translateY(0) scale(0);*/
        transform: scale(0);
        opacity: 0;
    }

    30% {
        /*transform: translateY(-10px) scale(1);*/
        transform: scale(1);
        opacity: 1;
    }

    60% {
        /*transform: translateY(0) scale(0.8);*/
        transform: scale(0.8);
        opacity: 1;
    }
}