#kt_body.bg-body {
    background: url('/media/backgrounds/home-background.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.i-spinner {
    animation: spin-animation 1s infinite;
    display: inline-table;
    transform-origin: center;
    margin: 0;
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
#kt_body.bg-body {
.environment-banner {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .04em;
    min-height: 32px;
    padding: 6px 16px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.environment-banner--local {
    background: #175cd3;
}

.environment-banner--development {
    background: #b54708;
}

.environment-banner--homolog {
    background: #d92d20;
}

#kt_body.bg-body {
