/*# sourceMappingURL=custom.min.css.map */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 100%;
    gap: 6px;
}

.loading span {
    width: 5px;
    height: 40px;
    background-color: #4f86f9;
    animation: loading-scale 0.9s ease-in-out infinite;
    border-radius: 4px;
}

.loading span:nth-child(2) {
    background: #49a84c;
    animation-delay: -0.8s;
}

.loading span:nth-child(3) {
    background: #f6bb02;
    animation-delay: -0.7s;
}

.loading span:nth-child(4) {
    background: #f6bb02;
    animation-delay: -0.6s;
}

.loading span:nth-child(5) {
    background: #2196f3;
    animation-delay: -0.5s;
}

@keyframes loading-scale {

    0%,
    40%,
    100% {
        transform: scaleY(0.05);
    }

    20% {
        transform: scaleY(1);
    }
}
