#loader-wrapper{
  margin: 0;
  background: rgba(74, 74, 74, 0.90);;
  position:fixed;
  width: 100%;
  height: 100%;
  padding: 0;
  top:0;
  left: 0;
  z-index: 2000;
}

#loader-wrapper img{
  margin: 0;
  position: absolute;
  top: 40%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width:50%;
}

#loader-wrapper .spinner {
  width: 200px;
  text-align: center;

  margin: 0;
  position: absolute;
  top: 75%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}
  
#loader-wrapper .spinner > div {
  width: 25px;
  height: 25px;
  background-color: #fbc045;
  border: 3px solid #555;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
  
#loader-wrapper .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
  
#loader-wrapper .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
  
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
  
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}