/* Loader */
body.is-loading:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;
}
body.is-loading:after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 4px solid #ccc;
  border-top-color: #111;
  animation: spin 1s infinite linear;
  z-index: 10000;
}

body.is-loading-full:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  z-index: 9999;
}
body.is-loading-full:after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 4px solid #ccc;
  border-top-color: #111;
  animation: spin 1s infinite linear;
  z-index: 10000;
}

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