﻿#unique-loader-wrapper {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.circle-fade-loader {
  position: relative;
  width: 80px;
  height: 80px;
}

.circle-fade-loader div {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #614623;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  animation: unique-fade 1.2s linear infinite;
}

.circle-fade-loader div:nth-child(1) { transform: rotate(0deg) translate(30px) rotate(0deg); animation-delay: 0s; }
.circle-fade-loader div:nth-child(2) { transform: rotate(45deg) translate(30px) rotate(-45deg); animation-delay: 0.15s; }
.circle-fade-loader div:nth-child(3) { transform: rotate(90deg) translate(30px) rotate(-90deg); animation-delay: 0.3s; }
.circle-fade-loader div:nth-child(4) { transform: rotate(135deg) translate(30px) rotate(-135deg); animation-delay: 0.45s; }
.circle-fade-loader div:nth-child(5) { transform: rotate(180deg) translate(30px) rotate(-180deg); animation-delay: 0.6s; }
.circle-fade-loader div:nth-child(6) { transform: rotate(225deg) translate(30px) rotate(-225deg); animation-delay: 0.75s; }
.circle-fade-loader div:nth-child(7) { transform: rotate(270deg) translate(30px) rotate(-270deg); animation-delay: 0.9s; }
.circle-fade-loader div:nth-child(8) { transform: rotate(315deg) translate(30px) rotate(-315deg); animation-delay: 1.05s; }

@keyframes unique-fade {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}
