﻿#div-toast-notification-global {
    visibility: hidden;
}

/* toast notification */
.toast-notification {
    visibility: hidden;
}

    .toast-notification.show {
        visibility: visible;
        margin: 5px auto;
        min-width: 150px;
        max-width: 80%;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 2px;
        padding: 5px;
        bottom: 15px;
        font-size: 17px;
    }

#div-toast-notification-global.show {
    visibility: visible;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 12px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 15px;
    font-size: 17px;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 120s;
    animation: fadein 0.5s, fadeout 0.5s 120s;
}

    #div-toast-notification-global.show.bg-red-active {
        background-color:red !important;
    }
    /* loading css */
    .loading-fluid {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background: #f7f7f7;
        opacity: 0.9;
        filter: alpha(opacity=80);
        z-index: 10000;
        margin: 0 auto;
        text-align: center;
    }

    .loading-fluid .loading-content {
        position: inherit;
        width: inherit;
        top: 45%;
    }

        .loading-fluid .loading-content img,
        .loading-fluid .loading-content svg {
            top: 50%;
            left: 50%;
            width: 68px;
            height: 68px;
            -webkit-animation: rotation 5s infinite linear;
        }