body,
html {
    height: 100%;
    margin: 0;
}

#loading-app {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: white;
    visibility: visible !important;
}

#loading-app .c1 {
    transform: scale(0);
    transform-origin: 26% 38%;
    fill: #114176;
    animation: loading 2s infinite ease-in-out;
}

#loading-app .c2 {
    transform: scale(0);
    transform-origin: 50% 38%;
    fill: #f47d35;
    animation: loading 2s infinite ease-in-out;
    animation-delay: 0.3s;
}

#loading-app .c3 {
    transform: scale(0);
    transform-origin: 74% 38%;
    fill: #114176;
    animation: loading 2s infinite ease-in-out;
    animation-delay: .6s;
}

#loading-app .name {
    fill: #114176;
}

@keyframes loading {
    0% {
        opacity: .1;
        transform: scale(0);
    }

    35% {
        opacity: 1;
        transform: scale(1);
    }

    65% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: .1;
        transform: scale(0);
    }
}
