#divLoader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #FF5C82;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    z-index: 1000000;
}

#divDimmer {
    position: fixed;
    left: 0px;
    top:0px;
    width:100%;
    height: 100%;
    background-color: black !important;
    opacity: 0.1;
    
    z-index: 100;
}

.loader_center {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


/*
.content-with-loader{   
    opacity: 0.3;
    position: relative;
}
.loader-overlay{
    position: absolute;
    left: 0; 
    top: 0; 
    right: 0; 
    bottom: 0;
    z-index: 2;
    background-color: rgba(255,255,255,0.8);
    
}
.loader-overlay-content {
    position: absolute;
    transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #555;
}
*/