/*Ajax loading indicator*/
.size-default {
  left: 45%;
  top: 45%;
  width: 10%;
}
.loading-indicator,
#loading-indicator {
  position: fixed;
  z-index: 1000;
  display: none;
  left: 45%;
  top: 40%;
  width: 10%;
}
.loading-indicator img {
  width: 100%;
}
#loading-indicator img {
  width: 50%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .loading-indicator,
  #loading-indicator {
    left: 42%;
    top: 42%;
    width: 16%;
  }
}
@media (min-width: 768px) {
  .loading-indicator,
  #loading-indicator {
    left: 44%;
    top: 44%;
    width: 12%;
  }
}
@media (min-width: 992px) {
  .loading-indicator {
    left: 44%;
    top: 44%;
    width: 12%;
  }
}
@media (min-width: 1200px) {
  .loading-indicator {
    left: 45%;
    top: 45%;
    width: 10%;
  }
}
/* Modal loading */
.modal-loading-indicator {
  position: absolute;
  z-index: 1000;
  display: none;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  opacity: 0.5;
}
.modal-loading-indicator img {
  width: 45px;
  top: 50px;
}
.modal-loading-indicator .spinner-container {
  text-align: center;
  margin-top: 40px;
}
/* Modal loading */
.modal-loading-indicator2 {
  z-index: 1000;
  display: none;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.3rem;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.modal-loading-indicator2 .modal-loading-indicator2-content {
  height: 120px;
}
.modal-loading-indicator2 .modal-loading-indicator2-content .panel {
  margin-bottom: 0;
  background: none;
  text-align: center;
  box-shadow: none;
  font-size: 18px;
  font-weight: bold;
  border: 0;
}
.modal-loading-indicator2 .modal-loading-indicator2-content img {
  width: 64px;
}
.modal-loading-small-indicator {
  position: absolute;
  z-index: 1000;
  display: none;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.3rem;
}
.modal-loading-small-indicator img {
  width: 50px;
  position: absolute;
  top: 45%;
  left: 45%;
}
.spinner-overlay {
  position: relative;
  overflow: hidden;
}
.spinner-overlay:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85) url('../images/spinner.svg') no-repeat center;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.spinner-overlay.active-loading:after {
  pointer-events: auto;
  opacity: 1;
}
input.loading-input {
  position: relative;
  background-image: url('../images/spinner.svg');
  background-position: calc(100% + 25px) 50%;
  background-repeat: no-repeat;
  background-size: 25px;
  overflow: hidden;
  transition: .2s;
}
input.loading-input.active-loading {
  background-position: calc(100% - 5px) 50%;
}
