body{ background-color: #000;}
.loaderBG{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-color: #000;
}
.loader {
  position: fixed;
  z-index: 9999;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  border: 5px solid transparent;
  border-radius: 50%;
  border-top: 5px solid #cb9b51;
  height: 130px;
  width: 130px;
  animation: spin 1s linear infinite;
  line-height: 130px;
  text-align: center;
  vertical-align: middle;
  font-size: 0px;
}

.loader span {
  display: block;
  position: fixed;
  z-index: 999;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(/assets/images/SN_loader_Initials9_1.png);
  background-size: 130px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  animation: no-spin 1s linear infinite;
  color: transparent;
  font-size: 0px;
  align-items: center;
  justify-content: center;
}
@keyframes spin {  0% { transform: rotate(0deg); } 100% {  transform: rotate(360deg);  }  }
@keyframes no-spin { 0% {  transform: rotate(360deg);  }  100% {  transform: rotate(0deg);  }  }
