<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* animated Success */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #0ac989;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #0ac989;
  stroke-miterlimit: 10;
  /* margin: 0% auto; */
  box-shadow: inset 0px 0px 0px #0ac989;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px transparent;
  }
}

.checkmark_mini{
  width: 30px;
  height: 30px;
}
/* End Animated Success */


.xm-loader {
width: 40px;
height: 40px;
border-radius: 50%;
display: inline-block;
position: relative;
border: 3px solid;
border-color: #1E4DD8 #1E4DD8 transparent;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
.xm-loader::after {
content: '';  
box-sizing: border-box;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 3px solid;
border-color: transparent #2bd4ee #2bd4ee;
width: 20px;
height: 20px;
border-radius: 50%;
animation: rotationBack 0.5s linear infinite;
transform-origin: center center;
}

@keyframes rotation {
0% {
  transform: rotate(0deg);
}
100% {
  transform: rotate(360deg);
}
} 
  
@keyframes rotationBack {
0% {
  transform: rotate(0deg);
}
100% {
  transform: rotate(-360deg);
}
}
    

/* dual ring animation */
.lds-dual-ring {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  background: #1a1d25;
  border-radius: 8px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #1E4DD8;
  border-color: #1E4DD8 transparent #2bd4ee transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lds-dual-ring-grey:after {
  content: " ";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #999eb2;
  border-color: #999eb2 transparent #999eb2 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}



.plot-loader {
  width: 48px;
  height: 48px;
  display: block;
  /* margin:0px auto; */
  position: relative;
  color: #FFF;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  /* background: red; */
}
.plot-loader::after,
.plot-loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: scale(0.5) translate(0, 0);
  background-color: #1279ef;
  border-radius: 50%;
  animation: animloader 1s infinite ease-in-out;
}
.plot-loader::before {
  background-color: #0ead98;
  transform: scale(0.5) translate(-48px, -48px);
}

/* @keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}  */
@keyframes animloader {
    50% {
      transform: scale(1) translate(-50%, -50%);
}
}


/* text typing */
.tt-wrapper span.typed-text {
font-weight: normal;
color: #FFF;
}
.tt-wrapper span.cursor {
display: inline-block;
background-color: #1E4DD8;
margin-left: 0.1rem;
width: 3px;
animation: blink 1s infinite;
}
.tt-wrapper span.cursor.typing {
animation: none;
}
@keyframes blink {
0%  { background-color: #ccc; }
49% { background-color: #ccc; }
50% { background-color: transparent; }
99% { background-color: transparent; }
100%  { background-color: #ccc; }
}


/* ticker tape */
.marquee {
overflow: hidden;
width: 90%;
}
.lines {
display: flex;
flex-direction: row;
flex-wrap: nowrap;  
}
.line {
animation: marquee 15s linear infinite;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-content: flex-start;
align-items: flex-start;
white-space: nowrap;
}
/* .line:nth-child(2) {
color: red;
} */
.line span {
padding-right: 0.5em;
}
.line span:after {
/* content: '|'; */
margin-left: 0.5em;
}

@keyframes marquee {
0% {
  transform: translate3d(0, 0, 0);
}
100% {
  transform: translate3d(-100%, 0, 0);
}
}



/* ==================== */
/* Flip Text */
.flip-container {
width: 200px;
height: 100px;
overflow: hidden;
position: relative;
}

.text-container {
display: flex;
flex-direction: column;
transition: transform 0.6s;
}

.text {
font-size: 18px;
font-family: Arial, sans-serif;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}

#flip-word {
display: inline-block;
transition: all 0.6s;
}
/* ================ */


.zoom-animation {
  animation: zoom-expand 30s linear infinite;
}

@keyframes zoom-expand {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

/* Tailwind -------------------------------------------- */
/* Utility class for transitions */
.transition {
  transition: all 0.5s ease;
}

.transition-opacity {
  transition: opacity 0.5s ease;
}

.transition-transform {
  transition: transform 0.5s ease;
}

/* Opacity utilities */
.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

/* Transform utilities */
.translate-y-full {
  transform: translateY(100%);
}

.translate-y-0 {
  transform: translateY(0);
}

/* Transition duration */
.duration-500 {
  transition-duration: 0.5s;
}

.duration-200 {
  transition-duration: 0.2s;
}
/* Ease settings */
.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}


/* = End == */</pre></body></html>