fuse-splash-screen {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  pointer-events: none;
  background: linear-gradient(to right, #222c44, #263454, #222c44);
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

body:not(.fuse-splash-screen-hidden) {
  overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
  visibility: visible;
  opacity: 0;
}

.fx {
  width: 500px;
  height: 93px;
  filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.834));
  animation: animateGlow 1.7s linear infinite alternate;
}

@keyframes animateGlow {
  to {
    filter: drop-shadow(0px 0px 10px rgba(225, 139, 9, 0.205));
  }
}

.pre-loader {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pre-loader .loader-shape {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 100px;
}

.pre-loader .loader-shape span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(252, 151, 0, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 40%;
  animation: animateLoader ease-in-out 1s infinite;
}

.pre-loader .loader-shape span:nth-child(1) {
  background: rgba(255, 255, 255, 0.9);
  animation-delay: -0.8s;
}

.pre-loader .loader-shape span:nth-child(3) {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0);
  animation-delay: -0.6s;
}

@keyframes animateLoader {
  0%,
  100% {
    transform: translateX(-90px);
  }
  50% {
    transform: translateX(80px);
  }
}

.pre-loader .loader-shape span:before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -20%;
  width: 140%;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(rgba(0, 0, 0, 0.01), transparent, transparent);
}

.box-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.box-area li {
  position: absolute;
  display: block;
  list-style: none;
  width: 25px;
  height: 25px;
  border-radius: 20%;
  background: rgba(16, 80, 102, 0.326);
  animation: animateBoxes 3s linear infinite;
  bottom: -150px;
}

.box-area li:nth-child(1) {
  left: 86%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.box-area li:nth-child(2) {
  left: 12%;
  width: 30px;
  height: 30px;
  animation-delay: 1.5s;
  animation-duration: 6s;
}

.box-area li:nth-child(3) {
  left: 70%;
  width: 100px;
  height: 100px;
  animation-delay: 3.5s;
}

.box-area li:nth-child(4) {
  left: 42%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 5s;
}

.box-area li:nth-child(5) {
  left: 65%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}

.box-area li:nth-child(6) {
  left: 15%;
  width: 110px;
  height: 110px;
  animation-delay: 2.5s;
}

@keyframes animateBoxes {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-900px) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 820px) {
  .fx {
    width: 380px;
    height: 70.68px;
  }
  .pre-loader .loader-shape {
    width: 45px;
    height: 45px;
    margin: 0 70px;
  }
  @keyframes animateLoader {
    0%,
    100% {
      transform: translateX(-55px);
    }
    50% {
      transform: translateX(45px);
    }
  }
}

@media (max-width: 600px) {
  .fx {
    width: 250px;
    height: 46.5px;
  }
  .pre-loader .loader-shape {
    position: fixed;
    width: 35px;
    height: 35px;
    margin: 0 50px 100px;
  }
  @keyframes animateLoader {
    0%,
    100% {
      transform: translateX(-45px);
    }
    50% {
      transform: translateX(35px);
    }
  }
  .box-area li:nth-child(1) {
    left: 86%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
  }

  .box-area li:nth-child(2) {
    left: 12%;
    width: 10px;
    height: 10px;
    animation-delay: 1.5s;
    animation-duration: 6s;
  }

  .box-area li:nth-child(3) {
    left: 70%;
    width: 100px;
    height: 100px;
    animation-delay: 3.5s;
  }

  .box-area li:nth-child(4) {
    left: 42%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 5s;
  }

  .box-area li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
  }
  .box-area li:nth-child(6) {
    left: 15%;
    width: 90px;
    height: 90px;
    animation-delay: 2.5s;
  }
}
