body {
    margin: 0 !important;
    background-color: transparent !important;
}
.initial-render {
    height: 100vh;
    background: #e3e6eb;
}
.initial-render .content{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #008743;
    font-size: 30px;
    font-weight: lighter;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-name {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    position: absolute; padding: 10px;
    font-weight: bold;
}
@keyframes d3 {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%;
    }
    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%;
    }
    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%;
    }
    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%;
    }
}

:root {
    --animation-duration: 0.8s;
    --circle-diameter: 30px;
    --circle-scale-percent: 0.2;
}

#loader {
    position: relative;
    width: 55px;
}

#loader:before,
#loader:after {
    content: " ";
    display: table-cell;
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    border-radius: 50%;
    position: absolute;
    animation-duration: var(--animation-duration);
    animation-name: revolve;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    mix-blend-mode: darken;

}

#loader:before {
    background: #008743;
}

#loader:after {
    background: #EC1558;
    animation-delay: calc(var(--animation-duration) / -2);
}

@keyframes revolve {
    0% {
        left: 0;
    }
    25% {
        transform: scale(calc(1 + var(--circle-scale-percent)));
    }
    50% {
        left: var(--circle-diameter);
    }
    75% {
        transform: scale(calc(1 - var(--circle-scale-percent)));
    }
    100% {
        left: 0;
    }
}
