﻿/* Loading */
.loading-anim {
    width: 45px;
    height: 45px;
    display: inline-block;
    z-index: 20000;
    animation: rotate 2000ms infinite linear;
    background: url("../../../Resources/assets/WeHandle/assets/img/logoMenu.png") no-repeat center center;
    background-size: contain;
}

.loading-text {
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    padding-left: 15px;
}

.loading-background {
    text-align: center;
    width: 100%;
    height: 100% !important;
    position: fixed;
    top: 0px;
    z-index: 19000;
    background: #34495e;
    opacity: 0.9;
    filter: alpha(opacity=90);
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    to {
        transform: rotate(1turn)
    }
}

/* Loading */