@charset "UTF-8";

#logo_loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 101;
  background: linear-gradient(135deg, #f8f8f8, #f7eef3);
  overflow: hidden;
}

#logo_loader .f_logo {
  width: 180px;
  height: 283px;
  text-align: center;
  position: relative;
  animation: bounce 3s ease-in-out infinite;
}

#logo_loader .f_logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

#logo_loader .sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  animation: shine 3s ease-out infinite;
}

#logo_loader .sparkle:nth-child(1) {
  left: 40%;
  top: 40%;
  animation-delay: 0.5s;
}

#logo_loader .sparkle:nth-child(2) {
  left: 60%;
  top: 40%;
  animation-delay: 1s;
}

#logo_loader .sparkle:nth-child(3) {
  left: 50%;
  top: 30%;
  animation-delay: 1.5s;
}

#logo_loader .sparkle:nth-child(4) {
  left: 40%;
  top: 60%;
  animation-delay: 2s;
}

#logo_loader .sparkle:nth-child(5) {
  left: 60%;
  top: 60%;
  animation-delay: 2.5s;
}

@keyframes shine {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  20% {
    opacity: 1;
    background-color: #ac58ac;
  }

  50% {
    background-color: #ffeb3b;
    box-shadow: 0 0 10px 5px #ffeb3b;
  }

  100% {
    opacity: 0;
    transform: scale(2);
    box-shadow: 0 0 20px 10px rgba(255, 255, 0, 0.3);
  }
}

#logo_loader.open.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
