﻿
.loading-container {
    display: flex;
    position: fixed;
    z-index: 30;
    padding-top: 0;
    padding-left: 0;
    width: 100%;
    height: 100%;
}

.load-logo {
    background-color: #15619B;
    padding: 10px;
    border-radius: 12px;
    display: grid;
    margin: auto;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    grid-template: auto auto auto auto / auto auto auto;
}

    .load-logo > div {
        transform-style: preserve-3d;
        position: relative;
        width: 20px;
        height: 20px;
        margin: 4px;
        animation: rotate-dot 3s infinite ease-in-out;
    }

        .load-logo > div:nth-child(1n) {
            animation-delay: 0s;
        }

        .load-logo > div:nth-child(2n) {
            animation-delay: 0.1s;
        }

        .load-logo > div:nth-child(3n) {
            animation-delay: 0.2s;
        }

        .load-logo > div:nth-child(4n) {
            animation-delay: 0.2s;
        }

        .load-logo > div:nth-child(5n) {
            animation-delay: 0.3s;
        }

        .load-logo > div:nth-child(6n) {
            animation-delay: 0.4s;
        }

        .load-logo > div:nth-child(7n) {
            animation-delay: 0.3s;
        }

        .load-logo > div:nth-child(8n) {
            animation-delay: 0.4s;
        }

        .load-logo > div:nth-child(9n) {
            animation-delay: 0.5s;
        }

        .load-logo > div:nth-child(10n) {
            animation-delay: 0.4s;
        }

        .load-logo > div:nth-child(11n) {
            animation-delay: 0.5s;
        }

        .load-logo > div:nth-child(12n) {
            animation-delay: 0.6s;
        }

    .load-logo .dot {
        border-radius: 50%;
        width: 20px;
        height: 20px;
        backface-visibility: hidden;
        position: absolute;
    }

    .load-logo .dot-back {
        transform: rotateX(180deg);
    }

    .load-logo .orange {
        background-color: #EEA656;
    }

    .load-logo .white {
        background-color: #ffffff;
    }

@keyframes rotate-dot {
    0% {
        transform: rotateX(0deg);
    }

    10% {
        transform: rotateX(180deg);
    }

    50% {
        transform: rotateX(180deg);
    }

    60% {
        transform: rotateX(360deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}
