body splash-screen {
  width: 100vw;
  height: 100vh;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;

  visibility: visible;
  transition: all 0.5s ease-in-out;
  background-color: #ffffff;
  color: var(--primary-500);
}

/* Company Logo */
body splash-screen svg {
  width: 220px;
  max-width: 220px;
}

/* body splash-screen svg path {
  animation:
    splash-animate-svg-stroke 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both,
    splash-animate-svg-fill 0.5s ease 0.6s both;
} */

/* Loader */
body splash-screen .spinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  width: 56px;
}

body splash-screen .spinner>div {
  width: 12px;
  height: 12px;
  background-color: var(--primary-500);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: splash-bounce-delay 1s infinite ease-in-out both;
  animation: splash-bounce-delay 1s infinite ease-in-out both;
}

body splash-screen .spinner .bounce-1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

body splash-screen .spinner .bounce-2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

body.splash-screen-hidden splash-screen {
  visibility: hidden;
  animation: splash-slide-out 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}

/* Animations */
@keyframes splash-bounce-delay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@keyframes splash-slide-out {
  0% {
    visibility: visible;
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    transform: translateX(-100%);
  }
}

@keyframes splash-animate-svg-stroke {
  0% {
    stroke-dashoffset: 4133.96435546875px;
    stroke-dasharray: 4133.96435546875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4133.96435546875px;
  }
}

@keyframes splash-animate-svg-fill {
  0% {
    fill: transparent;
  }

  100% {
    fill: var(--blogic-logo-title-color);
  }
}
