.glublers-loader {
  position: relative;
  width: 333px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: calc(50% - 34px);
  transform: translate(-50%, -50%);
  z-index: 11;
  gap: 20px;
}

.mini-logo-loader {
  width: 59.15px;
  height: 50.83px;
  animation: pulsate 1.5s ease-in-out infinite;
}

.typewriter-text {
  color: #666666;
  font-size: 16px;
  font-family: var(--font-family);
  min-height: 20px;
  text-align: center;
  opacity: 0;
  animation: fadeInOut 3s ease-in-out infinite;
}

.preview-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 318px;
  height: 84px;
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
