.app-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    z-index: 99999;
    place-items: center;
}

.app-loader {
    text-align: center;
    color: #8fd6ff;
}

.app-bars {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.app-bars div {
    width: 10px;
    height: 34px;
    background: #1ea7ff;
    border-radius: 6px;
    animation: bounce 1s infinite ease-in-out;
}

.app-bars div:nth-child(2) {
    animation-delay: .12s
}

.app-bars div:nth-child(3) {
    animation-delay: .24s
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .6
    }

    50% {
        transform: translateY(-10px);
        opacity: 1
    }
}