/* Loader CSS */
.loader-app {
    width: 175px;
    height: 175px;
    background-color: #2e4e9b;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px 4px rgba(0, 0, 0, 0.5) inset, 0 5px 12px rgb(46 78 155);
    overflow: hidden;
    margin-top: 1.5rem !important;
}
.loader-app:before,
.loader-app:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 45%;
    top: -40%;
    background-color: #fff;
    animation: wave-app 5s linear infinite;
}
.loader-app:before {
    border-radius: 30%;
    background: rgba(255, 255, 255, 0.4);
    animation: wave-app 5s linear infinite;
}
.loader-app div img {
    width: 175px;
    z-index: 50;
    position: relative;
    left: 0px;
    top: 17px;
}

.blockUI .loader-app:before, .loader-app:after {
    left: 0 !important;
}
.blockUI .loader-app img {
    width: 175px !important;
    top: 10px !important;
    left: initial !important;
}

@keyframes wave-app {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}