.loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9999;
}

.loader {
    position: absolute;
    z-index: 10;
    opacity: 0.9;
    animation: pulse .75s ease-in-out infinite;
}

.circle-left {
    animation-delay: 0s;
    margin: -45px 0 0 -65px;
}

.circle-center {
    animation-delay: .25s;
    margin: -45px 0 0 -15px;
}

.circle-right {
    animation-delay: .5s;
    margin: -45px 0 0 30px;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 90px;
    background: rgb(0, 45, 95);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.25);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.9);
        opacity: 1;
    }
}
