.loading {
  display: none;
  position: fixed;
  z-index: 9001 !important;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.loading.inner {
  position: absolute;
  display: inline-block;
  margin-top: 18px;
}
.loading.inner.typeahead-cancel-button {
  margin-top: 7px;
}
.loading.inner.typeahead-cancel-button:after {
  font-size: 6px !important;
  width: 4px !important;
  height: 4px !important;
}
.loading.inner:before {
  position: absolute;
}
.loading.inner:not(:required):after {
  font-size: 7px;
  width: 5px;
  height: 5px;
  margin-top: -2px;
}
.loading.inner .loading-info {
  position: absolute;
  top: 0px;
  left: -70px;
  width: 140px;
  font-weight: 400;
  font-family: "Pragati Narrow", sans-serif;
  font-size: 12px;
  color: #666;
  text-align: center;
  padding-top: 22px;
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: "";
  display: block;
  font-size: 20px;
  width: 0.7em;
  height: 0.7em;
  margin-top: -0.5em;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.45) 1.5em 0 0 0, rgba(0, 0, 0, 0.45) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.45) 0 1.5em 0 0, rgba(0, 0, 0, 0.45) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.45) -1.5em 0 0 0, rgba(0, 0, 0, 0.45) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.45) 0 -1.5em 0 0, rgba(0, 0, 0, 0.45) 1.1em -1.1em 0 0;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}