.loading-icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("./PajoohyarLoader.png") no-repeat center center;
  background-size: contain;
  animation: spin 2s linear infinite;
  scale: 2;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

.loading-dots {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 43px;
  right: 12px;
  scale: 0.6;
}

.loading-dots img {
  width: 8px; /* اندازه نقطه */
  height: 8px;
  animation: blink 1.5s infinite;
}

.loading-dots img:nth-child(2) {
  animation-delay: 0.3s;
}

.loading-dots img:nth-child(3) {
  animation-delay: 0.6s;
}

.loading-dots img:nth-child(4) {
  animation-delay: 0.9s;
}

.loading-dots img:nth-child(5) {
  animation-delay: 1.2s;
}
