.splash-loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #ffffff;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  will-change: opacity;
}

.splash-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-loader__image {
  width: 80px;
  height: 80px;
  opacity: 0.6;
  animation: beat 0.5s infinite alternate;
}

.splash-loader__text {
  font-size: 1rem !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

@keyframes beat {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.3);
  }
}

