/*!
 * alfuix v1.0.14 (https://alfuix.com/)
 * Copyright 2026 - The Alfuix Authors
 * Licensed under MIT https://github.com/alifrepo/alfuix/blob/main/LICENSE
 */
/*====== Varibles start =====*/
.al-animate-cursor {
  background-color: var(--bs-gray-500);
  animation: blink 1s infinite;
}
.al-animate-cursor.al-typing {
  animation: none;
}
@keyframes blink {
  0% {
    background-color: var(--bs-gray-500);
  }
  49% {
    background-color: var(--bs-gray-500);
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: var(--bs-gray-500);
  }
}
.al-animate-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bs-gray-700);
  font-size: 0.8rem;
}
.al-animate-scroll-down .al-mouse {
  position: relative;
  display: inline-flex;
  justify-content: center;
  width: 23px;
  height: 35px;
  border: 2px solid var(--bs-gray-400);
  border-radius: 20px;
  padding: 5px 0px;
}
.al-animate-scroll-down .al-mouse .al-mouse-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bs-gray-400);
  animation: mouse 4s ease-in forwards infinite;
}
@keyframes mouse {
  0% {
    top: 20%;
  }
  15% {
    top: 45%;
  }
  35% {
    top: 60%;
  }
  60% {
    top: 45%;
  }
  75% {
    top: 30%;
  }
  100% {
    top: 20%;
  }
}
.al-animate-bg-gradient {
  background-image: linear-gradient(-45deg, var(--bs-warning), var(--bs-secondary), var(--bs-info), var(--bs-success));
  background-size: 400% 400%;
  animation: bg-gradient-animation 15s ease infinite;
}
@keyframes bg-gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.al-animate-cube {
  position: absolute;
  top: 80%;
  left: 45%;
  width: 10px;
  height: 10px;
  border: solid 1px var(--bs-primary);
  border-radius: 4px;
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  -webkit-animation: cube 8s ease-in forwards infinite;
  animation: cube 8s ease-in forwards infinite;
}
.al-animate-cube:nth-child(2n) {
  border-color: var(--bs-info);
}
.al-animate-cube:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  left: 25vw;
  top: 40vh;
}
.al-animate-cube:nth-child(3) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  left: 75vw;
  top: 50vh;
}
.al-animate-cube:nth-child(4) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  left: 90vw;
  top: 10vh;
}
.al-animate-cube:nth-child(5) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
  left: 10vw;
  top: 85vh;
}
.al-animate-cube:nth-child(6) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
  left: 50vw;
  top: 10vh;
}
.al-animate-cube:nth-child(7) {
  -webkit-animation-delay: 1s;
  animation-delay: 2s;
  left: 25vw;
  top: 40vh;
}
.al-animate-cube:nth-child(8) {
  -webkit-animation-delay: 1s;
  animation-delay: 4s;
  left: 75vw;
  top: 50vh;
}
@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(10) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}
.al-animate-wave span {
  animation-name: wave;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
.al-animate-wave span.wave-1 {
  opacity: 1;
}
.al-animate-wave span.wave-2 {
  opacity: 0.9;
  animation-delay: 0.1s;
}
.al-animate-wave span.wave-2 {
  opacity: 0.9;
  animation-delay: 0.1s;
}
.al-animate-wave span.wave-3 {
  opacity: 0.85;
  animation-delay: 0.2s;
}
.al-animate-wave span.wave-4 {
  opacity: 0.8;
  animation-delay: 0.3s;
}
.al-animate-wave span.wave-5 {
  opacity: 0.75;
  animation-delay: 0.4s;
}
.al-animate-wave span.wave-6 {
  opacity: 0.7;
  animation-delay: 0.5s;
}
.al-animate-wave span.wave-7 {
  opacity: 0.65;
  animation-delay: 0.6s;
}
.al-animate-wave span.wave-8 {
  opacity: 0.6;
  animation-delay: 0.7s;
}
.al-animate-wave span.wave-9 {
  opacity: 0.55;
  animation-delay: 0.8s;
}
.al-animate-wave span.wave-10 {
  opacity: 0.5;
  animation-delay: 1.3s;
}
.al-animate-wave span.wave-11 {
  opacity: 0.45;
  animation-delay: 1.4s;
}
.al-animate-wave span.wave-12 {
  opacity: 0.4;
  animation-delay: 1.5s;
}
@keyframes wave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.al-animate-water-wave {
  position: relative;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}
.al-animate-water-wave::before, .al-animate-water-wave::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
}
.al-animate-water-wave::before {
  border-radius: 45%;
  background-color: currentColor;
  animation: be-water-wave 5s linear infinite;
}
.al-animate-water-wave::after {
  border-radius: 40%;
  background-color: currentColor;
  opacity: 0.5;
  animation: be-water-wave 10s linear infinite;
}
@keyframes be-water-wave {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}
.al-animate-sound-wave {
  background: linear-gradient(45deg, currentColor, #fff);
  animation-name: sound-wave;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.al-animate-sound-wave:nth-child(2) {
  animation-delay: 0.1s;
}
.al-animate-sound-wave:nth-child(3) {
  animation-delay: 0.2s;
}
.al-animate-sound-wave:nth-child(4) {
  animation-delay: 0.3s;
}
.al-animate-sound-wave:nth-child(5) {
  animation-delay: 0.4s;
}
.al-animate-sound-wave:nth-child(6) {
  animation-delay: 0.5s;
}
.al-animate-sound-wave:nth-child(7) {
  animation-delay: 0.6s;
}
.al-animate-sound-wave:nth-child(8) {
  animation-delay: 0.7s;
}
.al-animate-sound-wave:nth-child(9) {
  animation-delay: 0.8s;
}
.al-animate-sound-wave:nth-child(10) {
  animation-delay: 0.9s;
}
@keyframes sound-wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.al-animate-border-gradient {
  --al-be-border-angle: 0turn;
  border: solid var(--bs-border-width) transparent;
  background: conic-gradient(from var(--al-border-angle), #213, #112 5%, #112 60%, #213 95%) padding-box, conic-gradient(from var(--al-border-angle), transparent 25%, #08f, #f03 99%, transparent) border-box;
  animation-name: be-bg-spin;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes be-bg-spin {
  to {
    --al-border-angle: 1turn;
  }
}
.al-animate-ripple-rounded {
  animation-name: be-animation-ripple;
  animation-duration: 0.7s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes be-animation-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--ripple-color), 0.3), 0 0 0 1em rgba(var(--ripple-color), 0.3), 0 0 0 2em rgba(var(--ripple-color), 0.3), 0 0 0 3em rgba(var(--ripple-color), 0.3);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(var(--ripple-color), 0.3), 0 0 0 2em rgba(var(--ripple-color), 0.3), 0 0 0 3em rgba(var(--ripple-color), 0.3), 0 0 0 4em rgba(var(--ripple-color), 0);
  }
}
.al-animate-ripple-circle {
  position: relative;
}
.al-animate-ripple-circle::before, .al-animate-ripple-circle::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(var(--ripple-color), 1);
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 50%;
}
.al-animate-ripple-circle:before {
  animation: wave-animate 3s infinite ease-out;
}
.al-animate-ripple-circle:after {
  opacity: 0;
  animation: wave-animate 3s 1.5s infinite ease-out;
}
@keyframes wave-animate {
  0% {
    scale: 0;
    opacity: 1;
    transform-origin: center;
  }
  100% {
    scale: 3;
    opacity: 0;
    transform-origin: center;
  }
}
.al-animate-preloader-circle {
  border: var(--bs-border-width) solid var(--bs-white);
  border-top-color: var(--bs-primary);
  animation-name: be-animation-rotate;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.al-animate-preloader-circle-two {
  border: var(--bs-border-width) solid var(--bs-white);
  border-top-color: var(--bs-primary);
  border-bottom-color: var(--bs-primary);
  animation-name: be-animation-rotate;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.al-animate-preloader-circle-three {
  border: var(--bs-border-width) solid;
  border-top-color: var(--bs-primary);
  border-bottom-color: var(--bs-info);
  border-left-color: var(--bs-danger);
  border-right-color: var(--bs-warning);
  animation-name: be-animation-rotate;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.al-animate-preloader-circle-four {
  border: var(--bs-border-width) solid var(--bs-white);
  border-top-color: var(--bs-primary);
  border-bottom-color: var(--bs-danger);
  border-right-color: var(--bs-warning);
  animation-name: be-animation-rotate;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.al-animate-preloader-circle-five {
  position: relative;
  border: var(--bs-border-width) solid var(--bs-white);
  animation-name: be-animation-rotate;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.al-animate-preloader-circle-five:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 10px;
  height: 10px;
  background: var(--bs-white);
  border-radius: 50%;
  outline: 5px solid var(--bs-primary);
}
.al-animate-preloader-grid {
  position: relative;
}
.al-animate-preloader-grid span {
  animation-name: be-animation-grid;
  animation-duration: 1.2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.al-animate-preloader-grid span:nth-child(1) {
  animation-delay: 0s;
}
.al-animate-preloader-grid span:nth-child(2) {
  animation-delay: -0.4s;
}
.al-animate-preloader-grid span:nth-child(3) {
  animation-delay: -0.8s;
}
.al-animate-preloader-grid span:nth-child(4) {
  animation-delay: -0.4s;
}
.al-animate-preloader-grid span:nth-child(5) {
  animation-delay: -0.8s;
}
.al-animate-preloader-grid span:nth-child(6) {
  animation-delay: -1.2s;
}
.al-animate-preloader-grid span:nth-child(7) {
  animation-delay: -0.8s;
}
.al-animate-preloader-grid span:nth-child(8) {
  animation-delay: -1.2s;
}
.al-animate-preloader-grid span:nth-child(9) {
  animation-delay: -1.6s;
}
@keyframes be-animation-grid {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@property --al-border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.al-ripple-primary {
  --ripple-color: var(--bs-primary-rgb) !important;
}
.al-ripple-secondary {
  --ripple-color: var(--bs-secondary-rgb) !important;
}
.al-ripple-success {
  --ripple-color: var(--bs-success-rgb) !important;
}
.al-ripple-warning {
  --ripple-color: var(--bs-warning-rgb) !important;
}
.al-ripple-danger {
  --ripple-color: var(--bs-danger-rgb) !important;
}
.al-ripple-info {
  --ripple-color: var(--bs-info-rgb) !important;
}
.al-ripple-white {
  --ripple-color: var(--bs-white-rgb) !important;
}
.al-ripple-black {
  --ripple-color: var(--bs-black-rgb) !important;
}

@keyframes be-animation-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.al-transition-duration-5 {
  transition-duration: 0.5s !important;
}
.al-transition-duration-6 {
  transition-duration: 0.6s !important;
}
.al-transition-duration-7 {
  transition-duration: 0.7s !important;
}
.al-transition-duration-8 {
  transition-duration: 0.8s !important;
}
.al-transition-duration-9 {
  transition-duration: 0.9s !important;
}
.al-transition-duration-10 {
  transition-duration: 1s !important;
}

.al-cursor, .al-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.al-cursor {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  opacity: 0.4;
}
.al-cursor-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  opacity: 0.7;
}
.al-magnet {
  will-change: transform;
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --al-pull-radius: 120;
  --al-pull-strength: 0.25;
  --al-max-translate: 18;
}
.al-magnet-weak {
  --al-pull-radius: 100;
  --al-pull-strength: 0.15;
  --al-max-translate: 12;
}
.al-magnet-strong {
  --al-pull-radius: 160;
  --al-pull-strength: 0.35;
  --al-max-translate: 24;
}
.al-on-click-ripple {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.al-on-click-ripple > span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%) scale(0);
  animation: be-on-click-ripple 700ms ease-out forwards;
  filter: blur(1px);
}
@keyframes be-on-click-ripple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

/*# sourceMappingURL=alfuix-animation.css.map */
