html,
body {
    height: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

#app.loading-animation {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#app.loading-animation .splash-container {
    position: relative;
    width: 280px;
    height: 280px;
}

#app.loading-animation .splash-container .spinner {
    border-top-color: #00a49a;
    border-left-color: #00a49a;
    animation: spinner 1000ms linear infinite;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
}

#app.loading-animation svg.splash {
    width: 200px;
    height: 200px;
    margin: 40px;
    fill: #00a49a;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

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