.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.preloader .loader {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.preloader .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e75480;
  animation: bounce 0.8s infinite alternate;
}
.preloader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  to {
    transform: translateY(-20px);
    background: #fbb1c8;
  }
}
.preloader.hide {
  opacity: 0;
  pointer-events: none;
}