#preloader1 {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader1-container {
  position: relative;
  width: 100px;
  height: 100px;
}

.spinner1 {
  width: 100px !important;
  height: 100px !important;
  border: 6px solid rgba(255, 215, 0, 0.3);
  border-top: 6px solid gold;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-sizing: border-box !important;
}


.loader1-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  padding: 3px;
  z-index: 2;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
