﻿.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(178 184 185 / 42%);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-wrapper {
    width: 81px;
    height: 70px;
}

.ball-spin-fade-loader {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

    .ball-spin-fade-loader > div {
        width: 10px;
        height: 10px;
        background-color: #007bff;
        border-radius: 100%;
        margin: 2px;
        animation: ball-spin 1.2s infinite ease-in-out both;
    }

@keyframes ball-spin {
    0%, 100% {
        transform: scale(0.5);
        opacity: 0.6;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}