﻿.fa-trash {
    color: red;
}

.fa-registered {
    color: #5bc0de;
}

#divLoading {
    display: none;
}

    #divLoading.show {
        display: block;
        position: fixed;
        z-index: 9999;
        background-image: url('\loading.gif');
        background-color: #666;
        opacity: 0.4;
        background-repeat: no-repeat;
        background-position: center;
        left: 0;
        bottom: 0;
        right: 0;
        top: 0;
    }

#loadinggif.show {
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 101;
    width: 100px;
    height: 100px;
    margin-left: -16px;
    margin-top: -16px;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 88888;
    left: 0;
    top: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    border: 16px solid #f3f3f3; /* Light Grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
