/* AJAX CUSTOM PRELOADER */
#preloader_wrapper{
    display: none;
    background: #000;
    height: 100%;
 background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
}
.preloader  {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 5px solid #999;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.9;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }