@keyframes rotate1 {
  0% {
    transform: rotateZ(0deg)
  }
  100% {
    transform: rotateZ(360deg)
  }
}

@keyframes rotate2 {
  0% {
    transform: rotateZ(0deg)
  }
  100% {
    transform: rotateZ(360deg)
  }
}

#indicatorLoader {
  background: rgba(0, 0, 0, .51);
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000000000;
  display: none
}

.indicatorLoader .indicator-message {
  position: absolute;
  margin: auto;
  top: 10%;
  width: 100%;
  text-align: center;
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, .79);
  border: 0 solid;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .57)
}

.indicatorLoaderContainer img {
  width: 85%;
  height: 85%;
  display: block;
  margin: 0 auto;
  top: 7px;
  position: relative
}

.indicatorLoaderContainer {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -60px 0 0 -60px;
  width: 100px;
  height: 100px;
  border-radius: 100%
}

.indicatorLoaderContainer:after {
  content: '';
  background: trasparent;
  width: 110%;
  height: 110%;
  position: absolute;
  border-radius: 100%;
  top: -15%;
  left: -15%;
  opacity: .7;
  box-shadow: rgba(255, 255, 255, .6) 7px 3px 3px -3px;
  animation: rotate1 2s infinite linear
}

.indicatorLoaderContainer2 {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -60px 0 0 -60px;
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 5px solid #4f5154;
  box-shadow: 0 5px 10px rgba(76, 74, 74, .64)
}

.indicatorLoaderContainer2:after {
  content: '';
  background: trasparent;
  width: 140%;
  height: 140%;
  position: absolute;
  border-radius: 100%;
  top: -20%;
  left: -20%;
  opacity: .7;
  box-shadow: rgba(255, 255, 255, .6) 7px 3px 3px -3px;
  animation: rotate2 2s infinite linear;
  animation-direction: reverse
}
