﻿#divLoader {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(25,30,45,0.90);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 8px solid rgba(255,255,255,.2);
    border-top: 8px solid #4e73df;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

.loader-text {
    color: white;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.dashboard-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.dashboard-card-header {
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: #FFF;
    border-radius: 8px 8px 0 0 !important;
}

.dashboard-card-body {
    background: transparent;
    padding: 15px;
    border-radius: 0 0 8px 8px;
}

.dashboard-card h5 {
    color: #FFF;
    font-weight: 600;
}