/*
 *  jquery-easy-loading - v1.3.0
 *  Easily add and manipulate loading states of any element on the page
 *  http://github.com/CarlosBonetti/jquery-loading
 *
 *  Made by Carlos Bonetti <carlosb_bc@hotmail.com>
 *  Under MIT License
 */
/* This CSS file just define some default styles and loaders */
/* You don't need to include it if you're working with your custom overlay loader element */

.loading-overlay {
  display: table;
  opacity: 0.7;
}

.loading-overlay-content {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 1.15em;
  font-weight: bold;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.loading-overlay.loading-theme-light {
  background-color: #fff;
  color: #000;
}

.loading-overlay.loading-theme-dark {
  background-color: #000;
  color: #fff;
}


.loading-div {
  height: auto;
  width: 260px;
  padding: 50px 25px;
  color: #000;
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -130px;
  border-radius: 10px;
  z-index: 9999999999999;
}

#custom-overlay {
  background-color: #000;
  opacity: 0.7;
}

/* http://projects.lukehaas.me/css-loaders/ by @lukehaas */
.blockOverlay {
  background: rgba(255, 255, 255, .9);

}
.spinner.loading {
  padding: 50px;
  position: relative;
  text-align: center;
  width: 100%;
}

.spinner.loading:before {
  content: "";
  height: 40px;
  width: 40px;
  margin: -15px auto auto -15px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-width: 4px;
  border-style: solid;
  border-color: #C91414 #ccc #ccc;
  border-radius: 100%;
  animation: rotation .7s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  } to {
      transform: rotate(359deg);
    }
}