.splash-page {
    display: none;
    z-index: 99999 !important;
}

[ng-cloak].splash-page {
    display: block !important;
}

.splash-page .bar {
    width: 100%;
}

.page-splash {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #584e55;
    opacity: .9;
    pointer-events: auto;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
}

.page-splash .page-splash-inner {
    position:absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.page-splash.ng-hide-remove,
.page-splash.ng-hide.ng-hide-add-active,
.page-splash.ng-hide-add,
.page-splash.ng-hide-remove.ng-hide-remove-active {
    display: block !important;
}

.page-splash.ng-hide {
    opacity: 0;
}

.page-splash .page-splash-icon {
    text-align: center;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 400%;
    -webkit-text-shadow: 2px 2px #000000;
    text-shadow: 2px 2px #000000;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    padding: 0;
}

    .page-splash-icon.page-splash-message-subtle {
        margin: 30% auto 0 auto;
        font-size: 200%;
    }

.page-splash .page-splash-message {
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    text-transform: capitalize;
    width: 100%;
    margin-top: -10px;
}

@media screen and (max-width: 598px) {
    .page-splash .page-splash-icon {
        font-size: inherit;
    }
    
    .page-splash .page-splash-message {
        position: absolute;
        text-align: center;
        font-size: 1em;
        color: #fff;
        text-transform: capitalize;
        width: 100%;
        margin-top: -25px;
    }
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 27px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #fff;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 6px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 6px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 26px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 45px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}
