﻿/*-----------Common CSS form Any Loader--------*/
/*start*/
#mydivLoader {
    position: fixed; /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-fill-available; /*height: 100%;*/
    z-index: 1000;
    overflow: auto;
    /* ---Fade Background--*/
    background-color: rgba(0,0,0,0.4);
}

.ajax-loader {
    position: absolute;
    left: 50%;
    top: 60%;
    z-index: 10;
    width: 200px;
    height: 200px;
    margin: -76px 0 0 -76px;
}

.div-disabled {
    pointer-events: none;
    opacity: 0.7;
}
/*end*/

/*----Spinner CSS ------*/
/*start*/
#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0,0,255,.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
   
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
/*end*/
