.loader-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000030;
  backdrop-filter: blur(1px);
  z-index: 100000000;
}

.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 52px;
  border: solid 1px #d9d9d9;
  background-color: white;
  border-radius: 8px;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.loader-image-box {
  width: 203px;
  height: 62px;
  padding: 10px 20px;
  overflow: hidden;
  background-color: #091327;
  border-radius: 8px;
}

.loader-image {
  width: 100%;
  height: 100%;
}

.loader-indicator {
  display: flex;
  gap: 4px;
}

.loader-bar {
  width: 12px;
  height: 6px;
  background-color: #091327;
  border-radius: 3px;
  opacity: 0.2;
  animation: pulse 1.2s infinite;
}

.loader-bar:nth-child(6) {
  animation-delay: 0s;
}
.loader-bar:nth-child(5) {
  animation-delay: 0.2s;
}
.loader-bar:nth-child(4) {
  animation-delay: 0.4s;
}
.loader-bar:nth-child(3) {
  animation-delay: 0.6s;
}
.loader-bar:nth-child(2) {
  animation-delay: 0.8s;
}
.loader-bar:nth-child(1) {
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
