.loader {
  /*background: rgba(255,255,255,0.9);*/
  background: rgba(36,36,36,0.9);
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: 14;
  margin-top:-1px;
  position: absolute;
}

.loader-icon-container {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.loader-icon {
  animation: rotating 2s linear infinite;
  width: 100px;
  height: 100px;
}

.loader-text {
  text-align: center;
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
