.wbk_loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 40px;
    height: 100%;
    width: 100%;
}

.wbk_loading__bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.wbk_loading__bar {
    width: 10px;
    background-color: #00a3ad;
    border-radius: 5px;
    animation: wbk_loading_bounce 1.4s ease-in-out infinite;

    &:nth-child(1) {
        height: 24px;
    }

    &:nth-child(2) {
        height: 36px;
    }

    &:nth-child(3) {
        height: 48px;
    }

    &:nth-child(4) {
        height: 60px;
    }

    &:nth-child(5) {
        height: 48px;
    }

    &:nth-child(6) {
        height: 36px;
    }

    &:nth-child(7) {
        height: 24px;
    }
}

@keyframes wbk_loading_bounce {
    0%,
    100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.3);
    }
}

.wbk_loading__text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    letter-spacing: 2px;
    text-transform: uppercase;
}
