.loading-indicator-overlay {
  background-color: #ffffff;
  opacity: 0.7;
  filter: alpha(opacity = 80);
} 

.centerLoading {
  width: 100%;
  height: 100%;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  text-align: center;
  display: flex;
}

.loading-pulse {
  display: block;
  font-size: 0;
  color: #2c2a29;
  text-align: center;
  height: auto;
}

.loading-pulse > div {
  display: inline-block;
  background-color: currentColor;
  border: 0;
  position: relative;
  width: 16px;
  height: 16px;
  margin: 8px;
  border-radius: 100%;
  -webkit-animation: load-child 1.5s ease infinite;
  -moz-animation: load-child 1.5s ease infinite;
  -o-animation: load-child 1.5s ease infinite;
  animation: load-child 1.5s ease infinite;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.loading-pulse > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}

.loading-pulse > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}

.loading-pulse > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}

@keyframes load-child {
  0%,
  60%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  30% {
    opacity: 0.1;
    -webkit-transform: scale(0.01);
    -moz-transform: scale(0.01);
    -o-transform: scale(0.01);
    transform: scale(0.01);
  }
}

.imgLogoLoading {
  width: 287px;
  height: 67px;
  margin: auto;
  display: table;
}
