body fuse-splash-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* @apply text-white bg-base-900 !important; */
  background-color: rgb(44 17 7) !important;
  color: rgb(246 238 115) !important;
  z-index: 999999;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 400ms ease-in-out;
}

body fuse-splash-screen svg {
  width: 25vw;
  max-width: 25vw;
}

body fuse-splash-screen img {
  width: 50vw;
  max-width: 50vw;
}

@media screen and (min-width: 600px) {
  body fuse-splash-screen svg {
    width: 17.5vw;
    max-width: 17.5vw;
  }
  body fuse-splash-screen img {
    width: 35vw;
    max-width: 35vw;
  }
}

@media screen and (min-width: 768px) {
  body fuse-splash-screen svg {
    width: 15vw;
    max-width: 15vw;
  }
  body fuse-splash-screen img {
    width: 30vw;
    max-width: 30vw;
  }
}

@media screen and (min-width: 1024px) {
  body fuse-splash-screen svg {
    width: 12.5vw;
    max-width: 12.5vw;
  }
  body fuse-splash-screen img {
    width: 25vw;
    max-width: 25vw;
  }
}

@media screen and (min-width: 1200px) {
  body fuse-splash-screen svg {
    width: 10vw;
    max-width: 10vw;
  }
  body fuse-splash-screen img {
    width: 20vw;
    max-width: 20vw;
  }
}
.slide-in-out {
  -webkit-animation: slide-in-out 2s cubic-bezier(0.455, 0.03, 0.515, 0.955)
    infinite both;
  animation: slide-in-out 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite
    both;
}

@-webkit-keyframes slide-in-out {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  45% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
}
@keyframes slide-in-out {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  45% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
}

body:not(.fuse-splash-screen-hidden) {
  overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
  visibility: hidden;
  opacity: 0;
}
