﻿  #loading {


    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
    opacity: 0.7;
    background-color: #000;
    z-index: 999999;
    text-align: center;
    opacity:0.7;
}

#loading-image {
       vertical-align: middle;
    margin-left: auto; margin-right:auto; 
     width: 120px;
     height: 120px;
    z-index: 100;
     text-align:center !important;
}
.loader {
     position: relative;
      left: 45%;
      top: 50%;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #5983e8;
  border-bottom: 16px solid #5983e8;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}