﻿.modalLoader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2c443c;
    z-index: 1000 !important;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 1.5;
    min-height: 100%;
    width: 100%;
}

.loading {
    display: flex;
    justify-content:center;
    align-items: center;
    font-family: Arial;
    font-size: 10pt;
    width: 190px;
    height: 197px;
    display: none;
    position: fixed;
    z-index: 2000 !important;
}


.loader-container {
    --speed-of-animation: 0.9s;
    --gap: 6px;
    --first-color: #39acf3;
    --second-color: #b8a603;
    --third-color: #FFFFFF;
    --fourth-color: #ffc107;
    --fifth-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    gap: 6px;
    height: 100px;
}

    .loader-container span {
        width: 4px;
        height: 50px;
        background: var(--first-color);
        animation: scale var(--speed-of-animation) ease-in-out infinite;
    }

        .loader-container span:nth-child(2) {
            background: var(--second-color);
            animation-delay: -0.8s;
        }

        .loader-container span:nth-child(3) {
            background: var(--third-color);
            animation-delay: -0.7s;
        }

        .loader-container span:nth-child(4) {
            background: var(--fourth-color);
            animation-delay: -0.6s;
        }

        .loader-container span:nth-child(5) {
            background: var(--fifth-color);
            animation-delay: -0.5s;
        }

@keyframes scale {
    0%, 40%, 100% {
        transform: scaleY(0.05);
    }

    20% {
        transform: scaleY(1);
    }
}