body aiki-splash-screen {
  align-items: center;
  background-color: #F5F9FF;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 1;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  visibility: visible;
  z-index: 999999;
}

body aiki-splash-screen .loader {
  --dot: #5628EE;
  --duration: 3s;
  --path: #2F3545;
  height: 44px;
  margin: 10px;
  position: relative;
  width: 44px;
}

body aiki-splash-screen .loader:before {
  -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  background: var(--dot);
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  left: 19px;
  position: absolute;
  top: 37px;
  transform: translate(-18px, -18px);
  width: 6px;
}

body aiki-splash-screen .loader svg {
  display: block;
  height: 100%;
  width: 100%;
}

body aiki-splash-screen .loader svg rect,
body aiki-splash-screen .loader svg polygon,
body aiki-splash-screen .loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10px;
}

body aiki-splash-screen .loader svg polygon {
  -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
}

body aiki-splash-screen .loader svg rect {
  -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
}

body aiki-splash-screen .loader svg circle {
  -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
}

body aiki-splash-screen .loader.triangle {
  width: 48px;
}

body aiki-splash-screen .loader.triangle:before {
  -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  left: 21px;
  transform: translate(-10px, -18px);
}

@-webkit-keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}

@-webkit-keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(10px, -18px);
  }
  100% {
    transform: translate(-10px, -18px);
  }
}

@keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(10px, -18px);
  }
  100% {
    transform: translate(-10px, -18px);
  }
}

@-webkit-keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}

@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}

@-webkit-keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  75% {
    transform: translate(0, -36px);
  }
  100% {
    transform: translate(-18px, -18px);
  }
}

@keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  75% {
    transform: translate(0, -36px);
  }
  100% {
    transform: translate(-18px, -18px);
  }
}

@-webkit-keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}

@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}

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

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