.body {
    margin: 0;
}

.tmp-app-header {
    position: fixed;
    height: 56px;
    width: 100vw;
    z-index: 1000;
    background: #3F51B5;
    align-items: center;
    display: flex;
}

.tmp-app-header-text {
    margin-left: 25px;
    color: white;
    font-family:  "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 1.3125rem;
}

.app-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    text-align: center;
    background-color: #808080cc;
}

.app-loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #3F51B5;
    top: 50%;
    opacity: 1;
    animation: loader 2.5s infinite ease;
}

.app-loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #3F51B5;
    animation: loader-inner 2s infinite ease-in;
}

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

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

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

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

@keyframes loader-inner {
    0% {
        height: 0;
    }

    25% {
        height: 0;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0;
    }
}