#header {
    top: 48%;
    position: relative;
    margin: auto;
    text-align: center;
    color: #42A5F5;
    font-family: 'Roboto';
}

#loadingCircles {
    position: relative;
    width: 60px;
    margin: auto;
}

#loadingCircles .loadingCircle {
    height: 4px;
    position: relative;
    width: 4px;
    background: #386b2e;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.125);
}

#loadingCircles #loadingCircle1 {
    position: absolute;
    left: 50px;
    top: 0px;
    animation: moveInCircle 2s infinite ease-in-out;
}

#loadingCircles #loadingCircle2 {
    position: absolute;
    left: 0px;
    top: -50px;
    animation: moveInCircle 2s infinite ease-in-out;
    animation-delay: -1s;
}

#loadingCircles #loadingCircle3 {
    position: absolute;
    left: 50px;
    top: -50px;
    animation: moveInCircle 2s infinite ease-in-out;
    animation-delay: -0.5s;
}

#loadingCircles #loadingCircle4 {
    position: absolute;
    left: 0px;
    top: 0px;
    animation: moveInCircle 2s infinite ease-in-out;
    animation-delay: -1.5s;
}

@keyframes moveInCircle {
    0% {
        left: 50px;
        top: 0px;
    }

    25% {
        left: 0px;
        top: 0px;
    }

    50% {
        top: -50px;
        transform: scale(3);
        left: 0px;
    }

    75% {
        top: -50px;
        left: 50px;
    }

    100% {
        top: 0px;
        transform: scale(1);
        left: 50px;
    }
}

.bg-primary{
  background-color: #069249 !important;
}
