.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    ;
    z-index: 2000;
}

.loader {
    position: relative;
    width: 64px;
    height: 64px;
    margin: auto;
}

.loader div {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #e46b34;
    animation: sk-cubemove 1.8s infinite ease-in-out;
}

.loader .cube1 {
    top: 0;
    left: 0;
    animation-delay: 0.1s;
}

.loader .cube2 {
    top: 0;
    left: 24px;
    animation-delay: 0.2s;
}

.loader .cube3 {
    top: 0;
    left: 48px;
    animation-delay: 0.3s;
}

.loader .cube4 {
    top: 24px;
    left: 0;
    animation-delay: 0.4s;
}

.loader .cube5 {
    top: 24px;
    left: 24px;
    animation-delay: 0.5s;
}

.loader .cube6 {
    top: 24px;
    left: 48px;
    animation-delay: 0.6s;
}

.loader .cube7 {
    top: 48px;
    left: 0;
    animation-delay: 0.7s;
}

.loader .cube8 {
    top: 48px;
    left: 24px;
    animation-delay: 0.8s;
}

.loader .cube9 {
    top: 48px;
    left: 48px;
    animation-delay: 0.9s;
}

@keyframes sk-cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translateX(42px) translateY(42px) rotate(-180deg) scale(0.5);
    }

    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg) scale(0.5);
    }
}