/* Initial app loader - BeatLoader style dots */
.initial-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
}

.initial-loader-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.initial-loader-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #f15a29;
  animation: beat-pulse 0.7s infinite ease-in-out;
}

.initial-loader-dot:nth-child(1) {
  animation-delay: 0s;
}

.initial-loader-dot:nth-child(2) {
  animation-delay: 0.16s;
}

.initial-loader-dot:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes beat-pulse {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Media queries */
@media screen and (min-width: 992px) {
  .device-screen-only {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .medium-screen-only {
    display: none !important;
  }
}
