.loader-sub-div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; z-index:9999999; height: 100%;
}
.loader-main-div
{
  width:100%;
  height:100%;
  left:0px;
  top:0px;
  position:fixed;
  opacity:11;
  filter:alpha(opacity=40);
  background: rgba(256,256,256,0.7);
  z-index:999999;
}
.lds-ring {
display: inline-block;
position: relative;
width: 70px;
height: 70px;
background:url('/img/loading-logo.png') no-repeat 19px 23px;

}
.lds-ring div {
box-sizing: border-box;
display: block;
position: absolute;
width: 70px;
height: 70px;
margin: 6px;
border: 6px solid #e80101;
border-radius: 50% !important;
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: #e80101 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
animation-delay: -0.15s;
}
@keyframes lds-ring {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}